load in the data and convert to a data frame

revisions <- read.table(file = "articlesthatareoldenough.txt", sep = ",", quote = "\"'", stringsAsFactors = FALSE, header = FALSE, strip.white = TRUE)
remove.list <- list('\\[', '\\]')
revisions <- lapply(revisions, gsub, pattern = paste(unlist(remove.list), collapse = "|") , replacement = '')
revisions <- as.data.frame(revisions, stringsAsFactors = FALSE)

revisions_processed <- 
  setNames(
    as.data.frame(lapply(1:ncol(revisions), function (i) {
      type.convert(revisions[,i], as.is = TRUE)
    }), stringsAsFactors = FALSE),
    c("article_id", "article_title", "timestamp", "TEXTDATA")
  )
library(tidyr)
revisions_processed <- separate(data = revisions_processed, col = timestamp, into = c('date', 'time'), sep = "T")
str(revisions_processed)
## 'data.frame':    231538 obs. of  5 variables:
##  $ article_id   : int  100169 100169 100169 100169 100169 100169 100169 100169 100169 100169 ...
##  $ article_title: chr  "Parvati" "Parvati" "Parvati" "Parvati" ...
##  $ date         : chr  "2002-10-06" "2002-10-06" "2003-01-27" "2003-08-09" ...
##  $ time         : chr  "20:34:51Z" "22:37:13Z" "09:23:22Z" "15:25:16Z" ...
##  $ TEXTDATA     : int  1 1 1 1 1 1 1 1 1 1 ...
head(revisions_processed)
##   article_id article_title       date      time TEXTDATA
## 1     100169       Parvati 2002-10-06 20:34:51Z        1
## 2     100169       Parvati 2002-10-06 22:37:13Z        1
## 3     100169       Parvati 2003-01-27 09:23:22Z        1
## 4     100169       Parvati 2003-08-09 15:25:16Z        1
## 5     100169       Parvati 2003-08-09 15:28:19Z        1
## 6     100169       Parvati 2003-08-16 21:27:54Z        1
article.ids <- unique(revisions_processed$article_id)
# save these to a file for the webscraper
write(article.ids, file = "1000articleids.txt")

Date work

Separate the date, create monthly counts

date_split <- separate(data = revisions_processed, col = date, into = c('year', 'month', 'day'), sep = "-")
monthlycounts <- date_split %>%
  group_by(article_id, year, month) %>%
  dplyr::summarise(count = n())
arrange(monthlycounts, article_id, year, month)
## Warning: package 'bindrcpp' was built under R version 3.4.4
revisions_to_dates <- revisions_processed
revisions_to_dates$date <- as.Date(revisions_to_dates$date, '%Y-%m-%d')
str(revisions_to_dates)
## 'data.frame':    231538 obs. of  5 variables:
##  $ article_id   : int  100169 100169 100169 100169 100169 100169 100169 100169 100169 100169 ...
##  $ article_title: chr  "Parvati" "Parvati" "Parvati" "Parvati" ...
##  $ date         : Date, format: "2002-10-06" "2002-10-06" ...
##  $ time         : chr  "20:34:51Z" "22:37:13Z" "09:23:22Z" "15:25:16Z" ...
##  $ TEXTDATA     : int  1 1 1 1 1 1 1 1 1 1 ...
revisions_to_dates$date <- format(revisions_to_dates$date, format="%Y-%m")
revisions_to_dates
##        article_id
## 1          100169
## 2          100169
## 3          100169
## 4          100169
## 5          100169
## 6          100169
## 7          100169
## 8          100169
## 9          100169
## 10         100169
## 11         100169
## 12         100169
## 13         100169
## 14         100169
## 15         100169
## 16         100169
## 17         100169
## 18         100169
## 19         100169
## 20         100169
## 21         100169
## 22         100169
## 23         100169
## 24         100169
## 25         100169
## 26         100169
## 27         100169
## 28         100169
## 29         100169
## 30         100169
## 31         100169
## 32         100169
## 33         100169
## 34         100169
## 35         100169
## 36         100169
## 37         100169
## 38         100169
## 39         100169
## 40         100169
## 41         100169
## 42         100169
## 43         100169
## 44         100169
## 45         100169
## 46         100169
## 47         100169
## 48         100169
## 49         100169
## 50         100169
## 51         100169
## 52         100169
## 53         100169
## 54         100169
## 55         100169
## 56         100169
## 57         100169
## 58         100169
## 59         100169
## 60         100169
## 61         100169
## 62         100169
## 63         100169
## 64         100169
## 65         100169
## 66         100169
## 67         100169
## 68         100169
## 69         100169
## 70         100169
## 71         100169
## 72         100169
## 73         100169
## 74         100169
## 75         100169
## 76         100169
## 77         100169
## 78         100169
## 79         100169
## 80         100169
## 81         100169
## 82         100169
## 83         100169
## 84         100169
## 85         100169
## 86         100169
## 87         100169
## 88         100169
## 89         100169
## 90         100169
## 91         100169
## 92         100169
## 93         100169
## 94         100169
## 95         100169
## 96         100169
## 97         100169
## 98         100169
## 99         100169
## 100        100169
## 101        100169
## 102        100169
## 103        100169
## 104        100169
## 105        100169
## 106        100169
## 107        100169
## 108        100169
## 109        100169
## 110        100169
## 111        100169
## 112        100169
## 113        100169
## 114        100169
## 115        100169
## 116        100169
## 117        100169
## 118        100169
## 119        100169
## 120        100169
## 121        100169
## 122        100169
## 123        100169
## 124        100169
## 125        100169
## 126        100169
## 127        100169
## 128        100169
## 129        100169
## 130        100169
## 131        100169
## 132        100169
## 133        100169
## 134        100169
## 135        100169
## 136        100169
## 137        100169
## 138        100169
## 139        100169
## 140        100169
## 141        100169
## 142        100169
## 143        100169
## 144        100169
## 145        100169
## 146        100169
## 147        100169
## 148        100169
## 149        100169
## 150        100169
## 151        100169
## 152        100169
## 153        100169
## 154        100169
## 155        100169
## 156        100169
## 157        100169
## 158        100169
## 159        100169
## 160        100169
## 161        100169
## 162        100169
## 163        100169
## 164        100169
## 165        100169
## 166        100169
## 167        100169
## 168        100169
## 169        100169
## 170        100169
## 171        100169
## 172        100169
## 173        100169
## 174        100169
## 175        100169
## 176        100169
## 177        100169
## 178        100169
## 179        100169
## 180        100169
## 181        100169
## 182        100169
## 183        100169
## 184        100169
## 185        100169
## 186        100169
## 187        100169
## 188        100169
## 189        100169
## 190        100169
## 191        100169
## 192        100169
## 193        100169
## 194        100169
## 195        100169
## 196        100169
## 197        100169
## 198        100169
## 199        100169
## 200        100169
## 201        100169
## 202        100169
## 203        100169
## 204        100169
## 205        100169
## 206        100169
## 207        100169
## 208        100169
## 209        100169
## 210        100169
## 211        100169
## 212        100169
## 213        100169
## 214        100169
## 215        100169
## 216        100169
## 217        100169
## 218        100169
## 219        100169
## 220        100169
## 221        100169
## 222        100169
## 223        100169
## 224        100169
## 225        100169
## 226        100169
## 227        100169
## 228        100169
## 229        100169
## 230        100169
## 231        100169
## 232        100169
## 233        100169
## 234        100169
## 235        100169
## 236        100169
## 237        100169
## 238        100169
## 239        100169
## 240        100169
## 241        100169
## 242        100169
## 243        100169
## 244        100169
## 245        100169
## 246        100169
## 247        100169
## 248        100169
## 249        100169
## 250        100169
## 251        100169
## 252        100169
## 253        100169
## 254        100169
## 255        100169
## 256        100169
## 257        100169
## 258        100169
## 259        100169
## 260        100169
## 261        100169
## 262        100169
## 263        100169
## 264        100169
## 265        100169
## 266        100169
## 267        100169
## 268        100169
## 269        100169
## 270        100169
## 271        100169
## 272        100169
## 273        100169
## 274        100169
## 275        100169
## 276        100169
## 277        100169
## 278        100169
## 279        100169
## 280        100169
## 281        100169
## 282        100169
## 283        100169
## 284        100169
## 285        100169
## 286        100169
## 287        100169
## 288        100169
## 289        100169
## 290        100169
## 291        100169
## 292        100169
## 293        100169
## 294        100169
## 295        100169
## 296        100169
## 297        100169
## 298        100169
## 299        100169
## 300        100169
## 301        100169
## 302        100169
## 303        100169
## 304        100169
## 305        100169
## 306        100169
## 307        100169
## 308        100169
## 309        100169
## 310        100169
## 311        100169
## 312        100169
## 313        100169
## 314        100169
## 315        100169
## 316        100169
## 317        100169
## 318        100169
## 319        100563
## 320        100563
## 321        100563
## 322        100563
## 323        100563
## 324        100563
## 325        100563
## 326        100563
## 327        100563
## 328        100563
## 329        100563
## 330        100563
## 331        100563
## 332        100563
## 333        100563
## 334        100563
## 335        100563
## 336        100563
## 337        100563
## 338        100563
## 339        100563
## 340        100563
## 341        100563
## 342        100563
## 343        100563
## 344        100563
## 345        100563
## 346        100563
## 347        100563
## 348        100563
## 349        100563
## 350        100563
## 351        100563
## 352        100563
## 353        100563
## 354        100563
## 355        100563
## 356        100563
## 357        100563
## 358        100563
## 359        100563
## 360        100563
## 361        100563
## 362        100563
## 363        100563
## 364        100563
## 365        100563
## 366        100563
## 367        100563
## 368        100563
## 369        100563
## 370        100563
## 371        100563
## 372        100563
## 373        100563
## 374        100563
## 375        100563
## 376        100563
## 377        100563
## 378        100563
## 379        100563
## 380        100563
## 381        100563
## 382        100563
## 383        100563
## 384        100563
## 385        100563
## 386        100563
## 387        100563
## 388        100563
## 389        100563
## 390        100563
## 391        100563
## 392        100563
## 393        100563
## 394        100563
## 395        100563
## 396        100563
## 397        100563
## 398        100563
## 399        100563
## 400        100563
## 401        100563
## 402        100563
## 403        100563
## 404        100563
## 405        100563
## 406        100563
## 407        100563
## 408        100563
## 409        100563
## 410        100563
## 411        100563
## 412        100563
## 413        100563
## 414        100563
## 415        100563
## 416        100563
## 417        100563
## 418        100563
## 419        100563
## 420        100563
## 421        100563
## 422        100563
## 423        100563
## 424        100563
## 425        100563
## 426        100563
## 427        100563
## 428        100563
## 429        100563
## 430        100563
## 431        100563
## 432        100563
## 433        100563
## 434        100563
## 435        100563
## 436        100563
## 437        100563
## 438        100563
## 439        100563
## 440        100563
## 441        100563
## 442        100563
## 443        100563
## 444        100563
## 445        100563
## 446        100563
## 447        100563
## 448        100563
## 449        100563
## 450        100563
## 451        100563
## 452        100563
## 453        100563
## 454        100563
## 455        100563
## 456        100563
## 457        100563
## 458        100563
## 459        100563
## 460        100563
## 461        100563
## 462        100563
## 463        100563
## 464        100563
## 465        100563
## 466        100563
## 467        100563
## 468        100563
## 469        100563
## 470        100563
## 471        100563
## 472        100563
## 473        100563
## 474        100563
## 475        100563
## 476        100563
## 477        100563
## 478        100563
## 479        100563
## 480        100563
## 481        100563
## 482        100563
## 483        100563
## 484        100563
## 485        100563
## 486        100563
## 487        100563
## 488        100563
## 489        100563
## 490        100563
## 491        100563
## 492        100563
## 493        100563
## 494        100563
## 495        100563
## 496        100563
## 497        100563
## 498        100563
## 499        100563
## 500        100563
## 501        100563
## 502        100563
## 503        100563
## 504        100563
## 505        100563
## 506        100563
## 507        100563
## 508        100563
## 509        100563
## 510        100563
## 511        100563
## 512        100563
## 513        100563
## 514        100563
## 515        100563
## 516        100563
## 517        100563
## 518        100563
## 519        100563
## 520        100563
## 521        100563
## 522        100563
## 523        100563
## 524        100563
## 525        100563
## 526        100563
## 527        100643
## 528        100643
## 529        100643
## 530        100643
## 531        100643
## 532        100643
## 533        100643
## 534        100643
## 535        100643
## 536        100643
## 537        100643
## 538        100643
## 539        100643
## 540        100643
## 541        100643
## 542        100643
## 543        100643
## 544        100643
## 545        100643
## 546        100643
## 547        100643
## 548        100643
## 549        100643
## 550        100643
## 551        100643
## 552        100643
## 553        100643
## 554        100643
## 555        100643
## 556        100643
## 557        100643
## 558        100643
## 559        100643
## 560        100643
## 561        100643
## 562        100643
## 563        100643
## 564        100643
## 565        100643
## 566        100643
## 567        100643
## 568        100643
## 569        100643
## 570        100643
## 571        100643
## 572        100643
## 573        100643
## 574        100643
## 575        100643
## 576        100643
## 577        100643
## 578        100643
## 579        100643
## 580        100643
## 581        100643
## 582        100643
## 583        100643
## 584        100643
## 585        100643
## 586        100643
## 587        100643
## 588        100643
## 589        100643
## 590        100643
## 591        100643
## 592        100643
## 593        100643
## 594        100643
## 595        100643
## 596        100643
## 597        100643
## 598        100643
## 599        100643
## 600        100643
## 601        100643
## 602        100643
## 603        100646
## 604        100646
## 605        100646
## 606        100646
## 607        100646
## 608        100646
## 609        100646
## 610        100646
## 611        100646
## 612        100646
## 613        100646
## 614        100646
## 615        100646
## 616        100646
## 617        100646
## 618        100646
## 619        100646
## 620        100646
## 621        100646
## 622        100646
## 623        100646
## 624        100646
## 625        100646
## 626        100646
## 627        100646
## 628        100646
## 629        100646
## 630        100646
## 631        100646
## 632         10074
## 633         10074
## 634         10074
## 635         10074
## 636         10074
## 637         10074
## 638         10074
## 639         10074
## 640         10074
## 641         10074
## 642         10074
## 643         10074
## 644         10074
## 645         10074
## 646         10074
## 647         10074
## 648         10074
## 649         10074
## 650         10074
## 651         10074
## 652         10074
## 653         10074
## 654         10074
## 655         10074
## 656         10074
## 657         10074
## 658         10074
## 659         10074
## 660         10074
## 661         10074
## 662         10074
## 663         10074
## 664         10074
## 665         10074
## 666         10074
## 667         10074
## 668         10074
## 669         10074
## 670         10074
## 671         10074
## 672         10074
## 673         10074
## 674         10074
## 675         10074
## 676         10074
## 677         10074
## 678         10074
## 679         10074
## 680         10074
## 681         10074
## 682         10074
## 683         10074
## 684         10074
## 685         10074
## 686         10074
## 687         10074
## 688         10074
## 689         10074
## 690         10074
## 691         10074
## 692         10074
## 693         10074
## 694         10074
## 695         10074
## 696         10074
## 697         10074
## 698         10074
## 699         10074
## 700         10074
## 701         10074
## 702         10074
## 703         10074
## 704         10074
## 705         10074
## 706         10074
## 707         10074
## 708         10074
## 709         10074
## 710         10074
## 711         10074
## 712         10074
## 713         10074
## 714         10074
## 715         10074
## 716         10074
## 717         10074
## 718         10074
## 719         10074
## 720         10074
## 721         10074
## 722         10074
## 723         10074
## 724         10074
## 725         10074
## 726         10074
## 727         10074
## 728         10074
## 729         10074
## 730         10074
## 731         10074
## 732         10074
## 733         10074
## 734         10074
## 735         10074
## 736         10074
## 737         10074
## 738         10074
## 739         10074
## 740         10074
## 741         10074
## 742         10074
## 743         10074
## 744         10074
## 745         10074
## 746         10074
## 747         10074
## 748         10074
## 749         10074
## 750         10074
## 751         10074
## 752         10074
## 753         10074
## 754         10074
## 755         10074
## 756         10074
## 757         10074
## 758         10074
## 759         10074
## 760         10074
## 761         10074
## 762         10074
## 763         10074
## 764         10074
## 765         10074
## 766         10074
## 767         10074
## 768         10074
## 769         10074
## 770         10074
## 771         10074
## 772         10074
## 773         10074
## 774         10074
## 775         10074
## 776         10074
## 777         10074
## 778         10074
## 779         10074
## 780         10074
## 781         10074
## 782         10074
## 783         10074
## 784         10074
## 785         10074
## 786         10074
## 787         10074
## 788         10074
## 789         10074
## 790         10074
## 791         10074
## 792         10074
## 793         10074
## 794         10074
## 795         10074
## 796         10074
## 797         10074
## 798         10074
## 799         10074
## 800         10074
## 801         10074
## 802         10074
## 803         10074
## 804         10074
## 805         10074
## 806         10074
## 807         10074
## 808         10074
## 809         10074
## 810         10074
## 811         10074
## 812         10074
## 813         10074
## 814         10074
## 815         10074
## 816         10074
## 817         10074
## 818         10074
## 819         10074
## 820         10074
## 821         10074
## 822         10074
## 823         10074
## 824         10074
## 825         10074
## 826         10074
## 827         10074
## 828         10074
## 829         10074
## 830         10074
## 831         10074
## 832         10074
## 833         10074
## 834         10074
## 835         10074
## 836         10074
## 837         10074
## 838         10074
## 839         10074
## 840         10074
## 841         10074
## 842         10074
## 843         10074
## 844         10074
## 845         10074
## 846         10074
## 847         10074
## 848         10074
## 849         10074
## 850         10074
## 851         10074
## 852         10074
## 853         10074
## 854         10074
## 855         10074
## 856         10074
## 857         10074
## 858         10074
## 859         10074
## 860         10074
## 861         10074
## 862         10074
## 863         10074
## 864         10074
## 865         10074
## 866         10074
## 867         10074
## 868         10074
## 869         10074
## 870         10074
## 871         10074
## 872         10074
## 873         10074
## 874         10074
## 875         10074
## 876         10074
## 877         10074
## 878         10074
## 879         10074
## 880         10074
## 881         10074
## 882         10074
## 883         10074
## 884         10074
## 885         10074
## 886         10074
## 887         10074
## 888         10074
## 889         10074
## 890         10074
## 891         10074
## 892         10074
## 893         10074
## 894         10074
## 895         10074
## 896         10074
## 897         10074
## 898         10074
## 899         10074
## 900         10074
## 901         10074
## 902         10074
## 903         10074
## 904         10074
## 905         10074
## 906         10074
## 907         10074
## 908         10074
## 909         10074
## 910         10074
## 911         10074
## 912         10074
## 913        100766
## 914        100766
## 915        100766
## 916        100766
## 917        100766
## 918        100766
## 919        100766
## 920        100766
## 921        100766
## 922        100766
## 923        100766
## 924        100766
## 925        100766
## 926        100766
## 927        100766
## 928        100766
## 929        100766
## 930        100766
## 931        100766
## 932        100766
## 933        100766
## 934        100766
## 935        100766
## 936        100766
## 937        100766
## 938        100766
## 939        100766
## 940        100766
## 941        100766
## 942        100766
## 943        100766
## 944        100766
## 945        100766
## 946        100766
## 947        100766
## 948        100766
## 949        100766
## 950        100766
## 951        100766
## 952        100766
## 953        100766
## 954        100766
## 955        100766
## 956        100766
## 957        100766
## 958        100766
## 959        100766
## 960        100766
## 961        100766
## 962        100766
## 963        100766
## 964        100766
## 965        100766
## 966        100766
## 967        100766
## 968        100766
## 969        100766
## 970        100766
## 971        100766
## 972        100766
## 973        100766
## 974        100766
## 975        100766
## 976        100766
## 977        100766
## 978        100766
## 979        100766
## 980        100766
## 981        100766
## 982        100766
## 983        100766
## 984        100766
## 985        100766
## 986        100766
## 987        100766
## 988        100766
## 989        100766
## 990        100766
## 991        100766
## 992        100766
## 993        100766
## 994        100766
## 995        100766
## 996        100766
## 997        100766
## 998        100766
## 999        100766
## 1000       100766
## 1001       100766
## 1002       100766
## 1003       100766
## 1004       100766
## 1005       100766
## 1006       100766
## 1007       100766
## 1008       100766
## 1009       100766
## 1010       100766
## 1011       100766
## 1012       100766
## 1013       100766
## 1014       100766
## 1015       100766
## 1016       100766
## 1017       100766
## 1018       100766
## 1019       100766
## 1020       100766
## 1021       100766
## 1022       100766
## 1023       100766
## 1024       100766
## 1025       100766
## 1026       100766
## 1027       100766
## 1028       100766
## 1029       100766
## 1030       100766
## 1031       100766
## 1032       100766
## 1033       100766
## 1034       100766
## 1035       100766
## 1036       100766
## 1037       100766
## 1038       100766
## 1039       100766
## 1040       100766
## 1041       100766
## 1042       100766
## 1043       100766
## 1044       100766
## 1045       100766
## 1046       100766
## 1047       100766
## 1048       100766
## 1049       100766
## 1050       100766
## 1051       100766
## 1052       100766
## 1053       100766
## 1054       100766
## 1055       100766
## 1056       100766
## 1057       100766
## 1058       100766
## 1059       100766
## 1060       100766
## 1061       100766
## 1062       100766
## 1063       100766
## 1064       100766
## 1065       100766
## 1066       100766
## 1067       100766
## 1068       100766
## 1069       100766
## 1070       100766
## 1071       100766
## 1072       100766
## 1073       100766
## 1074       100766
## 1075       100766
## 1076       100766
## 1077       100766
## 1078       100766
## 1079       100766
## 1080       100766
## 1081       100766
## 1082       100766
## 1083       100766
## 1084       100766
## 1085       100766
## 1086       100766
## 1087       100766
## 1088       100766
## 1089       100766
## 1090       100766
## 1091       100766
## 1092       100766
## 1093       100766
## 1094       100766
## 1095       100766
## 1096       100766
## 1097       100766
## 1098       100766
## 1099       100766
## 1100       100766
## 1101       100766
## 1102       100766
## 1103       100766
## 1104       100766
## 1105       100766
## 1106       100766
## 1107       100766
## 1108       100766
## 1109       100766
## 1110       100766
## 1111       100766
## 1112       100766
## 1113       100766
## 1114       100766
## 1115       100766
## 1116       100766
## 1117       100766
## 1118       100766
## 1119       100766
## 1120       100766
## 1121       100766
## 1122       100766
## 1123       100766
## 1124       100766
## 1125       100766
## 1126       100766
## 1127       100766
## 1128       100766
## 1129       100766
## 1130       100766
## 1131       100766
## 1132       100766
## 1133       100766
## 1134       100766
## 1135       100766
## 1136       100766
## 1137       100766
## 1138       100766
## 1139       100766
## 1140       100766
## 1141       100766
## 1142       100766
## 1143       100766
## 1144       100766
## 1145       100766
## 1146       100766
## 1147       100766
## 1148       100766
## 1149       100766
## 1150       100766
## 1151       100766
## 1152       100766
## 1153       100766
## 1154       100766
## 1155       100766
## 1156       100766
## 1157       100766
## 1158       100766
## 1159       100766
## 1160       100766
## 1161       100766
## 1162       100766
## 1163       100766
## 1164       100766
## 1165       100766
## 1166       100766
## 1167       100766
## 1168       100766
## 1169       100766
## 1170       100766
## 1171       100766
## 1172       100766
## 1173       100766
## 1174       100766
## 1175       100766
## 1176       100766
## 1177       100766
## 1178       100766
## 1179       100766
## 1180       100766
## 1181       100766
## 1182       100766
## 1183       100766
## 1184       100766
## 1185       100766
## 1186       100766
## 1187       100766
## 1188       100766
## 1189       100766
## 1190       100766
## 1191       100766
## 1192       100766
## 1193       100766
## 1194       100766
## 1195       100766
## 1196       100766
## 1197       100766
## 1198       100766
## 1199       100766
## 1200       100766
## 1201       100766
## 1202       100766
## 1203       100766
## 1204       100766
## 1205       100766
## 1206       100766
## 1207       100766
## 1208       100766
## 1209       100766
## 1210       100766
## 1211       100766
## 1212       100766
## 1213       100766
## 1214       100766
## 1215       100766
## 1216       100766
## 1217       100766
## 1218       100766
## 1219       100766
## 1220       100766
## 1221       100766
## 1222       100766
## 1223       100766
## 1224       100766
## 1225       100766
## 1226       100766
## 1227       100766
## 1228       100987
## 1229       100987
## 1230       100987
## 1231       100987
## 1232       100987
## 1233       100987
## 1234       100987
## 1235       100987
## 1236       100987
## 1237       100987
## 1238       100987
## 1239       100987
## 1240       100992
## 1241       100992
## 1242       100992
## 1243       100992
## 1244       100992
## 1245       100992
## 1246       100992
## 1247       100992
## 1248       100992
## 1249       100992
## 1250       100992
## 1251       100992
## 1252       100992
## 1253       100992
## 1254       100992
## 1255       100992
## 1256       100992
## 1257       100992
## 1258       100992
## 1259       100992
## 1260       100992
## 1261       100992
## 1262       100992
## 1263       100992
## 1264       100992
## 1265         1010
## 1266         1010
## 1267         1010
## 1268         1010
## 1269         1010
## 1270         1010
## 1271         1010
## 1272         1010
## 1273         1010
## 1274         1010
## 1275         1010
## 1276         1010
## 1277         1010
## 1278         1010
## 1279         1010
## 1280         1010
## 1281         1010
## 1282         1010
## 1283         1010
## 1284         1010
## 1285         1010
## 1286         1010
## 1287         1010
## 1288         1010
## 1289         1010
## 1290         1010
## 1291         1010
## 1292         1010
## 1293         1010
## 1294         1010
## 1295         1010
## 1296         1010
## 1297         1010
## 1298         1010
## 1299         1010
## 1300         1010
## 1301         1010
## 1302         1010
## 1303         1010
## 1304         1010
## 1305         1010
## 1306         1010
## 1307         1010
## 1308         1010
## 1309         1010
## 1310         1010
## 1311         1010
## 1312         1010
## 1313         1010
## 1314         1010
## 1315         1010
## 1316         1010
## 1317         1010
## 1318         1010
## 1319         1010
## 1320         1010
## 1321         1010
## 1322         1010
## 1323         1010
## 1324         1010
## 1325         1010
## 1326         1010
## 1327         1010
## 1328         1010
## 1329         1010
## 1330         1010
## 1331         1010
## 1332         1010
## 1333         1010
## 1334         1010
## 1335         1010
## 1336         1010
## 1337         1010
## 1338         1010
## 1339         1010
## 1340         1010
## 1341         1010
## 1342         1010
## 1343         1010
## 1344         1010
## 1345         1010
## 1346         1010
## 1347         1010
## 1348         1010
## 1349         1010
## 1350         1010
## 1351         1010
## 1352         1010
## 1353         1010
## 1354         1010
## 1355         1010
## 1356         1010
## 1357         1010
## 1358         1010
## 1359         1010
## 1360         1010
## 1361         1010
## 1362         1010
## 1363         1010
## 1364         1010
## 1365         1010
## 1366         1010
## 1367         1010
## 1368         1010
## 1369         1010
## 1370         1010
## 1371         1010
## 1372         1010
## 1373         1010
## 1374         1010
## 1375         1010
## 1376         1010
## 1377         1010
## 1378         1010
## 1379         1010
## 1380         1010
## 1381         1010
## 1382         1010
## 1383         1010
## 1384         1010
## 1385         1010
## 1386         1010
## 1387         1010
## 1388         1010
## 1389         1010
## 1390         1010
## 1391         1010
## 1392         1010
## 1393         1010
## 1394         1010
## 1395         1010
## 1396         1010
## 1397         1010
## 1398         1010
## 1399         1010
## 1400         1010
## 1401         1010
## 1402         1010
## 1403         1010
## 1404         1010
## 1405         1010
## 1406         1010
## 1407         1010
## 1408         1010
## 1409         1010
## 1410         1010
## 1411         1010
## 1412         1010
## 1413         1010
## 1414         1010
## 1415         1010
## 1416         1010
## 1417         1010
## 1418         1010
## 1419         1010
## 1420         1010
## 1421         1010
## 1422         1010
## 1423         1010
## 1424         1010
## 1425         1010
## 1426         1010
## 1427         1010
## 1428         1010
## 1429         1010
## 1430         1010
## 1431         1010
## 1432         1010
## 1433         1010
## 1434         1010
## 1435         1010
## 1436         1010
## 1437         1010
## 1438         1010
## 1439         1010
## 1440         1010
## 1441         1010
## 1442         1010
## 1443         1010
## 1444         1010
## 1445         1010
## 1446         1010
## 1447         1010
## 1448         1010
## 1449         1010
## 1450         1010
## 1451         1010
## 1452         1010
## 1453         1010
## 1454         1010
## 1455         1010
## 1456         1010
## 1457         1010
## 1458         1010
## 1459         1010
## 1460         1010
## 1461         1010
## 1462         1010
## 1463         1010
## 1464         1010
## 1465         1010
## 1466         1010
## 1467         1010
## 1468         1010
## 1469         1010
## 1470         1010
## 1471         1010
## 1472         1010
## 1473         1010
## 1474         1010
## 1475         1010
## 1476         1010
## 1477         1010
## 1478         1010
## 1479         1010
## 1480         1010
## 1481         1010
## 1482         1010
## 1483         1010
## 1484         1010
## 1485         1010
## 1486         1010
## 1487         1010
## 1488         1010
## 1489         1010
## 1490         1010
## 1491         1010
## 1492         1010
## 1493         1010
## 1494         1010
## 1495         1010
## 1496         1010
## 1497         1010
## 1498         1010
## 1499         1010
## 1500         1010
## 1501         1010
## 1502         1010
## 1503         1010
## 1504         1010
## 1505         1010
## 1506         1010
## 1507         1010
## 1508         1010
## 1509         1010
## 1510         1010
## 1511         1010
## 1512         1010
## 1513         1010
## 1514         1010
## 1515         1010
## 1516         1010
## 1517         1010
## 1518         1010
## 1519         1010
## 1520         1010
## 1521         1010
## 1522         1010
## 1523         1010
## 1524         1010
## 1525         1010
## 1526         1010
## 1527         1010
## 1528         1010
## 1529         1010
## 1530         1010
## 1531         1010
## 1532         1010
## 1533         1010
## 1534         1010
## 1535         1010
## 1536         1010
## 1537         1010
## 1538         1010
## 1539         1010
## 1540         1010
## 1541         1010
## 1542         1010
## 1543         1010
## 1544         1010
## 1545         1010
## 1546         1010
## 1547         1010
## 1548         1010
## 1549         1010
## 1550         1010
## 1551         1010
## 1552         1010
## 1553         1010
## 1554         1010
## 1555         1010
## 1556         1010
## 1557         1010
## 1558         1010
## 1559         1010
## 1560         1010
## 1561         1010
## 1562         1010
## 1563         1010
## 1564         1010
## 1565         1010
## 1566         1010
## 1567         1010
## 1568         1010
## 1569         1010
## 1570         1010
## 1571         1010
## 1572         1010
## 1573         1010
## 1574         1010
## 1575         1010
## 1576         1010
## 1577         1010
## 1578         1010
## 1579         1010
## 1580         1010
## 1581         1010
## 1582         1010
## 1583         1010
## 1584         1010
## 1585         1010
## 1586         1010
## 1587         1010
## 1588         1010
## 1589         1010
## 1590         1010
## 1591         1010
## 1592         1010
## 1593         1010
## 1594         1010
## 1595         1010
## 1596         1010
## 1597         1010
## 1598         1010
## 1599         1010
## 1600         1010
## 1601         1010
## 1602         1010
## 1603         1010
## 1604         1010
## 1605         1010
## 1606         1010
## 1607         1010
## 1608         1010
## 1609         1010
## 1610         1010
## 1611         1010
## 1612         1010
## 1613         1010
## 1614         1010
## 1615         1010
## 1616         1010
## 1617         1010
## 1618         1010
## 1619         1010
## 1620         1010
## 1621         1010
## 1622         1010
## 1623         1010
## 1624         1010
## 1625         1010
## 1626         1010
## 1627         1010
## 1628         1010
## 1629         1010
## 1630         1010
## 1631         1010
## 1632         1010
## 1633         1010
## 1634         1010
## 1635         1010
## 1636         1010
## 1637         1010
## 1638         1010
## 1639         1010
## 1640         1010
## 1641         1010
## 1642         1010
## 1643         1010
## 1644         1010
## 1645         1010
## 1646         1010
## 1647         1010
## 1648         1010
## 1649         1010
## 1650         1010
## 1651         1010
## 1652         1010
## 1653         1010
## 1654         1010
## 1655         1010
## 1656         1010
## 1657         1010
## 1658         1010
## 1659         1010
## 1660         1010
## 1661         1010
## 1662         1010
## 1663         1010
## 1664         1010
## 1665         1010
## 1666         1010
## 1667         1010
## 1668         1010
## 1669         1010
## 1670         1010
## 1671         1010
## 1672         1010
## 1673         1010
## 1674         1010
## 1675         1010
## 1676         1010
## 1677         1010
## 1678         1010
## 1679         1010
## 1680         1010
## 1681         1010
## 1682         1010
## 1683         1010
## 1684         1010
## 1685         1010
## 1686         1010
## 1687         1010
## 1688         1010
## 1689         1010
## 1690         1010
## 1691         1010
## 1692         1010
## 1693         1010
## 1694         1010
## 1695         1010
## 1696         1010
## 1697         1010
## 1698         1010
## 1699         1010
## 1700         1010
## 1701         1010
## 1702         1010
## 1703         1010
## 1704         1010
## 1705         1010
## 1706         1010
## 1707         1010
## 1708         1010
## 1709         1010
## 1710         1010
## 1711         1010
## 1712         1010
## 1713         1010
## 1714         1010
## 1715         1010
## 1716         1010
## 1717         1010
## 1718         1010
## 1719         1010
## 1720         1010
## 1721         1010
## 1722         1010
## 1723         1010
## 1724         1010
## 1725         1010
## 1726         1010
## 1727         1010
## 1728         1010
## 1729         1010
## 1730         1010
## 1731         1010
## 1732         1010
## 1733         1010
## 1734         1010
## 1735         1010
## 1736         1010
## 1737         1010
## 1738         1010
## 1739         1010
## 1740         1010
## 1741         1010
## 1742         1010
## 1743         1010
## 1744         1010
## 1745         1010
## 1746         1010
## 1747         1010
## 1748         1010
## 1749         1010
## 1750         1010
## 1751         1010
## 1752         1010
## 1753         1010
## 1754         1010
## 1755         1010
## 1756         1010
## 1757         1010
## 1758         1010
## 1759         1010
## 1760         1010
## 1761         1010
## 1762         1010
## 1763         1010
## 1764         1010
## 1765         1010
## 1766         1010
## 1767         1010
## 1768         1010
## 1769         1010
## 1770         1010
## 1771         1010
## 1772         1010
## 1773         1010
## 1774         1010
## 1775         1010
## 1776         1010
## 1777         1010
## 1778         1010
## 1779         1010
## 1780         1010
## 1781         1010
## 1782         1010
## 1783         1010
## 1784         1010
## 1785         1010
## 1786         1010
## 1787         1010
## 1788         1010
## 1789         1010
## 1790         1010
## 1791         1010
## 1792         1010
## 1793         1010
## 1794         1010
## 1795         1010
## 1796         1010
## 1797         1010
## 1798         1010
## 1799         1010
## 1800         1010
## 1801         1010
## 1802         1010
## 1803         1010
## 1804         1010
## 1805         1010
## 1806         1010
## 1807         1010
## 1808         1010
## 1809         1010
## 1810         1010
## 1811         1010
## 1812         1010
## 1813         1010
## 1814         1010
## 1815         1010
## 1816         1010
## 1817         1010
## 1818         1010
## 1819         1010
## 1820         1010
## 1821         1010
## 1822         1010
## 1823         1010
## 1824         1010
## 1825         1010
## 1826         1010
## 1827         1010
## 1828         1010
## 1829         1010
## 1830         1010
## 1831         1010
## 1832         1010
## 1833         1010
## 1834         1010
## 1835         1010
## 1836         1010
## 1837         1010
## 1838         1010
## 1839         1010
## 1840         1010
## 1841         1010
## 1842         1010
## 1843         1010
## 1844         1010
## 1845         1010
## 1846         1010
## 1847         1010
## 1848         1010
## 1849         1010
## 1850         1010
## 1851         1010
## 1852         1010
## 1853         1010
## 1854         1010
## 1855         1010
## 1856         1010
## 1857         1010
## 1858         1010
## 1859         1010
## 1860         1010
## 1861         1010
## 1862         1010
## 1863         1010
## 1864         1010
## 1865         1010
## 1866         1010
## 1867         1010
## 1868         1010
## 1869         1010
## 1870         1010
## 1871         1010
## 1872         1010
## 1873         1010
## 1874         1010
## 1875         1010
## 1876         1010
## 1877         1010
## 1878         1010
## 1879         1010
## 1880         1010
## 1881         1010
## 1882         1010
## 1883         1010
## 1884         1010
## 1885         1010
## 1886         1010
## 1887         1010
## 1888         1010
## 1889         1010
## 1890         1010
## 1891         1010
## 1892         1010
## 1893         1010
## 1894         1010
## 1895         1010
## 1896         1010
## 1897         1010
## 1898         1010
## 1899         1010
## 1900         1010
## 1901         1010
## 1902         1010
## 1903         1010
## 1904         1010
## 1905         1010
## 1906         1010
## 1907         1010
## 1908         1010
## 1909         1010
## 1910         1010
## 1911         1010
## 1912         1010
## 1913         1010
## 1914         1010
## 1915         1010
## 1916         1010
## 1917         1010
## 1918         1010
## 1919         1010
## 1920         1010
## 1921         1010
## 1922         1010
## 1923         1010
## 1924         1010
## 1925         1010
## 1926         1010
## 1927         1010
## 1928         1010
## 1929         1010
## 1930         1010
## 1931         1010
## 1932         1010
## 1933         1010
## 1934         1010
## 1935         1010
## 1936         1010
## 1937         1010
## 1938         1010
## 1939         1010
## 1940         1010
## 1941         1010
## 1942         1010
## 1943         1010
## 1944         1010
## 1945         1010
## 1946         1010
## 1947         1010
## 1948         1010
## 1949         1010
## 1950         1010
## 1951         1010
## 1952         1010
## 1953         1010
## 1954         1010
## 1955         1010
## 1956         1010
## 1957         1010
## 1958         1010
## 1959         1010
## 1960         1010
## 1961         1010
## 1962         1010
## 1963         1010
## 1964         1010
## 1965         1010
## 1966         1010
## 1967         1010
## 1968         1010
## 1969         1010
## 1970         1010
## 1971         1010
## 1972         1010
## 1973         1010
## 1974         1010
## 1975         1010
## 1976         1010
## 1977         1010
## 1978         1010
## 1979         1010
## 1980         1010
## 1981         1010
## 1982         1010
## 1983         1010
## 1984         1010
## 1985         1010
## 1986         1010
## 1987         1010
## 1988         1010
## 1989         1010
## 1990         1010
## 1991         1010
## 1992         1010
## 1993         1010
## 1994         1010
## 1995         1010
## 1996         1010
## 1997         1010
## 1998         1010
## 1999         1010
## 2000         1010
## 2001         1010
## 2002         1010
## 2003         1010
## 2004         1010
## 2005         1010
## 2006         1010
## 2007         1010
## 2008         1010
## 2009         1010
## 2010         1010
## 2011         1010
## 2012         1010
## 2013         1010
## 2014         1010
## 2015         1010
## 2016         1010
## 2017         1010
## 2018         1010
## 2019         1010
## 2020         1010
## 2021         1010
## 2022         1010
## 2023         1010
## 2024         1010
## 2025         1010
## 2026         1010
## 2027         1010
## 2028         1010
## 2029         1010
## 2030         1010
## 2031         1010
## 2032         1010
## 2033         1010
## 2034         1010
## 2035         1010
## 2036         1010
## 2037         1010
## 2038         1010
## 2039         1010
## 2040         1010
## 2041         1010
## 2042         1010
## 2043         1010
## 2044         1010
## 2045         1010
## 2046         1010
## 2047         1010
## 2048         1010
## 2049         1010
## 2050         1010
## 2051         1010
## 2052         1010
## 2053         1010
## 2054         1010
## 2055         1010
## 2056         1010
## 2057         1010
## 2058         1010
## 2059         1010
## 2060         1010
## 2061         1010
## 2062         1010
## 2063         1010
## 2064         1010
## 2065         1010
## 2066         1010
## 2067         1010
## 2068         1010
## 2069         1010
## 2070         1010
## 2071         1010
## 2072         1010
## 2073         1010
## 2074         1010
## 2075         1010
## 2076         1010
## 2077         1010
## 2078         1010
## 2079         1010
## 2080         1010
## 2081         1010
## 2082         1010
## 2083         1010
## 2084         1010
## 2085         1010
## 2086         1010
## 2087         1010
## 2088         1010
## 2089         1010
## 2090         1010
## 2091         1010
## 2092         1010
## 2093         1010
## 2094         1010
## 2095         1010
## 2096         1010
## 2097         1010
## 2098         1010
## 2099         1010
## 2100         1010
## 2101         1010
## 2102         1010
## 2103         1010
## 2104         1010
## 2105         1010
## 2106         1010
## 2107         1010
## 2108         1010
## 2109         1010
## 2110         1010
## 2111         1010
## 2112         1010
## 2113         1010
## 2114         1010
## 2115         1010
## 2116         1010
## 2117         1010
## 2118         1010
## 2119         1010
## 2120         1010
## 2121         1010
## 2122         1010
## 2123         1010
## 2124         1010
## 2125         1010
## 2126         1010
## 2127         1010
## 2128         1010
## 2129         1010
## 2130         1010
## 2131         1010
## 2132         1010
## 2133         1010
## 2134         1010
## 2135         1010
## 2136         1010
## 2137         1010
## 2138         1010
## 2139         1010
## 2140         1010
## 2141         1010
## 2142         1010
## 2143         1010
## 2144         1010
## 2145         1010
## 2146         1010
## 2147         1010
## 2148         1010
## 2149         1010
## 2150         1010
## 2151         1010
## 2152         1010
## 2153         1010
## 2154         1010
## 2155         1010
## 2156         1010
## 2157         1010
## 2158         1010
## 2159         1010
## 2160         1010
## 2161         1010
## 2162         1010
## 2163         1010
## 2164         1010
## 2165         1010
## 2166         1010
## 2167         1010
## 2168         1010
## 2169         1010
## 2170         1010
## 2171         1010
## 2172         1010
## 2173         1010
## 2174         1010
## 2175         1010
## 2176         1010
## 2177         1010
## 2178         1010
## 2179         1010
## 2180         1010
## 2181         1010
## 2182         1010
## 2183         1010
## 2184         1010
## 2185         1010
## 2186         1010
## 2187         1010
## 2188         1010
## 2189         1010
## 2190         1010
## 2191         1010
## 2192         1010
## 2193         1010
## 2194         1010
## 2195         1010
## 2196         1010
## 2197         1010
## 2198         1010
## 2199         1010
## 2200         1010
## 2201         1010
## 2202         1010
## 2203         1010
## 2204         1010
## 2205         1010
## 2206         1010
## 2207         1010
## 2208         1010
## 2209         1010
## 2210         1010
## 2211         1010
## 2212         1010
## 2213         1010
## 2214         1010
## 2215         1010
## 2216         1010
## 2217         1010
## 2218         1010
## 2219         1010
## 2220         1010
## 2221         1010
## 2222         1010
## 2223         1010
## 2224         1010
## 2225         1010
## 2226         1010
## 2227         1010
## 2228         1010
## 2229         1010
## 2230         1010
## 2231         1010
## 2232         1010
## 2233         1010
## 2234         1010
## 2235         1010
## 2236         1010
## 2237         1010
## 2238         1010
## 2239         1010
## 2240         1010
## 2241         1010
## 2242         1010
## 2243         1010
## 2244         1010
## 2245         1010
## 2246         1010
## 2247         1010
## 2248         1010
## 2249         1010
## 2250         1010
## 2251         1010
## 2252         1010
## 2253         1010
## 2254         1010
## 2255         1010
## 2256         1010
## 2257         1010
## 2258         1010
## 2259         1010
## 2260         1010
## 2261         1010
## 2262         1010
## 2263         1010
## 2264         1010
## 2265         1010
## 2266         1010
## 2267         1010
## 2268         1010
## 2269         1010
## 2270         1010
## 2271         1010
## 2272         1010
## 2273         1010
## 2274         1010
## 2275         1010
## 2276         1010
## 2277         1010
## 2278         1010
## 2279         1010
## 2280         1010
## 2281         1010
## 2282         1010
## 2283         1010
## 2284         1010
## 2285         1010
## 2286         1010
## 2287         1010
## 2288         1010
## 2289         1010
## 2290         1010
## 2291         1010
## 2292         1010
## 2293         1010
## 2294         1010
## 2295         1010
## 2296         1010
## 2297         1010
## 2298         1010
## 2299         1010
## 2300         1010
## 2301         1010
## 2302         1010
## 2303         1010
## 2304         1010
## 2305         1010
## 2306         1010
## 2307         1010
## 2308         1010
## 2309         1010
## 2310         1010
## 2311         1010
## 2312         1010
## 2313         1010
## 2314         1010
## 2315         1010
## 2316         1010
## 2317         1010
## 2318         1010
## 2319         1010
## 2320         1010
## 2321         1010
## 2322         1010
## 2323         1010
## 2324         1010
## 2325         1010
## 2326         1010
## 2327         1010
## 2328         1010
## 2329         1010
## 2330         1010
## 2331         1010
## 2332         1010
## 2333         1010
## 2334         1010
## 2335         1010
## 2336         1010
## 2337         1010
## 2338         1010
## 2339         1010
## 2340         1010
## 2341         1010
## 2342         1010
## 2343         1010
## 2344         1010
## 2345         1010
## 2346         1010
## 2347         1010
## 2348         1010
## 2349         1010
## 2350         1010
## 2351         1010
## 2352         1010
## 2353         1010
## 2354         1010
## 2355         1010
## 2356         1010
## 2357         1010
## 2358         1010
## 2359         1010
## 2360         1010
## 2361         1010
## 2362         1010
## 2363         1010
## 2364         1010
## 2365         1010
## 2366         1010
## 2367         1010
## 2368         1010
## 2369         1010
## 2370         1010
## 2371         1010
## 2372         1010
## 2373         1010
## 2374         1010
## 2375         1010
## 2376         1010
## 2377         1010
## 2378         1010
## 2379         1010
## 2380         1010
## 2381         1010
## 2382         1010
## 2383         1010
## 2384         1010
## 2385         1010
## 2386         1010
## 2387         1010
## 2388         1010
## 2389         1010
## 2390         1010
## 2391         1010
## 2392         1010
## 2393         1010
## 2394         1010
## 2395         1010
## 2396         1010
## 2397         1010
## 2398         1010
## 2399         1010
## 2400         1010
## 2401         1010
## 2402         1010
## 2403         1010
## 2404         1010
## 2405         1010
## 2406         1010
## 2407         1010
## 2408         1010
## 2409         1010
## 2410         1010
## 2411         1010
## 2412         1010
## 2413         1010
## 2414         1010
## 2415         1010
## 2416         1010
## 2417         1010
## 2418         1010
## 2419         1010
## 2420         1010
## 2421         1010
## 2422         1010
## 2423         1010
## 2424         1010
## 2425         1010
## 2426         1010
## 2427         1010
## 2428         1010
## 2429         1010
## 2430         1010
## 2431         1010
## 2432         1010
## 2433         1010
## 2434         1010
## 2435         1010
## 2436         1010
## 2437         1010
## 2438         1010
## 2439         1010
## 2440         1010
## 2441         1010
## 2442         1010
## 2443         1010
## 2444         1010
## 2445         1010
## 2446         1010
## 2447         1010
## 2448         1010
## 2449         1010
## 2450         1010
## 2451         1010
## 2452         1010
## 2453         1010
## 2454         1010
## 2455         1010
## 2456         1010
## 2457         1010
## 2458         1010
## 2459         1010
## 2460         1010
## 2461         1010
## 2462         1010
## 2463         1010
## 2464         1010
## 2465         1010
## 2466         1010
## 2467         1010
## 2468         1010
## 2469         1010
## 2470         1010
## 2471         1010
## 2472         1010
## 2473         1010
## 2474         1010
## 2475         1010
## 2476         1010
## 2477         1010
## 2478         1010
## 2479         1010
## 2480         1010
## 2481         1010
## 2482         1010
## 2483         1010
## 2484         1010
## 2485         1010
## 2486         1010
## 2487         1010
## 2488         1010
## 2489         1010
## 2490         1010
## 2491         1010
## 2492         1010
## 2493         1010
## 2494         1010
## 2495         1010
## 2496         1010
## 2497         1010
## 2498         1010
## 2499         1010
## 2500         1010
## 2501         1010
## 2502         1010
## 2503         1010
## 2504         1010
## 2505         1010
## 2506         1010
## 2507         1010
## 2508         1010
## 2509         1010
## 2510         1010
## 2511         1010
## 2512         1010
## 2513         1010
## 2514         1010
## 2515         1010
## 2516         1010
## 2517         1010
## 2518         1010
## 2519         1010
## 2520         1010
## 2521         1010
## 2522         1010
## 2523         1010
## 2524         1010
## 2525         1010
## 2526         1010
## 2527         1010
## 2528         1010
## 2529         1010
## 2530         1010
## 2531         1010
## 2532         1010
## 2533         1010
## 2534         1010
## 2535         1010
## 2536         1010
## 2537         1010
## 2538         1010
## 2539         1010
## 2540         1010
## 2541         1010
## 2542         1010
## 2543         1010
## 2544         1010
## 2545         1010
## 2546         1010
## 2547         1010
## 2548         1010
## 2549         1010
## 2550         1010
## 2551         1010
## 2552         1010
## 2553         1010
## 2554         1010
## 2555         1010
## 2556         1010
## 2557         1010
## 2558         1010
## 2559         1010
## 2560         1010
## 2561         1010
## 2562         1010
## 2563         1010
## 2564         1010
## 2565         1010
## 2566         1010
## 2567         1010
## 2568         1010
## 2569         1010
## 2570         1010
## 2571         1010
## 2572         1010
## 2573         1010
## 2574         1010
## 2575         1010
## 2576         1010
## 2577         1010
## 2578         1010
## 2579         1010
## 2580         1010
## 2581         1010
## 2582         1010
## 2583         1010
## 2584         1010
## 2585         1010
## 2586         1010
## 2587         1010
## 2588         1010
## 2589         1010
## 2590         1010
## 2591         1010
## 2592         1010
## 2593         1010
## 2594         1010
## 2595         1010
## 2596         1010
## 2597         1010
## 2598         1010
## 2599         1010
## 2600         1010
## 2601         1010
## 2602         1010
## 2603         1010
## 2604         1010
## 2605         1010
## 2606         1010
## 2607         1010
## 2608         1010
## 2609         1010
## 2610         1010
## 2611         1010
## 2612         1010
## 2613         1010
## 2614         1010
## 2615         1010
## 2616         1010
## 2617         1010
## 2618         1010
## 2619         1010
## 2620         1010
## 2621         1010
## 2622         1010
## 2623         1010
## 2624         1010
## 2625         1010
## 2626         1010
## 2627         1010
## 2628         1010
## 2629         1010
## 2630         1010
## 2631         1010
## 2632         1010
## 2633         1010
## 2634         1010
## 2635         1010
## 2636         1010
## 2637         1010
## 2638         1010
## 2639         1010
## 2640         1010
## 2641         1010
## 2642         1010
## 2643         1010
## 2644         1010
## 2645         1010
## 2646         1010
## 2647         1010
## 2648         1010
## 2649         1010
## 2650         1010
## 2651         1010
## 2652         1010
## 2653         1010
## 2654         1010
## 2655         1010
## 2656         1010
## 2657         1010
## 2658         1010
## 2659         1010
## 2660         1010
## 2661         1010
## 2662         1010
## 2663         1010
## 2664         1010
## 2665         1010
## 2666         1010
## 2667         1010
## 2668         1010
## 2669         1010
## 2670         1010
## 2671         1010
## 2672         1010
## 2673         1010
## 2674         1010
## 2675         1010
## 2676         1010
## 2677         1010
## 2678         1010
## 2679         1010
## 2680         1010
## 2681         1010
## 2682         1010
## 2683         1010
## 2684         1010
## 2685         1010
## 2686         1010
## 2687         1010
## 2688         1010
## 2689         1010
## 2690         1010
## 2691         1010
## 2692         1010
## 2693         1010
## 2694         1010
## 2695         1010
## 2696         1010
## 2697         1010
## 2698         1010
## 2699         1010
## 2700         1010
## 2701         1010
## 2702         1010
## 2703         1010
## 2704         1010
## 2705         1010
## 2706         1010
## 2707         1010
## 2708         1010
## 2709         1010
## 2710         1010
## 2711         1010
## 2712         1010
## 2713         1010
## 2714         1010
## 2715         1010
## 2716         1010
## 2717         1010
## 2718         1010
## 2719         1010
## 2720         1010
## 2721         1010
## 2722         1010
## 2723         1010
## 2724         1010
## 2725         1010
## 2726         1010
## 2727         1010
## 2728         1010
## 2729         1010
## 2730         1010
## 2731         1010
## 2732         1010
## 2733         1010
## 2734         1010
## 2735         1010
## 2736         1010
## 2737         1010
## 2738         1010
## 2739         1010
## 2740         1010
## 2741         1010
## 2742         1010
## 2743         1010
## 2744         1010
## 2745         1010
## 2746         1010
## 2747         1010
## 2748         1010
## 2749         1010
## 2750         1010
## 2751         1010
## 2752         1010
## 2753         1010
## 2754         1010
## 2755         1010
## 2756         1010
## 2757         1010
## 2758         1010
## 2759         1010
## 2760         1010
## 2761         1010
## 2762         1010
## 2763         1010
## 2764         1010
## 2765         1010
## 2766         1010
## 2767         1010
## 2768         1010
## 2769         1010
## 2770         1010
## 2771         1010
## 2772         1010
## 2773         1010
## 2774         1010
## 2775         1010
## 2776         1010
## 2777         1010
## 2778         1010
## 2779         1010
## 2780         1010
## 2781         1010
## 2782         1010
## 2783         1010
## 2784         1010
## 2785         1010
## 2786         1010
## 2787         1010
## 2788         1010
## 2789         1010
## 2790         1010
## 2791         1010
## 2792         1010
## 2793         1010
## 2794         1010
## 2795         1010
## 2796         1010
## 2797         1010
## 2798         1010
## 2799         1010
## 2800         1010
## 2801         1010
## 2802         1010
## 2803         1010
## 2804         1010
## 2805         1010
## 2806         1010
## 2807         1010
## 2808         1010
## 2809         1010
## 2810         1010
## 2811         1010
## 2812         1010
## 2813         1010
## 2814         1010
## 2815         1010
## 2816         1010
## 2817         1010
## 2818         1010
## 2819         1010
## 2820         1010
## 2821         1010
## 2822         1010
## 2823         1010
## 2824         1010
## 2825         1010
## 2826         1010
## 2827         1010
## 2828         1010
## 2829         1010
## 2830         1010
## 2831         1010
## 2832         1010
## 2833         1010
## 2834         1010
## 2835         1010
## 2836         1010
## 2837         1010
## 2838         1010
## 2839         1010
## 2840         1010
## 2841         1010
## 2842         1010
## 2843         1010
## 2844         1010
## 2845         1010
## 2846         1010
## 2847         1010
## 2848         1010
## 2849         1010
## 2850         1010
## 2851         1010
## 2852         1010
## 2853         1010
## 2854         1010
## 2855         1010
## 2856         1010
## 2857         1010
## 2858         1010
## 2859         1010
## 2860         1010
## 2861         1010
## 2862         1010
## 2863         1010
## 2864         1010
## 2865         1010
## 2866         1010
## 2867         1010
## 2868       101015
## 2869       101015
## 2870       101015
## 2871       101015
## 2872       101015
## 2873       101015
## 2874       101015
## 2875       101015
## 2876       101015
## 2877       101015
## 2878       101015
## 2879       101015
## 2880       101026
## 2881       101026
## 2882       101026
## 2883       101026
## 2884       101026
## 2885       101026
## 2886       101026
## 2887       101026
## 2888       101026
## 2889       101026
## 2890       101026
## 2891       101026
## 2892       101026
## 2893       101026
## 2894       101073
## 2895       101073
## 2896       101073
## 2897       101073
## 2898       101073
## 2899       101073
## 2900       101073
## 2901       101073
## 2902       101073
## 2903       101073
## 2904       101073
## 2905       101073
## 2906       101084
## 2907       101084
## 2908       101084
## 2909       101084
## 2910       101084
## 2911       101084
## 2912       101084
## 2913       101084
## 2914       101084
## 2915       101084
## 2916       101084
## 2917       101084
## 2918       101084
## 2919       101084
## 2920       101084
## 2921       101084
## 2922       101084
## 2923       101084
## 2924       101084
## 2925       101084
## 2926       101084
## 2927       101084
## 2928       101084
## 2929       101084
## 2930       101084
## 2931       101084
## 2932       101084
## 2933       101084
## 2934       101793
## 2935       101793
## 2936       101793
## 2937       101793
## 2938       101793
## 2939       101793
## 2940       101793
## 2941       101793
## 2942       101793
## 2943       101793
## 2944       101793
## 2945       101793
## 2946       101793
## 2947       101793
## 2948       101793
## 2949       101793
## 2950       101793
## 2951       101793
## 2952       101793
## 2953       101793
## 2954       101793
## 2955       101793
## 2956       101793
## 2957       101793
## 2958       101793
## 2959       101793
## 2960       101793
## 2961       101793
## 2962       101793
## 2963       101793
## 2964       101927
## 2965       101927
## 2966       101927
## 2967       101927
## 2968       101927
## 2969       101927
## 2970       101927
## 2971       101927
## 2972       101927
## 2973       101927
## 2974       101927
## 2975       101927
## 2976       101927
## 2977       101927
## 2978       101927
## 2979       101927
## 2980       101927
## 2981       101927
## 2982       101927
## 2983       101927
## 2984       101927
## 2985       101927
## 2986       101927
## 2987       101927
## 2988       101927
## 2989       101927
## 2990       101927
## 2991       101927
## 2992       101927
## 2993       101927
## 2994       101927
## 2995       101927
## 2996       101927
## 2997       101927
## 2998       101927
## 2999       101927
## 3000       101927
## 3001       101927
## 3002       101927
## 3003       101927
## 3004       101927
## 3005       101927
## 3006       101927
## 3007       101927
## 3008       101927
## 3009       101927
## 3010       101927
## 3011       101927
## 3012       101927
## 3013       101927
## 3014       101927
## 3015       101927
## 3016       101927
## 3017       101927
## 3018       101927
## 3019       101927
## 3020       102047
## 3021       102047
## 3022       102047
## 3023       102047
## 3024       102047
## 3025       102047
## 3026       102047
## 3027       102047
## 3028       102047
## 3029       102047
## 3030       102047
## 3031       102047
## 3032       102047
## 3033       102047
## 3034       102047
## 3035       102047
## 3036       102047
## 3037       102047
## 3038       102047
## 3039       102047
## 3040       102047
## 3041       102047
## 3042       102047
## 3043       102047
## 3044       102047
## 3045       102047
## 3046       102047
## 3047       102047
## 3048       102047
## 3049       102047
## 3050       102047
## 3051       102047
## 3052       102047
## 3053       102047
## 3054       102047
## 3055       102047
## 3056       102047
## 3057       102047
## 3058       102047
## 3059       102047
## 3060       102047
## 3061       102047
## 3062       102047
## 3063       102047
## 3064       102047
## 3065       102047
## 3066       102047
## 3067       102047
## 3068       102047
## 3069       102047
## 3070       102047
## 3071       102047
## 3072       102047
## 3073       102047
## 3074       102047
## 3075       102047
## 3076       102047
## 3077       102047
## 3078       102047
## 3079       102047
## 3080       102047
## 3081       102047
## 3082       102047
## 3083       102047
## 3084       102047
## 3085       102047
## 3086       102047
## 3087       102047
## 3088       102047
## 3089       102047
## 3090       102047
## 3091       102047
## 3092       102047
## 3093       102047
## 3094       102047
## 3095       102047
## 3096       102047
## 3097       102047
## 3098       102047
## 3099       102047
## 3100       102047
## 3101       102047
## 3102       102047
## 3103       102047
## 3104       102047
## 3105       102047
## 3106       102047
## 3107       102047
## 3108       102047
## 3109       102047
## 3110       102047
## 3111       102047
## 3112       102047
## 3113       102047
## 3114       102047
## 3115       102047
## 3116       102047
## 3117       102047
## 3118       102047
## 3119       102047
## 3120       102047
## 3121       102047
## 3122       102047
## 3123       102047
## 3124       102047
## 3125       102047
## 3126       102047
## 3127       102047
## 3128       102047
## 3129       102047
## 3130       102047
## 3131       102047
## 3132       102047
## 3133       102047
## 3134       102047
## 3135       102047
## 3136       102047
## 3137       102047
## 3138       102047
## 3139       102047
## 3140       102047
## 3141       102047
## 3142       102047
## 3143       102047
## 3144       102047
## 3145       102047
## 3146       102047
## 3147       102047
## 3148       102047
## 3149       102047
## 3150       102047
## 3151       102047
## 3152       102047
## 3153       102047
## 3154       102047
## 3155       102047
## 3156       102047
## 3157       102047
## 3158       102047
## 3159       102047
## 3160       102047
## 3161       102047
## 3162       102047
## 3163       102047
## 3164       102047
## 3165       102047
## 3166       102047
## 3167       102047
## 3168       102047
## 3169       102047
## 3170       102047
## 3171       102047
## 3172       102047
## 3173       102047
## 3174       102047
## 3175       102047
## 3176       102047
## 3177       102047
## 3178       102047
## 3179       102047
## 3180       102047
## 3181       102047
## 3182       102047
## 3183       102047
## 3184       102047
## 3185       102047
## 3186       102047
## 3187       102047
## 3188       102047
## 3189       102047
## 3190       102047
## 3191       102047
## 3192       102047
## 3193       102047
## 3194       102047
## 3195       102047
## 3196       102047
## 3197       102047
## 3198       102047
## 3199       102047
## 3200       102047
## 3201       102047
## 3202       102047
## 3203       102047
## 3204       102047
## 3205       102047
## 3206       102047
## 3207       102047
## 3208       102047
## 3209       102047
## 3210       102047
## 3211       102047
## 3212       102047
## 3213       102047
## 3214       102047
## 3215       102047
## 3216       102047
## 3217       102047
## 3218       102047
## 3219       102047
## 3220       102047
## 3221       102047
## 3222       102047
## 3223       102047
## 3224       102047
## 3225       102047
## 3226       102047
## 3227       102047
## 3228       102047
## 3229       102047
## 3230       102047
## 3231       102047
## 3232       102047
## 3233       102047
## 3234       102047
## 3235       102151
## 3236       102151
## 3237       102151
## 3238       102151
## 3239       102151
## 3240       102151
## 3241       102151
## 3242       102151
## 3243       102151
## 3244       102151
## 3245       102151
## 3246       102151
## 3247       102298
## 3248       102298
## 3249       102298
## 3250       102298
## 3251       102298
## 3252       102298
## 3253       102298
## 3254       102298
## 3255       102298
## 3256       102298
## 3257       102298
## 3258       102298
## 3259       102298
## 3260       102298
## 3261       102298
## 3262       102298
## 3263       102298
## 3264       102298
## 3265       102298
## 3266       102298
## 3267       102298
## 3268       102298
## 3269       102298
## 3270       102298
## 3271       102298
## 3272       102298
## 3273       102298
## 3274       102298
## 3275       102298
## 3276       102298
## 3277       102298
## 3278       102298
## 3279       102298
## 3280       102298
## 3281       102298
## 3282       102298
## 3283       102298
## 3284       102298
## 3285       102298
## 3286       102298
## 3287       102298
## 3288       102298
## 3289       102298
## 3290       102298
## 3291       102298
## 3292       102298
## 3293       102298
## 3294       102298
## 3295       102298
## 3296       102298
## 3297       102298
## 3298       102298
## 3299       102298
## 3300       102298
## 3301       102298
## 3302       102298
## 3303       102298
## 3304       102298
## 3305       102298
## 3306       102298
## 3307       102298
## 3308       102298
## 3309       102298
## 3310       102298
## 3311       102298
## 3312       102298
## 3313       102298
## 3314       102298
## 3315       102298
## 3316       102298
## 3317       102298
## 3318       102298
## 3319       102298
## 3320       102298
## 3321       102298
## 3322       102298
## 3323       102298
## 3324       102298
## 3325       102298
## 3326       102298
## 3327       102298
## 3328       102298
## 3329       102298
## 3330       102298
## 3331       102298
## 3332       102298
## 3333       102298
## 3334       102298
## 3335       102298
## 3336       102298
## 3337       102298
## 3338       102298
## 3339       102298
## 3340       102298
## 3341       102298
## 3342       102298
## 3343       102298
## 3344       102298
## 3345       102298
## 3346       102298
## 3347       102298
## 3348       102298
## 3349       102298
## 3350       102298
## 3351       102298
## 3352       102298
## 3353       102298
## 3354       102298
## 3355       102298
## 3356       102298
## 3357       102298
## 3358       102298
## 3359       102298
## 3360       102298
## 3361       102298
## 3362       102298
## 3363       102298
## 3364       102298
## 3365       102298
## 3366       102298
## 3367       102298
## 3368       102298
## 3369       102298
## 3370       102298
## 3371       102298
## 3372       102298
## 3373       102298
## 3374       102298
## 3375       102298
## 3376       102298
## 3377       102298
## 3378       102298
## 3379       102298
## 3380       102298
## 3381       102298
## 3382       102298
## 3383       102298
## 3384       102298
## 3385       102298
## 3386       102298
## 3387       102298
## 3388       102298
## 3389       102298
## 3390       102298
## 3391       102298
## 3392       102298
## 3393       102298
## 3394       102298
## 3395       102298
## 3396       102298
## 3397       102298
## 3398       102298
## 3399       102298
## 3400       102298
## 3401       102298
## 3402       102298
## 3403       102298
## 3404       102298
## 3405       102298
## 3406       102298
## 3407       102298
## 3408       102298
## 3409       102298
## 3410       102298
## 3411       102298
## 3412       102298
## 3413       102298
## 3414       102298
## 3415       102298
## 3416       102298
## 3417       102298
## 3418       102298
## 3419       102298
## 3420       102298
## 3421       102298
## 3422       102298
## 3423       102298
## 3424       102298
## 3425       102298
## 3426       102298
## 3427       102298
## 3428       102298
## 3429       102298
## 3430       102298
## 3431       102298
## 3432       102298
## 3433       102298
## 3434       102298
## 3435       102298
## 3436       102298
## 3437       102298
## 3438       102298
## 3439       102298
## 3440       102298
## 3441       102298
## 3442       102298
## 3443       102298
## 3444       102298
## 3445       102298
## 3446       102298
## 3447       102298
## 3448       102298
## 3449       102298
## 3450       102298
## 3451       102298
## 3452       102298
## 3453       102298
## 3454       102298
## 3455       102298
## 3456       102298
## 3457       102298
## 3458       102298
## 3459       102298
## 3460       102298
## 3461       102298
## 3462       102298
## 3463       102298
## 3464       102298
## 3465       102298
## 3466       102298
## 3467       102298
## 3468       102298
## 3469       102298
## 3470       102298
## 3471       102298
## 3472       102298
## 3473       102298
## 3474       102298
## 3475       102298
## 3476       102298
## 3477       102298
## 3478       102298
## 3479       102298
## 3480       102298
## 3481       102298
## 3482       102298
## 3483       102298
## 3484       102298
## 3485       102298
## 3486       102298
## 3487       102298
## 3488       102298
## 3489       102298
## 3490       102298
## 3491       102298
## 3492       102298
## 3493       102298
## 3494       102298
## 3495       102298
## 3496       102298
## 3497       102298
## 3498       102298
## 3499       102298
## 3500       102298
## 3501       102298
## 3502       102298
## 3503       102298
## 3504       102298
## 3505       102298
## 3506       102298
## 3507       102298
## 3508       102298
## 3509       102298
## 3510       102298
## 3511       102298
## 3512       102298
## 3513       102298
## 3514       102298
## 3515       102298
## 3516       102298
## 3517       102298
## 3518       102298
## 3519       102298
## 3520       102298
## 3521       102298
## 3522       102298
## 3523       102298
## 3524       102298
## 3525       102298
## 3526       102298
## 3527       102298
## 3528       102298
## 3529       102298
## 3530       102298
## 3531       102298
## 3532       102298
## 3533       102298
## 3534       102298
## 3535       102298
## 3536       102298
## 3537       102298
## 3538       102298
## 3539       102298
## 3540       102298
## 3541       102298
## 3542       102298
## 3543       102298
## 3544       102298
## 3545       102298
## 3546       102298
## 3547       102298
## 3548       102298
## 3549       102298
## 3550       102298
## 3551       102298
## 3552       102298
## 3553       102298
## 3554       102298
## 3555       102298
## 3556       102298
## 3557       102298
## 3558       102298
## 3559       102298
## 3560       102298
## 3561       102298
## 3562       102298
## 3563       102298
## 3564       102298
## 3565       102298
## 3566       102298
## 3567       102298
## 3568       102298
## 3569       102298
## 3570       102298
## 3571       102298
## 3572       102298
## 3573       102298
## 3574       102298
## 3575       102298
## 3576       102298
## 3577       102298
## 3578       102298
## 3579       102298
## 3580       102298
## 3581       102298
## 3582       102298
## 3583       102298
## 3584       102298
## 3585       102298
## 3586       102298
## 3587       102298
## 3588       102298
## 3589       102298
## 3590       102298
## 3591       102298
## 3592       102298
## 3593       102298
## 3594       102298
## 3595       102298
## 3596       102298
## 3597       102298
## 3598       102298
## 3599       102298
## 3600       102298
## 3601       102298
## 3602       102298
## 3603       102298
## 3604       102298
## 3605       102298
## 3606       102298
## 3607       102298
## 3608       102298
## 3609       102298
## 3610       102298
## 3611       102298
## 3612       102298
## 3613       102298
## 3614       102298
## 3615       102298
## 3616       102298
## 3617       102298
## 3618       102298
## 3619       102298
## 3620       102298
## 3621       102298
## 3622       102298
## 3623       102298
## 3624       102298
## 3625       102298
## 3626       102298
## 3627       102298
## 3628       102298
## 3629       102298
## 3630       102298
## 3631       102298
## 3632       102298
## 3633       102298
## 3634       102298
## 3635       102298
## 3636       102298
## 3637       102298
## 3638       102298
## 3639       102298
## 3640       102298
## 3641       102298
## 3642       102298
## 3643       102298
## 3644       102298
## 3645       102298
## 3646       102298
## 3647       102793
## 3648       102793
## 3649       102793
## 3650       102793
## 3651       102793
## 3652       102793
## 3653       102793
## 3654       102793
## 3655       102793
## 3656       102793
## 3657       102793
## 3658       102793
## 3659       102793
## 3660       102793
## 3661       102793
## 3662       102793
## 3663       102793
## 3664       102793
## 3665       102793
## 3666       102793
## 3667       102793
## 3668       102793
## 3669       102793
## 3670       102793
## 3671       102793
## 3672       102793
## 3673       102793
## 3674       102793
## 3675       102793
## 3676       102793
## 3677       102793
## 3678       102793
## 3679       102793
## 3680       102793
## 3681       102793
## 3682       102793
## 3683       102793
## 3684       102793
## 3685       102793
## 3686       102793
## 3687       102793
## 3688       102793
## 3689       102793
## 3690       102793
## 3691       102793
## 3692       102793
## 3693       102793
## 3694       102793
## 3695       102793
## 3696       102793
## 3697       102797
## 3698       102797
## 3699       102797
## 3700       102797
## 3701       102797
## 3702       102797
## 3703       102797
## 3704       102797
## 3705       102797
## 3706       102797
## 3707       102797
## 3708       102797
## 3709       102797
## 3710       102797
## 3711       102797
## 3712       102797
## 3713       102797
## 3714       102797
## 3715       102797
## 3716       102797
## 3717       102797
## 3718       102797
## 3719       102797
## 3720       102797
## 3721       102797
## 3722       102797
## 3723       102797
## 3724       102797
## 3725       102797
## 3726       102797
## 3727       102797
## 3728       102797
## 3729       102797
## 3730       102797
## 3731       102797
## 3732       102797
## 3733       102797
## 3734       102797
## 3735       102797
## 3736       102797
## 3737       102797
## 3738       102797
## 3739       102797
## 3740       102797
## 3741       102797
## 3742       102797
## 3743       102797
## 3744       102797
## 3745       102797
## 3746       102797
## 3747       102797
## 3748       102797
## 3749       102797
## 3750       102797
## 3751       102797
## 3752       102797
## 3753       102797
## 3754       102797
## 3755       102797
## 3756       102797
## 3757       102797
## 3758       102797
## 3759       102797
## 3760       102797
## 3761       102797
## 3762       102797
## 3763       102797
## 3764       102797
## 3765       102797
## 3766       102797
## 3767       102797
## 3768       102797
## 3769       102797
## 3770       102797
## 3771       102797
## 3772       102797
## 3773       102797
## 3774       102797
## 3775       102797
## 3776       102797
## 3777       102797
## 3778       102797
## 3779       102797
## 3780       102797
## 3781       102797
## 3782       102797
## 3783       102797
## 3784       102797
## 3785       102797
## 3786       102797
## 3787       102797
## 3788       102797
## 3789       102797
## 3790       102797
## 3791       102797
## 3792       102797
## 3793       102797
## 3794       102797
## 3795       102797
## 3796       102797
## 3797       102797
## 3798       102797
## 3799       102797
## 3800       102797
## 3801       102797
## 3802       102797
## 3803       102797
## 3804       102797
## 3805       102797
## 3806       102797
## 3807       102797
## 3808       102797
## 3809       102797
## 3810       102797
## 3811       102797
## 3812       102797
## 3813       102797
## 3814       102797
## 3815       102797
## 3816       102797
## 3817       102797
## 3818       102797
## 3819       102797
## 3820       102797
## 3821       102797
## 3822       102797
## 3823       102797
## 3824       102797
## 3825       102797
## 3826       102797
## 3827       102797
## 3828       102797
## 3829       102797
## 3830       102797
## 3831       102797
## 3832       102797
## 3833       102797
## 3834       102797
## 3835       102797
## 3836       102797
## 3837       102797
## 3838       102797
## 3839       102797
## 3840       102797
## 3841       102797
## 3842       102797
## 3843       102797
## 3844       102797
## 3845       102797
## 3846       102797
## 3847       102797
## 3848       102797
## 3849       102797
## 3850       102797
## 3851       102797
## 3852       102797
## 3853       102797
## 3854       102797
## 3855       102797
## 3856       102797
## 3857       102797
## 3858       102797
## 3859       102797
## 3860       102797
## 3861       102797
## 3862       102797
## 3863       102797
## 3864       102797
## 3865       102797
## 3866       102797
## 3867       102797
## 3868       102797
## 3869       102797
## 3870       102797
## 3871       102797
## 3872       102797
## 3873       102797
## 3874       102797
## 3875       102797
## 3876       102797
## 3877       102797
## 3878       102797
## 3879       102797
## 3880       102797
## 3881       102797
## 3882       102797
## 3883       102797
## 3884       102797
## 3885       102797
## 3886       102797
## 3887       102797
## 3888       102797
## 3889       102797
## 3890       102797
## 3891       102797
## 3892       102797
## 3893       102797
## 3894       102797
## 3895       102797
## 3896       102797
## 3897       102797
## 3898       102797
## 3899       102797
## 3900       102797
## 3901       102797
## 3902       102797
## 3903       102797
## 3904       102797
## 3905       102797
## 3906       102797
## 3907       102797
## 3908       102797
## 3909       102797
## 3910       102797
## 3911       102797
## 3912       102797
## 3913       102797
## 3914       102797
## 3915       102797
## 3916       102797
## 3917       102797
## 3918       102797
## 3919       102797
## 3920       102797
## 3921       102797
## 3922       102797
## 3923       102797
## 3924       102797
## 3925       102797
## 3926       102797
## 3927       102797
## 3928       102797
## 3929       102797
## 3930       102797
## 3931       102797
## 3932       102797
## 3933       102797
## 3934       102797
## 3935       102797
## 3936       102797
## 3937       102797
## 3938       102797
## 3939       102797
## 3940       102797
## 3941       102797
## 3942       102797
## 3943       102797
## 3944       102797
## 3945       102797
## 3946       102797
## 3947       102797
## 3948       102797
## 3949       102797
## 3950       102797
## 3951       102797
## 3952       102797
## 3953       102797
## 3954       102797
## 3955       102797
## 3956       102797
## 3957       102797
## 3958       102797
## 3959       102797
## 3960       102797
## 3961       102797
## 3962       102797
## 3963       102797
## 3964       102797
## 3965       102797
## 3966       102797
## 3967       102797
## 3968       102797
## 3969       102797
## 3970       102797
## 3971       102797
## 3972       102797
## 3973       102797
## 3974       102797
## 3975       102797
## 3976       102797
## 3977       102797
## 3978       102797
## 3979       102797
## 3980       102797
## 3981       102797
## 3982       102797
## 3983       102797
## 3984       102797
## 3985       102797
## 3986       102797
## 3987       102797
## 3988       102797
## 3989       102797
## 3990       102797
## 3991       102797
## 3992       102797
## 3993       102797
## 3994       102797
## 3995       102797
## 3996       102797
## 3997       102797
## 3998       102797
## 3999       102797
## 4000       102797
## 4001       102797
## 4002       102797
## 4003       102797
## 4004       102797
## 4005       102797
## 4006       102797
## 4007       102797
## 4008       102797
## 4009       102797
## 4010       102797
## 4011       102797
## 4012       102797
## 4013       102797
## 4014       102797
## 4015       102797
## 4016       102797
## 4017       102797
## 4018       102797
## 4019       102797
## 4020       102797
## 4021       102797
## 4022       102797
## 4023       102797
## 4024       102797
## 4025       102797
## 4026       102797
## 4027       102797
## 4028       102797
## 4029       102797
## 4030       102797
## 4031       102797
## 4032       102797
## 4033       102797
## 4034       102797
## 4035       102797
## 4036       102797
## 4037       102797
## 4038       102797
## 4039       102797
## 4040       102797
## 4041       102797
## 4042       102797
## 4043       102797
## 4044       102797
## 4045       102797
## 4046       102797
## 4047       102797
## 4048       102797
## 4049       102797
## 4050       102797
## 4051       102797
## 4052       102797
## 4053       102797
## 4054       102797
## 4055       102797
## 4056       102797
## 4057       102797
## 4058       102797
## 4059       102797
## 4060       102797
## 4061       102797
## 4062       102797
## 4063       102797
## 4064       102797
## 4065       102797
## 4066       102797
## 4067       102797
## 4068       102797
## 4069       102797
## 4070       102797
## 4071       102797
## 4072       102797
## 4073       102797
## 4074       102797
## 4075       102797
## 4076       102797
## 4077       102797
## 4078       102797
## 4079       102797
## 4080       102797
## 4081       102797
## 4082       102797
## 4083       102797
## 4084       102797
## 4085       102797
## 4086       102797
## 4087       102797
## 4088       102797
## 4089       102797
## 4090       102797
## 4091       102797
## 4092       102797
## 4093       102797
## 4094       102797
## 4095       102797
## 4096       102797
## 4097       102797
## 4098       102797
## 4099       102797
## 4100       102797
## 4101       102797
## 4102       102797
## 4103       102797
## 4104       102797
## 4105       102797
## 4106       102797
## 4107       102797
## 4108       102797
## 4109       102797
## 4110       102797
## 4111       102797
## 4112       102797
## 4113       102797
## 4114       102797
## 4115       102797
## 4116       102797
## 4117       102797
## 4118       102797
## 4119       102797
## 4120       102797
## 4121       102797
## 4122       102797
## 4123       102797
## 4124       102797
## 4125       102797
## 4126       102797
## 4127       102797
## 4128       102797
## 4129       102797
## 4130       102797
## 4131       102797
## 4132       102797
## 4133       102797
## 4134       102797
## 4135       102797
## 4136       102797
## 4137       102797
## 4138       102797
## 4139       102797
## 4140       102797
## 4141       102797
## 4142       102797
## 4143       102797
## 4144       102797
## 4145       102797
## 4146       102797
## 4147       102797
## 4148       102797
## 4149       102797
## 4150       102797
## 4151       102797
## 4152       102797
## 4153       102797
## 4154       102797
## 4155       102797
## 4156       102797
## 4157       102797
## 4158       102797
## 4159       102797
## 4160       102797
## 4161       102797
## 4162       102797
## 4163       102797
## 4164       102797
## 4165       102797
## 4166       102797
## 4167       102797
## 4168       102797
## 4169       102797
## 4170       102797
## 4171       102797
## 4172       102797
## 4173       102797
## 4174       102797
## 4175       102797
## 4176       102797
## 4177       102797
## 4178       102797
## 4179       102797
## 4180       102797
## 4181       102797
## 4182       102797
## 4183       102797
## 4184       102797
## 4185       102797
## 4186       102797
## 4187       102797
## 4188       102797
## 4189       102797
## 4190       102797
## 4191       102797
## 4192       102797
## 4193       102797
## 4194       102797
## 4195       102797
## 4196       102797
## 4197       102797
## 4198       102797
## 4199       102797
## 4200       102797
## 4201       102797
## 4202       102797
## 4203       102797
## 4204       102797
## 4205       102797
## 4206       102797
## 4207       102797
## 4208       102797
## 4209       102797
## 4210       102797
## 4211       102797
## 4212       102797
## 4213       102797
## 4214       102797
## 4215       102797
## 4216       102797
## 4217       102797
## 4218       102797
## 4219       102797
## 4220       102797
## 4221       102797
## 4222       102797
## 4223       102797
## 4224       102797
## 4225       102797
## 4226       102797
## 4227       102797
## 4228       102797
## 4229       102797
## 4230       102797
## 4231       102797
## 4232       102797
## 4233       102797
## 4234       102797
## 4235       102797
## 4236       102797
## 4237       102797
## 4238       102797
## 4239       102797
## 4240       102797
## 4241       102797
## 4242       102797
## 4243       102797
## 4244       102797
## 4245       102797
## 4246       102797
## 4247       102797
## 4248       102797
## 4249       102797
## 4250       102797
## 4251       102797
## 4252       102797
## 4253       102797
## 4254       102797
## 4255       102797
## 4256       102797
## 4257       102797
## 4258       102797
## 4259       102797
## 4260       102797
## 4261       102797
## 4262       102797
## 4263       102797
## 4264       102797
## 4265       102797
## 4266       102797
## 4267       102797
## 4268       102797
## 4269       102797
## 4270       102797
## 4271       102797
## 4272       102797
## 4273       102797
## 4274       102797
## 4275       102797
## 4276       102797
## 4277       102797
## 4278       102797
## 4279       102797
## 4280       102797
## 4281       102797
## 4282       102797
## 4283       102797
## 4284       102797
## 4285       102797
## 4286       102797
## 4287       102797
## 4288       102797
## 4289       102797
## 4290       102797
## 4291       102797
## 4292       102797
## 4293       102797
## 4294       102797
## 4295       102797
## 4296       102797
## 4297       102797
## 4298       102797
## 4299       102797
## 4300       102797
## 4301       102797
## 4302       102797
## 4303       102797
## 4304       102797
## 4305       102797
## 4306       102797
## 4307       102797
## 4308       102797
## 4309       102797
## 4310       102797
## 4311       102797
## 4312       102797
## 4313       102797
## 4314       102797
## 4315       102797
## 4316       102797
## 4317       102797
## 4318       102797
## 4319       102797
## 4320       102797
## 4321       102797
## 4322       102797
## 4323       102797
## 4324       102797
## 4325       102797
## 4326       102797
## 4327       102797
## 4328       102797
## 4329       102797
## 4330       102797
## 4331       102797
## 4332       102797
## 4333       102797
## 4334       102797
## 4335       102797
## 4336       102797
## 4337       102797
## 4338       102797
## 4339       102797
## 4340       102797
## 4341       102797
## 4342       102797
## 4343       102797
## 4344       102797
## 4345       102797
## 4346       102797
## 4347       102797
## 4348       102797
## 4349       102797
## 4350       102797
## 4351       102797
## 4352       102797
## 4353       102797
## 4354       102797
## 4355       102797
## 4356       102797
## 4357       102797
## 4358       102797
## 4359       102797
## 4360       102797
## 4361       102797
## 4362       102797
## 4363       102797
## 4364       102797
## 4365       102797
## 4366       102797
## 4367       102797
## 4368       102797
## 4369       102797
## 4370       102797
## 4371       102797
## 4372       102797
## 4373       102797
## 4374       102797
## 4375       102797
## 4376       102797
## 4377       102797
## 4378       102797
## 4379       102797
## 4380       102797
## 4381       102797
## 4382       102797
## 4383       102797
## 4384       102797
## 4385       102797
## 4386       102797
## 4387       102797
## 4388       102797
## 4389       102797
## 4390       102797
## 4391       102797
## 4392       102797
## 4393       102797
## 4394       102797
## 4395       102797
## 4396       102797
## 4397       102797
## 4398       102797
## 4399       102797
## 4400       102797
## 4401       102797
## 4402       102797
## 4403       102797
## 4404       102797
## 4405       102797
## 4406       102797
## 4407       102797
## 4408       102797
## 4409       102797
## 4410       102797
## 4411       102797
## 4412       102797
## 4413       102797
## 4414       102797
## 4415       102797
## 4416       102797
## 4417       102797
## 4418       102797
## 4419       102797
## 4420       102797
## 4421       102797
## 4422       102797
## 4423       102797
## 4424       102797
## 4425       102797
## 4426       102797
## 4427       102797
## 4428       102797
## 4429       102797
## 4430       102797
## 4431       102797
## 4432       102797
## 4433       102797
## 4434       102797
## 4435       102797
## 4436       102797
## 4437       102797
## 4438       102797
## 4439       102797
## 4440       102797
## 4441       102797
## 4442       102797
## 4443       102797
## 4444       102797
## 4445       102797
## 4446       102797
## 4447       102797
## 4448       102797
## 4449       102797
## 4450       102797
## 4451       102797
## 4452       102797
## 4453       102797
## 4454       102797
## 4455       102797
## 4456       102797
## 4457       102797
## 4458       102797
## 4459       102797
## 4460       102797
## 4461       102797
## 4462       102797
## 4463       102797
## 4464       102797
## 4465       102797
## 4466       102797
## 4467       102797
## 4468       102797
## 4469       102797
## 4470       102797
## 4471       102797
## 4472       102797
## 4473       102797
## 4474       102797
## 4475       102797
## 4476       102797
## 4477       102797
## 4478       102797
## 4479       102797
## 4480       102797
## 4481       102797
## 4482       102797
## 4483       102797
## 4484       102797
## 4485       102797
## 4486       102797
## 4487       102797
## 4488       102797
## 4489       102797
## 4490       102797
## 4491       102797
## 4492       102797
## 4493       102797
## 4494       102797
## 4495       102797
## 4496       102797
## 4497       102797
## 4498       102797
## 4499       102797
## 4500       102797
## 4501       102797
## 4502       102797
## 4503       102797
## 4504       102797
## 4505       102797
## 4506       102797
## 4507       102797
## 4508       102797
## 4509       102797
## 4510       102797
## 4511       102797
## 4512       102797
## 4513       102797
## 4514       102797
## 4515       102797
## 4516       102797
## 4517       102797
## 4518       102797
## 4519       102797
## 4520       102797
## 4521       102797
## 4522       102797
## 4523       102797
## 4524       102797
## 4525       102797
## 4526       102797
## 4527       102797
## 4528       102797
## 4529       102797
## 4530       102797
## 4531       102797
## 4532       102797
## 4533       102797
## 4534       102797
## 4535       102797
## 4536       102797
## 4537       102797
## 4538       102797
## 4539       102797
## 4540       102797
## 4541       102797
## 4542       102797
## 4543       102797
## 4544       102797
## 4545       102797
## 4546       102797
## 4547       102797
## 4548       102797
## 4549       102797
## 4550       102797
## 4551       102797
## 4552       102797
## 4553       102797
## 4554       102797
## 4555       102797
## 4556       102797
## 4557       102797
## 4558       102797
## 4559       102797
## 4560       102797
## 4561       102797
## 4562       102797
## 4563       102797
## 4564       102797
## 4565       102797
## 4566       102797
## 4567       102797
## 4568       102797
## 4569       102797
## 4570       102797
## 4571       102797
## 4572       102797
## 4573       102797
## 4574       102797
## 4575       102797
## 4576       102797
## 4577       102797
## 4578       102797
## 4579       102797
## 4580       102797
## 4581       102797
## 4582       102797
## 4583       102797
## 4584       102797
## 4585       102797
## 4586       102797
## 4587       102797
## 4588       102797
## 4589       102797
## 4590       102797
## 4591       102797
## 4592       102797
## 4593       102797
## 4594       102797
## 4595       102797
## 4596       102797
## 4597       102797
## 4598       102797
## 4599       102797
## 4600       102797
## 4601       102797
## 4602       102797
## 4603       102797
## 4604       102797
## 4605       102797
## 4606       102797
## 4607       102797
## 4608       102797
## 4609       102797
## 4610       102797
## 4611       102797
## 4612       102797
## 4613       102797
## 4614       102797
## 4615       102797
## 4616       102797
## 4617       102797
## 4618       102797
## 4619       102797
## 4620       102797
## 4621       102797
## 4622       102797
## 4623       102797
## 4624       102797
## 4625       102797
## 4626       102797
## 4627       102797
## 4628       102797
## 4629       102797
## 4630       102797
## 4631       102797
## 4632       102797
## 4633       102797
## 4634       102797
## 4635       102797
## 4636       102797
## 4637       102797
## 4638       102797
## 4639       102797
## 4640       102797
## 4641       102797
## 4642       102797
## 4643       102797
## 4644       102797
## 4645       102797
## 4646       102797
## 4647       102797
## 4648       102797
## 4649       102797
## 4650       102797
## 4651       102797
## 4652       102797
## 4653       102797
## 4654       102797
## 4655       102797
## 4656       102797
## 4657       102797
## 4658       102797
## 4659       102797
## 4660       102797
## 4661       102797
## 4662       102797
## 4663       102797
## 4664       102797
## 4665       102797
## 4666       102797
## 4667       102797
## 4668       102797
## 4669       102797
## 4670       102797
## 4671       102797
## 4672       102797
## 4673       102797
## 4674       102797
## 4675       102797
## 4676       102797
## 4677       102797
## 4678       102797
## 4679       102797
## 4680       102797
## 4681       102797
## 4682       102797
## 4683       102797
## 4684       102797
## 4685       102797
## 4686       102797
## 4687       102797
## 4688       102797
## 4689       102797
## 4690       102797
## 4691       102797
## 4692       102797
## 4693       102797
## 4694       102797
## 4695       102797
## 4696       102797
## 4697       102797
## 4698       102797
## 4699       102797
## 4700       102797
## 4701       102797
## 4702       102797
## 4703       102797
## 4704       102797
## 4705       102797
## 4706       102797
## 4707       102797
## 4708       102797
## 4709       102797
## 4710       102797
## 4711       102797
## 4712       102797
## 4713       102797
## 4714       102797
## 4715       102797
## 4716       102797
## 4717       102797
## 4718       102797
## 4719       102797
## 4720       102797
## 4721       102797
## 4722       102797
## 4723       102797
## 4724       102797
## 4725       102797
## 4726       102797
## 4727       102797
## 4728       102797
## 4729       102797
## 4730       102797
## 4731       102797
## 4732       102797
## 4733       102797
## 4734       102797
## 4735       102797
## 4736       102797
## 4737       102797
## 4738       102797
## 4739       102797
## 4740       102797
## 4741       102797
## 4742       102797
## 4743       102797
## 4744       102797
## 4745       102797
## 4746       102797
## 4747       102797
## 4748       102797
## 4749       102797
## 4750       102797
## 4751       102797
## 4752       102797
## 4753       102797
## 4754       102797
## 4755       102797
## 4756       102797
## 4757       102797
## 4758       102797
## 4759       102797
## 4760       102797
## 4761       102797
## 4762       102797
## 4763       102797
## 4764       102797
## 4765       102797
## 4766       102797
## 4767       102797
## 4768       102797
## 4769       102797
## 4770       102797
## 4771       102797
## 4772       102797
## 4773       102797
## 4774       102797
## 4775       102797
## 4776       102797
## 4777       102797
## 4778       102797
## 4779       102797
## 4780       102797
## 4781       102797
## 4782       102797
## 4783       102797
## 4784       102797
## 4785       102797
## 4786       102797
## 4787       102797
## 4788       102797
## 4789       102797
## 4790       102797
## 4791       102797
## 4792       102797
## 4793       102797
## 4794       102797
## 4795       102797
## 4796       102797
## 4797       102797
## 4798       102797
## 4799       102797
## 4800       102797
## 4801       102797
## 4802       102797
## 4803       102797
## 4804       102797
## 4805       102797
## 4806       102797
## 4807       102797
## 4808       102797
## 4809       102797
## 4810       102797
## 4811       102797
## 4812       102797
## 4813       102797
## 4814       102797
## 4815       102797
## 4816       102797
## 4817       102797
## 4818       102797
## 4819       102797
## 4820       102797
## 4821       102797
## 4822       102797
## 4823       102797
## 4824       102797
## 4825       102797
## 4826       102797
## 4827       102797
## 4828       102797
## 4829       102797
## 4830       102797
## 4831       102797
## 4832       102797
## 4833       102797
## 4834       102797
## 4835       102797
## 4836       102797
## 4837       102797
## 4838       102797
## 4839       102797
## 4840       102797
## 4841       102797
## 4842       102797
## 4843       102797
## 4844       102797
## 4845       102797
## 4846       102797
## 4847       102797
## 4848       102797
## 4849       102797
## 4850       102797
## 4851       102797
## 4852       102797
## 4853       102797
## 4854       102797
## 4855       102797
## 4856       102797
## 4857       102797
## 4858       102797
## 4859       102797
## 4860       102797
## 4861       102797
## 4862       102797
## 4863       102797
## 4864       102797
## 4865       102797
## 4866       102797
## 4867       102797
## 4868       102797
## 4869       102797
## 4870       102797
## 4871       102797
## 4872       102797
## 4873       102797
## 4874       102797
## 4875       102797
## 4876       102797
## 4877       102797
## 4878       102797
## 4879       102797
## 4880       102797
## 4881       102797
## 4882       102797
## 4883       102797
## 4884       102797
## 4885       102797
## 4886       102797
## 4887       102797
## 4888       102797
## 4889       102797
## 4890       102797
## 4891       102797
## 4892       102797
## 4893       102797
## 4894       102797
## 4895       102797
## 4896       102797
## 4897       102797
## 4898       102797
## 4899       102797
## 4900       102797
## 4901       102797
## 4902       102797
## 4903       102797
## 4904       102797
## 4905       102797
## 4906       102797
## 4907       102797
## 4908       102797
## 4909       102797
## 4910       102797
## 4911       102797
## 4912       102797
## 4913       102797
## 4914       102797
## 4915       102797
## 4916       102797
## 4917       102797
## 4918       102797
## 4919       102797
## 4920       102797
## 4921       102797
## 4922       102797
## 4923       102797
## 4924       102797
## 4925       102797
## 4926       102797
## 4927       102797
## 4928       102797
## 4929       102797
## 4930       102797
## 4931       102797
## 4932       102797
## 4933       102797
## 4934       102797
## 4935       102797
## 4936       102797
## 4937       102797
## 4938       102797
## 4939       102797
## 4940       102797
## 4941       102797
## 4942       102797
## 4943       102797
## 4944       102797
## 4945       102797
## 4946       102797
## 4947       102797
## 4948       102797
## 4949       102797
## 4950       102797
## 4951       102797
## 4952       102797
## 4953       102797
## 4954       102797
## 4955       102797
## 4956       102797
## 4957       102797
## 4958       102797
## 4959       102797
## 4960       102797
## 4961       102797
## 4962       102807
## 4963       102807
## 4964       102807
## 4965       102807
## 4966       102807
## 4967       102807
## 4968       102807
## 4969       102807
## 4970       102807
## 4971       102807
## 4972       102807
## 4973       102807
## 4974       102807
## 4975       102807
## 4976       102807
## 4977       102807
## 4978       102807
## 4979       102807
## 4980       102807
## 4981       102807
## 4982       102807
## 4983       102807
## 4984       102807
## 4985       102807
## 4986       102807
## 4987       102807
## 4988       102807
## 4989       102807
## 4990       102807
## 4991       102807
## 4992       102807
## 4993       102807
## 4994       102807
## 4995       102807
## 4996       102807
## 4997       102807
## 4998       102807
## 4999       102807
## 5000       102807
## 5001       102807
## 5002       102807
## 5003       102807
## 5004       102807
## 5005       102807
## 5006       102807
## 5007       102807
## 5008       102807
## 5009       102807
## 5010       102807
## 5011       102807
## 5012       102807
## 5013       102807
## 5014       102807
## 5015       102807
## 5016       102807
## 5017       102807
## 5018       102807
## 5019       102807
## 5020       102807
## 5021       102807
## 5022       102807
## 5023       102807
## 5024       102807
## 5025       102807
## 5026       102965
## 5027       102965
## 5028       102965
## 5029       102965
## 5030       102965
## 5031       102965
## 5032       102965
## 5033       102965
## 5034       102965
## 5035       102965
## 5036       102965
## 5037       102965
## 5038       102965
## 5039       102965
## 5040       102965
## 5041       102965
## 5042       102965
## 5043       102965
## 5044       102965
## 5045       102965
## 5046       102965
## 5047       102965
## 5048       102965
## 5049       102965
## 5050       102965
## 5051       102965
## 5052       102965
## 5053       102965
## 5054       102965
## 5055       102965
## 5056       102965
## 5057       102965
## 5058       102965
## 5059       102965
## 5060       102965
## 5061       102965
## 5062       102965
## 5063       102965
## 5064       102965
## 5065       102965
## 5066       102965
## 5067       102965
## 5068       102965
## 5069       102965
## 5070       102965
## 5071       102965
## 5072       102965
## 5073       102965
## 5074       102965
## 5075       102965
## 5076       102965
## 5077       102965
## 5078       102965
## 5079       102965
## 5080       102965
## 5081       102965
## 5082       102965
## 5083       102965
## 5084       102965
## 5085       102965
## 5086       102965
## 5087       102965
## 5088       102965
## 5089        10334
## 5090        10334
## 5091        10334
## 5092        10334
## 5093        10334
## 5094        10334
## 5095        10334
## 5096        10334
## 5097        10334
## 5098        10334
## 5099        10334
## 5100        10334
## 5101        10334
## 5102        10334
## 5103        10334
## 5104        10334
## 5105        10334
## 5106        10334
## 5107        10334
## 5108        10334
## 5109        10334
## 5110        10334
## 5111        10334
## 5112        10334
## 5113        10334
## 5114        10334
## 5115        10334
## 5116        10334
## 5117        10334
## 5118        10334
## 5119        10334
## 5120        10334
## 5121        10334
## 5122        10334
## 5123        10334
## 5124        10334
## 5125        10334
## 5126        10334
## 5127        10334
## 5128        10334
## 5129        10334
## 5130        10334
## 5131        10334
## 5132        10334
## 5133        10334
## 5134        10334
## 5135        10334
## 5136        10334
## 5137        10334
## 5138        10334
## 5139        10334
## 5140        10334
## 5141        10334
## 5142        10334
## 5143       103444
## 5144       103444
## 5145       103444
## 5146       103444
## 5147       103444
## 5148       103444
## 5149       103444
## 5150       103444
## 5151       103444
## 5152       103444
## 5153       103444
## 5154       103444
## 5155       103444
## 5156       103444
## 5157       103444
## 5158       103444
## 5159       103444
## 5160       103444
## 5161       103444
## 5162       103444
## 5163       103444
## 5164       103444
## 5165       103444
## 5166       103444
## 5167       103444
## 5168       103444
## 5169       103444
## 5170       103444
## 5171       103444
## 5172       103444
## 5173       103444
## 5174       103444
## 5175       103444
## 5176       103444
## 5177       103444
## 5178       103444
## 5179       103444
## 5180       103444
## 5181       103444
## 5182       103444
## 5183       103444
## 5184       103444
## 5185       103444
## 5186       103444
## 5187       103444
## 5188       103444
## 5189       103444
## 5190       103444
## 5191       103444
## 5192       103444
## 5193       103444
## 5194       103444
## 5195       103444
## 5196       103444
## 5197       103444
## 5198       103444
## 5199       103444
## 5200       103444
## 5201       103444
## 5202       103444
## 5203       103444
## 5204       103444
## 5205       103444
## 5206       103444
## 5207       103444
## 5208       103444
## 5209       103444
## 5210       103444
## 5211       103444
## 5212       103444
## 5213       103444
## 5214       103444
## 5215       103444
## 5216       103444
## 5217       103444
## 5218       103454
## 5219       103454
## 5220       103454
## 5221       103454
## 5222       103454
## 5223       103454
## 5224       103454
## 5225       103454
## 5226       103454
## 5227       103561
## 5228       103561
## 5229       103561
## 5230       103561
## 5231       103561
## 5232       103561
## 5233       103561
## 5234       103561
## 5235       103561
## 5236       103561
## 5237       103561
## 5238       103561
## 5239       103561
## 5240       103561
## 5241       103561
## 5242       103561
## 5243       103561
## 5244       103561
## 5245       103561
## 5246       103561
## 5247       103561
## 5248       103561
## 5249       103561
## 5250       103561
## 5251       103561
## 5252       103561
## 5253       103561
## 5254       103561
## 5255       103561
## 5256       103561
## 5257       103561
## 5258       103561
## 5259       103561
## 5260       103561
## 5261       103561
## 5262       103561
## 5263       103561
## 5264       103561
## 5265       103561
## 5266       103561
## 5267       103561
## 5268       103561
## 5269       103561
## 5270       103561
## 5271       103561
## 5272       103561
## 5273       103561
## 5274       103561
## 5275       103561
## 5276       103561
## 5277       103561
## 5278       103561
## 5279       104202
## 5280       104202
## 5281       104202
## 5282       104202
## 5283       104202
## 5284       104202
## 5285       104202
## 5286       104202
## 5287       104202
## 5288       104202
## 5289       104202
## 5290       104202
## 5291       104202
## 5292       104202
## 5293       104202
## 5294       104202
## 5295       104202
## 5296       104202
## 5297       104202
## 5298       104202
## 5299       104202
## 5300       104202
## 5301       104202
## 5302       104202
## 5303       104202
## 5304       104202
## 5305       104202
## 5306       104202
## 5307       104202
## 5308       104202
## 5309       104202
## 5310       104202
## 5311       104202
## 5312       104202
## 5313       104202
## 5314       104202
## 5315       104202
## 5316       104202
## 5317       104202
## 5318       104202
## 5319       104202
## 5320       104202
## 5321       104202
## 5322       104202
## 5323       104202
## 5324       104202
## 5325       104202
## 5326       104202
## 5327       104202
## 5328       104202
## 5329       104202
## 5330       104202
## 5331       104202
## 5332       104202
## 5333       104202
## 5334       104202
## 5335       104202
## 5336       104202
## 5337       104202
## 5338       104202
## 5339       104202
## 5340       104202
## 5341       104202
## 5342       104202
## 5343       104202
## 5344       104202
## 5345       104202
## 5346       104202
## 5347       104202
## 5348       104202
## 5349       104202
## 5350       104202
## 5351       104202
## 5352       104202
## 5353       104202
## 5354       104202
## 5355       104202
## 5356       104202
## 5357       104202
## 5358       104202
## 5359       104202
## 5360       104202
## 5361       104202
## 5362       104202
## 5363       104202
## 5364       104202
## 5365       104202
## 5366       104202
## 5367       104202
## 5368       104202
## 5369       104202
## 5370       104202
## 5371       104202
## 5372       104202
## 5373       104202
## 5374       104202
## 5375       104202
## 5376       104202
## 5377       104202
## 5378       104202
## 5379       104202
## 5380       104202
## 5381       104202
## 5382       104202
## 5383       104202
## 5384       104202
## 5385       104202
## 5386       104202
## 5387       104202
## 5388       104202
## 5389       104202
## 5390       104202
## 5391       104202
## 5392       104202
## 5393       104202
## 5394       104202
## 5395       104202
## 5396       104202
## 5397       104202
## 5398       104202
## 5399       104202
## 5400       104202
## 5401       104202
## 5402       104202
## 5403       104202
## 5404       104202
## 5405       104202
## 5406       104202
## 5407       104202
## 5408       104202
## 5409       104202
## 5410       104202
## 5411       104202
## 5412       104202
## 5413       104202
## 5414       104202
## 5415       104202
## 5416       104202
## 5417       104202
## 5418       104202
## 5419       104202
## 5420       104202
## 5421       104202
## 5422       104202
## 5423       104202
## 5424       104202
## 5425       104202
## 5426       104202
## 5427       104202
## 5428       104202
## 5429       104202
## 5430       104202
## 5431       104202
## 5432       104202
## 5433       104202
## 5434       104202
## 5435       104202
## 5436       104202
## 5437       104202
## 5438       104202
## 5439       104202
## 5440       104202
## 5441       104202
## 5442       104202
## 5443       104202
## 5444       104202
## 5445       104202
## 5446       104202
## 5447       104202
## 5448       104202
## 5449       104202
## 5450       104202
## 5451       104202
## 5452       104202
## 5453       104202
## 5454       104202
## 5455       104202
## 5456       104202
## 5457       104202
## 5458       104202
## 5459       104202
## 5460       104202
## 5461       104202
## 5462       104202
## 5463       104202
## 5464       104202
## 5465       104202
## 5466       104202
## 5467       104202
## 5468       104202
## 5469       104202
## 5470       104202
## 5471       104202
## 5472       104202
## 5473       104202
## 5474       104202
## 5475       104202
## 5476       104202
## 5477       104202
## 5478       104202
## 5479       104202
## 5480       104202
## 5481       104202
## 5482       104202
## 5483       104202
## 5484       104202
## 5485       104202
## 5486       104202
## 5487       104202
## 5488       104202
## 5489       104202
## 5490       104202
## 5491       104202
## 5492       104202
## 5493       104202
## 5494       104202
## 5495       104202
## 5496       104202
## 5497       104202
## 5498       104202
## 5499       104202
## 5500       104202
## 5501       104202
## 5502       104202
## 5503       104202
## 5504       104202
## 5505       104202
## 5506       104202
## 5507       104202
## 5508       104202
## 5509       104202
## 5510       104202
## 5511       104202
## 5512       104202
## 5513       104202
## 5514       104202
## 5515       104202
## 5516       104202
## 5517       104202
## 5518       104202
## 5519       104202
## 5520       104202
## 5521       104202
## 5522       104202
## 5523       104202
## 5524       104202
## 5525       104202
## 5526       104202
## 5527       104202
## 5528       104202
## 5529       104202
## 5530       104202
## 5531       104202
## 5532       104202
## 5533       104202
## 5534       104202
## 5535       104202
## 5536       104202
## 5537       104202
## 5538       104202
## 5539       104202
## 5540       104202
## 5541       104202
## 5542       104202
## 5543       104202
## 5544       104202
## 5545       104202
## 5546       104202
## 5547       104202
## 5548       104202
## 5549       104202
## 5550       104202
## 5551       104202
## 5552       104202
## 5553       104202
## 5554       104202
## 5555       104202
## 5556       104202
## 5557       104202
## 5558       104202
## 5559       104202
## 5560       104202
## 5561       104202
## 5562       104202
## 5563       104202
## 5564       104202
## 5565       104202
## 5566       104202
## 5567       104202
## 5568       104202
## 5569       104202
## 5570       104202
## 5571       104202
## 5572       104202
## 5573       104202
## 5574       104202
## 5575       104202
## 5576       104202
## 5577       104202
## 5578       104202
## 5579       104202
## 5580       104202
## 5581       104202
## 5582       104202
## 5583       104202
## 5584       104202
## 5585       104202
## 5586       104202
## 5587       104202
## 5588       104202
## 5589       104202
## 5590       104202
## 5591       104202
## 5592       104202
## 5593       104202
## 5594       104202
## 5595       104202
## 5596       104202
## 5597       104202
## 5598       104202
## 5599       104202
## 5600       104202
## 5601       104202
## 5602       104202
## 5603       104202
## 5604       104202
## 5605       104202
## 5606       104202
## 5607       104202
## 5608       104202
## 5609       104202
## 5610       104202
## 5611       104202
## 5612       104202
## 5613       104202
## 5614       104202
## 5615       104202
## 5616       104202
## 5617       104202
## 5618       104202
## 5619       104202
## 5620       104202
## 5621       104202
## 5622       104202
## 5623       104202
## 5624       104202
## 5625       104202
## 5626       104202
## 5627       104202
## 5628       104202
## 5629       104202
## 5630       104202
## 5631       104202
## 5632       104202
## 5633       104202
## 5634       104202
## 5635       104202
## 5636       104202
## 5637       104202
## 5638       104202
## 5639       104202
## 5640       104202
## 5641       104202
## 5642       104202
## 5643       104202
## 5644       104202
## 5645       104202
## 5646       104202
## 5647       104202
## 5648       104202
## 5649       104202
## 5650       104202
## 5651       104202
## 5652       104202
## 5653       104202
## 5654       104202
## 5655       104202
## 5656       104202
## 5657       104202
## 5658       104202
## 5659       104202
## 5660       104202
## 5661       104202
## 5662       104202
## 5663       104202
## 5664       104202
## 5665       104202
## 5666       104202
## 5667       104202
## 5668       104202
## 5669       104202
## 5670       104202
## 5671       104202
## 5672       104202
## 5673       104202
## 5674       104202
## 5675       104202
## 5676       104202
## 5677       104202
## 5678       104202
## 5679       104202
## 5680       104202
## 5681       104202
## 5682       104202
## 5683       104202
## 5684       104202
## 5685       104202
## 5686       104202
## 5687       104202
## 5688       104202
## 5689       104202
## 5690       104202
## 5691       104202
## 5692       104202
## 5693       104202
## 5694       104202
## 5695       104202
## 5696       104202
## 5697       104202
## 5698       104202
## 5699       104202
## 5700       104202
## 5701       104202
## 5702       104202
## 5703       104202
## 5704       104202
## 5705       104202
## 5706       104202
## 5707       104202
## 5708       104202
## 5709       104202
## 5710       104202
## 5711       104202
## 5712       104202
## 5713       104202
## 5714       104202
## 5715       104202
## 5716       104202
## 5717       104202
## 5718       104202
## 5719       104202
## 5720       104202
## 5721       104202
## 5722       104202
## 5723       104202
## 5724       104202
## 5725       104202
## 5726       104202
## 5727       104202
## 5728       104202
## 5729       104202
## 5730       104202
## 5731       104202
## 5732       104202
## 5733       104202
## 5734       104202
## 5735       104202
## 5736       104202
## 5737       104202
## 5738       104202
## 5739       104202
## 5740       104202
## 5741       104202
## 5742       104202
## 5743       104202
## 5744       104202
## 5745       104202
## 5746       104202
## 5747       104202
## 5748       104202
## 5749       104202
## 5750       104202
## 5751       104202
## 5752       104202
## 5753       104202
## 5754       104202
## 5755       104202
## 5756       104202
## 5757       104202
## 5758       104202
## 5759       104202
## 5760       104202
## 5761       104202
## 5762       104202
## 5763       104202
## 5764       104202
## 5765       104202
## 5766       104202
## 5767       104202
## 5768       104202
## 5769       104202
## 5770       104202
## 5771       104202
## 5772       104202
## 5773       104202
## 5774       104202
## 5775       104202
## 5776       104202
## 5777       104202
## 5778       104202
## 5779       104202
## 5780       104202
## 5781       104202
## 5782       104202
## 5783       104202
## 5784       104202
## 5785       104202
## 5786       104202
## 5787       104202
## 5788       104202
## 5789       104202
## 5790       104202
## 5791       104202
## 5792       104202
## 5793       104202
## 5794       104202
## 5795       104202
## 5796       104202
## 5797       104202
## 5798       104202
## 5799       104202
## 5800       104202
## 5801       104202
## 5802       104202
## 5803       104202
## 5804       104202
## 5805       104202
## 5806       104202
## 5807       104202
## 5808       104202
## 5809       104202
## 5810       104202
## 5811       104202
## 5812       104202
## 5813       104202
## 5814       104202
## 5815       104202
## 5816       104202
## 5817       104202
## 5818       104202
## 5819       104202
## 5820       104202
## 5821       104202
## 5822       104202
## 5823       104202
## 5824       104202
## 5825       104202
## 5826       104202
## 5827       104202
## 5828       104202
## 5829       104202
## 5830       104202
## 5831       104202
## 5832       104202
## 5833       104202
## 5834       104202
## 5835       104202
## 5836       104202
## 5837       104202
## 5838       104202
## 5839       104202
## 5840       104202
## 5841       104202
## 5842       104202
## 5843       104202
## 5844       104202
## 5845       104202
## 5846       104202
## 5847       104202
## 5848       104202
## 5849       104202
## 5850       104202
## 5851       104202
## 5852       104202
## 5853       104202
## 5854       104202
## 5855       104202
## 5856       104202
## 5857       104202
## 5858       104202
## 5859       104202
## 5860       104202
## 5861       104202
## 5862       104202
## 5863       104202
## 5864       104202
## 5865       104202
## 5866       104202
## 5867       104202
## 5868       104202
## 5869       104202
## 5870       104202
## 5871       104202
## 5872       104202
## 5873       104202
## 5874       104202
## 5875       104202
## 5876       104202
## 5877       104202
## 5878       104202
## 5879       104202
## 5880       104202
## 5881       104202
## 5882       104202
## 5883       104202
## 5884       104202
## 5885       104202
## 5886       104202
## 5887       104202
## 5888       104202
## 5889       104202
## 5890       104202
## 5891       104202
## 5892       104202
## 5893       104202
## 5894       104202
## 5895       104202
## 5896       104202
## 5897       104202
## 5898       104202
## 5899       104202
## 5900       104202
## 5901       104202
## 5902       104202
## 5903       104202
## 5904       104202
## 5905       104202
## 5906       104202
## 5907       104202
## 5908       104202
## 5909       104202
## 5910       104202
## 5911       104202
## 5912       104202
## 5913       104202
## 5914       104202
## 5915       104202
## 5916       104202
## 5917       104202
## 5918       104202
## 5919       104202
## 5920       104202
## 5921       104202
## 5922       104202
## 5923       104202
## 5924       104202
## 5925       104202
## 5926       104202
## 5927       104202
## 5928       104202
## 5929       104202
## 5930       104202
## 5931       104202
## 5932       104202
## 5933       104202
## 5934       104202
## 5935       104202
## 5936       104202
## 5937       104202
## 5938       104202
## 5939       104202
## 5940       104202
## 5941       104202
## 5942       104202
## 5943       104202
## 5944       104202
## 5945       104202
## 5946       104202
## 5947       104202
## 5948       104202
## 5949       104202
## 5950       104202
## 5951       104202
## 5952       104202
## 5953       104202
## 5954       104202
## 5955       104202
## 5956       104202
## 5957       104202
## 5958       104202
## 5959       104202
## 5960       104202
## 5961       104202
## 5962       104202
## 5963       104202
## 5964       104202
## 5965       104202
## 5966       104202
## 5967       104202
## 5968       104202
## 5969       104202
## 5970       104202
## 5971       104202
## 5972       104202
## 5973       104202
## 5974       104202
## 5975       104202
## 5976       104202
## 5977       104202
## 5978       104202
## 5979       104202
## 5980       104202
## 5981       104202
## 5982       104202
## 5983       104202
## 5984       104202
## 5985       104202
## 5986       104202
## 5987       104202
## 5988       104202
## 5989       104202
## 5990       104202
## 5991       104202
## 5992       104202
## 5993       104202
## 5994       104202
## 5995       104202
## 5996       104202
## 5997       104202
## 5998       104202
## 5999       104202
## 6000       104202
## 6001       104202
## 6002       104202
## 6003       104202
## 6004       104202
## 6005       104202
## 6006       104202
## 6007       104202
## 6008       104202
## 6009       104202
## 6010       104202
## 6011       104202
## 6012       104202
## 6013       104202
## 6014       104202
## 6015       104202
## 6016       104202
## 6017       104202
## 6018       104202
## 6019       104202
## 6020       104202
## 6021       104202
## 6022       104202
## 6023       104202
## 6024       104202
## 6025       104202
## 6026       104202
## 6027       104202
## 6028       104202
## 6029       104202
## 6030       104202
## 6031       104202
## 6032       104202
## 6033       104202
## 6034       104202
## 6035       104202
## 6036       104202
## 6037       104202
## 6038       104202
## 6039       104202
## 6040       104202
## 6041       104202
## 6042       104202
## 6043       104202
## 6044       104202
## 6045       104202
## 6046       104202
## 6047       104202
## 6048       104202
## 6049       104202
## 6050       104202
## 6051       104202
## 6052       104202
## 6053       104202
## 6054       104202
## 6055       104202
## 6056       104202
## 6057       104202
## 6058       104202
## 6059       104202
## 6060       104202
## 6061       104202
## 6062       104202
## 6063       104202
## 6064       104202
## 6065       104202
## 6066       104202
## 6067       104202
## 6068       104202
## 6069       104202
## 6070       104202
## 6071       104202
## 6072       104202
## 6073       104202
## 6074       104202
## 6075       104202
## 6076       104202
## 6077       104202
## 6078       104202
## 6079       104202
## 6080       104202
## 6081       104202
## 6082       104202
## 6083       104202
## 6084       104202
## 6085       104202
## 6086       104202
## 6087       104202
## 6088       104202
## 6089       104202
## 6090       104202
## 6091       104202
## 6092       104202
## 6093       104202
## 6094       104202
## 6095       104202
## 6096       104202
## 6097       104202
## 6098       104202
## 6099       104202
## 6100       104202
## 6101       104202
## 6102       104202
## 6103       104202
## 6104       104202
## 6105       104202
## 6106       104202
## 6107       104202
## 6108       104202
## 6109       104202
## 6110       104202
## 6111       104202
## 6112       104202
## 6113       104202
## 6114       104202
## 6115       104202
## 6116       104202
## 6117       104202
## 6118       104202
## 6119       104202
## 6120       104202
## 6121       104202
## 6122       104202
## 6123       104202
## 6124       104202
## 6125       104202
## 6126       104202
## 6127       104202
## 6128       104202
## 6129       104202
## 6130       104202
## 6131       104202
## 6132       104202
## 6133       104202
## 6134       104202
## 6135       104202
## 6136       104202
## 6137       104202
## 6138       104202
## 6139       104202
## 6140       104202
## 6141       104202
## 6142       104202
## 6143       104202
## 6144       104202
## 6145       104202
## 6146       104202
## 6147       104202
## 6148       104202
## 6149       104202
## 6150       104202
## 6151       104202
## 6152       104202
## 6153       104202
## 6154       104202
## 6155       104202
## 6156       104202
## 6157       104202
## 6158       104202
## 6159       104202
## 6160       104202
## 6161       104202
## 6162       104202
## 6163       104202
## 6164       104202
## 6165       104202
## 6166       104202
## 6167       104202
## 6168       104202
## 6169       104202
## 6170       104202
## 6171       104202
## 6172       104202
## 6173       104202
## 6174       104202
## 6175       104202
## 6176       104202
## 6177       104202
## 6178       104202
## 6179       104202
## 6180       104202
## 6181       104202
## 6182       104202
## 6183       104202
## 6184       104202
## 6185       104202
## 6186       104202
## 6187       104202
## 6188       104202
## 6189       104202
## 6190       104202
## 6191       104202
## 6192       104202
## 6193       104202
## 6194       104202
## 6195       104202
## 6196       104202
## 6197       104202
## 6198       104202
## 6199       104202
## 6200       104202
## 6201       104202
## 6202       104202
## 6203       104202
## 6204       104202
## 6205       104202
## 6206       104202
## 6207       104202
## 6208       104202
## 6209       104202
## 6210       104202
## 6211       104202
## 6212       104202
## 6213       104202
## 6214       104202
## 6215       104202
## 6216       104202
## 6217       104202
## 6218       104202
## 6219       104202
## 6220       104202
## 6221       104202
## 6222       104202
## 6223       104202
## 6224       104202
## 6225       104202
## 6226       104202
## 6227       104202
## 6228       104202
## 6229       104202
## 6230       104202
## 6231       104202
## 6232       104202
## 6233       104202
## 6234       104202
## 6235       104202
## 6236       104202
## 6237       104202
## 6238       104202
## 6239       104202
## 6240       104202
## 6241       104202
## 6242       104202
## 6243       104202
## 6244       104202
## 6245       104202
## 6246       104202
## 6247       104202
## 6248       104202
## 6249       104202
## 6250       104202
## 6251       104202
## 6252       104570
## 6253       104570
## 6254       104570
## 6255       104570
## 6256       104570
## 6257       104570
## 6258       104570
## 6259       104570
## 6260       104570
## 6261       104570
## 6262       104570
## 6263       104570
## 6264       104570
## 6265       104570
## 6266       104570
## 6267       104570
## 6268       104570
## 6269       104570
## 6270       104570
## 6271       104570
## 6272       104570
## 6273       104570
## 6274       104570
## 6275       104570
## 6276       104570
## 6277       104570
## 6278       104570
## 6279       104570
## 6280       104570
## 6281       104594
## 6282       104594
## 6283       104594
## 6284       104594
## 6285       104594
## 6286       104594
## 6287       104594
## 6288       104594
## 6289       104594
## 6290       104594
## 6291       104594
## 6292       104594
## 6293       104594
## 6294       104594
## 6295       104594
## 6296       104594
## 6297       104594
## 6298       104594
## 6299       104594
## 6300       104594
## 6301       104594
## 6302       104594
## 6303       104594
## 6304       104594
## 6305       104594
## 6306       104594
## 6307       104594
## 6308       104594
## 6309       104636
## 6310       104636
## 6311       104636
## 6312       104636
## 6313       104636
## 6314       104636
## 6315       104636
## 6316       104636
## 6317       104636
## 6318       104636
## 6319       104636
## 6320       104636
## 6321       104636
## 6322       104636
## 6323       104636
## 6324       104636
## 6325       104636
## 6326       104636
## 6327       104636
## 6328       104636
## 6329       104636
## 6330       104636
## 6331       104636
## 6332       104636
## 6333       104636
## 6334       104636
## 6335       104636
## 6336       104636
## 6337       104636
## 6338       104669
## 6339       104669
## 6340       104669
## 6341       104669
## 6342       104669
## 6343       104669
## 6344       104669
## 6345       104669
## 6346       104669
## 6347       104669
## 6348       104669
## 6349       104669
## 6350       104669
## 6351       104669
## 6352       104669
## 6353       104669
## 6354       104669
## 6355       104669
## 6356       104669
## 6357       104669
## 6358       104669
## 6359       104669
## 6360       104669
## 6361       104669
## 6362       104669
## 6363       104669
## 6364       104688
## 6365       104688
## 6366       104688
## 6367       104688
## 6368       104688
## 6369       104688
## 6370       104688
## 6371       104688
## 6372       104688
## 6373       104688
## 6374       104688
## 6375       104688
## 6376       104688
## 6377       104688
## 6378       104688
## 6379       104688
## 6380       104688
## 6381       104688
## 6382       104688
## 6383       104688
## 6384       104688
## 6385       104688
## 6386       104688
## 6387       104688
## 6388       104688
## 6389       104688
## 6390       104688
## 6391       104688
## 6392       104688
## 6393       104688
## 6394       104688
## 6395       104688
## 6396       104688
## 6397       104688
## 6398       104688
## 6399       104688
## 6400       104688
## 6401       104688
## 6402       104688
## 6403       104688
## 6404       104688
## 6405       104688
## 6406       104688
## 6407       104688
## 6408       104688
## 6409       104688
## 6410       104688
## 6411       104688
## 6412       104688
## 6413       104688
## 6414       104688
## 6415       104688
## 6416       104688
## 6417       104688
## 6418       104688
## 6419       104688
## 6420       104688
## 6421       104688
## 6422       104688
## 6423       104688
## 6424       104688
## 6425       104688
## 6426       104688
## 6427       104688
## 6428       104688
## 6429       104688
## 6430       104688
## 6431       104688
## 6432       104688
## 6433        10500
## 6434        10500
## 6435        10500
## 6436        10500
## 6437        10500
## 6438        10500
## 6439        10500
## 6440        10500
## 6441        10500
## 6442        10500
## 6443        10500
## 6444        10500
## 6445        10500
## 6446        10500
## 6447        10500
## 6448        10500
## 6449        10500
## 6450        10500
## 6451        10500
## 6452        10500
## 6453        10500
## 6454        10500
## 6455        10500
## 6456        10500
## 6457        10500
## 6458        10500
## 6459        10500
## 6460        10500
## 6461        10500
## 6462        10500
## 6463        10500
## 6464        10500
## 6465        10500
## 6466        10500
## 6467        10500
## 6468        10500
## 6469        10500
## 6470        10500
## 6471        10500
## 6472        10500
## 6473        10500
## 6474        10500
## 6475        10500
## 6476        10500
## 6477        10500
## 6478        10500
## 6479        10500
## 6480        10500
## 6481        10500
## 6482        10500
## 6483        10500
## 6484        10500
## 6485        10500
## 6486        10500
## 6487        10500
## 6488        10500
## 6489        10500
## 6490        10500
## 6491        10500
## 6492        10500
## 6493        10500
## 6494        10500
## 6495        10500
## 6496        10500
## 6497        10500
## 6498        10500
## 6499        10500
## 6500        10500
## 6501        10500
## 6502        10500
## 6503        10500
## 6504        10500
## 6505        10500
## 6506        10500
## 6507        10500
## 6508        10500
## 6509        10500
## 6510        10500
## 6511        10500
## 6512        10500
## 6513        10500
## 6514        10500
## 6515        10500
## 6516        10500
## 6517        10500
## 6518        10500
## 6519        10500
## 6520        10500
## 6521        10500
## 6522        10500
## 6523        10500
## 6524        10500
## 6525        10500
## 6526        10500
## 6527        10500
## 6528        10500
## 6529        10500
## 6530        10500
## 6531        10500
## 6532        10500
## 6533        10500
## 6534        10500
## 6535        10500
## 6536        10500
## 6537        10500
## 6538        10500
## 6539        10500
## 6540        10500
## 6541        10500
## 6542        10500
## 6543        10500
## 6544        10500
## 6545        10500
## 6546        10500
## 6547        10500
## 6548        10500
## 6549        10500
## 6550        10500
## 6551        10500
## 6552        10500
## 6553        10500
## 6554        10500
## 6555        10500
## 6556        10500
## 6557        10500
## 6558        10500
## 6559        10500
## 6560        10500
## 6561        10500
## 6562        10500
## 6563        10500
## 6564        10500
## 6565        10500
## 6566        10500
## 6567        10500
## 6568        10500
## 6569        10500
## 6570        10500
## 6571        10500
## 6572        10500
## 6573        10500
## 6574        10500
## 6575        10500
## 6576        10500
## 6577        10500
## 6578        10500
## 6579        10500
## 6580        10500
## 6581        10500
## 6582        10500
## 6583        10500
## 6584        10500
## 6585        10500
## 6586        10500
## 6587        10500
## 6588        10500
## 6589        10500
## 6590        10500
## 6591        10500
## 6592        10500
## 6593        10500
## 6594        10500
## 6595        10500
## 6596        10500
## 6597        10500
## 6598        10500
## 6599        10500
## 6600        10500
## 6601        10500
## 6602        10500
## 6603        10500
## 6604        10500
## 6605        10500
## 6606        10500
## 6607        10500
## 6608        10500
## 6609        10500
## 6610        10500
## 6611        10500
## 6612        10500
## 6613        10500
## 6614        10500
## 6615        10500
## 6616        10500
## 6617        10500
## 6618        10500
## 6619        10500
## 6620        10500
## 6621        10500
## 6622        10500
## 6623        10500
## 6624        10500
## 6625        10500
## 6626        10500
## 6627        10500
## 6628        10500
## 6629        10500
## 6630        10500
## 6631        10500
## 6632        10500
## 6633        10500
## 6634        10500
## 6635        10500
## 6636        10500
## 6637        10500
## 6638        10500
## 6639        10500
## 6640        10500
## 6641        10500
## 6642        10500
## 6643        10500
## 6644        10500
## 6645        10500
## 6646        10500
## 6647        10500
## 6648        10500
## 6649        10500
## 6650        10500
## 6651        10500
## 6652        10500
## 6653        10500
## 6654        10500
## 6655        10500
## 6656        10500
## 6657        10500
## 6658        10500
## 6659        10500
## 6660        10500
## 6661        10500
## 6662        10500
## 6663        10500
## 6664        10500
## 6665       105251
## 6666       105251
## 6667       105251
## 6668       105251
## 6669       105251
## 6670       105251
## 6671       105251
## 6672       105251
## 6673       105251
## 6674       105251
## 6675       105251
## 6676       105251
## 6677       105251
## 6678       105251
## 6679       105251
## 6680       105251
## 6681       105251
## 6682       105251
## 6683       105251
## 6684       105251
## 6685       105251
## 6686       105251
## 6687       105251
## 6688       105251
## 6689       105251
## 6690       105251
## 6691       105251
## 6692       105251
## 6693       105251
## 6694       105251
## 6695       105251
## 6696       105251
## 6697       105251
## 6698       105251
## 6699       105251
## 6700       105251
## 6701       105251
## 6702       105251
## 6703       105251
## 6704       105251
## 6705       105251
## 6706       105251
## 6707       105251
## 6708       105251
## 6709       105273
## 6710       105273
## 6711       105273
## 6712       105273
## 6713       105273
## 6714       105273
## 6715       105273
## 6716       105273
## 6717       105273
## 6718       105273
## 6719       105273
## 6720       105273
## 6721       105273
## 6722       105273
## 6723       105273
## 6724       105273
## 6725       105273
## 6726       105273
## 6727       105273
## 6728       105273
## 6729       105273
## 6730       105273
## 6731       105273
## 6732       105273
## 6733       105273
## 6734       105273
## 6735       105273
## 6736       105273
## 6737       105273
## 6738       105273
## 6739       105273
## 6740       105273
## 6741       105273
## 6742       105273
## 6743       105273
## 6744       105273
## 6745       105273
## 6746       105692
## 6747       105692
## 6748       105692
## 6749       105692
## 6750       105692
## 6751       105692
## 6752       105692
## 6753       105692
## 6754       105692
## 6755       105692
## 6756       105692
## 6757       105692
## 6758       105692
## 6759       105692
## 6760       105692
## 6761       105692
## 6762       105692
## 6763       105692
## 6764       105692
## 6765       105692
## 6766       105692
## 6767       105692
## 6768       105692
## 6769       105692
## 6770       105692
## 6771        10632
## 6772        10632
## 6773        10632
## 6774        10632
## 6775        10632
## 6776        10632
## 6777        10632
## 6778        10632
## 6779        10632
## 6780        10632
## 6781        10632
## 6782        10632
## 6783        10632
## 6784        10632
## 6785        10632
## 6786        10632
## 6787        10632
## 6788        10632
## 6789        10632
## 6790        10632
## 6791        10632
## 6792        10632
## 6793        10632
## 6794        10632
## 6795        10632
## 6796        10632
## 6797        10632
## 6798        10632
## 6799        10632
## 6800        10632
## 6801        10632
## 6802        10632
## 6803        10632
## 6804        10632
## 6805        10632
## 6806        10632
## 6807        10632
## 6808        10632
## 6809        10632
## 6810        10632
## 6811        10632
## 6812        10632
## 6813        10632
## 6814        10632
## 6815        10632
## 6816        10632
## 6817        10632
## 6818        10632
## 6819        10632
## 6820        10632
## 6821        10632
## 6822        10632
## 6823        10632
## 6824        10632
## 6825        10632
## 6826        10632
## 6827        10632
## 6828        10632
## 6829        10632
## 6830        10632
## 6831        10632
## 6832        10632
## 6833        10632
## 6834        10632
## 6835        10632
## 6836        10632
## 6837        10632
## 6838        10632
## 6839        10632
## 6840        10632
## 6841        10632
## 6842        10632
## 6843        10632
## 6844        10632
## 6845        10632
## 6846        10632
## 6847        10632
## 6848        10632
## 6849        10632
## 6850        10632
## 6851        10632
## 6852        10632
## 6853        10632
## 6854        10632
## 6855        10632
## 6856        10632
## 6857        10632
## 6858        10632
## 6859        10632
## 6860        10632
## 6861        10632
## 6862        10632
## 6863        10632
## 6864        10632
## 6865       106725
## 6866       106725
## 6867       106725
## 6868       106725
## 6869       106725
## 6870       106725
## 6871       106725
## 6872       106725
## 6873       106725
## 6874       106725
## 6875       106725
## 6876       106725
## 6877       106725
## 6878       106725
## 6879       106725
## 6880       106725
## 6881       106725
## 6882       106725
## 6883       106725
## 6884       106725
## 6885       106725
## 6886       106725
## 6887       106725
## 6888       106725
## 6889       106725
## 6890       106725
## 6891       106832
## 6892       106832
## 6893       106832
## 6894       106832
## 6895       106832
## 6896       106832
## 6897       106832
## 6898       106832
## 6899       106832
## 6900       106832
## 6901       106832
## 6902       106832
## 6903       106832
## 6904       106832
## 6905       106832
## 6906       106832
## 6907       106832
## 6908       106832
## 6909       106832
## 6910       106832
## 6911       106832
## 6912       106832
## 6913       106832
## 6914       106832
## 6915       106832
## 6916       106832
## 6917       106832
## 6918       106832
## 6919       106832
## 6920       106832
## 6921       106832
## 6922       106832
## 6923       106832
## 6924       106832
## 6925       106832
## 6926       106832
## 6927       106832
## 6928       106832
## 6929       106832
## 6930       106832
## 6931       106832
## 6932       106832
## 6933       106832
## 6934       106832
## 6935       106832
## 6936       106832
## 6937       106832
## 6938       106832
## 6939       106832
## 6940       106832
## 6941       106832
## 6942       106832
## 6943       106832
## 6944       106832
## 6945       106832
## 6946       106832
## 6947       106832
## 6948       106832
## 6949       106832
## 6950       106832
## 6951       106832
## 6952       106832
## 6953       106832
## 6954       106832
## 6955       106832
## 6956       106832
## 6957       106832
## 6958       106832
## 6959       106832
## 6960       106832
## 6961       106832
## 6962       106832
## 6963       106832
## 6964       106832
## 6965       106832
## 6966       106832
## 6967       106832
## 6968       106832
## 6969       106832
## 6970       106832
## 6971       106832
## 6972       106832
## 6973       106832
## 6974       106832
## 6975       106832
## 6976       106832
## 6977       106832
## 6978       106832
## 6979       106832
## 6980       106832
## 6981       106832
## 6982       106832
## 6983       106832
## 6984       106832
## 6985       106832
## 6986       106832
## 6987       106832
## 6988       106832
## 6989       106832
## 6990       106832
## 6991       106832
## 6992       106832
## 6993       106832
## 6994       106832
## 6995       106832
## 6996       106832
## 6997       106832
## 6998       106832
## 6999       106832
## 7000       106832
## 7001       106832
## 7002       106832
## 7003       106832
## 7004       106832
## 7005       106832
## 7006       106832
## 7007       106832
## 7008       106832
## 7009       106832
## 7010       106832
## 7011       106832
## 7012       106832
## 7013       106832
## 7014       106832
## 7015       106832
## 7016       106832
## 7017       106832
## 7018       106832
## 7019       106832
## 7020       106832
## 7021       106832
## 7022       106832
## 7023       106832
## 7024       106832
## 7025       106832
## 7026       106832
## 7027       106832
## 7028       106832
## 7029       106832
## 7030       106832
## 7031       106832
## 7032       106832
## 7033       106832
## 7034       106832
## 7035       106832
## 7036       106832
## 7037       106832
## 7038       106832
## 7039       106832
## 7040       106832
## 7041       106832
## 7042       106832
## 7043       106832
## 7044       106832
## 7045       106832
## 7046       106832
## 7047       106832
## 7048       106832
## 7049       106832
## 7050       106832
## 7051       106832
## 7052       106832
## 7053       106832
## 7054       106832
## 7055       106832
## 7056       106832
## 7057       106832
## 7058       106832
## 7059       106832
## 7060       106832
## 7061       106832
## 7062       106832
## 7063       106932
## 7064       106932
## 7065       106932
## 7066       106932
## 7067       106932
## 7068       106932
## 7069       106932
## 7070       106932
## 7071       106932
## 7072       106932
## 7073       106932
## 7074       106932
## 7075       106932
## 7076       106932
## 7077       106932
## 7078       106932
## 7079       106932
## 7080       106932
## 7081       106932
## 7082       106932
## 7083       106932
## 7084       106932
## 7085       106932
## 7086       106932
## 7087       106932
## 7088       106932
## 7089         1070
## 7090         1070
## 7091         1070
## 7092       107157
## 7093       107157
## 7094       107157
## 7095       107157
## 7096       107157
## 7097       107157
## 7098       107157
## 7099       107157
## 7100       107157
## 7101       107157
## 7102       107157
## 7103       107157
## 7104       107157
## 7105       107157
## 7106       107157
## 7107       107157
## 7108       107157
## 7109       107157
## 7110       107157
## 7111       107157
## 7112       107157
## 7113         1073
## 7114         1073
## 7115       107580
## 7116       107580
## 7117       107580
## 7118       107580
## 7119       107580
## 7120       107580
## 7121       107580
## 7122       107580
## 7123       107580
## 7124       107580
## 7125       107580
## 7126       107580
## 7127       107580
## 7128       107580
## 7129       107580
## 7130       107580
## 7131       107580
## 7132       107580
## 7133       107580
## 7134       107580
## 7135       107580
## 7136       107580
## 7137       107580
## 7138       107580
## 7139       107580
## 7140       107580
## 7141       107580
## 7142       107580
## 7143       107580
## 7144       107580
## 7145       107582
## 7146       107582
## 7147       107582
## 7148       107582
## 7149       107582
## 7150       107582
## 7151       107582
## 7152       107582
## 7153       107582
## 7154       107582
## 7155       107582
## 7156       107582
## 7157       107582
## 7158       107582
## 7159       107582
## 7160       107582
## 7161       107582
## 7162       107582
## 7163       107582
## 7164       107582
## 7165       107582
## 7166       107582
## 7167       107582
## 7168       107582
## 7169       107582
## 7170       107582
## 7171       107582
## 7172       107582
## 7173       107727
## 7174       107727
## 7175       107727
## 7176       107727
## 7177       107727
## 7178       107727
## 7179       107727
## 7180       107727
## 7181       107727
## 7182       107727
## 7183       107727
## 7184       107727
## 7185       107727
## 7186       107727
## 7187       107727
## 7188       107727
## 7189       107727
## 7190       107727
## 7191       107727
## 7192       107727
## 7193       107727
## 7194       107727
## 7195       107727
## 7196       107727
## 7197       107727
## 7198       107727
## 7199       107727
## 7200       107727
## 7201       107727
## 7202       107727
## 7203       107727
## 7204       107727
## 7205       107727
## 7206       107727
## 7207       107727
## 7208       107727
## 7209       107727
## 7210       107727
## 7211       107727
## 7212       107727
## 7213       107727
## 7214       107727
## 7215       107727
## 7216       107727
## 7217       107727
## 7218       107727
## 7219       107727
## 7220       107727
## 7221       107727
## 7222       107727
## 7223       107727
## 7224       107727
## 7225       107727
## 7226       107727
## 7227       107727
## 7228       107727
## 7229       107727
## 7230       107727
## 7231       107727
## 7232       107727
## 7233       107727
## 7234       107727
## 7235       107727
## 7236       107727
## 7237       107727
## 7238       107727
## 7239       107727
## 7240       107727
## 7241       107727
## 7242       107727
## 7243       107727
## 7244       107727
## 7245       107727
## 7246       107727
## 7247       107727
## 7248       107727
## 7249       107727
## 7250       107727
## 7251       107727
## 7252       107727
## 7253       107727
## 7254       107727
## 7255       107727
## 7256       107727
## 7257       107727
## 7258       107727
## 7259       107727
## 7260       107727
## 7261       107727
## 7262       107727
## 7263       107727
## 7264       107727
## 7265       107727
## 7266       107727
## 7267       107727
## 7268       107727
## 7269       107727
## 7270       107727
## 7271       107727
## 7272       107727
## 7273       107727
## 7274       107727
## 7275       107727
## 7276       107727
## 7277       107727
## 7278       107727
## 7279       107727
## 7280       107727
## 7281       107727
## 7282       107727
## 7283       107727
## 7284       107727
## 7285       107727
## 7286       107727
## 7287       107727
## 7288       107727
## 7289       107727
## 7290       107727
## 7291       107727
## 7292       107727
## 7293       107727
## 7294       107727
## 7295       107727
## 7296       107727
## 7297       107727
## 7298       107727
## 7299       107727
## 7300       107727
## 7301       107727
## 7302       107727
## 7303       107727
## 7304       107727
## 7305       107727
## 7306       107727
## 7307       107727
## 7308       107727
## 7309       107727
## 7310       107727
## 7311       107727
## 7312       107727
## 7313       107727
## 7314       107727
## 7315       107727
## 7316       107727
## 7317       107727
## 7318       107727
## 7319       107727
## 7320       107727
## 7321       107727
## 7322       107727
## 7323       107727
## 7324       107727
## 7325       107727
## 7326       107727
## 7327       107727
## 7328       107727
## 7329       107727
## 7330       107727
## 7331       107727
## 7332       107727
## 7333       107727
## 7334       107727
## 7335       107727
## 7336       107727
## 7337       107727
## 7338       107727
## 7339       107727
## 7340       107727
## 7341       107727
## 7342       107727
## 7343       107727
## 7344       107727
## 7345       107727
## 7346       107727
## 7347       107727
## 7348       107727
## 7349       107727
## 7350       107727
## 7351       107727
## 7352       107727
## 7353       107727
## 7354       107727
## 7355       107727
## 7356       107727
## 7357       107727
## 7358       107727
## 7359       107727
## 7360       107727
## 7361       107727
## 7362       107727
## 7363       107727
## 7364       107727
## 7365       107727
## 7366       107727
## 7367       107727
## 7368       107727
## 7369       107727
## 7370       107727
## 7371       107727
## 7372       107727
## 7373       107727
## 7374       107727
## 7375       107727
## 7376       107727
## 7377       107727
## 7378       107727
## 7379       107727
## 7380       107727
## 7381       107727
## 7382       107727
## 7383       107727
## 7384       107727
## 7385       107727
## 7386       107727
## 7387       107727
## 7388       107727
## 7389       107727
## 7390       107727
## 7391       107727
## 7392       107727
## 7393       107727
## 7394       107727
## 7395       107727
## 7396       107727
## 7397       107727
## 7398       107727
## 7399       107727
## 7400       107727
## 7401       107727
## 7402       107727
## 7403       107727
## 7404       107727
## 7405       107727
## 7406       107727
## 7407       107727
## 7408       107727
## 7409       107727
## 7410       107727
## 7411       107727
## 7412       107727
## 7413       107727
## 7414       107727
## 7415       107727
## 7416       107727
## 7417       107727
## 7418       107727
## 7419       107727
## 7420       107727
## 7421       107727
## 7422       107727
## 7423       107727
## 7424       107727
## 7425       107727
## 7426       107727
## 7427       107727
## 7428         1078
## 7429         1078
## 7430         1078
## 7431         1078
## 7432         1078
## 7433         1078
## 7434         1078
## 7435         1078
## 7436         1078
## 7437         1078
## 7438         1078
## 7439         1078
## 7440         1078
## 7441         1078
## 7442         1078
## 7443         1078
## 7444         1078
## 7445         1078
## 7446         1078
## 7447         1078
## 7448         1078
## 7449         1078
## 7450         1078
## 7451         1078
## 7452         1078
## 7453         1078
## 7454         1078
## 7455         1078
## 7456         1078
## 7457         1078
## 7458         1078
## 7459         1078
## 7460         1078
## 7461         1078
## 7462         1078
## 7463         1078
## 7464         1078
## 7465         1078
## 7466         1078
## 7467         1078
## 7468         1078
## 7469         1078
## 7470         1078
## 7471         1078
## 7472         1078
## 7473         1078
## 7474         1078
## 7475         1078
## 7476         1078
## 7477         1078
## 7478         1078
## 7479         1078
## 7480         1078
## 7481         1078
## 7482         1078
## 7483         1078
## 7484         1078
## 7485         1078
## 7486         1078
## 7487         1078
## 7488         1078
## 7489         1078
## 7490         1078
## 7491         1078
## 7492         1078
## 7493         1078
## 7494         1078
## 7495         1078
## 7496         1078
## 7497         1078
## 7498         1078
## 7499         1078
## 7500         1078
## 7501         1078
## 7502         1078
## 7503         1078
## 7504         1078
## 7505         1078
## 7506         1078
## 7507         1078
## 7508         1078
## 7509         1078
## 7510         1078
## 7511         1078
## 7512         1078
## 7513         1078
## 7514         1078
## 7515         1078
## 7516         1078
## 7517         1078
## 7518         1078
## 7519         1078
## 7520         1078
## 7521         1078
## 7522         1078
## 7523         1078
## 7524         1078
## 7525         1078
## 7526         1078
## 7527         1078
## 7528         1078
## 7529         1078
## 7530         1078
## 7531         1078
## 7532         1078
## 7533         1078
## 7534         1078
## 7535         1078
## 7536         1078
## 7537         1078
## 7538         1078
## 7539         1078
## 7540         1078
## 7541         1078
## 7542         1078
## 7543         1078
## 7544         1078
## 7545         1078
## 7546         1078
## 7547         1078
## 7548         1078
## 7549         1078
## 7550         1078
## 7551         1078
## 7552         1078
## 7553         1078
## 7554         1078
## 7555         1078
## 7556         1078
## 7557         1078
## 7558         1078
## 7559         1078
## 7560         1078
## 7561         1078
## 7562         1078
## 7563         1078
## 7564         1078
## 7565         1078
## 7566         1078
## 7567         1078
## 7568         1078
## 7569         1078
## 7570         1078
## 7571         1078
## 7572         1078
## 7573         1078
## 7574         1078
## 7575         1078
## 7576         1078
## 7577         1078
## 7578         1078
## 7579         1078
## 7580         1078
## 7581         1078
## 7582         1078
## 7583         1078
## 7584         1078
## 7585         1078
## 7586         1078
## 7587         1078
## 7588         1078
## 7589         1078
## 7590         1078
## 7591         1078
## 7592         1078
## 7593         1078
## 7594         1078
## 7595         1078
## 7596         1078
## 7597         1078
## 7598         1078
## 7599         1078
## 7600         1078
## 7601         1078
## 7602         1078
## 7603         1078
## 7604         1078
## 7605         1078
## 7606         1078
## 7607         1078
## 7608         1078
## 7609         1078
## 7610         1078
## 7611         1078
## 7612         1078
## 7613         1078
## 7614         1078
## 7615         1078
## 7616         1078
## 7617         1078
## 7618         1078
## 7619         1078
## 7620         1078
## 7621         1078
## 7622         1078
## 7623         1078
## 7624         1078
## 7625         1078
## 7626         1078
## 7627         1078
## 7628         1078
## 7629         1078
## 7630         1078
## 7631         1078
## 7632         1078
## 7633         1078
## 7634         1078
## 7635         1078
## 7636         1078
## 7637         1078
## 7638         1078
## 7639         1078
## 7640         1078
## 7641         1078
## 7642         1078
## 7643         1078
## 7644         1078
## 7645         1078
## 7646         1078
## 7647         1078
## 7648         1078
## 7649         1078
## 7650         1078
## 7651         1078
## 7652         1078
## 7653         1078
## 7654         1078
## 7655         1078
## 7656         1078
## 7657         1078
## 7658         1078
## 7659         1078
## 7660         1078
## 7661         1078
## 7662         1078
## 7663         1078
## 7664         1078
## 7665         1078
## 7666         1078
## 7667         1078
## 7668         1078
## 7669         1078
## 7670         1078
## 7671         1078
## 7672         1078
## 7673         1078
## 7674         1078
## 7675         1078
## 7676         1078
## 7677         1078
## 7678         1078
## 7679         1078
## 7680         1078
## 7681         1078
## 7682         1078
## 7683         1078
## 7684         1078
## 7685         1078
## 7686         1078
## 7687         1078
## 7688         1078
## 7689         1078
## 7690         1078
## 7691         1078
## 7692         1078
## 7693         1078
## 7694         1078
## 7695         1078
## 7696         1078
## 7697         1078
## 7698         1078
## 7699         1078
## 7700         1078
## 7701         1078
## 7702         1078
## 7703         1078
## 7704         1078
## 7705         1078
## 7706         1078
## 7707         1078
## 7708         1078
## 7709         1078
## 7710         1078
## 7711         1078
## 7712         1078
## 7713         1078
## 7714         1078
## 7715         1078
## 7716         1078
## 7717         1078
## 7718         1078
## 7719         1078
## 7720         1078
## 7721         1078
## 7722         1078
## 7723         1078
## 7724         1078
## 7725         1078
## 7726         1078
## 7727         1078
## 7728         1078
## 7729         1078
## 7730         1078
## 7731         1078
## 7732         1078
## 7733         1078
## 7734         1078
## 7735         1078
## 7736         1078
## 7737         1078
## 7738         1078
## 7739         1078
## 7740         1078
## 7741         1078
## 7742         1078
## 7743         1078
## 7744         1078
## 7745         1078
## 7746         1078
## 7747         1078
## 7748         1078
## 7749         1078
## 7750         1078
## 7751         1078
## 7752         1078
## 7753         1078
## 7754         1078
## 7755         1078
## 7756         1078
## 7757         1078
## 7758         1078
## 7759         1078
## 7760         1078
## 7761         1078
## 7762         1078
## 7763         1078
## 7764         1078
## 7765         1078
## 7766         1078
## 7767         1078
## 7768         1078
## 7769         1078
## 7770         1078
## 7771         1078
## 7772         1078
## 7773         1078
## 7774         1078
## 7775         1078
## 7776         1078
## 7777         1078
## 7778         1078
## 7779         1078
## 7780         1078
## 7781         1078
## 7782         1078
## 7783         1078
## 7784         1078
## 7785         1078
## 7786         1078
## 7787         1078
## 7788         1078
## 7789         1078
## 7790         1078
## 7791         1078
## 7792         1078
## 7793         1078
## 7794         1078
## 7795         1078
## 7796         1078
## 7797         1078
## 7798         1078
## 7799         1078
## 7800         1078
## 7801         1078
## 7802         1078
## 7803         1078
## 7804         1078
## 7805         1078
## 7806         1078
## 7807         1078
## 7808         1078
## 7809         1078
## 7810         1078
## 7811         1078
## 7812         1078
## 7813         1078
## 7814         1078
## 7815         1078
## 7816         1078
## 7817         1078
## 7818         1078
## 7819         1078
## 7820         1078
## 7821         1078
## 7822         1078
## 7823         1078
## 7824         1078
## 7825         1078
## 7826         1078
## 7827         1078
## 7828         1078
## 7829         1078
## 7830         1078
## 7831         1078
## 7832         1078
## 7833         1078
## 7834         1078
## 7835         1078
## 7836         1078
## 7837         1078
## 7838         1078
## 7839         1078
## 7840         1078
## 7841         1078
## 7842         1078
## 7843         1078
## 7844         1078
## 7845         1078
## 7846         1078
## 7847         1078
## 7848         1078
## 7849         1078
## 7850         1078
## 7851         1078
## 7852         1078
## 7853         1078
## 7854         1078
## 7855         1078
## 7856         1078
## 7857         1078
## 7858         1078
## 7859         1078
## 7860         1078
## 7861         1078
## 7862         1078
## 7863         1078
## 7864         1078
## 7865         1078
## 7866         1078
## 7867         1078
## 7868         1078
## 7869         1078
## 7870         1078
## 7871         1078
## 7872         1078
## 7873         1078
## 7874         1078
## 7875         1078
## 7876         1078
## 7877         1078
## 7878         1078
## 7879         1078
## 7880         1078
## 7881         1078
## 7882         1078
## 7883         1078
## 7884         1078
## 7885         1078
## 7886         1078
## 7887         1078
## 7888         1078
## 7889         1078
## 7890         1078
## 7891         1078
## 7892         1078
## 7893         1078
## 7894         1078
## 7895         1078
## 7896         1078
## 7897         1078
## 7898         1078
## 7899         1078
## 7900         1078
## 7901         1078
## 7902         1078
## 7903         1078
## 7904         1078
## 7905         1078
## 7906         1078
## 7907         1078
## 7908         1078
## 7909         1078
## 7910         1078
## 7911         1078
## 7912         1078
## 7913         1078
## 7914         1078
## 7915         1078
## 7916         1078
## 7917         1078
## 7918         1078
## 7919         1078
## 7920         1078
## 7921         1078
## 7922         1078
## 7923         1078
## 7924         1078
## 7925         1078
## 7926         1078
## 7927         1078
## 7928         1078
## 7929         1078
## 7930         1078
## 7931         1078
## 7932         1078
## 7933         1078
## 7934         1078
## 7935         1078
## 7936         1078
## 7937         1078
## 7938         1078
## 7939         1078
## 7940         1078
## 7941         1078
## 7942         1078
## 7943         1078
## 7944         1078
## 7945         1078
## 7946         1078
## 7947         1078
## 7948         1078
## 7949         1078
## 7950         1078
## 7951         1078
## 7952         1078
## 7953         1078
## 7954         1078
## 7955         1078
## 7956         1078
## 7957         1078
## 7958         1078
## 7959         1078
## 7960         1078
## 7961         1078
## 7962         1078
## 7963         1078
## 7964         1078
## 7965         1078
## 7966         1078
## 7967         1078
## 7968         1078
## 7969         1078
## 7970         1078
## 7971         1078
## 7972         1078
## 7973         1078
## 7974         1078
## 7975         1078
## 7976         1078
## 7977         1078
## 7978         1078
## 7979         1078
## 7980         1078
## 7981         1078
## 7982         1078
## 7983         1078
## 7984         1078
## 7985         1078
## 7986         1078
## 7987         1078
## 7988         1078
## 7989         1078
## 7990         1078
## 7991         1078
## 7992         1078
## 7993         1078
## 7994         1078
## 7995         1078
## 7996         1078
## 7997         1078
## 7998         1078
## 7999         1078
## 8000         1078
## 8001         1078
## 8002         1078
## 8003         1078
## 8004         1078
## 8005         1078
## 8006         1078
## 8007         1078
## 8008         1078
## 8009         1078
## 8010         1078
## 8011         1078
## 8012         1078
## 8013         1078
## 8014         1078
## 8015         1078
## 8016         1078
## 8017         1078
## 8018         1078
## 8019         1078
## 8020         1078
## 8021         1078
## 8022         1078
## 8023         1078
## 8024         1078
## 8025         1078
## 8026         1078
## 8027         1078
## 8028         1078
## 8029         1078
## 8030         1078
## 8031         1078
## 8032         1078
## 8033         1078
## 8034         1078
## 8035         1078
## 8036         1078
## 8037         1078
## 8038         1078
## 8039         1078
## 8040         1078
## 8041         1078
## 8042         1078
## 8043         1078
## 8044         1078
## 8045         1078
## 8046         1078
## 8047         1078
## 8048         1078
## 8049         1078
## 8050         1078
## 8051         1078
## 8052         1078
## 8053         1078
## 8054         1078
## 8055         1078
## 8056         1078
## 8057         1078
## 8058         1078
## 8059         1078
## 8060         1078
## 8061         1078
## 8062         1078
## 8063         1078
## 8064         1078
## 8065         1078
## 8066         1078
## 8067         1078
## 8068         1078
## 8069         1078
## 8070         1078
## 8071         1078
## 8072         1078
## 8073         1078
## 8074         1078
## 8075         1078
## 8076         1078
## 8077         1078
## 8078         1078
## 8079         1078
## 8080         1078
## 8081         1078
## 8082         1078
## 8083         1078
## 8084         1078
## 8085         1078
## 8086         1078
## 8087         1078
## 8088         1078
## 8089         1078
## 8090         1078
## 8091         1078
## 8092         1078
## 8093         1078
## 8094         1078
## 8095         1078
## 8096         1078
## 8097         1078
## 8098         1078
## 8099         1078
## 8100         1078
## 8101         1078
## 8102         1078
## 8103         1078
## 8104         1078
## 8105         1078
## 8106         1078
## 8107         1078
## 8108         1078
## 8109         1078
## 8110         1078
## 8111         1078
## 8112         1078
## 8113         1078
## 8114         1078
## 8115         1078
## 8116         1078
## 8117         1078
## 8118         1078
## 8119         1078
## 8120         1078
## 8121         1078
## 8122         1078
## 8123         1078
## 8124         1078
## 8125         1078
## 8126         1078
## 8127         1078
## 8128         1078
## 8129         1078
## 8130         1078
## 8131         1078
## 8132         1078
## 8133         1078
## 8134         1078
## 8135         1078
## 8136         1078
## 8137         1078
## 8138         1078
## 8139         1078
## 8140         1078
## 8141         1078
## 8142         1078
## 8143         1078
## 8144         1078
## 8145         1078
## 8146         1078
## 8147         1078
## 8148         1078
## 8149         1078
## 8150         1078
## 8151         1078
## 8152         1078
## 8153         1078
## 8154         1078
## 8155         1078
## 8156         1078
## 8157         1078
## 8158         1078
## 8159         1078
## 8160         1078
## 8161         1078
## 8162         1078
## 8163         1078
## 8164         1078
## 8165         1078
## 8166         1078
## 8167         1078
## 8168         1078
## 8169         1078
## 8170         1078
## 8171         1078
## 8172         1078
## 8173         1078
## 8174         1078
## 8175         1078
## 8176         1078
## 8177         1078
## 8178         1078
## 8179         1078
## 8180         1078
## 8181         1078
## 8182         1078
## 8183         1078
## 8184         1078
## 8185         1078
## 8186         1078
## 8187         1078
## 8188         1078
## 8189         1078
## 8190         1078
## 8191         1078
## 8192         1078
## 8193         1078
## 8194         1078
## 8195         1078
## 8196         1078
## 8197         1078
## 8198         1078
## 8199         1078
## 8200         1078
## 8201         1078
## 8202         1078
## 8203         1078
## 8204         1078
## 8205         1078
## 8206         1078
## 8207         1078
## 8208         1078
## 8209         1078
## 8210         1078
## 8211         1078
## 8212         1078
## 8213         1078
## 8214         1078
## 8215         1078
## 8216         1078
## 8217         1078
## 8218         1078
## 8219         1078
## 8220         1078
## 8221         1078
## 8222         1078
## 8223         1078
## 8224         1078
## 8225         1078
## 8226         1078
## 8227         1078
## 8228         1078
## 8229         1078
## 8230         1078
## 8231         1078
## 8232         1078
## 8233         1078
## 8234         1078
## 8235         1078
## 8236         1078
## 8237         1078
## 8238         1078
## 8239         1078
## 8240         1078
## 8241         1078
## 8242         1078
## 8243         1078
## 8244         1078
## 8245         1078
## 8246         1078
## 8247         1078
## 8248         1078
## 8249         1078
## 8250         1078
## 8251         1078
## 8252         1078
## 8253         1078
## 8254         1078
## 8255         1078
## 8256         1078
## 8257         1078
## 8258         1078
## 8259         1078
## 8260         1078
## 8261         1078
## 8262         1078
## 8263         1078
## 8264         1078
## 8265         1078
## 8266         1078
## 8267         1078
## 8268         1078
## 8269         1078
## 8270         1078
## 8271         1078
## 8272         1078
## 8273         1078
## 8274         1078
## 8275         1078
## 8276         1078
## 8277         1078
## 8278         1078
## 8279         1078
## 8280         1078
## 8281         1078
## 8282         1078
## 8283         1078
## 8284         1078
## 8285         1078
## 8286         1078
## 8287         1078
## 8288         1078
## 8289         1078
## 8290         1078
## 8291         1078
## 8292         1078
## 8293         1078
## 8294         1078
## 8295         1078
## 8296         1078
## 8297         1078
## 8298         1078
## 8299         1078
## 8300         1078
## 8301         1078
## 8302         1078
## 8303         1078
## 8304         1078
## 8305         1078
## 8306         1078
## 8307         1078
## 8308         1078
## 8309         1078
## 8310         1078
## 8311         1078
## 8312         1078
## 8313         1078
## 8314         1078
## 8315         1078
## 8316         1078
## 8317         1078
## 8318         1078
## 8319         1078
## 8320         1078
## 8321         1078
## 8322         1078
## 8323         1078
## 8324         1078
## 8325         1078
## 8326         1078
## 8327         1078
## 8328         1078
## 8329         1078
## 8330         1078
## 8331         1078
## 8332         1078
## 8333         1078
## 8334         1078
## 8335         1078
## 8336         1078
## 8337         1078
## 8338         1078
## 8339         1078
## 8340         1078
## 8341         1078
## 8342         1078
## 8343         1078
## 8344         1078
## 8345         1078
## 8346         1078
## 8347         1078
## 8348         1078
## 8349         1078
## 8350         1078
## 8351         1078
## 8352         1078
## 8353         1078
## 8354         1078
## 8355         1078
## 8356         1078
## 8357         1078
## 8358         1078
## 8359         1078
## 8360         1078
## 8361         1078
## 8362         1078
## 8363         1078
## 8364         1078
## 8365         1078
## 8366         1078
## 8367         1078
## 8368         1078
## 8369         1078
## 8370         1078
## 8371         1078
## 8372         1078
## 8373         1078
## 8374         1078
## 8375         1078
## 8376         1078
## 8377         1078
## 8378         1078
## 8379         1078
## 8380         1078
## 8381         1078
## 8382         1078
## 8383         1078
## 8384         1078
## 8385         1078
## 8386         1078
## 8387         1078
## 8388         1078
## 8389         1078
## 8390         1078
## 8391         1078
## 8392         1078
## 8393         1078
## 8394         1078
## 8395         1078
## 8396         1078
## 8397         1078
## 8398         1078
## 8399         1078
## 8400         1078
## 8401         1078
## 8402         1078
## 8403         1078
## 8404         1078
## 8405         1078
## 8406         1078
## 8407         1078
## 8408         1078
## 8409         1078
## 8410         1078
## 8411         1078
## 8412         1078
## 8413         1078
## 8414         1078
## 8415         1078
## 8416         1078
## 8417         1078
## 8418         1078
## 8419         1078
## 8420         1078
## 8421         1078
## 8422         1078
## 8423         1078
## 8424         1078
## 8425         1078
## 8426         1078
## 8427         1078
## 8428         1078
## 8429         1078
## 8430         1078
## 8431         1078
## 8432         1078
## 8433         1078
## 8434         1078
## 8435         1078
## 8436         1078
## 8437         1078
## 8438         1078
## 8439         1078
## 8440         1078
## 8441         1078
## 8442         1078
## 8443         1078
## 8444         1078
## 8445         1078
## 8446         1078
## 8447         1078
## 8448         1078
## 8449         1078
## 8450         1078
## 8451         1078
## 8452         1078
## 8453         1078
## 8454         1078
## 8455         1078
## 8456         1078
## 8457         1078
## 8458         1078
## 8459         1078
## 8460         1078
## 8461         1078
## 8462         1078
## 8463         1078
## 8464         1078
## 8465         1078
## 8466         1078
## 8467         1078
## 8468         1078
## 8469         1078
## 8470         1078
## 8471         1078
## 8472         1078
## 8473         1078
## 8474         1078
## 8475         1078
## 8476         1078
## 8477         1078
## 8478         1078
## 8479         1078
## 8480         1078
## 8481         1078
## 8482         1078
## 8483         1078
## 8484         1078
## 8485         1078
## 8486         1078
## 8487         1078
## 8488         1078
## 8489         1078
## 8490         1078
## 8491         1078
## 8492         1078
## 8493         1078
## 8494         1078
## 8495         1078
## 8496         1078
## 8497         1078
## 8498         1078
## 8499         1078
## 8500         1078
## 8501         1078
## 8502         1078
## 8503         1078
## 8504         1078
## 8505         1078
## 8506         1078
## 8507         1078
## 8508         1078
## 8509         1078
## 8510         1078
## 8511         1078
## 8512         1078
## 8513         1078
## 8514         1078
## 8515         1078
## 8516         1078
## 8517         1078
## 8518         1078
## 8519         1078
## 8520         1078
## 8521         1078
## 8522         1078
## 8523         1078
## 8524         1078
## 8525         1078
## 8526         1078
## 8527         1078
## 8528         1078
## 8529         1078
## 8530         1078
## 8531         1078
## 8532         1078
## 8533         1078
## 8534         1078
## 8535         1078
## 8536         1078
## 8537         1078
## 8538         1078
## 8539         1078
## 8540         1078
## 8541         1078
## 8542         1078
## 8543         1078
## 8544         1078
## 8545         1078
## 8546         1078
## 8547         1078
## 8548         1078
## 8549         1078
## 8550         1078
## 8551         1078
## 8552         1078
## 8553         1078
## 8554         1078
## 8555         1078
## 8556         1078
## 8557         1078
## 8558         1078
## 8559         1078
## 8560         1078
## 8561         1078
## 8562         1078
## 8563         1078
## 8564         1078
## 8565         1078
## 8566         1078
## 8567         1078
## 8568         1078
## 8569         1078
## 8570         1078
## 8571         1078
## 8572         1078
## 8573         1078
## 8574         1078
## 8575         1078
## 8576         1078
## 8577         1078
## 8578         1078
## 8579         1078
## 8580         1078
## 8581         1078
## 8582         1078
## 8583         1078
## 8584         1078
## 8585         1078
## 8586         1078
## 8587         1078
## 8588         1078
## 8589         1078
## 8590         1078
## 8591         1078
## 8592         1078
## 8593         1078
## 8594         1078
## 8595         1078
## 8596         1078
## 8597         1078
## 8598         1078
## 8599         1078
## 8600         1078
## 8601         1078
## 8602         1078
## 8603         1078
## 8604         1078
## 8605         1078
## 8606         1078
## 8607         1078
## 8608         1078
## 8609         1078
## 8610         1078
## 8611         1078
## 8612         1078
## 8613         1078
## 8614         1078
## 8615         1078
## 8616         1078
## 8617         1078
## 8618         1078
## 8619         1078
## 8620         1078
## 8621         1078
## 8622         1078
## 8623         1078
## 8624         1078
## 8625         1078
## 8626         1078
## 8627         1078
## 8628         1078
## 8629         1078
## 8630         1078
## 8631         1078
## 8632         1078
## 8633         1078
## 8634         1078
## 8635         1078
## 8636         1078
## 8637         1078
## 8638         1078
## 8639         1078
## 8640         1078
## 8641         1078
## 8642         1078
## 8643         1078
## 8644         1078
## 8645         1078
## 8646         1078
## 8647         1078
## 8648         1078
## 8649         1078
## 8650         1078
## 8651         1078
## 8652         1078
## 8653         1078
## 8654         1078
## 8655         1078
## 8656         1078
## 8657         1078
## 8658         1078
## 8659         1078
## 8660         1078
## 8661         1078
## 8662         1078
## 8663         1078
## 8664         1078
## 8665         1078
## 8666         1078
## 8667         1078
## 8668         1078
## 8669         1078
## 8670         1078
## 8671         1078
## 8672         1078
## 8673         1078
## 8674         1078
## 8675         1078
## 8676         1078
## 8677         1078
## 8678         1078
## 8679         1078
## 8680         1078
## 8681         1078
## 8682         1078
## 8683         1078
## 8684         1078
## 8685         1078
## 8686         1078
## 8687         1078
## 8688         1078
## 8689         1078
## 8690         1078
## 8691         1078
## 8692         1078
## 8693         1078
## 8694         1078
## 8695         1078
## 8696         1078
## 8697         1078
## 8698         1078
## 8699         1078
## 8700         1078
## 8701         1078
## 8702         1078
## 8703         1078
## 8704         1078
## 8705         1078
## 8706         1078
## 8707         1078
## 8708         1078
## 8709         1078
## 8710         1078
## 8711         1078
## 8712         1078
## 8713         1078
## 8714         1078
## 8715         1078
## 8716         1078
## 8717         1078
## 8718         1078
## 8719         1078
## 8720         1078
## 8721         1078
## 8722         1078
## 8723         1078
## 8724         1078
## 8725         1078
## 8726         1078
## 8727         1078
## 8728         1078
## 8729         1078
## 8730         1078
## 8731         1078
## 8732         1078
## 8733         1078
## 8734         1078
## 8735         1078
## 8736         1078
## 8737         1078
## 8738         1078
## 8739         1078
## 8740         1078
## 8741         1078
## 8742         1078
## 8743         1078
## 8744         1078
## 8745         1078
## 8746         1078
## 8747         1078
## 8748         1078
## 8749         1078
## 8750         1078
## 8751         1078
## 8752         1078
## 8753         1078
## 8754         1078
## 8755         1078
## 8756         1078
## 8757         1078
## 8758         1078
## 8759         1078
## 8760         1078
## 8761         1078
## 8762         1078
## 8763         1078
## 8764         1078
## 8765         1078
## 8766         1078
## 8767         1078
## 8768         1078
## 8769         1078
## 8770         1078
## 8771         1078
## 8772         1078
## 8773         1078
## 8774         1078
## 8775         1078
## 8776         1078
## 8777         1078
## 8778         1078
## 8779         1078
## 8780         1078
## 8781         1078
## 8782         1078
## 8783         1078
## 8784         1078
## 8785         1078
## 8786         1078
## 8787         1078
## 8788         1078
## 8789         1078
## 8790         1078
## 8791         1078
## 8792         1078
## 8793         1078
## 8794         1078
## 8795         1078
## 8796         1078
## 8797         1078
## 8798         1078
## 8799         1078
## 8800         1078
## 8801         1078
## 8802         1078
## 8803         1078
## 8804         1078
## 8805         1078
## 8806         1078
## 8807         1078
## 8808         1078
## 8809         1078
## 8810         1078
## 8811         1078
## 8812         1078
## 8813         1078
## 8814         1078
## 8815         1078
## 8816         1078
## 8817         1078
## 8818         1078
## 8819         1078
## 8820         1078
## 8821         1078
## 8822         1078
## 8823         1078
## 8824         1078
## 8825         1078
## 8826         1078
## 8827         1078
## 8828         1078
## 8829         1078
## 8830         1078
## 8831         1078
## 8832         1078
## 8833         1078
## 8834         1078
## 8835         1078
## 8836         1078
## 8837         1078
## 8838         1078
## 8839         1078
## 8840         1078
## 8841         1078
## 8842         1078
## 8843         1078
## 8844         1078
## 8845         1078
## 8846         1078
## 8847         1078
## 8848         1078
## 8849         1078
## 8850         1078
## 8851         1078
## 8852         1078
## 8853         1078
## 8854         1078
## 8855         1078
## 8856         1078
## 8857         1078
## 8858         1078
## 8859         1078
## 8860         1078
## 8861         1078
## 8862         1078
## 8863         1078
## 8864         1078
## 8865         1078
## 8866         1078
## 8867         1078
## 8868         1078
## 8869         1078
## 8870         1078
## 8871         1078
## 8872         1078
## 8873         1078
## 8874         1078
## 8875         1078
## 8876         1078
## 8877         1078
## 8878         1078
## 8879         1078
## 8880         1078
## 8881         1078
## 8882         1078
## 8883         1078
## 8884         1078
## 8885         1078
## 8886         1078
## 8887         1078
## 8888         1078
## 8889         1078
## 8890         1078
## 8891         1078
## 8892         1078
## 8893         1078
## 8894         1078
## 8895         1078
## 8896         1078
## 8897         1078
## 8898         1078
## 8899         1078
## 8900         1078
## 8901         1078
## 8902         1078
## 8903         1078
## 8904         1078
## 8905         1078
## 8906         1078
## 8907         1078
## 8908         1078
## 8909         1078
## 8910         1078
## 8911         1078
## 8912         1078
## 8913         1078
## 8914         1078
## 8915         1078
## 8916         1078
## 8917         1078
## 8918         1078
## 8919         1078
## 8920         1078
## 8921         1078
## 8922         1078
## 8923         1078
## 8924         1078
## 8925         1078
## 8926         1078
## 8927         1078
## 8928         1078
## 8929         1078
## 8930         1078
## 8931         1078
## 8932         1078
## 8933         1078
## 8934         1078
## 8935         1078
## 8936         1078
## 8937         1078
## 8938         1078
## 8939         1078
## 8940         1078
## 8941         1078
## 8942         1078
## 8943         1078
## 8944         1078
## 8945         1078
## 8946         1078
## 8947         1078
## 8948         1078
## 8949         1078
## 8950         1078
## 8951         1078
## 8952         1078
## 8953         1078
## 8954         1078
## 8955         1078
## 8956         1078
## 8957         1078
## 8958         1078
## 8959         1078
## 8960         1078
## 8961         1078
## 8962         1078
## 8963         1078
## 8964         1078
## 8965         1078
## 8966         1078
## 8967         1078
## 8968         1078
## 8969         1078
## 8970         1078
## 8971         1078
## 8972         1078
## 8973         1078
## 8974         1078
## 8975         1078
## 8976         1078
## 8977         1078
## 8978         1078
## 8979         1078
## 8980         1078
## 8981         1078
## 8982         1078
## 8983         1078
## 8984         1078
## 8985         1078
## 8986         1078
## 8987         1078
## 8988         1078
## 8989         1078
## 8990         1078
## 8991         1078
## 8992         1078
## 8993         1078
## 8994         1078
## 8995         1078
## 8996         1078
## 8997         1078
## 8998         1078
## 8999         1078
## 9000         1078
## 9001         1078
## 9002         1078
## 9003         1078
## 9004         1078
## 9005         1078
## 9006         1078
## 9007         1078
## 9008         1078
## 9009         1078
## 9010         1078
## 9011         1078
## 9012         1078
## 9013         1078
## 9014         1078
## 9015         1078
## 9016         1078
## 9017         1078
## 9018         1078
## 9019         1078
## 9020         1078
## 9021         1078
## 9022         1078
## 9023         1078
## 9024         1078
## 9025         1078
## 9026         1078
## 9027         1078
## 9028         1078
## 9029         1078
## 9030         1078
## 9031         1078
## 9032         1078
## 9033         1078
## 9034         1078
## 9035         1078
## 9036         1078
## 9037         1078
## 9038         1078
## 9039         1078
## 9040         1078
## 9041         1078
## 9042         1078
## 9043         1078
## 9044         1078
## 9045         1078
## 9046         1078
## 9047         1078
## 9048         1078
## 9049         1078
## 9050         1078
## 9051         1078
## 9052         1078
## 9053         1078
## 9054         1078
## 9055         1078
## 9056         1078
## 9057         1078
## 9058         1078
## 9059         1078
## 9060         1078
## 9061         1078
## 9062         1078
## 9063         1078
## 9064         1078
## 9065         1078
## 9066         1078
## 9067         1078
## 9068         1078
## 9069         1078
## 9070         1078
## 9071         1078
## 9072         1078
## 9073         1078
## 9074         1078
## 9075         1078
## 9076         1078
## 9077         1078
## 9078         1078
## 9079         1078
## 9080         1078
## 9081         1078
## 9082         1078
## 9083         1078
## 9084         1078
## 9085         1078
## 9086         1078
## 9087         1078
## 9088         1078
## 9089         1078
## 9090         1078
## 9091         1078
## 9092         1078
## 9093         1078
## 9094         1078
## 9095         1078
## 9096         1078
## 9097         1078
## 9098         1078
## 9099         1078
## 9100         1078
## 9101         1078
## 9102         1078
## 9103         1078
## 9104         1078
## 9105         1078
## 9106         1078
## 9107         1078
## 9108         1078
## 9109         1078
## 9110         1078
## 9111         1078
## 9112         1078
## 9113         1078
## 9114         1078
## 9115         1078
## 9116         1078
## 9117         1078
## 9118         1078
## 9119         1078
## 9120         1078
## 9121         1078
## 9122         1078
## 9123         1078
## 9124         1078
## 9125         1078
## 9126         1078
## 9127         1078
## 9128         1078
## 9129         1078
## 9130         1078
## 9131         1078
## 9132         1078
## 9133         1078
## 9134         1078
## 9135         1078
## 9136         1078
## 9137         1078
## 9138         1078
## 9139         1078
## 9140         1078
## 9141         1078
## 9142         1078
## 9143         1078
## 9144         1078
## 9145         1078
## 9146         1078
## 9147         1078
## 9148         1078
## 9149         1078
## 9150         1078
## 9151         1078
## 9152         1078
## 9153         1078
## 9154         1078
## 9155         1078
## 9156         1078
## 9157         1078
## 9158         1078
## 9159         1078
## 9160         1078
## 9161         1078
## 9162         1078
## 9163         1078
## 9164         1078
## 9165         1078
## 9166         1078
## 9167         1078
## 9168         1078
## 9169         1078
## 9170         1078
## 9171         1078
## 9172         1078
## 9173         1078
## 9174         1078
## 9175         1078
## 9176         1078
## 9177         1078
## 9178         1078
## 9179         1078
## 9180         1078
## 9181         1078
## 9182         1078
## 9183         1078
## 9184         1078
## 9185         1078
## 9186         1078
## 9187         1078
## 9188         1078
## 9189         1078
## 9190         1078
## 9191         1078
## 9192         1078
## 9193         1078
## 9194         1078
## 9195         1078
## 9196         1078
## 9197         1078
## 9198         1078
## 9199         1078
## 9200         1078
## 9201         1078
## 9202         1078
## 9203         1078
## 9204         1078
## 9205         1078
## 9206         1078
## 9207         1078
## 9208         1078
## 9209         1078
## 9210         1078
## 9211         1078
## 9212         1078
## 9213         1078
## 9214         1078
## 9215         1078
## 9216         1078
## 9217         1078
## 9218         1078
## 9219         1078
## 9220         1078
## 9221         1078
## 9222         1078
## 9223         1078
## 9224         1078
## 9225         1078
## 9226         1078
## 9227         1078
## 9228         1078
## 9229         1078
## 9230         1078
## 9231         1078
## 9232         1078
## 9233         1078
## 9234         1078
## 9235         1078
## 9236         1078
## 9237         1078
## 9238         1078
## 9239         1078
## 9240         1078
## 9241         1078
## 9242         1078
## 9243         1078
## 9244         1078
## 9245         1078
## 9246         1078
## 9247         1078
## 9248         1078
## 9249         1078
## 9250         1078
## 9251         1078
## 9252         1078
## 9253         1078
## 9254         1078
## 9255         1078
## 9256         1078
## 9257         1078
## 9258         1078
## 9259         1078
## 9260         1078
## 9261         1078
## 9262         1078
## 9263         1078
## 9264         1078
## 9265         1078
## 9266         1078
## 9267         1078
## 9268         1078
## 9269         1078
## 9270         1078
## 9271         1078
## 9272         1078
## 9273         1078
## 9274         1078
## 9275         1078
## 9276         1078
## 9277         1078
## 9278         1078
## 9279         1078
## 9280         1078
## 9281         1078
## 9282         1078
## 9283         1078
## 9284         1078
## 9285         1078
## 9286         1078
## 9287         1078
## 9288         1078
## 9289         1078
## 9290         1078
## 9291         1078
## 9292         1078
## 9293         1078
## 9294         1078
## 9295         1078
## 9296         1078
## 9297         1078
## 9298         1078
## 9299         1078
## 9300         1078
## 9301         1078
## 9302         1078
## 9303         1078
## 9304         1078
## 9305         1078
## 9306         1078
## 9307         1078
## 9308         1078
## 9309         1078
## 9310         1078
## 9311         1078
## 9312         1078
## 9313         1078
## 9314         1078
## 9315         1078
## 9316         1078
## 9317         1078
## 9318         1078
## 9319         1078
## 9320         1078
## 9321         1078
## 9322         1078
## 9323         1078
## 9324         1078
## 9325         1078
## 9326         1078
## 9327         1078
## 9328         1078
## 9329         1078
## 9330         1078
## 9331         1078
## 9332         1078
## 9333         1078
## 9334         1078
## 9335         1078
## 9336         1078
## 9337         1078
## 9338         1078
## 9339         1078
## 9340         1078
## 9341         1078
## 9342         1078
## 9343         1078
## 9344         1078
## 9345         1078
## 9346         1078
## 9347         1078
## 9348         1078
## 9349         1078
## 9350         1078
## 9351         1078
## 9352         1078
## 9353         1078
## 9354         1078
## 9355         1078
## 9356         1078
## 9357         1078
## 9358         1078
## 9359         1078
## 9360         1078
## 9361         1078
## 9362         1078
## 9363         1078
## 9364         1078
## 9365         1078
## 9366         1078
## 9367         1078
## 9368         1078
## 9369         1078
## 9370         1078
## 9371         1078
## 9372         1078
## 9373         1078
## 9374         1078
## 9375         1078
## 9376         1078
## 9377         1078
## 9378         1078
## 9379         1078
## 9380         1078
## 9381         1078
## 9382         1078
## 9383         1078
## 9384         1078
## 9385         1078
## 9386         1078
## 9387         1078
## 9388         1078
## 9389         1078
## 9390         1078
## 9391         1078
## 9392         1078
## 9393         1078
## 9394         1078
## 9395         1078
## 9396         1078
## 9397         1078
## 9398         1078
## 9399         1078
## 9400         1078
## 9401         1078
## 9402         1078
## 9403         1078
## 9404         1078
## 9405         1078
## 9406         1078
## 9407         1078
## 9408         1078
## 9409         1078
## 9410         1078
## 9411         1078
## 9412         1078
## 9413         1078
## 9414         1078
## 9415         1078
## 9416         1078
## 9417         1078
## 9418         1078
## 9419         1078
## 9420         1078
## 9421         1078
## 9422         1078
## 9423         1078
## 9424         1078
## 9425         1078
## 9426         1078
## 9427         1078
## 9428         1078
## 9429         1078
## 9430         1078
## 9431         1078
## 9432         1078
## 9433         1078
## 9434         1078
## 9435         1078
## 9436         1078
## 9437         1078
## 9438         1078
## 9439         1078
## 9440         1078
## 9441         1078
## 9442         1078
## 9443         1078
## 9444         1078
## 9445         1078
## 9446         1078
## 9447         1078
## 9448         1078
## 9449         1078
## 9450         1078
## 9451         1078
## 9452         1078
## 9453         1078
## 9454         1078
## 9455         1078
## 9456         1078
## 9457         1078
## 9458         1078
## 9459         1078
## 9460         1078
## 9461         1078
## 9462         1078
## 9463         1078
## 9464         1078
## 9465         1078
## 9466         1078
## 9467         1078
## 9468         1078
## 9469         1078
## 9470         1078
## 9471         1078
## 9472         1078
## 9473         1078
## 9474         1078
## 9475         1078
## 9476         1078
## 9477         1078
## 9478         1078
## 9479         1078
## 9480         1078
## 9481         1078
## 9482         1078
## 9483         1078
## 9484         1078
## 9485         1078
## 9486         1078
## 9487         1078
## 9488         1078
## 9489         1078
## 9490         1078
## 9491         1078
## 9492         1078
## 9493         1078
## 9494         1078
## 9495         1078
## 9496         1078
## 9497         1078
## 9498         1078
## 9499         1078
## 9500         1078
## 9501         1078
## 9502         1078
## 9503         1078
## 9504         1078
## 9505         1078
## 9506         1078
## 9507         1078
## 9508         1078
## 9509         1078
## 9510         1078
## 9511         1078
## 9512         1078
## 9513         1078
## 9514         1078
## 9515         1078
## 9516         1078
## 9517         1078
## 9518         1078
## 9519         1078
## 9520         1078
## 9521         1078
## 9522         1078
## 9523         1078
## 9524         1078
## 9525         1078
## 9526         1078
## 9527         1078
## 9528         1078
## 9529         1078
## 9530         1078
## 9531         1078
## 9532         1078
## 9533         1078
## 9534         1078
## 9535         1078
## 9536         1078
## 9537         1078
## 9538         1078
## 9539         1078
## 9540         1078
## 9541         1078
## 9542         1078
## 9543         1078
## 9544         1078
## 9545         1078
## 9546         1078
## 9547         1078
## 9548         1078
## 9549         1078
## 9550         1078
## 9551         1078
## 9552         1078
## 9553         1078
## 9554         1078
## 9555         1078
## 9556         1078
## 9557         1078
## 9558         1078
## 9559         1078
## 9560         1078
## 9561         1078
## 9562         1078
## 9563         1078
## 9564         1078
## 9565         1078
## 9566         1078
## 9567         1078
## 9568         1078
## 9569         1078
## 9570         1078
## 9571         1078
## 9572         1078
## 9573         1078
## 9574         1078
## 9575         1078
## 9576         1078
## 9577         1078
## 9578         1078
## 9579         1078
## 9580         1078
## 9581         1078
## 9582         1078
## 9583         1078
## 9584         1078
## 9585         1078
## 9586         1078
## 9587         1078
## 9588         1078
## 9589         1078
## 9590         1078
## 9591         1078
## 9592         1078
## 9593         1078
## 9594         1078
## 9595         1078
## 9596         1078
## 9597         1078
## 9598         1078
## 9599         1078
## 9600         1078
## 9601         1078
## 9602         1078
## 9603         1078
## 9604         1078
## 9605         1078
## 9606         1078
## 9607         1078
## 9608         1078
## 9609         1078
## 9610         1078
## 9611         1078
## 9612         1078
## 9613         1078
## 9614         1078
## 9615         1078
## 9616         1078
## 9617         1078
## 9618         1078
## 9619         1078
## 9620         1078
## 9621         1078
## 9622         1078
## 9623         1078
## 9624         1078
## 9625         1078
## 9626         1078
## 9627         1078
## 9628         1078
## 9629         1078
## 9630         1078
## 9631         1078
## 9632         1078
## 9633         1078
## 9634         1078
## 9635         1078
## 9636         1078
## 9637         1078
## 9638         1078
## 9639         1078
## 9640         1078
## 9641         1078
## 9642         1078
## 9643         1078
## 9644         1078
## 9645         1078
## 9646         1078
## 9647         1078
## 9648         1078
## 9649         1078
## 9650         1078
## 9651         1078
## 9652         1078
## 9653         1078
## 9654         1078
## 9655         1078
## 9656         1078
## 9657         1078
## 9658         1078
## 9659         1078
## 9660         1078
## 9661         1078
## 9662         1078
## 9663         1078
## 9664         1078
## 9665         1078
## 9666         1078
## 9667         1078
## 9668         1078
## 9669         1078
## 9670         1078
## 9671         1078
## 9672         1078
## 9673         1078
## 9674         1078
## 9675         1078
## 9676         1078
## 9677         1078
## 9678         1078
## 9679         1078
## 9680         1078
## 9681         1078
## 9682         1078
## 9683         1078
## 9684         1078
## 9685         1078
## 9686         1078
## 9687         1078
## 9688         1078
## 9689         1078
## 9690         1078
## 9691         1078
## 9692         1078
## 9693         1078
## 9694         1078
## 9695         1078
## 9696         1078
## 9697         1078
## 9698         1078
## 9699         1078
## 9700         1078
## 9701         1078
## 9702         1078
## 9703         1078
## 9704         1078
## 9705         1078
## 9706         1078
## 9707         1078
## 9708         1078
## 9709         1078
## 9710         1078
## 9711         1078
## 9712         1078
## 9713         1078
## 9714         1078
## 9715         1078
## 9716         1078
## 9717         1078
## 9718         1078
## 9719         1078
## 9720         1078
## 9721         1078
## 9722         1078
## 9723         1078
## 9724         1078
## 9725         1078
## 9726         1078
## 9727         1078
## 9728         1078
## 9729         1078
## 9730         1078
## 9731         1078
## 9732         1078
## 9733         1078
## 9734         1078
## 9735         1078
## 9736         1078
## 9737         1078
## 9738         1078
## 9739         1078
## 9740         1078
## 9741         1078
## 9742         1078
## 9743         1078
## 9744         1078
## 9745         1078
## 9746         1078
## 9747         1078
## 9748         1078
## 9749         1078
## 9750         1078
## 9751         1078
## 9752         1078
## 9753         1078
## 9754         1078
## 9755         1078
## 9756         1078
## 9757         1078
## 9758         1078
## 9759         1078
## 9760         1078
## 9761         1078
## 9762         1078
## 9763         1078
## 9764         1078
## 9765         1078
## 9766         1078
## 9767         1078
## 9768         1078
## 9769         1078
## 9770         1078
## 9771         1078
## 9772         1078
## 9773         1078
## 9774         1078
## 9775         1078
## 9776         1078
## 9777         1078
## 9778         1078
## 9779         1078
## 9780         1078
## 9781         1078
## 9782         1078
## 9783         1078
## 9784         1078
## 9785         1078
## 9786         1078
## 9787         1078
## 9788         1078
## 9789         1078
## 9790         1078
## 9791         1078
## 9792         1078
## 9793         1078
## 9794         1078
## 9795         1078
## 9796         1078
## 9797         1078
## 9798         1078
## 9799         1078
## 9800         1078
## 9801         1078
## 9802         1078
## 9803         1078
## 9804         1078
## 9805         1078
## 9806         1078
## 9807         1078
## 9808         1078
## 9809         1078
## 9810         1078
## 9811         1078
## 9812         1078
## 9813         1078
## 9814         1078
## 9815         1078
## 9816         1078
## 9817         1078
## 9818         1078
## 9819         1078
## 9820         1078
## 9821         1078
## 9822         1078
## 9823         1078
## 9824         1078
## 9825         1078
## 9826         1078
## 9827         1078
## 9828         1078
## 9829         1078
## 9830         1078
## 9831         1078
## 9832         1078
## 9833         1078
## 9834         1078
## 9835         1078
## 9836         1078
## 9837         1078
## 9838         1078
## 9839         1078
## 9840         1078
## 9841         1078
## 9842         1078
## 9843         1078
## 9844         1078
## 9845         1078
## 9846         1078
## 9847         1078
## 9848         1078
## 9849         1078
## 9850         1078
## 9851         1078
## 9852         1078
## 9853         1078
## 9854         1078
## 9855         1078
## 9856         1078
## 9857         1078
## 9858         1078
## 9859         1078
## 9860         1078
## 9861         1078
## 9862         1078
## 9863         1078
## 9864         1078
## 9865         1078
## 9866         1078
## 9867         1078
## 9868         1078
## 9869         1078
## 9870         1078
## 9871         1078
## 9872         1078
## 9873         1078
## 9874         1078
## 9875         1078
## 9876         1078
## 9877         1078
## 9878         1078
## 9879         1078
## 9880         1078
## 9881         1078
## 9882         1078
## 9883         1078
## 9884         1078
## 9885         1078
## 9886         1078
## 9887         1078
## 9888         1078
## 9889         1078
## 9890         1078
## 9891         1078
## 9892         1078
## 9893         1078
## 9894         1078
## 9895         1078
## 9896         1078
## 9897         1078
## 9898         1078
## 9899         1078
## 9900         1078
## 9901         1078
## 9902         1078
## 9903         1078
## 9904         1078
## 9905         1078
## 9906         1078
## 9907         1078
## 9908         1078
## 9909         1078
## 9910         1078
## 9911         1078
## 9912         1078
## 9913         1078
## 9914         1078
## 9915         1078
## 9916         1078
## 9917         1078
## 9918         1078
## 9919         1078
## 9920         1078
## 9921         1078
## 9922         1078
## 9923         1078
## 9924         1078
## 9925         1078
## 9926         1078
## 9927         1078
## 9928         1078
## 9929         1078
## 9930         1078
## 9931         1078
## 9932         1078
## 9933         1078
## 9934         1078
## 9935         1078
## 9936         1078
## 9937         1078
## 9938         1078
## 9939         1078
## 9940         1078
## 9941         1078
## 9942         1078
## 9943         1078
## 9944         1078
## 9945         1078
## 9946         1078
## 9947         1078
## 9948         1078
## 9949         1078
## 9950         1078
## 9951         1078
## 9952         1078
## 9953         1078
## 9954         1078
## 9955         1078
## 9956         1078
## 9957         1078
## 9958         1078
## 9959         1078
## 9960         1078
## 9961         1078
## 9962         1078
## 9963         1078
## 9964         1078
## 9965         1078
## 9966         1078
## 9967         1078
## 9968         1078
## 9969         1078
## 9970         1078
## 9971         1078
## 9972         1078
## 9973         1078
## 9974         1078
## 9975         1078
## 9976         1078
## 9977         1078
## 9978         1078
## 9979         1078
## 9980         1078
## 9981         1078
## 9982         1078
## 9983         1078
## 9984         1078
## 9985         1078
## 9986         1078
## 9987         1078
## 9988         1078
## 9989         1078
## 9990         1078
## 9991         1078
## 9992         1078
## 9993         1078
## 9994         1078
## 9995         1078
## 9996         1078
## 9997         1078
## 9998         1078
## 9999         1078
## 10000        1078
## 10001        1078
## 10002        1078
## 10003        1078
## 10004        1078
## 10005        1078
## 10006        1078
## 10007        1078
## 10008        1078
## 10009        1078
## 10010        1078
## 10011        1078
## 10012        1078
## 10013        1078
## 10014        1078
## 10015        1078
## 10016        1078
## 10017        1078
## 10018        1078
## 10019        1078
## 10020        1078
## 10021        1078
## 10022        1078
## 10023        1078
## 10024        1078
## 10025        1078
## 10026        1078
## 10027        1078
## 10028        1078
## 10029        1078
## 10030        1078
## 10031        1078
## 10032        1078
## 10033        1078
## 10034        1078
## 10035        1078
## 10036        1078
## 10037        1078
## 10038        1078
## 10039        1078
## 10040        1078
## 10041        1078
## 10042        1078
## 10043        1078
## 10044        1078
## 10045        1078
## 10046        1078
## 10047        1078
## 10048        1078
## 10049        1078
## 10050        1078
## 10051        1078
## 10052        1078
## 10053        1078
## 10054        1078
## 10055        1078
## 10056        1078
## 10057        1078
## 10058        1078
## 10059        1078
## 10060        1078
## 10061        1078
## 10062        1078
## 10063        1078
## 10064        1078
## 10065        1078
## 10066        1078
## 10067        1078
## 10068        1078
## 10069        1078
## 10070        1078
## 10071        1078
## 10072        1078
## 10073        1078
## 10074        1078
## 10075        1078
## 10076        1078
## 10077        1078
## 10078        1078
## 10079        1078
## 10080        1078
## 10081        1078
## 10082        1078
## 10083        1078
## 10084        1078
## 10085        1078
## 10086        1078
## 10087        1078
## 10088        1078
## 10089        1078
## 10090        1078
## 10091        1078
## 10092        1078
## 10093        1078
## 10094        1078
## 10095        1078
## 10096        1078
## 10097        1078
## 10098        1078
## 10099        1078
## 10100        1078
## 10101        1078
## 10102        1078
## 10103        1078
## 10104        1078
## 10105        1078
## 10106        1078
## 10107        1078
## 10108        1078
## 10109        1078
## 10110        1078
## 10111        1078
## 10112        1078
## 10113        1078
## 10114        1078
## 10115        1078
## 10116        1078
## 10117        1078
## 10118        1078
## 10119        1078
## 10120        1078
## 10121        1078
## 10122        1078
## 10123        1078
## 10124        1078
## 10125        1078
## 10126        1078
## 10127        1078
## 10128        1078
## 10129        1078
## 10130        1078
## 10131        1078
## 10132        1078
## 10133        1078
## 10134        1078
## 10135        1078
## 10136        1078
## 10137        1078
## 10138        1078
## 10139        1078
## 10140        1078
## 10141        1078
## 10142        1078
## 10143        1078
## 10144        1078
## 10145        1078
## 10146        1078
## 10147        1078
## 10148        1078
## 10149        1078
## 10150        1078
## 10151        1078
## 10152        1078
## 10153        1078
## 10154        1078
## 10155        1078
## 10156        1078
## 10157        1078
## 10158        1078
## 10159        1078
## 10160        1078
## 10161        1078
## 10162        1078
## 10163        1078
## 10164        1078
## 10165        1078
## 10166        1078
## 10167        1078
## 10168        1078
## 10169        1078
## 10170        1078
## 10171        1078
## 10172        1078
## 10173        1078
## 10174        1078
## 10175        1078
## 10176        1078
## 10177        1078
## 10178        1078
## 10179        1078
## 10180        1078
## 10181        1078
## 10182        1078
## 10183        1078
## 10184        1078
## 10185        1078
## 10186        1078
## 10187        1078
## 10188        1078
## 10189        1078
## 10190        1078
## 10191        1078
## 10192        1078
## 10193        1078
## 10194        1078
## 10195        1078
## 10196        1078
## 10197        1078
## 10198        1078
## 10199        1078
## 10200        1078
## 10201        1078
## 10202        1078
## 10203        1078
## 10204        1078
## 10205        1078
## 10206        1078
## 10207        1078
## 10208        1078
## 10209        1078
## 10210        1078
## 10211        1078
## 10212        1078
## 10213        1078
## 10214        1078
## 10215        1078
## 10216        1078
## 10217        1078
## 10218        1078
## 10219        1078
## 10220        1078
## 10221        1078
## 10222        1078
## 10223        1078
## 10224        1078
## 10225        1078
## 10226        1078
## 10227        1078
## 10228        1078
## 10229        1078
## 10230        1078
## 10231        1078
## 10232        1078
## 10233        1078
## 10234        1078
## 10235        1078
## 10236        1078
## 10237        1078
## 10238        1078
## 10239        1078
## 10240        1078
## 10241        1078
## 10242        1078
## 10243        1078
## 10244        1078
## 10245        1078
## 10246        1078
## 10247        1078
## 10248        1078
## 10249        1078
## 10250        1078
## 10251        1078
## 10252        1078
## 10253        1078
## 10254        1078
## 10255        1078
## 10256        1078
## 10257        1078
## 10258        1078
## 10259        1078
## 10260        1078
## 10261        1078
## 10262        1078
## 10263        1078
## 10264        1078
## 10265        1078
## 10266        1078
## 10267        1078
## 10268        1078
## 10269        1078
## 10270        1078
## 10271        1078
## 10272        1078
## 10273        1078
## 10274        1078
## 10275        1078
## 10276        1078
## 10277        1078
## 10278        1078
## 10279        1078
## 10280        1078
## 10281        1078
## 10282        1078
## 10283        1078
## 10284        1078
## 10285        1078
## 10286        1078
## 10287        1078
## 10288        1078
## 10289        1078
## 10290        1078
## 10291        1078
## 10292        1078
## 10293        1078
## 10294        1078
## 10295        1078
## 10296        1078
## 10297        1078
## 10298        1078
## 10299        1078
## 10300        1078
## 10301        1078
## 10302        1078
## 10303        1078
## 10304        1078
## 10305        1078
## 10306        1078
## 10307        1078
## 10308        1078
## 10309        1078
## 10310        1078
## 10311        1078
## 10312        1078
## 10313        1078
## 10314        1078
## 10315        1078
## 10316        1078
## 10317        1078
## 10318        1078
## 10319        1078
## 10320        1078
## 10321        1078
## 10322        1078
## 10323        1078
## 10324        1078
## 10325        1078
## 10326        1078
## 10327        1078
## 10328        1078
## 10329        1078
## 10330        1078
## 10331        1078
## 10332        1078
## 10333        1078
## 10334        1078
## 10335        1078
## 10336        1078
## 10337        1078
## 10338        1078
## 10339        1078
## 10340        1078
## 10341        1078
## 10342        1078
## 10343        1078
## 10344        1078
## 10345        1078
## 10346        1078
## 10347        1078
## 10348        1078
## 10349        1078
## 10350        1078
## 10351        1078
## 10352        1078
## 10353        1078
## 10354        1078
## 10355        1078
## 10356        1078
## 10357        1078
## 10358        1078
## 10359        1078
## 10360        1078
## 10361        1078
## 10362        1078
## 10363        1078
## 10364        1078
## 10365        1078
## 10366        1078
## 10367        1078
## 10368        1078
## 10369        1078
## 10370        1078
## 10371        1078
## 10372        1078
## 10373        1078
## 10374        1078
## 10375        1078
## 10376        1078
## 10377        1078
## 10378        1078
## 10379        1078
## 10380        1078
## 10381        1078
## 10382        1078
## 10383        1078
## 10384        1078
## 10385        1078
## 10386        1078
## 10387        1078
## 10388        1078
## 10389        1078
## 10390        1078
## 10391        1078
## 10392        1078
## 10393        1078
## 10394        1078
## 10395        1078
## 10396        1078
## 10397        1078
## 10398        1078
## 10399        1078
## 10400        1078
## 10401        1078
## 10402        1078
## 10403        1078
## 10404        1078
## 10405        1078
## 10406        1078
## 10407        1078
## 10408        1078
## 10409        1078
## 10410        1078
## 10411        1078
## 10412        1078
## 10413        1078
## 10414        1078
## 10415        1078
## 10416        1078
## 10417        1078
## 10418        1078
## 10419        1078
## 10420        1078
## 10421        1078
## 10422        1078
## 10423        1078
## 10424        1078
## 10425        1078
## 10426        1078
## 10427        1078
## 10428        1078
## 10429        1078
## 10430        1078
## 10431        1078
## 10432        1078
## 10433        1078
## 10434        1078
## 10435        1078
## 10436        1078
## 10437        1078
## 10438        1078
## 10439        1078
## 10440        1078
## 10441        1078
## 10442        1078
## 10443        1078
## 10444        1078
## 10445        1078
## 10446        1078
## 10447        1078
## 10448        1078
## 10449        1078
## 10450        1078
## 10451        1078
## 10452        1078
## 10453        1078
## 10454        1078
## 10455        1078
## 10456        1078
## 10457        1078
## 10458        1078
## 10459        1078
## 10460        1078
## 10461        1078
## 10462        1078
## 10463        1078
## 10464        1078
## 10465        1078
## 10466        1078
## 10467        1078
## 10468        1078
## 10469        1078
## 10470        1078
## 10471        1078
## 10472        1078
## 10473        1078
## 10474        1078
## 10475        1078
## 10476        1078
## 10477        1078
## 10478        1078
## 10479        1078
## 10480        1078
## 10481        1078
## 10482        1078
## 10483        1078
## 10484        1078
## 10485        1078
## 10486        1078
## 10487        1078
## 10488        1078
## 10489        1078
## 10490        1078
## 10491        1078
## 10492        1078
## 10493        1078
## 10494        1078
## 10495        1078
## 10496        1078
## 10497        1078
## 10498        1078
## 10499        1078
## 10500        1078
## 10501        1078
## 10502        1078
## 10503        1078
## 10504        1078
## 10505        1078
## 10506        1078
## 10507        1078
## 10508        1078
## 10509        1078
## 10510        1078
## 10511        1078
## 10512        1078
## 10513        1078
## 10514        1078
## 10515        1078
## 10516        1078
## 10517        1078
## 10518        1078
## 10519        1078
## 10520        1078
## 10521        1078
## 10522        1078
## 10523        1078
## 10524        1078
## 10525        1078
## 10526        1078
## 10527        1078
## 10528        1078
## 10529        1078
## 10530        1078
## 10531        1078
## 10532        1078
## 10533        1078
## 10534        1078
## 10535        1078
## 10536        1078
## 10537        1078
## 10538        1078
## 10539        1078
## 10540        1078
## 10541        1078
## 10542        1078
## 10543        1078
## 10544        1078
## 10545        1078
## 10546        1078
## 10547        1078
## 10548        1078
## 10549        1078
## 10550        1078
## 10551        1078
## 10552        1078
## 10553        1078
## 10554        1078
## 10555        1078
## 10556        1078
## 10557        1078
## 10558        1078
## 10559        1078
## 10560        1078
## 10561        1078
## 10562        1078
## 10563        1078
## 10564        1078
## 10565        1078
## 10566        1078
## 10567        1078
## 10568        1078
## 10569        1078
## 10570        1078
## 10571        1078
## 10572        1078
## 10573        1078
## 10574        1078
## 10575        1078
## 10576        1078
## 10577        1078
## 10578        1078
## 10579        1078
## 10580        1078
## 10581        1078
## 10582        1078
## 10583        1078
## 10584        1078
## 10585        1078
## 10586        1078
## 10587        1078
## 10588        1078
## 10589        1078
## 10590        1078
## 10591        1078
## 10592        1078
## 10593        1078
## 10594        1078
## 10595        1078
## 10596        1078
## 10597        1078
## 10598        1078
## 10599        1078
## 10600        1078
## 10601        1078
## 10602        1078
## 10603        1078
## 10604        1078
## 10605        1078
## 10606        1078
## 10607        1078
## 10608        1078
## 10609        1078
## 10610        1078
## 10611        1078
## 10612        1078
## 10613        1078
## 10614        1078
## 10615        1078
## 10616        1078
## 10617        1078
## 10618        1078
## 10619        1078
## 10620        1078
## 10621        1078
## 10622        1078
## 10623        1078
## 10624        1078
## 10625        1078
## 10626        1078
## 10627        1078
## 10628        1078
## 10629        1078
## 10630        1078
## 10631        1078
## 10632        1078
## 10633        1078
## 10634        1078
## 10635        1078
## 10636        1078
## 10637        1078
## 10638        1078
## 10639        1078
## 10640        1078
## 10641        1078
## 10642        1078
## 10643        1078
## 10644        1078
## 10645        1078
## 10646        1078
## 10647        1078
## 10648        1078
## 10649        1078
## 10650        1078
## 10651        1078
## 10652        1078
## 10653        1078
## 10654        1078
## 10655        1078
## 10656        1078
## 10657        1078
## 10658        1078
## 10659        1078
## 10660        1078
## 10661        1078
## 10662        1078
## 10663        1078
## 10664        1078
## 10665        1078
## 10666        1078
## 10667        1078
## 10668        1078
## 10669        1078
## 10670        1078
## 10671        1078
## 10672        1078
## 10673        1078
## 10674        1078
## 10675        1078
## 10676        1078
## 10677        1078
## 10678        1078
## 10679        1078
## 10680        1078
## 10681        1078
## 10682        1078
## 10683        1078
## 10684        1078
## 10685        1078
## 10686        1078
## 10687        1078
## 10688        1078
## 10689        1078
## 10690        1078
## 10691        1078
## 10692        1078
## 10693        1078
## 10694        1078
## 10695        1078
## 10696        1078
## 10697        1078
## 10698        1078
## 10699        1078
## 10700        1078
## 10701        1078
## 10702        1078
## 10703        1078
## 10704        1078
## 10705        1078
## 10706        1078
## 10707        1078
## 10708        1078
## 10709        1078
## 10710        1078
## 10711        1078
## 10712        1078
## 10713        1078
## 10714        1078
## 10715        1078
## 10716        1078
## 10717        1078
## 10718        1078
## 10719        1078
## 10720        1078
## 10721        1078
## 10722        1078
## 10723        1078
## 10724        1078
## 10725        1078
## 10726        1078
## 10727        1078
## 10728        1078
## 10729        1078
## 10730        1078
## 10731        1078
## 10732        1078
## 10733        1078
## 10734        1078
## 10735        1078
## 10736        1078
## 10737        1078
## 10738        1078
## 10739        1078
## 10740        1078
## 10741        1078
## 10742        1078
## 10743        1078
## 10744        1078
## 10745        1078
## 10746        1078
## 10747        1078
## 10748        1078
## 10749        1078
## 10750        1078
## 10751        1078
## 10752        1078
## 10753        1078
## 10754        1078
## 10755        1078
## 10756        1078
## 10757        1078
## 10758        1078
## 10759        1078
## 10760        1078
## 10761        1078
## 10762        1078
## 10763        1078
## 10764        1078
## 10765        1078
## 10766        1078
## 10767        1078
## 10768        1078
## 10769        1078
## 10770        1078
## 10771        1078
## 10772        1078
## 10773        1078
## 10774        1078
## 10775        1078
## 10776        1078
## 10777        1078
## 10778        1078
## 10779        1078
## 10780        1078
## 10781        1078
## 10782        1078
## 10783        1078
## 10784        1078
## 10785        1078
## 10786        1078
## 10787        1078
## 10788        1078
## 10789        1078
## 10790        1078
## 10791        1078
## 10792        1078
## 10793        1078
## 10794        1078
## 10795        1078
## 10796        1078
## 10797        1078
## 10798        1078
## 10799        1078
## 10800        1078
## 10801        1078
## 10802        1078
## 10803        1078
## 10804        1078
## 10805        1078
## 10806        1078
## 10807        1078
## 10808        1078
## 10809        1078
## 10810        1078
## 10811        1078
## 10812        1078
## 10813        1078
## 10814        1078
## 10815        1078
## 10816        1078
## 10817        1078
## 10818        1078
## 10819        1078
## 10820        1078
## 10821        1078
## 10822        1078
## 10823        1078
## 10824        1078
## 10825        1078
## 10826        1078
## 10827        1078
## 10828        1078
## 10829        1078
## 10830        1078
## 10831        1078
## 10832        1078
## 10833        1078
## 10834        1078
## 10835        1078
## 10836        1078
## 10837        1078
## 10838        1078
## 10839        1078
## 10840        1078
## 10841        1078
## 10842        1078
## 10843        1078
## 10844        1078
## 10845        1078
## 10846        1078
## 10847        1078
## 10848        1078
## 10849        1078
## 10850        1078
## 10851        1078
## 10852        1078
## 10853        1078
## 10854        1078
## 10855        1078
## 10856        1078
## 10857        1078
## 10858        1078
## 10859        1078
## 10860        1078
## 10861        1078
## 10862        1078
## 10863        1078
## 10864        1078
## 10865        1078
## 10866        1078
## 10867        1078
## 10868        1078
## 10869        1078
## 10870        1078
## 10871        1078
## 10872        1078
## 10873        1078
## 10874        1078
## 10875        1078
## 10876        1078
## 10877        1078
## 10878        1078
## 10879        1078
## 10880        1078
## 10881        1078
## 10882        1078
## 10883        1078
## 10884        1078
## 10885        1078
## 10886        1078
## 10887        1078
## 10888        1078
## 10889        1078
## 10890        1078
## 10891        1078
## 10892        1078
## 10893        1078
## 10894        1078
## 10895        1078
## 10896        1078
## 10897        1078
## 10898        1078
## 10899        1078
## 10900        1078
## 10901        1078
## 10902        1078
## 10903        1078
## 10904        1078
## 10905        1078
## 10906        1078
## 10907        1078
## 10908        1078
## 10909        1078
## 10910        1078
## 10911        1078
## 10912        1078
## 10913        1078
## 10914        1078
## 10915        1078
## 10916        1078
## 10917        1078
## 10918        1078
## 10919        1078
## 10920        1078
## 10921        1078
## 10922        1078
## 10923        1078
## 10924        1078
## 10925        1078
## 10926        1078
## 10927        1078
## 10928        1078
## 10929        1078
## 10930        1078
## 10931        1078
## 10932        1078
## 10933        1078
## 10934        1078
## 10935        1078
## 10936        1078
## 10937        1078
## 10938        1078
## 10939        1078
## 10940        1078
## 10941        1078
## 10942        1078
## 10943        1078
## 10944        1078
## 10945        1078
## 10946        1078
## 10947        1078
## 10948        1078
## 10949        1078
## 10950        1078
## 10951        1078
## 10952        1078
## 10953        1078
## 10954        1078
## 10955        1078
## 10956        1078
## 10957        1078
## 10958        1078
## 10959        1078
## 10960        1078
## 10961        1078
## 10962        1078
## 10963        1078
## 10964        1078
## 10965        1078
## 10966        1078
## 10967        1078
## 10968        1078
## 10969        1078
## 10970        1078
## 10971        1078
## 10972        1078
## 10973        1078
## 10974        1078
## 10975        1078
## 10976        1078
## 10977        1078
## 10978        1078
## 10979        1078
## 10980        1078
## 10981        1078
## 10982        1078
## 10983        1078
## 10984        1078
## 10985        1078
## 10986        1078
## 10987        1078
## 10988        1078
## 10989        1078
## 10990        1078
## 10991        1078
## 10992        1078
## 10993        1078
## 10994        1078
## 10995        1078
## 10996        1078
## 10997        1078
## 10998        1078
## 10999        1078
## 11000        1078
## 11001        1078
## 11002        1078
## 11003        1078
## 11004        1078
## 11005        1078
## 11006        1078
## 11007        1078
## 11008        1078
## 11009        1078
## 11010        1078
## 11011        1078
## 11012        1078
## 11013        1078
## 11014        1078
## 11015        1078
## 11016        1078
## 11017        1078
## 11018        1078
## 11019        1078
## 11020        1078
## 11021        1078
## 11022        1078
## 11023        1078
## 11024        1078
## 11025        1078
## 11026        1078
## 11027        1078
## 11028        1078
## 11029        1078
## 11030        1078
## 11031        1078
## 11032        1078
## 11033        1078
## 11034        1078
## 11035        1078
## 11036        1078
## 11037        1078
## 11038        1078
## 11039        1078
## 11040        1078
## 11041        1078
## 11042        1078
## 11043        1078
## 11044        1078
## 11045        1078
## 11046        1078
## 11047        1078
## 11048        1078
## 11049        1078
## 11050        1078
## 11051        1078
## 11052        1078
## 11053        1078
## 11054        1078
## 11055        1078
## 11056        1078
## 11057        1078
## 11058        1078
## 11059        1078
## 11060        1078
## 11061        1078
## 11062        1078
## 11063        1078
## 11064        1078
## 11065        1078
## 11066        1078
## 11067        1078
## 11068        1078
## 11069        1078
## 11070        1078
## 11071        1078
## 11072        1078
## 11073        1078
## 11074        1078
## 11075        1078
## 11076        1078
## 11077        1078
## 11078        1078
## 11079        1078
## 11080        1078
## 11081        1078
## 11082        1078
## 11083        1078
## 11084        1078
## 11085        1078
## 11086        1078
## 11087        1078
## 11088        1078
## 11089        1078
## 11090        1078
## 11091        1078
## 11092        1078
## 11093        1078
## 11094        1078
## 11095        1078
## 11096        1078
## 11097        1078
## 11098        1078
## 11099        1078
## 11100        1078
## 11101        1078
## 11102        1078
## 11103        1078
## 11104        1078
## 11105        1078
## 11106        1078
## 11107        1078
## 11108        1078
## 11109        1078
## 11110        1078
## 11111        1078
## 11112        1078
## 11113        1078
## 11114        1078
## 11115        1078
## 11116        1078
## 11117        1078
## 11118        1078
## 11119        1078
## 11120        1078
## 11121        1078
## 11122        1078
## 11123        1078
## 11124        1078
## 11125        1078
## 11126        1078
## 11127        1078
## 11128        1078
## 11129        1078
## 11130        1078
## 11131        1078
## 11132        1078
## 11133        1078
## 11134        1078
## 11135        1078
## 11136        1078
## 11137        1078
## 11138        1078
## 11139        1078
## 11140        1078
## 11141        1078
## 11142        1078
## 11143        1078
## 11144        1078
## 11145        1078
## 11146        1078
## 11147        1078
## 11148        1078
## 11149        1078
## 11150        1078
## 11151        1078
## 11152        1078
## 11153        1078
## 11154        1078
## 11155        1078
## 11156        1078
## 11157        1078
## 11158        1078
## 11159        1078
## 11160        1078
## 11161        1078
## 11162        1078
## 11163        1078
## 11164        1078
## 11165        1078
## 11166        1078
## 11167        1078
## 11168        1078
## 11169        1078
## 11170        1078
## 11171        1078
## 11172        1078
## 11173        1078
## 11174        1078
## 11175        1078
## 11176        1078
## 11177        1078
## 11178        1078
## 11179        1078
## 11180        1078
## 11181        1078
## 11182        1078
## 11183        1078
## 11184        1078
## 11185        1078
## 11186        1078
## 11187        1078
## 11188        1078
## 11189        1078
## 11190        1078
## 11191        1078
## 11192        1078
## 11193        1078
## 11194        1078
## 11195        1078
## 11196        1078
## 11197        1078
## 11198        1078
## 11199        1078
## 11200        1078
## 11201        1078
## 11202        1078
## 11203        1078
## 11204        1078
## 11205        1078
## 11206        1078
## 11207        1078
## 11208        1078
## 11209        1078
## 11210        1078
## 11211        1078
## 11212        1078
## 11213        1078
## 11214        1078
## 11215        1078
## 11216        1078
## 11217        1078
## 11218        1078
## 11219        1078
## 11220        1078
## 11221        1078
## 11222        1078
## 11223        1078
## 11224        1078
## 11225        1078
## 11226        1078
## 11227        1078
## 11228        1078
## 11229        1078
## 11230        1078
## 11231        1078
## 11232        1078
## 11233        1078
## 11234        1078
## 11235        1078
## 11236        1078
## 11237        1078
## 11238        1078
## 11239        1078
## 11240        1078
## 11241        1078
## 11242        1078
## 11243        1078
## 11244        1078
## 11245        1078
## 11246        1078
## 11247        1078
## 11248        1078
## 11249        1078
## 11250        1078
## 11251        1078
## 11252        1078
## 11253        1078
## 11254        1078
## 11255        1078
## 11256        1078
## 11257        1078
## 11258        1078
## 11259        1078
## 11260        1078
## 11261        1078
## 11262        1078
## 11263        1078
## 11264        1078
## 11265        1078
## 11266        1078
## 11267        1078
## 11268        1078
## 11269        1078
## 11270        1078
## 11271        1078
## 11272        1078
## 11273        1078
## 11274        1078
## 11275        1078
## 11276        1078
## 11277        1078
## 11278        1078
## 11279        1078
## 11280        1078
## 11281        1078
## 11282        1078
## 11283        1078
## 11284        1078
## 11285        1078
## 11286        1078
## 11287        1078
## 11288        1078
## 11289        1078
## 11290        1078
## 11291        1078
## 11292        1078
## 11293        1078
## 11294        1078
## 11295        1078
## 11296        1078
## 11297        1078
## 11298        1078
## 11299        1078
## 11300        1078
## 11301        1078
## 11302        1078
## 11303        1078
## 11304        1078
## 11305        1078
## 11306        1078
## 11307        1078
## 11308        1078
## 11309        1078
## 11310        1078
## 11311        1078
## 11312        1078
## 11313        1078
## 11314        1078
## 11315        1078
## 11316        1078
## 11317        1078
## 11318        1078
## 11319        1078
## 11320        1078
## 11321        1078
## 11322        1078
## 11323        1078
## 11324        1078
## 11325        1078
## 11326        1078
## 11327        1078
## 11328        1078
## 11329        1078
## 11330        1078
## 11331        1078
## 11332        1078
## 11333        1078
## 11334        1078
## 11335        1078
## 11336        1078
## 11337        1078
## 11338        1078
## 11339        1078
## 11340        1078
## 11341        1078
## 11342        1078
## 11343        1078
## 11344        1078
## 11345        1078
## 11346        1078
## 11347        1078
## 11348        1078
## 11349        1078
## 11350        1078
## 11351        1078
## 11352        1078
## 11353        1078
## 11354        1078
## 11355        1078
## 11356        1078
## 11357        1078
## 11358        1078
## 11359        1078
## 11360        1078
## 11361        1078
## 11362        1078
## 11363        1078
## 11364        1078
## 11365        1078
## 11366        1078
## 11367        1078
## 11368        1078
## 11369        1078
## 11370        1078
## 11371        1078
## 11372        1078
## 11373        1078
## 11374        1078
## 11375        1078
## 11376        1078
## 11377        1078
## 11378        1078
## 11379        1078
## 11380        1078
## 11381        1078
## 11382        1078
## 11383        1078
## 11384        1078
## 11385        1078
## 11386        1078
## 11387        1078
## 11388        1078
## 11389        1078
## 11390        1078
## 11391        1078
## 11392        1078
## 11393        1078
## 11394        1078
## 11395        1078
## 11396        1078
## 11397        1078
## 11398        1078
## 11399        1078
## 11400        1078
## 11401        1078
## 11402        1078
## 11403        1078
## 11404        1078
## 11405        1078
## 11406        1078
## 11407        1078
## 11408        1078
## 11409        1078
## 11410        1078
## 11411        1078
## 11412        1078
## 11413        1078
## 11414        1078
## 11415        1078
## 11416        1078
## 11417        1078
## 11418        1078
## 11419        1078
## 11420        1078
## 11421        1078
## 11422        1078
## 11423        1078
## 11424        1078
## 11425        1078
## 11426        1078
## 11427        1078
## 11428        1078
## 11429        1078
## 11430        1078
## 11431        1078
## 11432        1078
## 11433        1078
## 11434        1078
## 11435        1078
## 11436        1078
## 11437        1078
## 11438        1078
## 11439        1078
## 11440        1078
## 11441        1078
## 11442        1078
## 11443        1078
## 11444        1078
## 11445        1078
## 11446        1078
## 11447        1078
## 11448        1078
## 11449        1078
## 11450        1078
## 11451        1078
## 11452        1078
## 11453        1078
## 11454        1078
## 11455        1078
## 11456        1078
## 11457        1078
## 11458        1078
## 11459        1078
## 11460        1078
## 11461        1078
## 11462        1078
## 11463        1078
## 11464        1078
## 11465        1078
## 11466        1078
## 11467        1078
## 11468        1078
## 11469        1078
## 11470        1078
## 11471        1078
## 11472        1078
## 11473        1078
## 11474        1078
## 11475        1078
## 11476        1078
## 11477        1078
## 11478        1078
## 11479        1078
## 11480        1078
## 11481        1078
## 11482        1078
## 11483        1078
## 11484        1078
## 11485        1078
## 11486        1078
## 11487        1078
## 11488        1078
## 11489        1078
## 11490        1078
## 11491        1078
## 11492        1078
## 11493        1078
## 11494        1078
## 11495        1078
## 11496        1078
## 11497        1078
## 11498        1078
## 11499        1078
## 11500        1078
## 11501        1078
## 11502        1078
## 11503        1078
## 11504        1078
## 11505        1078
## 11506        1078
## 11507        1078
## 11508        1078
## 11509        1078
## 11510        1078
## 11511        1078
## 11512        1078
## 11513        1078
## 11514        1078
## 11515        1078
## 11516        1078
## 11517        1078
## 11518        1078
## 11519        1078
## 11520        1078
## 11521        1078
## 11522        1078
## 11523        1078
## 11524        1078
## 11525        1078
## 11526        1078
## 11527        1078
## 11528        1078
## 11529        1078
## 11530        1078
## 11531        1078
## 11532        1078
## 11533        1078
## 11534        1078
## 11535        1078
## 11536        1078
## 11537        1078
## 11538        1078
## 11539        1078
## 11540        1078
## 11541        1078
## 11542        1078
## 11543        1078
## 11544        1078
## 11545        1078
## 11546        1078
## 11547        1078
## 11548        1078
## 11549        1078
## 11550        1078
## 11551        1078
## 11552        1078
## 11553        1078
## 11554        1078
## 11555        1078
## 11556        1078
## 11557        1078
## 11558        1078
## 11559        1078
## 11560        1078
## 11561        1078
## 11562        1078
## 11563        1078
## 11564        1078
## 11565        1078
## 11566        1078
## 11567        1078
## 11568        1078
## 11569        1078
## 11570        1078
## 11571        1078
## 11572        1078
## 11573        1078
## 11574        1078
## 11575        1078
## 11576        1078
## 11577        1078
## 11578        1078
## 11579        1078
## 11580        1078
## 11581        1078
## 11582        1078
## 11583        1078
## 11584        1078
## 11585        1078
## 11586        1078
## 11587        1078
## 11588        1078
## 11589        1078
## 11590        1078
## 11591        1078
## 11592        1078
## 11593        1078
## 11594        1078
## 11595        1078
## 11596        1078
## 11597        1078
## 11598        1078
## 11599        1078
## 11600        1078
## 11601        1078
## 11602        1078
## 11603        1078
## 11604        1078
## 11605        1078
## 11606        1078
## 11607        1078
## 11608        1078
## 11609        1078
## 11610        1078
## 11611        1078
## 11612        1078
## 11613        1078
## 11614        1078
## 11615        1078
## 11616        1078
## 11617        1078
## 11618        1078
## 11619        1078
## 11620        1078
## 11621        1078
## 11622        1078
## 11623        1078
## 11624        1078
## 11625        1078
## 11626        1078
## 11627        1078
## 11628        1078
## 11629        1078
## 11630        1078
## 11631        1078
## 11632        1078
## 11633        1078
## 11634        1078
## 11635        1078
## 11636        1078
## 11637        1078
## 11638        1078
## 11639        1078
## 11640        1078
## 11641        1078
## 11642        1078
## 11643        1078
## 11644        1078
## 11645        1078
## 11646        1078
## 11647        1078
## 11648        1078
## 11649        1078
## 11650        1078
## 11651        1078
## 11652        1078
## 11653        1078
## 11654        1078
## 11655        1078
## 11656        1078
## 11657        1078
## 11658        1078
## 11659        1078
## 11660        1078
## 11661        1078
## 11662        1078
## 11663        1078
## 11664        1078
## 11665        1078
## 11666        1078
## 11667        1078
## 11668        1078
## 11669        1078
## 11670        1078
## 11671        1078
## 11672        1078
## 11673        1078
## 11674        1078
## 11675        1078
## 11676        1078
## 11677        1078
## 11678        1078
## 11679        1078
## 11680        1078
## 11681        1078
## 11682        1078
## 11683        1078
## 11684        1078
## 11685        1078
## 11686        1078
## 11687        1078
## 11688        1078
## 11689        1078
## 11690        1078
## 11691        1078
## 11692        1078
## 11693        1078
## 11694        1078
## 11695        1078
## 11696        1078
## 11697        1078
## 11698        1078
## 11699        1078
## 11700        1078
## 11701        1078
## 11702        1078
## 11703        1078
## 11704        1078
## 11705        1078
## 11706        1078
## 11707        1078
## 11708        1078
## 11709        1078
## 11710        1078
## 11711        1078
## 11712        1078
## 11713        1078
## 11714        1078
## 11715        1078
## 11716        1078
## 11717        1078
## 11718        1078
## 11719        1078
## 11720        1078
## 11721        1078
## 11722        1078
## 11723        1078
## 11724        1078
## 11725        1078
## 11726        1078
## 11727        1078
## 11728        1078
## 11729        1078
## 11730        1078
## 11731        1078
## 11732        1078
## 11733        1078
## 11734        1078
## 11735        1078
## 11736        1078
## 11737        1078
## 11738        1078
## 11739        1078
## 11740        1078
## 11741        1078
## 11742        1078
## 11743        1078
## 11744        1078
## 11745        1078
## 11746        1078
## 11747        1078
## 11748        1078
## 11749        1078
## 11750        1078
## 11751        1078
## 11752        1078
## 11753        1078
## 11754        1078
## 11755        1078
## 11756        1078
## 11757        1078
## 11758        1078
## 11759        1078
## 11760        1078
## 11761        1078
## 11762        1078
## 11763        1078
## 11764        1078
## 11765        1078
## 11766        1078
## 11767        1078
## 11768        1078
## 11769        1078
## 11770        1078
## 11771        1078
## 11772        1078
## 11773        1078
## 11774        1078
## 11775        1078
## 11776        1078
## 11777        1078
## 11778        1078
## 11779        1078
## 11780        1078
## 11781        1078
## 11782        1078
## 11783        1078
## 11784        1078
## 11785        1078
## 11786        1078
## 11787        1078
## 11788        1078
## 11789        1078
## 11790        1078
## 11791        1078
## 11792        1078
## 11793        1078
## 11794        1078
## 11795        1078
## 11796        1078
## 11797        1078
## 11798        1078
## 11799        1078
## 11800        1078
## 11801        1078
## 11802        1078
## 11803        1078
## 11804        1078
## 11805        1078
## 11806        1078
## 11807        1078
## 11808        1078
## 11809        1078
## 11810        1078
## 11811        1078
## 11812        1078
## 11813        1078
## 11814        1078
## 11815        1078
## 11816        1078
## 11817        1078
## 11818        1078
## 11819        1078
## 11820        1078
## 11821        1078
## 11822        1078
## 11823        1078
## 11824        1078
## 11825        1078
## 11826        1078
## 11827        1078
## 11828        1078
## 11829        1078
## 11830        1078
## 11831        1078
## 11832        1078
## 11833        1078
## 11834        1078
## 11835        1078
## 11836        1078
## 11837        1078
## 11838        1078
## 11839        1078
## 11840        1078
## 11841        1078
## 11842        1078
## 11843        1078
## 11844        1078
## 11845        1078
## 11846        1078
## 11847        1078
## 11848        1078
## 11849        1078
## 11850        1078
## 11851        1078
## 11852        1078
## 11853        1078
## 11854        1078
## 11855        1078
## 11856        1078
## 11857        1078
## 11858        1078
## 11859        1078
## 11860        1078
## 11861        1078
## 11862        1078
## 11863        1078
## 11864        1078
## 11865        1078
## 11866        1078
## 11867        1078
## 11868        1078
## 11869        1078
## 11870        1078
## 11871        1078
## 11872        1078
## 11873        1078
## 11874        1078
## 11875        1078
## 11876        1078
## 11877        1078
## 11878        1078
## 11879        1078
## 11880        1078
## 11881        1078
## 11882        1078
## 11883        1078
## 11884        1078
## 11885        1078
## 11886        1078
## 11887        1078
## 11888        1078
## 11889        1078
## 11890        1078
## 11891        1078
## 11892        1078
## 11893        1078
## 11894        1078
## 11895        1078
## 11896        1078
## 11897        1078
## 11898        1078
## 11899        1078
## 11900        1078
## 11901        1078
## 11902        1078
## 11903        1078
## 11904        1078
## 11905        1078
## 11906        1078
## 11907        1078
## 11908        1078
## 11909        1078
## 11910        1078
## 11911        1078
## 11912        1078
## 11913        1078
## 11914        1078
## 11915        1078
## 11916        1078
## 11917        1078
## 11918        1078
## 11919        1078
## 11920        1078
## 11921        1078
## 11922        1078
## 11923        1078
## 11924        1078
## 11925        1078
## 11926        1078
## 11927        1078
## 11928        1078
## 11929        1078
## 11930        1078
## 11931        1078
## 11932        1078
## 11933        1078
## 11934        1078
## 11935        1078
## 11936        1078
## 11937        1078
## 11938        1078
## 11939        1078
## 11940        1078
## 11941        1078
## 11942        1078
## 11943        1078
## 11944        1078
## 11945        1078
## 11946        1078
## 11947        1078
## 11948        1078
## 11949        1078
## 11950        1078
## 11951        1078
## 11952        1078
## 11953        1078
## 11954        1078
## 11955        1078
## 11956        1078
## 11957        1078
## 11958        1078
## 11959        1078
## 11960        1078
## 11961        1078
## 11962        1078
## 11963        1078
## 11964        1078
## 11965        1078
## 11966        1078
## 11967        1078
## 11968        1078
## 11969        1078
## 11970        1078
## 11971        1078
## 11972        1078
## 11973        1078
## 11974        1078
## 11975        1078
## 11976        1078
## 11977        1078
## 11978        1078
## 11979        1078
## 11980        1078
## 11981        1078
## 11982        1078
## 11983        1078
## 11984        1078
## 11985        1078
## 11986        1078
## 11987        1078
## 11988        1078
## 11989        1078
## 11990        1078
## 11991        1078
## 11992        1078
## 11993        1078
## 11994        1078
## 11995        1078
## 11996        1078
## 11997        1078
## 11998        1078
## 11999        1078
## 12000        1078
## 12001        1078
## 12002        1078
## 12003        1078
## 12004        1078
## 12005        1078
## 12006        1078
## 12007        1078
## 12008        1078
## 12009        1078
## 12010        1078
## 12011        1078
## 12012        1078
## 12013        1078
## 12014        1078
## 12015        1078
## 12016        1078
## 12017        1078
## 12018        1078
## 12019        1078
## 12020        1078
## 12021        1078
## 12022        1078
## 12023        1078
## 12024        1078
## 12025        1078
## 12026        1078
## 12027        1078
## 12028        1078
## 12029        1078
## 12030        1078
## 12031        1078
## 12032        1078
## 12033        1078
## 12034        1078
## 12035        1078
## 12036        1078
## 12037        1078
## 12038        1078
## 12039        1078
## 12040        1078
## 12041        1078
## 12042        1078
## 12043        1078
## 12044        1078
## 12045        1078
## 12046        1078
## 12047        1078
## 12048        1078
## 12049        1078
## 12050        1078
## 12051        1078
## 12052        1078
## 12053        1078
## 12054        1078
## 12055        1078
## 12056        1078
## 12057        1078
## 12058        1078
## 12059        1078
## 12060        1078
## 12061        1078
## 12062        1078
## 12063        1078
## 12064        1078
## 12065        1078
## 12066        1078
## 12067        1078
## 12068        1078
## 12069        1078
## 12070        1078
## 12071        1078
## 12072        1078
## 12073        1078
## 12074        1078
## 12075        1078
## 12076        1078
## 12077        1078
## 12078        1078
## 12079        1078
## 12080        1078
## 12081        1078
## 12082        1078
## 12083        1078
## 12084        1078
## 12085        1078
## 12086        1078
## 12087        1078
## 12088        1078
## 12089        1078
## 12090        1078
## 12091        1078
## 12092        1078
## 12093        1078
## 12094        1078
## 12095        1078
## 12096        1078
## 12097        1078
## 12098        1078
## 12099        1078
## 12100        1078
## 12101        1078
## 12102        1078
## 12103        1078
## 12104        1078
## 12105        1078
## 12106        1078
## 12107        1078
## 12108        1078
## 12109        1078
## 12110        1078
## 12111        1078
## 12112        1078
## 12113        1078
## 12114        1078
## 12115        1078
## 12116        1078
## 12117        1078
## 12118        1078
## 12119        1078
## 12120        1078
## 12121        1078
## 12122        1078
## 12123        1078
## 12124        1078
## 12125        1078
## 12126        1078
## 12127        1078
## 12128        1078
## 12129        1078
## 12130        1078
## 12131        1078
## 12132        1078
## 12133        1078
## 12134        1078
## 12135        1078
## 12136        1078
## 12137        1078
## 12138        1078
## 12139        1078
## 12140        1078
## 12141        1078
## 12142        1078
## 12143        1078
## 12144        1078
## 12145        1078
## 12146        1078
## 12147        1078
## 12148        1078
## 12149        1078
## 12150        1078
## 12151        1078
## 12152        1078
## 12153        1078
## 12154        1078
## 12155        1078
## 12156        1078
## 12157        1078
## 12158        1078
## 12159        1078
## 12160        1078
## 12161        1078
## 12162        1078
## 12163        1078
## 12164        1078
## 12165        1078
## 12166        1078
## 12167        1078
## 12168        1078
## 12169        1078
## 12170        1078
## 12171        1078
## 12172        1078
## 12173        1078
## 12174        1078
## 12175        1078
## 12176        1078
## 12177        1078
## 12178        1078
## 12179        1078
## 12180        1078
## 12181        1078
## 12182        1078
## 12183        1078
## 12184        1078
## 12185        1078
## 12186        1078
## 12187        1078
## 12188        1078
## 12189        1078
## 12190        1078
## 12191        1078
## 12192        1078
## 12193        1078
## 12194        1078
## 12195        1078
## 12196        1078
## 12197        1078
## 12198        1078
## 12199        1078
## 12200        1078
## 12201        1078
## 12202        1078
## 12203        1078
## 12204        1078
## 12205        1078
## 12206        1078
## 12207        1078
## 12208        1078
## 12209        1078
## 12210        1078
## 12211        1078
## 12212        1078
## 12213        1078
## 12214        1078
## 12215        1078
## 12216        1078
## 12217        1078
## 12218        1078
## 12219        1078
## 12220        1078
## 12221        1078
## 12222        1078
## 12223        1078
## 12224        1078
## 12225        1078
## 12226        1078
## 12227        1078
## 12228        1078
## 12229        1078
## 12230        1078
## 12231        1078
## 12232        1078
## 12233        1078
## 12234        1078
## 12235        1078
## 12236        1078
## 12237        1078
## 12238        1078
## 12239        1078
## 12240        1078
## 12241        1078
## 12242        1078
## 12243        1078
## 12244        1078
## 12245        1078
## 12246        1078
## 12247        1078
## 12248        1078
## 12249        1078
## 12250        1078
## 12251        1078
## 12252        1078
## 12253        1078
## 12254        1078
## 12255        1078
## 12256        1078
## 12257        1078
## 12258        1078
## 12259        1078
## 12260        1078
## 12261        1078
## 12262        1078
## 12263        1078
## 12264        1078
## 12265        1078
## 12266        1078
## 12267        1078
## 12268        1078
## 12269        1078
## 12270        1078
## 12271        1078
## 12272        1078
## 12273        1078
## 12274        1078
## 12275        1078
## 12276        1078
## 12277        1078
## 12278        1078
## 12279        1078
## 12280        1078
## 12281        1078
## 12282        1078
## 12283        1078
## 12284        1078
## 12285        1078
## 12286        1078
## 12287        1078
## 12288        1078
## 12289        1078
## 12290        1078
## 12291        1078
## 12292        1078
## 12293        1078
## 12294        1078
## 12295        1078
## 12296        1078
## 12297        1078
## 12298        1078
## 12299        1078
## 12300        1078
## 12301        1078
## 12302        1078
## 12303        1078
## 12304        1078
## 12305        1078
## 12306        1078
## 12307        1078
## 12308        1078
## 12309        1078
## 12310        1078
## 12311        1078
## 12312        1078
## 12313        1078
## 12314        1078
## 12315        1078
## 12316        1078
## 12317        1078
## 12318        1078
## 12319        1078
## 12320        1078
## 12321        1078
## 12322        1078
## 12323        1078
## 12324        1078
## 12325        1078
## 12326        1078
## 12327        1078
## 12328        1078
## 12329        1078
## 12330        1078
## 12331        1078
## 12332        1078
## 12333        1078
## 12334        1078
## 12335        1078
## 12336        1078
## 12337        1078
## 12338        1078
## 12339        1078
## 12340        1078
## 12341        1078
## 12342        1078
## 12343        1078
## 12344        1078
## 12345        1078
## 12346        1078
## 12347        1078
## 12348        1078
## 12349        1078
## 12350        1078
## 12351        1078
## 12352        1078
## 12353        1078
## 12354        1078
## 12355        1078
## 12356        1078
## 12357        1078
## 12358        1078
## 12359        1078
## 12360        1078
## 12361        1078
## 12362        1078
## 12363        1078
## 12364        1078
## 12365        1078
## 12366        1078
## 12367        1078
## 12368        1078
## 12369        1078
## 12370        1078
## 12371        1078
## 12372        1078
## 12373        1078
## 12374        1078
## 12375        1078
## 12376        1078
## 12377        1078
## 12378        1078
## 12379        1078
## 12380        1078
## 12381        1078
## 12382        1078
## 12383        1078
## 12384        1078
## 12385        1078
## 12386        1078
## 12387        1078
## 12388        1078
## 12389        1078
## 12390        1078
## 12391        1078
## 12392        1078
## 12393        1078
## 12394        1078
## 12395        1078
## 12396        1078
## 12397        1078
## 12398        1078
## 12399        1078
## 12400        1078
## 12401        1078
## 12402        1078
## 12403        1078
## 12404        1078
## 12405        1078
## 12406        1078
## 12407        1078
## 12408        1078
## 12409        1078
## 12410        1078
## 12411        1078
## 12412        1078
## 12413        1078
## 12414        1078
## 12415        1078
## 12416        1078
## 12417        1078
## 12418        1078
## 12419        1078
## 12420        1078
## 12421        1078
## 12422        1078
## 12423        1078
## 12424        1078
## 12425        1078
## 12426        1078
## 12427        1078
## 12428        1078
## 12429        1078
## 12430        1078
## 12431        1078
## 12432        1078
## 12433        1078
## 12434        1078
## 12435        1078
## 12436        1078
## 12437        1078
## 12438        1078
## 12439        1078
## 12440        1078
## 12441        1078
## 12442        1078
## 12443        1078
## 12444        1078
## 12445        1078
## 12446        1078
## 12447        1078
## 12448        1078
## 12449        1078
## 12450        1078
## 12451        1078
## 12452        1078
## 12453        1078
## 12454        1078
## 12455        1078
## 12456        1078
## 12457        1078
## 12458        1078
## 12459        1078
## 12460        1078
## 12461        1078
## 12462        1078
## 12463        1078
## 12464        1078
## 12465        1078
## 12466        1078
## 12467        1078
## 12468        1078
## 12469        1078
## 12470        1078
## 12471        1078
## 12472        1078
## 12473        1078
## 12474        1078
## 12475        1078
## 12476        1078
## 12477        1078
## 12478        1078
## 12479        1078
## 12480        1078
## 12481        1078
## 12482        1078
## 12483        1078
## 12484        1078
## 12485        1078
## 12486        1078
## 12487        1078
## 12488        1078
## 12489        1078
## 12490        1078
## 12491        1078
## 12492        1078
## 12493        1078
## 12494        1078
## 12495        1078
## 12496        1078
## 12497        1078
## 12498        1078
## 12499        1078
## 12500        1078
## 12501        1078
## 12502        1078
## 12503        1078
## 12504        1078
## 12505        1078
## 12506        1078
## 12507        1078
## 12508        1078
## 12509        1078
## 12510        1078
## 12511        1078
## 12512        1078
## 12513        1078
## 12514        1078
## 12515        1078
## 12516        1078
## 12517        1078
## 12518        1078
## 12519        1078
## 12520        1078
## 12521        1078
## 12522        1078
## 12523        1078
## 12524        1078
## 12525        1078
## 12526        1078
## 12527        1078
## 12528        1078
## 12529        1078
## 12530        1078
## 12531        1078
## 12532        1078
## 12533        1078
## 12534        1078
## 12535        1078
## 12536        1078
## 12537        1078
## 12538        1078
## 12539        1078
## 12540        1078
## 12541        1078
## 12542        1078
## 12543        1078
## 12544        1078
## 12545        1078
## 12546        1078
## 12547        1078
## 12548        1078
## 12549        1078
## 12550        1078
## 12551        1078
## 12552        1078
## 12553        1078
## 12554        1078
## 12555        1078
## 12556        1078
## 12557        1078
## 12558        1078
## 12559        1078
## 12560        1078
## 12561        1078
## 12562        1078
## 12563        1078
## 12564        1078
## 12565        1078
## 12566        1078
## 12567        1078
## 12568        1078
## 12569        1078
## 12570        1078
## 12571        1078
## 12572        1078
## 12573        1078
## 12574        1078
## 12575        1078
## 12576        1078
## 12577        1078
## 12578        1078
## 12579        1078
## 12580        1078
## 12581        1078
## 12582        1078
## 12583        1078
## 12584        1078
## 12585        1078
## 12586        1078
## 12587        1078
## 12588        1078
## 12589        1078
## 12590        1078
## 12591        1078
## 12592        1078
## 12593        1078
## 12594        1078
## 12595        1078
## 12596        1078
## 12597        1078
## 12598        1078
## 12599        1078
## 12600        1078
## 12601        1078
## 12602        1078
## 12603        1078
## 12604        1078
## 12605        1078
## 12606        1078
## 12607        1078
## 12608        1078
## 12609        1078
## 12610        1078
## 12611        1078
## 12612        1078
## 12613        1078
## 12614        1078
## 12615        1078
## 12616        1078
## 12617        1078
## 12618        1078
## 12619        1078
## 12620        1078
## 12621        1078
## 12622        1078
## 12623        1078
## 12624        1078
## 12625        1078
## 12626        1078
## 12627        1078
## 12628        1078
## 12629        1078
## 12630        1078
## 12631        1078
## 12632        1078
## 12633        1078
## 12634        1078
## 12635        1078
## 12636        1078
## 12637        1078
## 12638        1078
## 12639        1078
## 12640        1078
## 12641        1078
## 12642        1078
## 12643        1078
## 12644        1078
## 12645        1078
## 12646        1078
## 12647        1078
## 12648        1078
## 12649        1078
## 12650        1078
## 12651        1078
## 12652        1078
## 12653        1078
## 12654        1078
## 12655        1078
## 12656        1078
## 12657        1078
## 12658        1078
## 12659        1078
## 12660        1078
## 12661        1078
## 12662        1078
## 12663        1078
## 12664        1078
## 12665        1078
## 12666        1078
## 12667        1078
## 12668        1078
## 12669        1078
## 12670        1078
## 12671        1078
## 12672        1078
## 12673        1078
## 12674        1078
## 12675        1078
## 12676        1078
## 12677        1078
## 12678        1078
## 12679        1078
## 12680        1078
## 12681        1078
## 12682        1078
## 12683        1078
## 12684        1078
## 12685        1078
## 12686        1078
## 12687        1078
## 12688        1078
## 12689        1078
## 12690        1078
## 12691        1078
## 12692        1078
## 12693        1078
## 12694        1078
## 12695        1078
## 12696        1078
## 12697        1078
## 12698        1078
## 12699        1078
## 12700        1078
## 12701        1078
## 12702        1078
## 12703        1078
## 12704        1078
## 12705        1078
## 12706        1078
## 12707        1078
## 12708        1078
## 12709        1078
## 12710        1078
## 12711        1078
## 12712        1078
## 12713        1078
## 12714        1078
## 12715        1078
## 12716        1078
## 12717        1078
## 12718        1078
## 12719        1078
## 12720        1078
## 12721        1078
## 12722        1078
## 12723        1078
## 12724        1078
## 12725        1078
## 12726        1078
## 12727        1078
## 12728        1078
## 12729        1078
## 12730        1078
## 12731        1078
## 12732        1078
## 12733        1078
## 12734        1078
## 12735        1078
## 12736        1078
## 12737        1078
## 12738        1078
## 12739        1078
## 12740        1078
## 12741        1078
## 12742        1078
## 12743        1078
## 12744        1078
## 12745        1078
## 12746        1078
## 12747        1078
## 12748        1078
## 12749        1078
## 12750        1078
## 12751        1078
## 12752        1078
## 12753        1078
## 12754        1078
## 12755        1078
## 12756        1078
## 12757        1078
## 12758        1078
## 12759        1078
## 12760        1078
## 12761        1078
## 12762        1078
## 12763        1078
## 12764        1078
## 12765        1078
## 12766        1078
## 12767        1078
## 12768        1078
## 12769        1078
## 12770        1078
## 12771        1078
## 12772        1078
## 12773        1078
## 12774        1078
## 12775        1078
## 12776        1078
## 12777        1078
## 12778        1078
## 12779        1078
## 12780        1078
## 12781        1078
## 12782        1078
## 12783        1078
## 12784        1078
## 12785        1078
## 12786        1078
## 12787        1078
## 12788        1078
## 12789        1078
## 12790        1078
## 12791        1078
## 12792        1078
## 12793        1078
## 12794        1078
## 12795        1078
## 12796        1078
## 12797        1078
## 12798        1078
## 12799        1078
## 12800        1078
## 12801        1078
## 12802        1078
## 12803        1078
## 12804        1078
## 12805        1078
## 12806        1078
## 12807        1078
## 12808        1078
## 12809        1078
## 12810        1078
## 12811        1078
## 12812        1078
## 12813        1078
## 12814        1078
## 12815        1078
## 12816        1078
## 12817        1078
## 12818        1078
## 12819        1078
## 12820        1078
## 12821        1078
## 12822        1078
## 12823        1078
## 12824        1078
## 12825        1078
## 12826        1078
## 12827        1078
## 12828        1078
## 12829      107896
## 12830      107896
## 12831      107896
## 12832      107896
## 12833      107896
## 12834      107896
## 12835      107896
## 12836      107896
## 12837      107896
## 12838      107896
## 12839      107896
## 12840      107896
## 12841      107896
## 12842      107896
## 12843      107896
## 12844      107896
## 12845      107896
## 12846      107896
## 12847      107896
## 12848      107896
## 12849      107896
## 12850      107896
## 12851      107896
## 12852      107896
## 12853      107896
## 12854      107896
## 12855      107896
## 12856      107896
## 12857      107909
## 12858      107909
## 12859      107909
## 12860      107909
## 12861      107909
## 12862      107909
## 12863      107909
## 12864      107909
## 12865      107909
## 12866      107909
## 12867      107909
## 12868      107909
## 12869      107909
## 12870      107909
## 12871      107909
## 12872      107909
## 12873      107909
## 12874      107909
## 12875      107909
## 12876      107909
## 12877      107909
## 12878      107909
## 12879      107909
## 12880      107909
## 12881      107909
## 12882      107909
## 12883      107909
## 12884      107909
## 12885      107909
## 12886      107909
## 12887      107909
## 12888      107909
## 12889      107909
## 12890      107909
## 12891      107909
## 12892      107909
## 12893      107909
## 12894      107909
## 12895      107909
## 12896      107909
## 12897      107909
## 12898      107909
## 12899      107909
## 12900      107909
## 12901      107909
## 12902      107909
## 12903      107909
## 12904      107909
## 12905      107909
## 12906      107909
## 12907      107909
## 12908      107909
## 12909      107909
## 12910      107909
## 12911      107909
## 12912      107909
## 12913      107909
## 12914      107909
## 12915      107909
## 12916      107909
## 12917      107909
## 12918      107909
## 12919      107909
## 12920      107909
## 12921      107909
## 12922      107909
## 12923      107909
## 12924      107909
## 12925      107909
## 12926      107909
## 12927      107909
## 12928      107909
## 12929      107909
## 12930      107927
## 12931      107927
## 12932      107927
## 12933      107927
## 12934      107927
## 12935      107927
## 12936      107927
## 12937      107927
## 12938      107927
## 12939      107927
## 12940      107927
## 12941      107927
## 12942      107927
## 12943      107927
## 12944      107927
## 12945      107927
## 12946      107927
## 12947      107927
## 12948      107927
## 12949      107927
## 12950      107927
## 12951      107927
## 12952      107927
## 12953      107927
## 12954      107927
## 12955      107927
## 12956      107927
## 12957      107927
## 12958      107927
## 12959      108070
## 12960      108070
## 12961      108070
## 12962      108070
## 12963      108070
## 12964      108070
## 12965      108070
## 12966      108070
## 12967      108070
## 12968      108070
## 12969      108070
## 12970      108070
## 12971      108070
## 12972      108070
## 12973      108070
## 12974      108070
## 12975      108070
## 12976      108070
## 12977      108070
## 12978      108070
## 12979      108070
## 12980      108070
## 12981      108070
## 12982      108070
## 12983      108070
## 12984      108070
## 12985      108070
## 12986      108070
## 12987      108070
## 12988      108070
## 12989      108070
## 12990      108175
## 12991      108175
## 12992      108175
## 12993      108175
## 12994      108175
## 12995      108175
## 12996      108175
## 12997      108175
## 12998      108175
## 12999      108175
## 13000      108175
## 13001      108175
## 13002      108175
## 13003      108175
## 13004      108175
## 13005      108175
## 13006      108175
## 13007      108175
## 13008      108175
## 13009      108175
## 13010      108175
## 13011      108175
## 13012      108175
## 13013      108175
## 13014      108175
## 13015      108345
## 13016      108345
## 13017      108345
## 13018      108345
## 13019      108345
## 13020      108345
## 13021      108345
## 13022      108345
## 13023      108345
## 13024      108345
## 13025      108345
## 13026      108345
## 13027      108345
## 13028      108345
## 13029      108345
## 13030      108345
## 13031      108345
## 13032      108345
## 13033      108345
## 13034      108345
## 13035      108345
## 13036      108345
## 13037      108345
## 13038      108345
## 13039      108345
## 13040      108345
## 13041      108345
## 13042      108345
## 13043      108345
## 13044      108345
## 13045      108345
## 13046      108345
## 13047      108345
## 13048      108345
## 13049      108345
## 13050      108345
## 13051      108345
## 13052      108345
## 13053      108345
## 13054      108345
## 13055      108345
## 13056      108345
## 13057      108345
## 13058      108345
## 13059      108345
## 13060      108345
## 13061      108345
## 13062      108345
## 13063      108345
## 13064      108345
## 13065      108345
## 13066      108345
## 13067      108345
## 13068      108345
## 13069      108345
## 13070      108345
## 13071      108345
## 13072      108345
## 13073      108345
## 13074      108345
## 13075      108345
## 13076      108345
## 13077      108345
## 13078      108345
## 13079      108345
## 13080      108345
## 13081      108345
## 13082      108345
## 13083      108345
## 13084      108345
## 13085      108345
## 13086      108345
## 13087      108345
## 13088      108345
## 13089      108345
## 13090      108345
## 13091      108345
## 13092      108345
## 13093      108345
## 13094      108345
## 13095      108345
## 13096      108345
## 13097      108345
## 13098      108345
## 13099      108345
## 13100      108345
## 13101      108345
## 13102      108345
## 13103      108345
## 13104      108345
## 13105      108345
## 13106      108345
## 13107      108345
## 13108      108345
## 13109      108345
## 13110      108345
## 13111      108345
## 13112      108345
## 13113      108345
## 13114      108345
## 13115      108345
## 13116      108345
## 13117      108345
## 13118      108345
## 13119      108345
## 13120      108345
## 13121      108345
## 13122      108345
## 13123      108345
## 13124      108345
## 13125      108345
## 13126      108345
## 13127      108345
## 13128      108345
## 13129      108345
## 13130      108345
## 13131      108345
## 13132      108345
## 13133      108345
## 13134      108345
## 13135      108345
## 13136      108345
## 13137      108345
## 13138      108345
## 13139      108345
## 13140      108345
## 13141      108345
## 13142      108345
## 13143      108345
## 13144      108345
## 13145      108345
## 13146      108345
## 13147      108345
## 13148      108345
## 13149      108345
## 13150      108345
## 13151      108345
## 13152      108371
## 13153      108371
## 13154      108371
## 13155      108371
## 13156      108371
## 13157      108371
## 13158      108371
## 13159      108371
## 13160      108371
## 13161      108371
## 13162      108371
## 13163      108371
## 13164      108371
## 13165      108371
## 13166      108371
## 13167      108371
## 13168      108371
## 13169      108371
## 13170      108371
## 13171      108371
## 13172      108371
## 13173      108371
## 13174      108371
## 13175      108371
## 13176      108371
## 13177      108371
## 13178      108371
## 13179      108371
## 13180      108371
## 13181      108371
## 13182      108371
## 13183      108371
## 13184      108371
## 13185      108371
## 13186      108371
## 13187      108371
## 13188       10845
## 13189       10845
## 13190       10845
## 13191       10845
## 13192       10845
## 13193       10845
## 13194       10845
## 13195       10845
## 13196       10845
## 13197       10845
## 13198       10845
## 13199       10845
## 13200       10845
## 13201       10845
## 13202       10845
## 13203       10845
## 13204       10845
## 13205       10845
## 13206       10845
## 13207       10845
## 13208       10845
## 13209       10845
## 13210       10845
## 13211       10845
## 13212       10845
## 13213       10845
## 13214       10845
## 13215       10845
## 13216       10845
## 13217       10845
## 13218       10845
## 13219       10845
## 13220       10845
## 13221       10845
## 13222       10845
## 13223       10845
## 13224       10845
## 13225       10845
## 13226       10845
## 13227       10845
## 13228       10845
## 13229       10845
## 13230       10845
## 13231       10845
## 13232       10845
## 13233       10845
## 13234       10845
## 13235       10845
## 13236       10845
## 13237       10845
## 13238       10845
## 13239       10845
## 13240       10845
## 13241       10845
## 13242       10845
## 13243       10845
## 13244       10845
## 13245       10845
## 13246       10845
## 13247       10845
## 13248       10845
## 13249       10845
## 13250       10845
## 13251       10845
## 13252       10845
## 13253       10845
## 13254       10845
## 13255       10845
## 13256       10845
## 13257       10845
## 13258       10845
## 13259       10845
## 13260       10845
## 13261       10845
## 13262       10845
## 13263       10845
## 13264       10845
## 13265       10845
## 13266       10845
## 13267       10845
## 13268       10845
## 13269       10845
## 13270       10845
## 13271       10845
## 13272       10845
## 13273       10845
## 13274       10845
## 13275       10845
## 13276       10845
## 13277       10845
## 13278       10845
## 13279       10845
## 13280       10845
## 13281       10845
## 13282       10845
## 13283       10845
## 13284       10845
## 13285       10845
## 13286       10845
## 13287       10845
## 13288       10845
## 13289       10845
## 13290       10845
## 13291       10845
## 13292       10845
## 13293       10845
## 13294       10845
## 13295       10845
## 13296       10845
## 13297       10845
## 13298       10845
## 13299       10845
## 13300       10845
## 13301       10845
## 13302       10845
## 13303       10845
## 13304       10845
## 13305       10845
## 13306       10845
## 13307       10845
## 13308       10845
## 13309       10845
## 13310       10845
## 13311       10845
## 13312       10845
## 13313       10845
## 13314       10845
## 13315       10845
## 13316       10845
## 13317       10845
## 13318       10845
## 13319       10845
## 13320       10845
## 13321       10845
## 13322       10845
## 13323       10845
## 13324       10845
## 13325       10845
## 13326       10845
## 13327       10845
## 13328       10845
## 13329       10845
## 13330       10845
## 13331       10845
## 13332       10845
## 13333       10845
## 13334       10845
## 13335       10845
## 13336       10845
## 13337       10845
## 13338       10845
## 13339       10845
## 13340       10845
## 13341       10845
## 13342       10845
## 13343       10845
## 13344       10845
## 13345       10845
## 13346       10845
## 13347       10845
## 13348       10845
## 13349       10845
## 13350       10845
## 13351       10845
## 13352       10845
## 13353       10845
## 13354       10845
## 13355       10845
## 13356       10845
## 13357       10845
## 13358       10845
## 13359       10845
## 13360       10845
## 13361       10845
## 13362       10845
## 13363       10845
## 13364       10845
## 13365       10845
## 13366       10845
## 13367       10845
## 13368       10845
## 13369       10845
## 13370       10845
## 13371       10845
## 13372       10845
## 13373       10845
## 13374       10845
## 13375       10845
## 13376       10845
## 13377       10845
## 13378       10845
## 13379       10845
## 13380       10845
## 13381       10845
## 13382       10845
## 13383       10845
## 13384       10845
## 13385       10845
## 13386       10845
## 13387       10845
## 13388       10845
## 13389       10845
## 13390       10845
## 13391       10845
## 13392       10845
## 13393       10845
## 13394       10845
## 13395       10845
## 13396       10845
## 13397       10845
## 13398       10845
## 13399       10845
## 13400       10845
## 13401       10845
## 13402       10845
## 13403       10845
## 13404       10845
## 13405       10845
## 13406       10845
## 13407       10845
## 13408       10845
## 13409       10845
## 13410       10845
## 13411       10845
## 13412       10845
## 13413       10845
## 13414       10845
## 13415       10845
## 13416       10845
## 13417       10845
## 13418       10845
## 13419       10845
## 13420       10845
## 13421       10845
## 13422       10845
## 13423       10845
## 13424       10845
## 13425       10845
## 13426       10845
## 13427       10845
## 13428       10845
## 13429       10845
## 13430       10845
## 13431       10845
## 13432       10845
## 13433       10845
## 13434       10845
## 13435       10845
## 13436       10845
## 13437       10845
## 13438       10845
## 13439       10845
## 13440       10845
## 13441       10845
## 13442       10845
## 13443       10845
## 13444       10845
## 13445       10845
## 13446       10845
## 13447       10845
## 13448       10845
## 13449       10845
## 13450       10845
## 13451       10845
## 13452       10845
## 13453       10845
## 13454       10845
## 13455       10845
## 13456       10845
## 13457       10845
## 13458       10845
## 13459       10845
## 13460       10845
## 13461       10845
## 13462       10845
## 13463       10845
## 13464       10845
## 13465       10845
## 13466       10845
## 13467       10845
## 13468       10845
## 13469       10845
## 13470       10845
## 13471       10845
## 13472       10845
## 13473       10845
## 13474       10845
## 13475       10845
## 13476       10845
## 13477       10845
## 13478       10845
## 13479       10845
## 13480       10845
## 13481       10845
## 13482       10845
## 13483       10845
## 13484       10845
## 13485       10845
## 13486       10845
## 13487       10845
## 13488       10845
## 13489       10845
## 13490       10845
## 13491       10845
## 13492       10845
## 13493       10845
## 13494       10845
## 13495       10845
## 13496       10845
## 13497       10845
## 13498       10845
## 13499       10845
## 13500       10845
## 13501       10845
## 13502       10845
## 13503       10845
## 13504       10845
## 13505       10845
## 13506       10845
## 13507       10845
## 13508       10845
## 13509       10845
## 13510       10845
## 13511       10845
## 13512       10845
## 13513       10845
## 13514       10845
## 13515       10845
## 13516       10845
## 13517       10845
## 13518       10845
## 13519       10845
## 13520       10845
## 13521       10845
## 13522       10845
## 13523       10845
## 13524       10845
## 13525       10845
## 13526       10845
## 13527       10845
## 13528       10845
## 13529       10845
## 13530       10845
## 13531       10845
## 13532       10845
## 13533       10845
## 13534       10845
## 13535       10845
## 13536       10845
## 13537       10845
## 13538       10845
## 13539       10845
## 13540       10845
## 13541       10845
## 13542       10845
## 13543       10845
## 13544       10845
## 13545       10845
## 13546       10845
## 13547       10845
## 13548       10845
## 13549       10845
## 13550       10845
## 13551       10845
## 13552       10845
## 13553       10845
## 13554       10845
## 13555       10845
## 13556       10845
## 13557       10845
## 13558       10845
## 13559       10845
## 13560       10845
## 13561       10845
## 13562       10845
## 13563       10845
## 13564       10845
## 13565       10845
## 13566       10845
## 13567       10845
## 13568       10845
## 13569       10845
## 13570       10845
## 13571       10845
## 13572       10845
## 13573       10845
## 13574       10845
## 13575       10845
## 13576       10845
## 13577       10845
## 13578       10845
## 13579       10845
## 13580       10845
## 13581       10845
## 13582       10845
## 13583       10845
## 13584       10845
## 13585       10845
## 13586       10845
## 13587       10845
## 13588       10845
## 13589       10845
## 13590       10845
## 13591       10845
## 13592       10845
## 13593       10845
## 13594       10845
## 13595       10845
## 13596       10845
## 13597       10845
## 13598       10845
## 13599       10845
## 13600       10845
## 13601       10845
## 13602       10845
## 13603       10845
## 13604       10845
## 13605       10845
## 13606       10845
## 13607       10845
## 13608       10845
## 13609       10845
## 13610       10845
## 13611       10845
## 13612       10845
## 13613       10845
## 13614       10845
## 13615       10845
## 13616       10845
## 13617       10845
## 13618       10845
## 13619       10845
## 13620       10845
## 13621       10845
## 13622       10845
## 13623       10845
## 13624       10845
## 13625       10845
## 13626       10845
## 13627       10845
## 13628       10845
## 13629       10845
## 13630       10845
## 13631       10845
## 13632       10845
## 13633       10845
## 13634       10845
## 13635       10845
## 13636       10845
## 13637       10845
## 13638       10845
## 13639       10845
## 13640       10845
## 13641       10845
## 13642       10845
## 13643       10845
## 13644       10845
## 13645       10845
## 13646       10845
## 13647       10845
## 13648       10845
## 13649       10845
## 13650       10845
## 13651       10845
## 13652       10845
## 13653       10845
## 13654       10845
## 13655       10845
## 13656       10845
## 13657       10845
## 13658       10845
## 13659       10845
## 13660       10845
## 13661       10845
## 13662       10845
## 13663       10845
## 13664       10845
## 13665       10845
## 13666       10845
## 13667       10845
## 13668       10845
## 13669       10845
## 13670       10845
## 13671       10845
## 13672       10845
## 13673       10845
## 13674       10845
## 13675       10845
## 13676       10845
## 13677       10845
## 13678       10845
## 13679       10845
## 13680       10845
## 13681       10845
## 13682       10845
## 13683       10845
## 13684       10845
## 13685       10845
## 13686       10845
## 13687       10845
## 13688       10845
## 13689       10845
## 13690       10845
## 13691       10845
## 13692       10845
## 13693       10845
## 13694       10845
## 13695       10845
## 13696       10845
## 13697       10845
## 13698       10845
## 13699       10845
## 13700       10845
## 13701       10845
## 13702       10845
## 13703       10845
## 13704       10845
## 13705       10845
## 13706       10845
## 13707       10845
## 13708       10845
## 13709       10845
## 13710       10845
## 13711       10845
## 13712       10845
## 13713       10845
## 13714       10845
## 13715       10845
## 13716       10845
## 13717       10845
## 13718       10845
## 13719       10845
## 13720       10845
## 13721       10845
## 13722       10845
## 13723       10845
## 13724       10845
## 13725       10845
## 13726       10845
## 13727       10845
## 13728       10845
## 13729       10845
## 13730       10845
## 13731       10845
## 13732       10845
## 13733       10845
## 13734       10845
## 13735       10845
## 13736       10845
## 13737       10845
## 13738       10845
## 13739       10845
## 13740       10845
## 13741       10845
## 13742       10845
## 13743       10845
## 13744       10845
## 13745       10845
## 13746       10845
## 13747       10845
## 13748       10845
## 13749       10845
## 13750       10845
## 13751       10845
## 13752       10845
## 13753       10845
## 13754       10845
## 13755       10845
## 13756       10845
## 13757       10845
## 13758       10845
## 13759       10845
## 13760       10845
## 13761       10845
## 13762       10845
## 13763       10845
## 13764       10845
## 13765       10845
## 13766       10845
## 13767       10845
## 13768       10845
## 13769       10845
## 13770       10845
## 13771       10845
## 13772       10845
## 13773       10845
## 13774       10845
## 13775       10845
## 13776       10845
## 13777       10845
## 13778       10845
## 13779       10845
## 13780       10845
## 13781       10845
## 13782       10845
## 13783       10845
## 13784       10845
## 13785       10845
## 13786       10845
## 13787       10845
## 13788       10845
## 13789       10845
## 13790       10845
## 13791       10845
## 13792       10845
## 13793       10845
## 13794       10845
## 13795       10845
## 13796       10845
## 13797       10845
## 13798       10845
## 13799       10845
## 13800       10845
## 13801       10845
## 13802       10845
## 13803       10845
## 13804       10845
## 13805       10845
## 13806       10845
## 13807       10845
## 13808       10845
## 13809       10845
## 13810       10845
## 13811       10845
## 13812       10845
## 13813       10845
## 13814       10845
## 13815       10845
## 13816       10845
## 13817       10845
## 13818       10845
## 13819       10845
## 13820       10845
## 13821       10845
## 13822       10845
## 13823       10845
## 13824       10845
## 13825       10845
## 13826       10845
## 13827       10845
## 13828       10845
## 13829       10845
## 13830       10845
## 13831       10845
## 13832       10845
## 13833       10845
## 13834       10845
## 13835       10845
## 13836       10845
## 13837       10845
## 13838       10845
## 13839       10845
## 13840       10845
## 13841       10845
## 13842       10845
## 13843       10845
## 13844       10845
## 13845       10845
## 13846       10845
## 13847       10845
## 13848       10845
## 13849       10845
## 13850       10845
## 13851       10845
## 13852       10845
## 13853       10845
## 13854       10845
## 13855       10845
## 13856       10845
## 13857       10845
## 13858       10845
## 13859       10845
## 13860       10845
## 13861       10845
## 13862       10845
## 13863       10845
## 13864       10845
## 13865       10845
## 13866       10845
## 13867       10845
## 13868       10845
## 13869       10845
## 13870       10845
## 13871       10845
## 13872       10845
## 13873       10845
## 13874       10845
## 13875       10845
## 13876       10845
## 13877       10845
## 13878       10845
## 13879       10845
## 13880       10845
## 13881       10845
## 13882       10845
## 13883       10845
## 13884       10845
## 13885       10845
## 13886       10845
## 13887       10845
## 13888       10845
## 13889       10845
## 13890       10845
## 13891       10845
## 13892       10845
## 13893      108518
## 13894      108518
## 13895      108518
## 13896      108518
## 13897      108518
## 13898      108518
## 13899      108518
## 13900      108518
## 13901      108518
## 13902      108518
## 13903      108518
## 13904      108518
## 13905      108518
## 13906      108518
## 13907      108518
## 13908      108518
## 13909      108518
## 13910      108518
## 13911      108518
## 13912      108518
## 13913      108518
## 13914      108518
## 13915      108518
## 13916      108518
## 13917      108518
## 13918      108518
## 13919      108518
## 13920      108518
## 13921      108518
## 13922      108518
## 13923      108518
## 13924      108518
## 13925      108518
## 13926      108518
## 13927      108518
## 13928      108518
## 13929      108518
## 13930      108518
## 13931      108518
## 13932      108518
## 13933      108518
## 13934      108518
## 13935      108518
## 13936      108518
## 13937      108518
## 13938      108518
## 13939      108518
## 13940      108518
## 13941      108518
## 13942      108518
## 13943      108518
## 13944      108518
## 13945       10864
## 13946       10864
## 13947       10864
## 13948       10864
## 13949       10864
## 13950       10864
## 13951       10864
## 13952       10864
## 13953       10864
## 13954       10864
## 13955       10864
## 13956       10864
## 13957       10864
## 13958       10864
## 13959       10864
## 13960       10864
## 13961       10864
## 13962       10864
## 13963       10864
## 13964       10864
## 13965       10864
## 13966       10864
## 13967       10864
## 13968       10864
## 13969       10864
## 13970       10864
## 13971       10864
## 13972       10864
## 13973       10864
## 13974       10864
## 13975       10864
## 13976       10864
## 13977       10864
## 13978       10864
## 13979       10864
## 13980       10864
## 13981       10864
## 13982       10864
## 13983       10864
## 13984       10864
## 13985       10864
## 13986       10864
## 13987       10864
## 13988       10864
## 13989       10864
## 13990       10864
## 13991       10864
## 13992       10864
## 13993       10864
## 13994       10864
## 13995       10864
## 13996       10864
## 13997       10864
## 13998       10864
## 13999       10864
## 14000       10864
## 14001       10864
## 14002       10864
## 14003       10864
## 14004       10864
## 14005       10864
## 14006       10864
## 14007       10864
## 14008       10864
## 14009       10864
## 14010       10864
## 14011       10864
## 14012       10864
## 14013       10864
## 14014       10864
## 14015       10864
## 14016       10864
## 14017       10864
## 14018       10864
## 14019       10864
## 14020       10864
## 14021       10864
## 14022       10864
## 14023       10864
## 14024       10864
## 14025       10864
## 14026       10864
## 14027       10864
## 14028       10864
## 14029       10864
## 14030       10864
## 14031       10864
## 14032       10864
## 14033       10864
## 14034       10864
## 14035       10864
## 14036       10864
## 14037       10864
## 14038       10864
## 14039       10864
## 14040       10864
## 14041       10864
## 14042       10864
## 14043       10864
## 14044       10864
## 14045       10864
## 14046       10864
## 14047       10864
## 14048       10864
## 14049       10864
## 14050       10864
## 14051       10864
## 14052       10864
## 14053       10864
## 14054       10864
## 14055       10864
## 14056       10864
## 14057       10864
## 14058       10864
## 14059       10864
## 14060       10864
## 14061       10864
## 14062       10864
## 14063       10864
## 14064       10864
## 14065       10864
## 14066       10864
## 14067       10864
## 14068       10864
## 14069       10864
## 14070       10864
## 14071       10864
## 14072       10864
## 14073       10864
## 14074       10864
## 14075       10864
## 14076       10864
## 14077       10864
## 14078       10864
## 14079       10864
## 14080       10864
## 14081       10864
## 14082       10864
## 14083       10864
## 14084       10864
## 14085       10864
## 14086       10864
## 14087       10864
## 14088       10864
## 14089       10864
## 14090       10864
## 14091       10864
## 14092       10864
## 14093       10864
## 14094       10864
## 14095       10864
## 14096       10864
## 14097       10864
## 14098       10864
## 14099       10864
## 14100       10864
## 14101       10864
## 14102       10864
## 14103       10864
## 14104       10864
## 14105       10864
## 14106       10864
## 14107       10864
## 14108       10864
## 14109       10864
## 14110       10864
## 14111       10864
## 14112       10864
## 14113       10864
## 14114       10864
## 14115       10864
## 14116       10864
## 14117       10864
## 14118       10864
## 14119       10864
## 14120       10864
## 14121       10864
## 14122       10864
## 14123       10864
## 14124       10864
## 14125       10864
## 14126       10864
## 14127       10864
## 14128       10864
## 14129       10864
## 14130       10864
## 14131       10864
## 14132       10864
## 14133       10864
## 14134       10864
## 14135       10864
## 14136       10864
## 14137       10864
## 14138       10864
## 14139       10864
## 14140       10864
## 14141       10864
## 14142       10864
## 14143       10864
## 14144       10864
## 14145       10864
## 14146       10864
## 14147       10864
## 14148       10864
## 14149       10864
## 14150       10864
## 14151       10864
## 14152       10864
## 14153       10864
## 14154       10864
## 14155       10864
## 14156       10864
## 14157       10864
## 14158       10864
## 14159       10864
## 14160       10864
## 14161       10864
## 14162       10864
## 14163       10864
## 14164       10864
## 14165       10864
## 14166       10864
## 14167       10864
## 14168       10864
## 14169       10864
## 14170       10864
## 14171       10864
## 14172       10864
## 14173       10864
## 14174       10864
## 14175       10864
## 14176       10864
## 14177       10864
## 14178       10864
## 14179       10864
## 14180       10864
## 14181       10864
## 14182       10864
## 14183       10864
## 14184       10864
## 14185       10864
## 14186       10864
## 14187       10864
## 14188       10864
## 14189       10864
## 14190       10864
## 14191       10864
## 14192       10864
## 14193       10864
## 14194       10864
## 14195       10864
## 14196       10864
## 14197       10864
## 14198       10864
## 14199       10864
## 14200       10864
## 14201       10864
## 14202       10864
## 14203       10864
## 14204       10864
## 14205       10864
## 14206       10864
## 14207       10864
## 14208       10864
## 14209       10864
## 14210       10864
## 14211       10864
## 14212       10864
## 14213       10864
## 14214       10864
## 14215       10864
## 14216       10864
## 14217       10864
## 14218       10864
## 14219       10864
## 14220       10864
## 14221       10864
## 14222       10864
## 14223      108905
## 14224      108905
## 14225      108905
## 14226      108905
## 14227      108905
## 14228      108905
## 14229      108905
## 14230      108905
## 14231      108905
## 14232      108905
## 14233      108905
## 14234      108905
## 14235      108905
## 14236      108905
## 14237      108905
## 14238      108905
## 14239      108905
## 14240      108905
## 14241      108905
## 14242      108905
## 14243      108905
## 14244      108905
## 14245      108905
## 14246      108905
## 14247      108905
## 14248      109338
## 14249      109338
## 14250      109338
## 14251      109338
## 14252      109338
## 14253      109338
## 14254      109338
## 14255      109338
## 14256      109338
## 14257      109338
## 14258      109338
## 14259      109338
## 14260      109338
## 14261      109338
## 14262      109338
## 14263      109338
## 14264      109338
## 14265      109338
## 14266      109338
## 14267      109338
## 14268      109338
## 14269      109350
## 14270      109350
## 14271      109350
## 14272      109350
## 14273      109350
## 14274      109350
## 14275      109350
## 14276      109350
## 14277      109350
## 14278      109350
## 14279      109350
## 14280      109350
## 14281      109350
## 14282      109350
## 14283      109350
## 14284      109350
## 14285      109350
## 14286      109350
## 14287      109350
## 14288      109475
## 14289      109475
## 14290      109475
## 14291      109475
## 14292      109475
## 14293      109475
## 14294      109475
## 14295      109475
## 14296      109475
## 14297      109475
## 14298      109475
## 14299      109475
## 14300      109475
## 14301      109475
## 14302      109475
## 14303      109475
## 14304      109475
## 14305      109475
## 14306      109475
## 14307      109475
## 14308      109475
## 14309      109475
## 14310      109475
## 14311      109475
## 14312      109475
## 14313      109475
## 14314      109475
## 14315      109475
## 14316      109475
## 14317      109475
## 14318      109475
## 14319      109475
## 14320      109475
## 14321      109475
## 14322      109475
## 14323      109475
## 14324      109475
## 14325      109475
## 14326      109475
## 14327      109475
## 14328      109475
## 14329      109475
## 14330      109475
## 14331      109475
## 14332      109475
## 14333      109475
## 14334      109475
## 14335      109475
## 14336      109475
## 14337      109475
## 14338      109475
## 14339      109475
## 14340      109475
## 14341      109475
## 14342      109475
## 14343      109475
## 14344      109475
## 14345      109475
## 14346      109475
## 14347      109475
## 14348      109475
## 14349      109475
## 14350      109475
## 14351      109475
## 14352      109475
## 14353      109475
## 14354      109475
## 14355      109475
## 14356      109475
## 14357      109475
## 14358      109475
## 14359      109475
## 14360      109475
## 14361      109475
## 14362      109475
## 14363      109475
## 14364      109475
## 14365      109475
## 14366      109475
## 14367      109475
## 14368      109475
## 14369      109475
## 14370      109475
## 14371      109475
## 14372      109475
## 14373      109475
## 14374      109475
## 14375      109475
## 14376      109475
## 14377      109475
## 14378      109475
## 14379      109475
## 14380      109475
## 14381      109475
## 14382      109475
## 14383      109475
## 14384      109475
## 14385      109475
## 14386      109475
## 14387      109475
## 14388      109475
## 14389      109475
## 14390      109475
## 14391      109475
## 14392      109475
## 14393      109475
## 14394      109475
## 14395      109475
## 14396      109475
## 14397      109475
## 14398      109475
## 14399      109475
## 14400      109475
## 14401      109475
## 14402      109475
## 14403      109475
## 14404      109475
## 14405      109475
## 14406      109475
## 14407      109475
## 14408      109493
## 14409      109493
## 14410      109493
## 14411      109493
## 14412      109493
## 14413      109493
## 14414      109493
## 14415      109493
## 14416      109493
## 14417      109493
## 14418      109493
## 14419      109493
## 14420      109493
## 14421      109493
## 14422      109493
## 14423      109493
## 14424      109493
## 14425      109493
## 14426      109493
## 14427      109493
## 14428      109493
## 14429      109493
## 14430      109493
## 14431      109493
## 14432      109493
## 14433      109493
## 14434      109493
## 14435      109493
## 14436      109493
## 14437      109493
## 14438      109493
## 14439      109493
## 14440      109493
## 14441      109493
## 14442      109493
## 14443      109713
## 14444      109713
## 14445      109713
## 14446      109713
## 14447      109713
## 14448      109713
## 14449      109713
## 14450      109713
## 14451      109713
## 14452      109713
## 14453      109713
## 14454      109713
## 14455      109713
## 14456      109713
## 14457      109713
## 14458      109713
## 14459      109713
## 14460      109713
## 14461      109713
## 14462      109713
## 14463      109713
## 14464      109785
## 14465      109785
## 14466      109785
## 14467      109785
## 14468      109785
## 14469      109785
## 14470      109785
## 14471      109785
## 14472      109785
## 14473      109785
## 14474      109785
## 14475      109785
## 14476      109785
## 14477      109785
## 14478      109785
## 14479      109785
## 14480      109785
## 14481      109785
## 14482      109785
## 14483      109785
## 14484      109785
## 14485      109785
## 14486      109785
## 14487      109785
## 14488      109785
## 14489      109785
## 14490      109785
## 14491      109785
## 14492      109785
## 14493      109816
## 14494      109816
## 14495      109816
## 14496      109816
## 14497      109816
## 14498      109816
## 14499      109816
## 14500      109816
## 14501      109816
## 14502      109816
## 14503      109816
## 14504      109816
## 14505      109816
## 14506      109816
## 14507      109816
## 14508      109816
## 14509      109816
## 14510      109816
## 14511      109816
## 14512      109816
## 14513      109816
## 14514      109816
## 14515      109816
## 14516      109816
## 14517      109816
## 14518      109816
## 14519      109816
## 14520      109816
## 14521      109816
## 14522      109816
## 14523      109816
## 14524      109816
## 14525      109816
## 14526      109816
## 14527      109816
## 14528      109816
## 14529      109816
## 14530      109816
## 14531      109816
## 14532      109816
## 14533      109816
## 14534      109816
## 14535      109816
## 14536      109816
## 14537      109816
## 14538      109816
## 14539      109816
## 14540      109816
## 14541      109816
## 14542      109816
## 14543      109816
## 14544      109844
## 14545      109844
## 14546      109844
## 14547      109844
## 14548      109844
## 14549      109844
## 14550      109844
## 14551      109844
## 14552      109844
## 14553      109844
## 14554      109844
## 14555      109844
## 14556      109844
## 14557      109844
## 14558      109844
## 14559      109844
## 14560      109844
## 14561      109844
## 14562      109844
## 14563      109844
## 14564      109844
## 14565      109844
## 14566      109844
## 14567      109844
## 14568      109844
## 14569      109844
## 14570      109844
## 14571      109844
## 14572      109844
## 14573      109844
## 14574      109844
## 14575      109844
## 14576      109844
## 14577      109844
## 14578      109844
## 14579      109844
## 14580      109844
## 14581      109844
## 14582      109844
## 14583      109970
## 14584      109970
## 14585      109970
## 14586      109970
## 14587      109970
## 14588      109970
## 14589      109970
## 14590      109970
## 14591      109970
## 14592      109970
## 14593      109970
## 14594      109970
## 14595      109970
## 14596      109970
## 14597      109970
## 14598      109970
## 14599      109970
## 14600      109970
## 14601      109970
## 14602      109970
## 14603      109970
## 14604      109970
## 14605      109970
## 14606       11001
## 14607       11001
## 14608       11001
## 14609       11001
## 14610       11001
## 14611       11001
## 14612       11001
## 14613       11001
## 14614       11001
## 14615       11001
## 14616       11001
## 14617       11001
## 14618       11001
## 14619       11001
## 14620       11001
## 14621       11001
## 14622       11001
## 14623       11001
## 14624       11001
## 14625       11001
## 14626       11001
## 14627       11001
## 14628       11001
## 14629       11001
## 14630       11001
## 14631       11001
## 14632       11001
## 14633       11001
## 14634       11001
## 14635       11001
## 14636       11001
## 14637       11001
## 14638       11001
## 14639       11001
## 14640       11001
## 14641       11001
## 14642       11001
## 14643       11001
## 14644       11001
## 14645       11001
## 14646       11001
## 14647       11001
## 14648       11001
## 14649       11001
## 14650       11001
## 14651       11001
## 14652       11001
## 14653       11001
## 14654       11001
## 14655       11001
## 14656       11001
## 14657       11001
## 14658       11001
## 14659       11001
## 14660       11001
## 14661       11001
## 14662       11001
## 14663       11001
## 14664       11001
## 14665       11001
## 14666       11001
## 14667       11001
## 14668       11001
## 14669       11001
## 14670       11001
## 14671       11001
## 14672       11001
## 14673       11001
## 14674       11001
## 14675       11001
## 14676       11001
## 14677       11001
## 14678       11001
## 14679       11001
## 14680       11001
## 14681       11001
## 14682       11001
## 14683       11001
## 14684       11001
## 14685       11001
## 14686       11001
## 14687       11001
## 14688       11001
## 14689       11001
## 14690       11001
## 14691       11001
## 14692       11001
## 14693       11001
## 14694       11001
## 14695       11001
## 14696       11001
## 14697       11001
## 14698       11001
## 14699       11001
## 14700       11001
## 14701       11001
## 14702       11001
## 14703       11001
## 14704       11001
## 14705       11001
## 14706       11001
## 14707       11001
## 14708       11001
## 14709       11001
## 14710       11001
## 14711       11001
## 14712       11001
## 14713       11001
## 14714       11001
## 14715       11001
## 14716       11001
## 14717       11001
## 14718       11001
## 14719       11001
## 14720       11001
## 14721       11001
## 14722       11001
## 14723       11001
## 14724       11001
## 14725       11001
## 14726       11001
## 14727       11001
## 14728       11001
## 14729       11001
## 14730       11001
## 14731       11001
## 14732       11001
## 14733       11001
## 14734       11001
## 14735       11001
## 14736       11001
## 14737       11001
## 14738       11001
## 14739       11001
## 14740       11001
## 14741       11001
## 14742       11001
## 14743       11001
## 14744       11001
## 14745       11001
## 14746       11001
## 14747       11001
## 14748       11001
## 14749       11001
## 14750       11001
## 14751       11001
## 14752       11001
## 14753       11001
## 14754       11001
## 14755       11001
## 14756       11001
## 14757       11001
## 14758       11001
## 14759       11001
## 14760       11001
## 14761       11001
## 14762       11001
## 14763       11001
## 14764       11001
## 14765       11001
## 14766       11001
## 14767       11001
## 14768       11001
## 14769       11001
## 14770       11001
## 14771       11001
## 14772       11001
## 14773       11001
## 14774       11001
## 14775       11001
## 14776       11001
## 14777       11001
## 14778       11001
## 14779       11001
## 14780       11001
## 14781       11001
## 14782       11001
## 14783       11001
## 14784       11001
## 14785       11001
## 14786       11001
## 14787       11001
## 14788       11001
## 14789       11001
## 14790       11001
## 14791       11001
## 14792       11001
## 14793       11001
## 14794       11001
## 14795       11001
## 14796       11001
## 14797       11001
## 14798       11001
## 14799       11001
## 14800       11001
## 14801       11001
## 14802       11001
## 14803       11001
## 14804       11001
## 14805       11001
## 14806       11001
## 14807       11001
## 14808       11001
## 14809       11001
## 14810       11001
## 14811       11001
## 14812       11001
## 14813       11001
## 14814       11001
## 14815       11001
## 14816       11001
## 14817       11001
## 14818       11001
## 14819       11001
## 14820       11001
## 14821       11001
## 14822       11001
## 14823       11001
## 14824       11001
## 14825       11001
## 14826       11001
## 14827       11001
## 14828       11001
## 14829       11001
## 14830       11001
## 14831       11001
## 14832       11001
## 14833       11001
## 14834       11001
## 14835       11001
## 14836       11001
## 14837       11001
## 14838       11001
## 14839       11001
## 14840       11001
## 14841       11001
## 14842       11001
## 14843       11001
## 14844       11001
## 14845       11001
## 14846       11001
## 14847       11001
## 14848       11001
## 14849       11001
## 14850       11001
## 14851       11001
## 14852       11001
## 14853       11001
## 14854       11001
## 14855       11001
## 14856       11001
## 14857       11001
## 14858       11001
## 14859       11001
## 14860       11001
## 14861       11001
## 14862       11001
## 14863       11001
## 14864       11001
## 14865       11001
## 14866       11001
## 14867       11001
## 14868       11001
## 14869       11001
## 14870       11001
## 14871       11001
## 14872       11001
## 14873       11001
## 14874       11001
## 14875       11001
## 14876       11001
## 14877       11001
## 14878       11001
## 14879       11001
## 14880       11001
## 14881       11001
## 14882       11001
## 14883       11001
## 14884       11001
## 14885       11001
## 14886       11001
## 14887       11001
## 14888       11001
## 14889       11001
## 14890       11001
## 14891       11001
## 14892       11001
## 14893       11001
## 14894       11001
## 14895       11001
## 14896       11001
## 14897       11001
## 14898       11001
## 14899       11001
## 14900       11001
## 14901       11001
## 14902       11001
## 14903       11001
## 14904       11001
## 14905       11001
## 14906       11001
## 14907       11001
## 14908       11001
## 14909       11001
## 14910       11001
## 14911       11001
## 14912       11001
## 14913       11001
## 14914       11001
## 14915       11001
## 14916       11001
## 14917       11001
## 14918       11001
## 14919       11001
## 14920       11001
## 14921       11001
## 14922       11001
## 14923       11001
## 14924       11001
## 14925       11001
## 14926       11001
## 14927       11001
## 14928       11001
## 14929       11001
## 14930       11001
## 14931       11001
## 14932       11001
## 14933       11001
## 14934       11001
## 14935       11001
## 14936       11001
## 14937       11001
## 14938       11001
## 14939       11001
## 14940       11001
## 14941      110017
## 14942      110017
## 14943      110017
## 14944      110017
## 14945      110017
## 14946      110017
## 14947      110017
## 14948      110017
## 14949      110017
## 14950      110017
## 14951      110017
## 14952      110017
## 14953      110017
## 14954      110017
## 14955      110017
## 14956      110017
## 14957      110017
## 14958      110017
## 14959      110017
## 14960      110017
## 14961      110017
## 14962      110017
## 14963      110017
## 14964      110017
## 14965      110017
## 14966      110017
## 14967      110017
## 14968      110017
## 14969      110017
## 14970      110017
## 14971      110017
## 14972      110017
## 14973      110017
## 14974      110017
## 14975      110017
## 14976      110017
## 14977      110017
## 14978      110017
## 14979      110017
## 14980      110017
## 14981      110017
## 14982      110017
## 14983      110017
## 14984      110017
## 14985      110017
## 14986      110017
## 14987      110017
## 14988      110017
## 14989      110017
## 14990      110017
## 14991      110017
## 14992      110017
## 14993      110017
## 14994      110017
## 14995      110017
## 14996      110017
## 14997      110017
## 14998      110017
## 14999      110017
## 15000      110017
## 15001      110017
## 15002      110017
## 15003      110017
## 15004      110017
## 15005      110017
## 15006      110017
## 15007      110017
## 15008      110017
## 15009      110017
## 15010      110017
## 15011      110017
## 15012      110017
## 15013      110017
## 15014      110017
## 15015      110017
## 15016      110017
## 15017      110017
## 15018      110017
## 15019      110017
## 15020      110017
## 15021      110017
## 15022      110017
## 15023      110017
## 15024      110017
## 15025      110017
## 15026      110017
## 15027      110017
## 15028      110017
## 15029      110017
## 15030      110017
## 15031      110017
## 15032      110017
## 15033      110017
## 15034      110017
## 15035      110017
## 15036      110017
## 15037      110017
## 15038      110017
## 15039      110017
## 15040      110017
## 15041      110017
## 15042      110017
## 15043      110017
## 15044      110017
## 15045      110017
## 15046      110017
## 15047      110017
## 15048      110017
## 15049      110017
## 15050      110017
## 15051      110017
## 15052      110017
## 15053      110017
## 15054      110017
## 15055      110017
## 15056      110017
## 15057      110017
## 15058      110017
## 15059      110017
## 15060      110017
## 15061      110017
## 15062      110017
## 15063      110017
## 15064      110017
## 15065      110017
## 15066      110017
## 15067      110017
## 15068      110017
## 15069      110017
## 15070      110017
## 15071      110017
## 15072      110017
## 15073      110017
## 15074      110017
## 15075      110017
## 15076      110017
## 15077      110017
## 15078      110017
## 15079      110017
## 15080      110017
## 15081      110017
## 15082      110017
## 15083      110017
## 15084      110017
## 15085      110017
## 15086      110017
## 15087      110017
## 15088      110017
## 15089      110017
## 15090      110017
## 15091      110017
## 15092      110017
## 15093      110017
## 15094      110017
## 15095      110017
## 15096      110017
## 15097      110017
## 15098      110017
## 15099      110017
## 15100      110017
## 15101      110017
## 15102      110017
## 15103      110017
## 15104      110017
## 15105      110017
## 15106      110017
## 15107      110017
## 15108      110017
## 15109      110017
## 15110      110017
## 15111      110017
## 15112      110017
## 15113      110017
## 15114      110087
## 15115      110087
## 15116      110087
## 15117      110087
## 15118      110087
## 15119      110087
## 15120      110087
## 15121      110087
## 15122      110087
## 15123      110087
## 15124      110087
## 15125      110087
## 15126      110087
## 15127      110087
## 15128      110087
## 15129      110087
## 15130      110087
## 15131      110087
## 15132      110087
## 15133      110087
## 15134      110087
## 15135      110087
## 15136      110087
## 15137      110087
## 15138      110087
## 15139      110087
## 15140      110087
## 15141      110087
## 15142      110087
## 15143      110087
## 15144      110148
## 15145      110148
## 15146      110148
## 15147      110148
## 15148      110148
## 15149      110148
## 15150      110148
## 15151      110148
## 15152      110148
## 15153      110148
## 15154      110148
## 15155      110148
## 15156      110148
## 15157      110148
## 15158      110148
## 15159      110148
## 15160      110148
## 15161      110148
## 15162      110148
## 15163      110148
## 15164      110148
## 15165      110148
## 15166      110148
## 15167      110148
## 15168      110148
## 15169      110148
## 15170      110148
## 15171      110148
## 15172      110148
## 15173      110148
## 15174      110148
## 15175      110148
## 15176      110148
## 15177      110148
## 15178      110148
## 15179      110394
## 15180      110394
## 15181      110394
## 15182      110394
## 15183      110394
## 15184      110394
## 15185      110394
## 15186      110394
## 15187      110394
## 15188      110394
## 15189      110394
## 15190      110394
## 15191      110394
## 15192      110394
## 15193      110394
## 15194      110394
## 15195      110394
## 15196      110394
## 15197      110394
## 15198      110394
## 15199      110394
## 15200      110394
## 15201      110394
## 15202      110394
## 15203      110394
## 15204      110394
## 15205      110394
## 15206      110394
## 15207      110774
## 15208      110774
## 15209      110774
## 15210      110774
## 15211      110774
## 15212      110774
## 15213      110774
## 15214      110774
## 15215      110774
## 15216      110774
## 15217      110774
## 15218      110774
## 15219      110774
## 15220      110774
## 15221      110774
## 15222      110774
## 15223      110774
## 15224      110774
## 15225      110774
## 15226      110774
## 15227      110774
## 15228      110774
## 15229      110774
## 15230      110774
## 15231      110774
## 15232      110774
## 15233      110774
## 15234      110774
## 15235      110774
## 15236      110774
## 15237      110774
## 15238      110774
## 15239      110774
## 15240      110774
## 15241      110774
## 15242      110774
## 15243      110774
## 15244      110774
## 15245      110774
## 15246      110774
## 15247      110774
## 15248      110774
## 15249      110774
## 15250      110774
## 15251      110774
## 15252      110774
## 15253      110774
## 15254      110774
## 15255      110774
## 15256      110774
## 15257      110774
## 15258      110774
## 15259      110774
## 15260      110774
## 15261      110774
## 15262      110774
## 15263      110774
## 15264      110774
## 15265      110774
## 15266      110774
## 15267      110774
## 15268      110774
## 15269      110774
## 15270      110774
## 15271      110774
## 15272      110865
## 15273      110865
## 15274      110865
## 15275      110865
## 15276      110865
## 15277      110865
## 15278      110865
## 15279      110865
## 15280      110865
## 15281      110865
## 15282      110865
## 15283      110865
## 15284      110865
## 15285      110865
## 15286      110865
## 15287      110865
## 15288      110865
## 15289      110865
## 15290      110865
## 15291      110865
## 15292      110865
## 15293      110865
## 15294      110865
## 15295      110865
## 15296      110865
## 15297      110865
## 15298      110865
## 15299      110865
## 15300       11092
## 15301       11092
## 15302       11092
## 15303       11092
## 15304       11092
## 15305       11092
## 15306       11092
## 15307       11092
## 15308       11092
## 15309       11092
## 15310       11092
## 15311       11092
## 15312       11092
## 15313       11092
## 15314       11092
## 15315       11092
## 15316       11092
## 15317       11092
## 15318       11092
## 15319       11092
## 15320       11092
## 15321       11092
## 15322       11092
## 15323       11092
## 15324       11092
## 15325       11092
## 15326       11092
## 15327       11092
## 15328       11092
## 15329       11092
## 15330       11092
## 15331       11092
## 15332       11092
## 15333       11092
## 15334       11092
## 15335       11092
## 15336       11092
## 15337       11092
## 15338       11092
## 15339       11092
## 15340       11092
## 15341       11092
## 15342       11092
## 15343       11092
## 15344       11092
## 15345       11092
## 15346       11092
## 15347       11092
## 15348       11092
## 15349       11092
## 15350       11092
## 15351       11092
## 15352       11092
## 15353       11092
## 15354       11092
## 15355       11092
## 15356       11092
## 15357       11092
## 15358       11092
## 15359       11092
## 15360       11092
## 15361       11092
## 15362       11092
## 15363       11092
## 15364       11092
## 15365       11092
## 15366       11092
## 15367       11092
## 15368       11092
## 15369       11092
## 15370       11092
## 15371       11092
## 15372       11092
## 15373       11092
## 15374       11092
## 15375       11092
## 15376       11092
## 15377       11092
## 15378       11092
## 15379       11092
## 15380       11092
## 15381       11092
## 15382       11092
## 15383       11092
## 15384       11092
## 15385       11092
## 15386       11092
## 15387       11092
## 15388       11092
## 15389       11092
## 15390       11092
## 15391       11092
## 15392       11092
## 15393       11092
## 15394       11092
## 15395       11092
## 15396       11092
## 15397       11092
## 15398       11092
## 15399       11092
## 15400       11092
## 15401       11092
## 15402       11092
## 15403       11092
## 15404       11092
## 15405       11092
## 15406       11092
## 15407       11092
## 15408       11092
## 15409       11092
## 15410       11092
## 15411       11092
## 15412       11092
## 15413       11092
## 15414       11092
## 15415       11092
## 15416       11092
## 15417       11092
## 15418       11092
## 15419       11092
## 15420       11092
## 15421       11092
## 15422       11092
## 15423       11092
## 15424       11092
## 15425       11092
## 15426       11092
## 15427       11092
## 15428       11092
## 15429       11092
## 15430       11092
## 15431       11092
## 15432       11092
## 15433       11092
## 15434       11092
## 15435       11092
## 15436       11092
## 15437       11092
## 15438       11092
## 15439       11092
## 15440       11092
## 15441       11092
## 15442       11092
## 15443       11092
## 15444       11092
## 15445       11092
## 15446       11092
## 15447       11092
## 15448       11092
## 15449       11092
## 15450       11092
## 15451       11092
## 15452       11092
## 15453       11092
## 15454       11092
## 15455       11092
## 15456       11092
## 15457       11092
## 15458       11092
## 15459       11092
## 15460       11092
## 15461       11092
## 15462       11092
## 15463       11092
## 15464       11092
## 15465       11092
## 15466       11092
## 15467       11092
## 15468       11092
## 15469       11092
## 15470       11092
## 15471       11092
## 15472       11092
## 15473       11092
## 15474       11092
## 15475       11092
## 15476       11092
## 15477       11092
## 15478       11092
## 15479       11092
## 15480       11092
## 15481       11092
## 15482       11092
## 15483       11092
## 15484       11092
## 15485       11092
## 15486       11092
## 15487       11092
## 15488       11092
## 15489       11092
## 15490       11092
## 15491       11092
## 15492       11092
## 15493       11092
## 15494       11092
## 15495       11092
## 15496       11092
## 15497       11092
## 15498       11092
## 15499       11092
## 15500       11092
## 15501       11092
## 15502       11092
## 15503       11092
## 15504       11092
## 15505       11092
## 15506       11092
## 15507       11092
## 15508       11092
## 15509       11092
## 15510       11092
## 15511       11092
## 15512       11092
## 15513       11092
## 15514       11092
## 15515       11092
## 15516       11092
## 15517       11092
## 15518       11092
## 15519       11092
## 15520       11092
## 15521       11092
## 15522       11092
## 15523       11092
## 15524       11092
## 15525       11092
## 15526       11092
## 15527       11092
## 15528       11092
## 15529       11092
## 15530       11092
## 15531       11092
## 15532       11092
## 15533       11092
## 15534       11092
## 15535       11092
## 15536       11092
## 15537       11092
## 15538       11092
## 15539       11092
## 15540       11092
## 15541       11092
## 15542       11092
## 15543       11092
## 15544       11092
## 15545       11092
## 15546       11092
## 15547       11092
## 15548       11092
## 15549       11092
## 15550       11092
## 15551       11092
## 15552       11092
## 15553       11092
## 15554       11092
## 15555       11092
## 15556       11092
## 15557       11092
## 15558       11092
## 15559       11092
## 15560       11092
## 15561       11092
## 15562       11092
## 15563       11092
## 15564       11092
## 15565       11092
## 15566       11092
## 15567       11092
## 15568       11092
## 15569       11092
## 15570       11092
## 15571       11092
## 15572       11092
## 15573       11092
## 15574       11092
## 15575       11092
## 15576       11092
## 15577       11092
## 15578       11092
## 15579       11092
## 15580       11092
## 15581       11092
## 15582       11092
## 15583       11092
## 15584       11092
## 15585       11092
## 15586       11092
## 15587       11092
## 15588       11092
## 15589       11092
## 15590       11092
## 15591       11092
## 15592       11092
## 15593       11092
## 15594       11092
## 15595       11092
## 15596       11092
## 15597       11092
## 15598       11092
## 15599       11092
## 15600       11092
## 15601       11092
## 15602       11092
## 15603       11092
## 15604       11092
## 15605       11092
## 15606       11092
## 15607       11092
## 15608       11092
## 15609       11092
## 15610       11092
## 15611       11092
## 15612       11092
## 15613       11092
## 15614       11092
## 15615       11092
## 15616       11092
## 15617       11092
## 15618       11092
## 15619       11092
## 15620      110988
## 15621      110988
## 15622      110988
## 15623      110988
## 15624      110988
## 15625      110988
## 15626      110988
## 15627      110988
## 15628      110988
## 15629      110988
## 15630      110988
## 15631      110988
## 15632      110988
## 15633      110988
## 15634      110988
## 15635      110988
## 15636      110988
## 15637      110988
## 15638      110988
## 15639      110988
## 15640      110988
## 15641      110988
## 15642      110988
## 15643      110988
## 15644      110988
## 15645      110988
## 15646      110988
## 15647      110988
## 15648      110988
## 15649      110988
## 15650      110988
## 15651      110988
## 15652      110988
## 15653      110988
## 15654      110988
## 15655      110988
## 15656      110988
## 15657      110988
## 15658      110988
## 15659      110988
## 15660      110988
## 15661      110988
## 15662      110988
## 15663      110988
## 15664      110988
## 15665      110988
## 15666      110988
## 15667      110988
## 15668      110988
## 15669      110988
## 15670      110988
## 15671      110988
## 15672      110988
## 15673      110988
## 15674      110988
## 15675      110988
## 15676      110988
## 15677      110988
## 15678      110988
## 15679      110988
## 15680      110988
## 15681      110988
## 15682      110988
## 15683      110988
## 15684      110988
## 15685      110988
## 15686      110988
## 15687      110988
## 15688      110988
## 15689      110988
## 15690      110988
## 15691      110988
## 15692      110988
## 15693      110988
## 15694      110988
## 15695      110988
## 15696      110988
## 15697      110988
## 15698      110988
## 15699      110988
## 15700      110988
## 15701      110988
## 15702      110988
## 15703      110988
## 15704      110988
## 15705      110988
## 15706      110988
## 15707      110988
## 15708      110988
## 15709      110988
## 15710      110988
## 15711      110988
## 15712      110988
## 15713      110988
## 15714      110988
## 15715      110988
## 15716      110988
## 15717      110988
## 15718      110988
## 15719      110988
## 15720      110988
## 15721      110988
## 15722      110988
## 15723      110988
## 15724      110988
## 15725      110988
## 15726      110988
## 15727      110988
## 15728      110988
## 15729      110988
## 15730      110988
## 15731      110988
## 15732      110988
## 15733      110988
## 15734      110988
## 15735      110988
## 15736      110988
## 15737      110988
## 15738      110988
## 15739      110988
## 15740      110988
## 15741      110988
## 15742      110988
## 15743      110988
## 15744      110988
## 15745      110988
## 15746      110988
## 15747      110988
## 15748      110988
## 15749      110988
## 15750      110988
## 15751      110988
## 15752      110988
## 15753      110988
## 15754      110988
## 15755      110988
## 15756      110988
## 15757      110988
## 15758      110988
## 15759      110988
## 15760      110998
## 15761      110998
## 15762      110998
## 15763      110998
## 15764      110998
## 15765      110998
## 15766      110998
## 15767      110998
## 15768      110998
## 15769      110998
## 15770      110998
## 15771      110998
## 15772      110998
## 15773      110998
## 15774      110998
## 15775      110998
## 15776      110998
## 15777      110998
## 15778      110998
## 15779      110998
## 15780      110998
## 15781      110998
## 15782      110998
## 15783      110998
## 15784      110998
## 15785      110998
## 15786      110998
## 15787      110998
## 15788      110998
## 15789      110998
## 15790      110998
## 15791      110998
## 15792      110998
## 15793      110998
## 15794      110998
## 15795      110998
## 15796      110998
## 15797      110998
## 15798      110998
## 15799      110998
## 15800      110998
## 15801      110998
## 15802      110998
## 15803      110998
## 15804      111035
## 15805      111035
## 15806      111035
## 15807      111035
## 15808      111035
## 15809      111035
## 15810      111035
## 15811      111035
## 15812      111035
## 15813      111035
## 15814      111035
## 15815      111035
## 15816      111035
## 15817      111035
## 15818      111035
## 15819      111035
## 15820      111035
## 15821      111035
## 15822      111035
## 15823      111035
## 15824      111035
## 15825      111035
## 15826      111035
## 15827      111035
## 15828      111035
## 15829      111035
## 15830      111035
## 15831      111035
## 15832      111035
## 15833      111035
## 15834      111035
## 15835      111035
## 15836      111035
## 15837      111035
## 15838      111035
## 15839      111035
## 15840      111035
## 15841      111035
## 15842      111035
## 15843      111035
## 15844      111035
## 15845      111035
## 15846      111194
## 15847      111194
## 15848      111194
## 15849      111194
## 15850      111194
## 15851      111194
## 15852      111194
## 15853      111194
## 15854      111194
## 15855      111194
## 15856      111194
## 15857      111194
## 15858      111194
## 15859      111194
## 15860      111194
## 15861      111194
## 15862      111194
## 15863      111194
## 15864      111194
## 15865      111194
## 15866      111194
## 15867      111194
## 15868      111194
## 15869      111194
## 15870      111194
## 15871      111194
## 15872      111194
## 15873      111194
## 15874      111194
## 15875      111194
## 15876      111194
## 15877      111194
## 15878      111194
## 15879      111194
## 15880      111194
## 15881      111194
## 15882      111194
## 15883      111194
## 15884      111194
## 15885      111194
## 15886      111194
## 15887      111194
## 15888      111194
## 15889      111194
## 15890      111194
## 15891      111194
## 15892      111194
## 15893      111194
## 15894      111194
## 15895      111194
## 15896      111194
## 15897      111194
## 15898      111194
## 15899      111194
## 15900      111194
## 15901      111194
## 15902      111194
## 15903      111194
## 15904      111194
## 15905      111194
## 15906      111194
## 15907      111194
## 15908      111194
## 15909      111194
## 15910      111194
## 15911      111194
## 15912      111194
## 15913      111194
## 15914      111194
## 15915      111194
## 15916      111194
## 15917      111194
## 15918      111194
## 15919      111194
## 15920      111194
## 15921      111194
## 15922      111194
## 15923      111194
## 15924      111194
## 15925      111194
## 15926      111194
## 15927      111194
## 15928      111194
## 15929      111194
## 15930      111194
## 15931      111194
## 15932      111194
## 15933      111194
## 15934      111194
## 15935      111194
## 15936      111194
## 15937      111194
## 15938      111194
## 15939      111194
## 15940      111194
## 15941      111194
## 15942      111194
## 15943      111194
## 15944      111273
## 15945      111273
## 15946      111273
## 15947      111273
## 15948      111273
## 15949      111273
## 15950      111273
## 15951      111273
## 15952      111273
## 15953      111273
## 15954      111273
## 15955      111273
## 15956      111273
## 15957      111273
## 15958      111273
## 15959      111273
## 15960      111273
## 15961      111273
## 15962      111397
## 15963      111397
## 15964      111397
## 15965      111397
## 15966      111397
## 15967      111397
## 15968      111397
## 15969      111397
## 15970      111397
## 15971      111397
## 15972      111397
## 15973      111397
## 15974      111397
## 15975      111397
## 15976      111397
## 15977      111397
## 15978      111397
## 15979      111397
## 15980      111397
## 15981      111424
## 15982      111424
## 15983      111424
## 15984      111424
## 15985      111424
## 15986      111424
## 15987      111424
## 15988      111424
## 15989      111424
## 15990      111424
## 15991      111424
## 15992      111424
## 15993      111424
## 15994      111424
## 15995      111424
## 15996      111424
## 15997      111424
## 15998      111424
## 15999      111424
## 16000      111424
## 16001      111424
## 16002      111424
## 16003      111424
## 16004      111424
## 16005      111424
## 16006      111424
## 16007      111424
## 16008      111424
## 16009      111424
## 16010      111424
## 16011      111424
## 16012      111424
## 16013      111425
## 16014      111425
## 16015      111425
## 16016      111425
## 16017      111425
## 16018      111425
## 16019      111425
## 16020      111425
## 16021      111425
## 16022      111425
## 16023      111425
## 16024      111425
## 16025      111425
## 16026      111425
## 16027      111425
## 16028      111425
## 16029      111425
## 16030      111425
## 16031      111425
## 16032      111723
## 16033      111723
## 16034      111723
## 16035      111723
## 16036      111723
## 16037      111723
## 16038      111723
## 16039      111723
## 16040      111723
## 16041      111723
## 16042      111723
## 16043      111723
## 16044      111723
## 16045      111723
## 16046      111723
## 16047      111723
## 16048      111723
## 16049      111723
## 16050      111746
## 16051      111746
## 16052      111746
## 16053      111746
## 16054      111746
## 16055      111746
## 16056      111746
## 16057      111746
## 16058      111746
## 16059      111746
## 16060      111746
## 16061      111746
## 16062      111746
## 16063      111746
## 16064      111746
## 16065      111746
## 16066      111746
## 16067      111746
## 16068      111746
## 16069      111746
## 16070      111746
## 16071      111746
## 16072      111746
## 16073      111746
## 16074      111746
## 16075      111746
## 16076      111807
## 16077      111807
## 16078      111807
## 16079      111807
## 16080      111807
## 16081      111807
## 16082      111807
## 16083      111807
## 16084      111807
## 16085      111807
## 16086      111807
## 16087      111807
## 16088      111807
## 16089      111807
## 16090      111807
## 16091      111807
## 16092      111807
## 16093      111807
## 16094      111807
## 16095      111807
## 16096      111868
## 16097      111868
## 16098      111868
## 16099      111868
## 16100      111868
## 16101      111868
## 16102      111868
## 16103      111868
## 16104      111868
## 16105      111868
## 16106      111868
## 16107      111868
## 16108      111868
## 16109      111868
## 16110      111868
## 16111      111868
## 16112      111868
## 16113      111868
## 16114      111868
## 16115      111868
## 16116      111868
## 16117      111868
## 16118      111868
## 16119      111868
## 16120      111868
## 16121      112147
## 16122      112147
## 16123      112147
## 16124      112147
## 16125      112147
## 16126      112147
## 16127      112147
## 16128      112147
## 16129      112147
## 16130      112147
## 16131      112147
## 16132      112147
## 16133      112147
## 16134      112147
## 16135      112147
## 16136      112147
## 16137      112147
## 16138      112147
## 16139      112147
## 16140      112147
## 16141      112147
## 16142      112147
## 16143      112147
## 16144      112147
## 16145      112147
## 16146      112147
## 16147      112147
## 16148      112272
## 16149      112272
## 16150      112272
## 16151      112272
## 16152      112272
## 16153      112272
## 16154      112272
## 16155      112272
## 16156      112272
## 16157      112272
## 16158      112272
## 16159      112272
## 16160      112272
## 16161      112272
## 16162      112272
## 16163      112272
## 16164      112272
## 16165      112272
## 16166      112272
## 16167      112272
## 16168      112272
## 16169      112279
## 16170      112279
## 16171      112279
## 16172      112279
## 16173      112279
## 16174      112279
## 16175      112279
## 16176      112279
## 16177      112279
## 16178      112279
## 16179      112279
## 16180      112279
## 16181      112279
## 16182      112279
## 16183      112279
## 16184      112279
## 16185      112279
## 16186      112279
## 16187      112279
## 16188      112279
## 16189      112279
## 16190      112279
## 16191      112279
## 16192      112279
## 16193      112279
## 16194      112279
## 16195      112279
## 16196      112279
## 16197      112279
## 16198      112417
## 16199      112417
## 16200      112417
## 16201      112417
## 16202      112417
## 16203      112417
## 16204      112417
## 16205      112417
## 16206      112417
## 16207      112417
## 16208      112417
## 16209      112417
## 16210      112417
## 16211      112417
## 16212      112417
## 16213      112417
## 16214      112417
## 16215      112417
## 16216      112417
## 16217      112417
## 16218      112417
## 16219      112417
## 16220      112417
## 16221      112417
## 16222      112417
## 16223      112417
## 16224      112417
## 16225      112417
## 16226      112417
## 16227      112417
## 16228      112417
## 16229      112417
## 16230      112417
## 16231      112417
## 16232      112417
## 16233      112417
## 16234      112417
## 16235      112417
## 16236      112417
## 16237      112417
## 16238      112417
## 16239      112417
## 16240      112417
## 16241      112417
## 16242      112417
## 16243      112417
## 16244      112417
## 16245      112417
## 16246      112417
## 16247      112417
## 16248      112417
## 16249      112417
## 16250      112417
## 16251      112417
## 16252      112417
## 16253      112417
## 16254      112417
## 16255      112417
## 16256      112417
## 16257      112417
## 16258      112417
## 16259      112417
## 16260      112417
## 16261      112417
## 16262      112417
## 16263      112417
## 16264      112417
## 16265      112417
## 16266      112417
## 16267      112417
## 16268      112417
## 16269      112417
## 16270      112417
## 16271      112417
## 16272      112417
## 16273      112417
## 16274      112417
## 16275      112417
## 16276      112417
## 16277      112417
## 16278      112417
## 16279      112417
## 16280      112417
## 16281      112417
## 16282      112417
## 16283      112417
## 16284      112417
## 16285      112417
## 16286      112417
## 16287      112417
## 16288      112417
## 16289      112417
## 16290      112417
## 16291      112417
## 16292      112417
## 16293      112417
## 16294      112417
## 16295      112417
## 16296      112417
## 16297      112417
## 16298      112417
## 16299      112417
## 16300      112417
## 16301      112417
## 16302      112417
## 16303      112417
## 16304      112417
## 16305      112417
## 16306      112417
## 16307      112417
## 16308      112417
## 16309      112417
## 16310      112417
## 16311      112417
## 16312      112417
## 16313      112417
## 16314      112417
## 16315      112417
## 16316      112417
## 16317      112417
## 16318      112417
## 16319      112417
## 16320      112417
## 16321      112417
## 16322      112417
## 16323      112417
## 16324      112417
## 16325      112417
## 16326      112417
## 16327      112417
## 16328      112417
## 16329      112417
## 16330      112417
## 16331      112417
## 16332      112417
## 16333      112417
## 16334      112417
## 16335      112417
## 16336      112417
## 16337      112417
## 16338      112417
## 16339      112417
## 16340      112417
## 16341      112417
## 16342      112417
## 16343      112417
## 16344      112417
## 16345      112417
## 16346      112417
## 16347      112417
## 16348      112417
## 16349      112417
## 16350      112417
## 16351      112417
## 16352      112417
## 16353      112417
## 16354      112417
## 16355      112417
## 16356      112417
## 16357      112417
## 16358      112417
## 16359      112417
## 16360      112417
## 16361      112417
## 16362      112417
## 16363      112417
## 16364      112417
## 16365      112417
## 16366      112417
## 16367      112417
## 16368      112417
## 16369      112417
## 16370      112417
## 16371      112417
## 16372      112417
## 16373      112417
## 16374      112417
## 16375      112417
## 16376      112417
## 16377      112417
## 16378      112417
## 16379      112417
## 16380      112417
## 16381      112417
## 16382      112417
## 16383      112417
## 16384      112417
## 16385      112417
## 16386      112417
## 16387      112417
## 16388      112417
## 16389      112417
## 16390      112417
## 16391      112417
## 16392      112417
## 16393      112417
## 16394      112417
## 16395      112489
## 16396      112489
## 16397      112489
## 16398      112489
## 16399      112489
## 16400      112489
## 16401      112489
## 16402      112489
## 16403      112489
## 16404      112489
## 16405      112489
## 16406      112489
## 16407      112489
## 16408      112489
## 16409      112489
## 16410      112489
## 16411      112489
## 16412      112489
## 16413      112489
## 16414      112489
## 16415      112489
## 16416      112489
## 16417      112489
## 16418      112489
## 16419      112489
## 16420      112489
## 16421      112489
## 16422      112550
## 16423      112550
## 16424      112550
## 16425      112550
## 16426      112550
## 16427      112550
## 16428      112550
## 16429      112550
## 16430      112550
## 16431      112550
## 16432      112550
## 16433      112550
## 16434      112550
## 16435      112550
## 16436      112550
## 16437      112550
## 16438      112550
## 16439      112550
## 16440      112550
## 16441      112550
## 16442      112550
## 16443      112550
## 16444      112550
## 16445      112550
## 16446      112550
## 16447      112550
## 16448      112550
## 16449      112550
## 16450      112550
## 16451      112550
## 16452      112550
## 16453      112550
## 16454      112550
## 16455      112550
## 16456      112550
## 16457      112550
## 16458      112550
## 16459      112550
## 16460      112550
## 16461      112550
## 16462      112550
## 16463      112550
## 16464      112550
## 16465      112550
## 16466      112550
## 16467      112550
## 16468      112550
## 16469      112550
## 16470      112550
## 16471      112550
## 16472      112550
## 16473      112550
## 16474      112550
## 16475      112550
## 16476      112550
## 16477      112550
## 16478      112550
## 16479      112550
## 16480      112550
## 16481      112550
## 16482      112550
## 16483      112550
## 16484      112550
## 16485      112550
## 16486      112550
## 16487      112550
## 16488      112550
## 16489      112550
## 16490      112550
## 16491      112550
## 16492      112550
## 16493      112550
## 16494      112550
## 16495      112550
## 16496      112550
## 16497      112550
## 16498      112550
## 16499      112550
## 16500      112550
## 16501      112550
## 16502      112550
## 16503      112550
## 16504      112550
## 16505      112550
## 16506      112550
## 16507      112550
## 16508      112550
## 16509      112550
## 16510      112550
## 16511      112550
## 16512      112550
## 16513      112550
## 16514      112550
## 16515      112550
## 16516      112550
## 16517      112550
## 16518      112550
## 16519      112550
## 16520      112550
## 16521      112550
## 16522      112550
## 16523      112550
## 16524      112550
## 16525      112550
## 16526      112550
## 16527      112550
## 16528      112550
## 16529      112550
## 16530      112550
## 16531      112550
## 16532      112550
## 16533      112550
## 16534      112550
## 16535      112550
## 16536      112550
## 16537      112550
## 16538      112550
## 16539      112550
## 16540      112550
## 16541      112550
## 16542      112550
## 16543      112550
## 16544      112550
## 16545      112550
## 16546      112550
## 16547      112550
## 16548      112550
## 16549      112550
## 16550      112550
## 16551      112550
## 16552      112550
## 16553      112550
## 16554      112550
## 16555      112550
## 16556      112550
## 16557      112550
## 16558      112550
## 16559      112550
## 16560      112550
## 16561      112550
## 16562      112550
## 16563      112550
## 16564      112550
## 16565      112550
## 16566      112550
## 16567      112550
## 16568      112550
## 16569      112550
## 16570      112550
## 16571      112550
## 16572      112550
## 16573      112550
## 16574      112550
## 16575      112550
## 16576      112550
## 16577      112550
## 16578      112550
## 16579      112550
## 16580      112550
## 16581      112550
## 16582      112550
## 16583      112550
## 16584      112550
## 16585      112550
## 16586      112550
## 16587      112550
## 16588      112550
## 16589      112550
## 16590      112550
## 16591      112550
## 16592      112550
## 16593      112550
## 16594      112550
## 16595      112550
## 16596      112550
## 16597      112550
## 16598      112550
## 16599      112550
## 16600      112550
## 16601      112550
## 16602      112550
## 16603      112550
## 16604      112550
## 16605      112550
## 16606      112550
## 16607      112550
## 16608      112550
## 16609      112550
## 16610      112550
## 16611      112550
## 16612      112550
## 16613      112550
## 16614      112550
## 16615      112550
## 16616      112550
## 16617      112550
## 16618      112550
## 16619      112550
## 16620      112550
## 16621      112550
## 16622      112550
## 16623      112550
## 16624      112550
## 16625      112550
## 16626      112550
## 16627      112550
## 16628      112550
## 16629      112550
## 16630      112550
## 16631      112550
## 16632      112550
## 16633      112550
## 16634      112550
## 16635      112550
## 16636      112550
## 16637      112550
## 16638      112550
## 16639      112550
## 16640      112550
## 16641      112550
## 16642      112550
## 16643      112550
## 16644      112550
## 16645      112550
## 16646      112550
## 16647      112550
## 16648      112550
## 16649      112550
## 16650      112550
## 16651      112550
## 16652      112550
## 16653      112550
## 16654      112550
## 16655      112550
## 16656      112550
## 16657      112550
## 16658      112550
## 16659      112550
## 16660      112550
## 16661      112550
## 16662      112550
## 16663      112550
## 16664      112550
## 16665      112550
## 16666      112550
## 16667      112635
## 16668      112635
## 16669      112635
## 16670      112635
## 16671      112635
## 16672      112635
## 16673      112635
## 16674      112635
## 16675      112635
## 16676      112635
## 16677      112635
## 16678      112635
## 16679      112635
## 16680      112635
## 16681      112635
## 16682      112635
## 16683      112635
## 16684      112635
## 16685      112635
## 16686      112635
## 16687      112635
## 16688      112635
## 16689      112635
## 16690      112635
## 16691      112635
## 16692      112635
## 16693      112635
## 16694      112635
## 16695      112635
## 16696      112635
## 16697      112635
## 16698      112635
## 16699      112635
## 16700      112635
## 16701      112635
## 16702      112635
## 16703      112635
## 16704      112635
## 16705      112635
## 16706      112635
## 16707      112635
## 16708      112635
## 16709      112635
## 16710      112635
## 16711      112635
## 16712      112635
## 16713      112635
## 16714      112635
## 16715      112635
## 16716      112635
## 16717      112635
## 16718      112635
## 16719      112635
## 16720      112635
## 16721      112635
## 16722      112635
## 16723      112672
## 16724      112672
## 16725      112672
## 16726      112672
## 16727      112672
## 16728      112672
## 16729      112672
## 16730      112672
## 16731      112672
## 16732      112672
## 16733      112672
## 16734      112672
## 16735      112672
## 16736      112672
## 16737      112672
## 16738      112672
## 16739      112672
## 16740      112672
## 16741      112672
## 16742      112672
## 16743      112672
## 16744      112672
## 16745      112672
## 16746      112672
## 16747      112672
## 16748      112672
## 16749      112672
## 16750      112672
## 16751      112672
## 16752       11281
## 16753       11281
## 16754       11281
## 16755       11281
## 16756       11281
## 16757       11281
## 16758       11281
## 16759       11281
## 16760       11281
## 16761       11281
## 16762       11281
## 16763       11281
## 16764       11281
## 16765       11281
## 16766       11281
## 16767       11281
## 16768       11281
## 16769       11281
## 16770       11281
## 16771       11281
## 16772       11281
## 16773       11281
## 16774       11281
## 16775       11281
## 16776       11281
## 16777       11281
## 16778       11281
## 16779       11281
## 16780       11281
## 16781       11281
## 16782       11281
## 16783       11281
## 16784       11281
## 16785       11281
## 16786       11281
## 16787       11281
## 16788       11281
## 16789       11281
## 16790       11281
## 16791       11281
## 16792       11281
## 16793       11281
## 16794       11281
## 16795       11281
## 16796       11281
## 16797       11281
## 16798       11281
## 16799       11281
## 16800       11281
## 16801       11281
## 16802       11281
## 16803       11281
## 16804       11281
## 16805       11281
## 16806       11281
## 16807       11281
## 16808       11281
## 16809       11281
## 16810       11281
## 16811       11281
## 16812       11281
## 16813       11281
## 16814       11281
## 16815       11281
## 16816       11281
## 16817       11281
## 16818       11281
## 16819       11281
## 16820       11281
## 16821       11281
## 16822       11281
## 16823       11281
## 16824       11281
## 16825       11281
## 16826       11281
## 16827       11281
## 16828       11281
## 16829       11281
## 16830       11281
## 16831       11281
## 16832       11281
## 16833       11281
## 16834       11281
## 16835       11281
## 16836       11281
## 16837       11281
## 16838       11281
## 16839       11281
## 16840       11281
## 16841       11281
## 16842       11281
## 16843       11281
## 16844       11281
## 16845       11281
## 16846       11281
## 16847       11281
## 16848       11281
## 16849       11281
## 16850       11281
## 16851       11281
## 16852       11281
## 16853       11281
## 16854       11281
## 16855       11281
## 16856       11281
## 16857       11281
## 16858       11281
## 16859       11281
## 16860       11281
## 16861       11281
## 16862       11281
## 16863       11281
## 16864       11281
## 16865       11281
## 16866       11281
## 16867       11281
## 16868       11281
## 16869       11281
## 16870       11281
## 16871       11281
## 16872       11281
## 16873       11281
## 16874       11281
## 16875       11281
## 16876       11281
## 16877       11281
## 16878       11281
## 16879       11281
## 16880       11281
## 16881       11281
## 16882       11281
## 16883       11281
## 16884       11281
## 16885       11281
## 16886       11281
## 16887       11281
## 16888       11281
## 16889       11281
## 16890       11281
## 16891       11281
## 16892       11281
## 16893       11281
## 16894       11281
## 16895       11281
## 16896       11281
## 16897       11281
## 16898       11281
## 16899       11281
## 16900       11281
## 16901       11281
## 16902       11281
## 16903       11281
## 16904       11281
## 16905       11281
## 16906       11281
## 16907       11281
## 16908       11281
## 16909       11281
## 16910       11281
## 16911       11281
## 16912       11281
## 16913       11281
## 16914       11281
## 16915       11281
## 16916       11281
## 16917       11281
## 16918       11281
## 16919       11281
## 16920       11281
## 16921       11281
## 16922       11281
## 16923       11281
## 16924       11281
## 16925       11281
## 16926       11281
## 16927       11281
## 16928       11281
## 16929       11281
## 16930       11281
## 16931       11281
## 16932       11281
## 16933       11281
## 16934       11281
## 16935       11281
## 16936       11281
## 16937       11281
## 16938       11281
## 16939       11281
## 16940       11281
## 16941       11281
## 16942       11281
## 16943       11281
## 16944       11281
## 16945       11281
## 16946       11281
## 16947       11281
## 16948       11281
## 16949       11281
## 16950       11281
## 16951       11281
## 16952       11281
## 16953       11281
## 16954       11281
## 16955       11281
## 16956       11281
## 16957       11281
## 16958       11281
## 16959       11281
## 16960       11281
## 16961       11281
## 16962       11281
## 16963       11281
## 16964       11281
## 16965       11281
## 16966       11281
## 16967       11281
## 16968       11281
## 16969       11281
## 16970       11281
## 16971       11281
## 16972       11281
## 16973       11281
## 16974       11281
## 16975       11281
## 16976       11281
## 16977       11281
## 16978       11281
## 16979       11281
## 16980       11281
## 16981       11281
## 16982       11281
## 16983       11281
## 16984       11281
## 16985       11281
## 16986       11281
## 16987       11281
## 16988       11281
## 16989       11281
## 16990       11281
## 16991       11281
## 16992       11281
## 16993       11281
## 16994       11281
## 16995       11281
## 16996       11281
## 16997       11281
## 16998       11281
## 16999       11281
## 17000       11281
## 17001       11281
## 17002       11281
## 17003       11281
## 17004       11281
## 17005       11281
## 17006       11281
## 17007       11281
## 17008       11281
## 17009       11281
## 17010       11281
## 17011       11281
## 17012       11281
## 17013       11281
## 17014       11281
## 17015       11281
## 17016       11281
## 17017       11281
## 17018       11281
## 17019       11281
## 17020       11281
## 17021       11281
## 17022       11281
## 17023       11281
## 17024       11281
## 17025       11281
## 17026       11281
## 17027       11281
## 17028      112917
## 17029      112917
## 17030      112917
## 17031      112917
## 17032      112917
## 17033      112917
## 17034      112917
## 17035      112917
## 17036      112917
## 17037      112917
## 17038      112917
## 17039      112917
## 17040      112917
## 17041      112917
## 17042      112917
## 17043      112917
## 17044      112917
## 17045      112917
## 17046      112917
## 17047      112917
## 17048      112917
## 17049      112917
## 17050      112917
## 17051      112917
## 17052      112917
## 17053      112917
## 17054      112917
## 17055      112917
## 17056      112917
## 17057      113070
## 17058      113070
## 17059      113070
## 17060      113070
## 17061      113070
## 17062      113070
## 17063      113070
## 17064      113070
## 17065      113070
## 17066      113070
## 17067      113070
## 17068      113070
## 17069      113070
## 17070      113070
## 17071      113070
## 17072      113070
## 17073      113070
## 17074      113070
## 17075      113070
## 17076      113070
## 17077      113070
## 17078      113070
## 17079      113070
## 17080      113070
## 17081      113070
## 17082      113070
## 17083      113070
## 17084      113070
## 17085      113070
## 17086      113070
## 17087      113070
## 17088      113070
## 17089      113070
## 17090      113070
## 17091      113070
## 17092      113070
## 17093      113070
## 17094      113070
## 17095      113070
## 17096      113070
## 17097      113070
## 17098      113070
## 17099      113070
## 17100      113070
## 17101      113070
## 17102      113070
## 17103      113070
## 17104      113070
## 17105      113070
## 17106      113070
## 17107      113070
## 17108      113070
## 17109      113070
## 17110      113070
## 17111      113070
## 17112      113070
## 17113      113070
## 17114      113070
## 17115      113070
## 17116      113070
## 17117      113070
## 17118      113070
## 17119      113070
## 17120      113070
## 17121      113070
## 17122      113070
## 17123      113070
## 17124      113070
## 17125      113070
## 17126      113070
## 17127      113070
## 17128      113070
## 17129      113070
## 17130      113070
## 17131      113070
## 17132      113070
## 17133      113070
## 17134      113070
## 17135      113070
## 17136      113070
## 17137      113070
## 17138      113070
## 17139      113070
## 17140      113070
## 17141      113070
## 17142      113070
## 17143      113070
## 17144      113070
## 17145      113070
## 17146      113070
## 17147      113070
## 17148      113070
## 17149      113070
## 17150      113070
## 17151      113070
## 17152      113070
## 17153      113070
## 17154      113070
## 17155      113070
## 17156      113070
## 17157      113070
## 17158      113070
## 17159      113070
## 17160      113070
## 17161      113070
## 17162      113070
## 17163      113070
## 17164      113070
## 17165      113070
## 17166      113070
## 17167      113070
## 17168      113070
## 17169      113070
## 17170      113070
## 17171      113070
## 17172      113070
## 17173      113070
## 17174      113070
## 17175      113070
## 17176      113070
## 17177      113070
## 17178      113070
## 17179      113070
## 17180      113070
## 17181      113070
## 17182      113070
## 17183      113070
## 17184      113070
## 17185      113070
## 17186      113070
## 17187      113070
## 17188      113070
## 17189      113070
## 17190      113070
## 17191      113070
## 17192      113070
## 17193      113070
## 17194      113070
## 17195      113070
## 17196      113070
## 17197      113070
## 17198      113070
## 17199      113070
## 17200      113070
## 17201      113070
## 17202      113070
## 17203      113070
## 17204      113070
## 17205      113070
## 17206      113070
## 17207      113070
## 17208      113070
## 17209      113070
## 17210      113070
## 17211      113070
## 17212      113070
## 17213      113070
## 17214      113070
## 17215      113070
## 17216      113070
## 17217      113070
## 17218      113070
## 17219      113070
## 17220      113070
## 17221      113070
## 17222      113070
## 17223      113070
## 17224      113070
## 17225      113070
## 17226      113070
## 17227      113070
## 17228      113070
## 17229      113070
## 17230      113070
## 17231      113070
## 17232      113070
## 17233      113070
## 17234      113070
## 17235      113070
## 17236      113070
## 17237      113070
## 17238      113070
## 17239      113070
## 17240      113070
## 17241      113070
## 17242      113070
## 17243      113070
## 17244      113070
## 17245      113070
## 17246      113070
## 17247      113070
## 17248      113070
## 17249      113070
## 17250      113070
## 17251      113070
## 17252      113070
## 17253      113070
## 17254      113070
## 17255      113070
## 17256      113070
## 17257      113070
## 17258      113070
## 17259      113070
## 17260      113070
## 17261      113070
## 17262      113070
## 17263      113070
## 17264      113070
## 17265      113070
## 17266      113070
## 17267      113070
## 17268      113070
## 17269      113070
## 17270      113070
## 17271      113070
## 17272      113070
## 17273      113070
## 17274      113070
## 17275      113070
## 17276      113070
## 17277      113070
## 17278      113070
## 17279      113070
## 17280      113070
## 17281      113070
## 17282      113070
## 17283      113070
## 17284      113070
## 17285      113070
## 17286      113070
## 17287      113070
## 17288      113070
## 17289      113070
## 17290      113070
## 17291      113070
## 17292      113070
## 17293      113070
## 17294      113070
## 17295      113070
## 17296      113070
## 17297      113070
## 17298      113070
## 17299      113070
## 17300      113070
## 17301      113070
## 17302      113070
## 17303      113070
## 17304      113070
## 17305      113070
## 17306      113070
## 17307      113070
## 17308      113070
## 17309      113070
## 17310      113070
## 17311      113070
## 17312      113070
## 17313      113070
## 17314      113070
## 17315      113070
## 17316      113070
## 17317      113070
## 17318      113070
## 17319      113070
## 17320      113070
## 17321      113070
## 17322      113070
## 17323      113070
## 17324      113070
## 17325      113070
## 17326      113070
## 17327      113070
## 17328      113070
## 17329      113070
## 17330      113070
## 17331      113070
## 17332      113070
## 17333      113070
## 17334      113070
## 17335      113070
## 17336      113070
## 17337      113070
## 17338      113070
## 17339      113070
## 17340      113070
## 17341      113070
## 17342      113070
## 17343      113070
## 17344      113070
## 17345      113070
## 17346      113070
## 17347      113070
## 17348      113070
## 17349      113070
## 17350      113070
## 17351      113070
## 17352      113070
## 17353      113070
## 17354      113070
## 17355      113070
## 17356      113070
## 17357      113070
## 17358      113070
## 17359      113070
## 17360      113070
## 17361      113070
## 17362      113070
## 17363      113070
## 17364      113070
## 17365      113070
## 17366      113070
## 17367      113070
## 17368      113070
## 17369      113070
## 17370      113070
## 17371      113070
## 17372      113070
## 17373      113070
## 17374      113070
## 17375      113070
## 17376      113070
## 17377      113070
## 17378      113070
## 17379      113070
## 17380      113070
## 17381      113070
## 17382      113070
## 17383      113070
## 17384      113070
## 17385      113070
## 17386      113070
## 17387      113070
## 17388      113070
## 17389      113070
## 17390      113070
## 17391      113070
## 17392      113070
## 17393      113070
## 17394      113070
## 17395      113070
## 17396      113070
## 17397      113070
## 17398      113070
## 17399      113070
## 17400      113070
## 17401      113070
## 17402      113070
## 17403      113070
## 17404      113070
## 17405      113070
## 17406      113070
## 17407      113070
## 17408      113070
## 17409      113070
## 17410      113070
## 17411      113070
## 17412      113070
## 17413      113070
## 17414      113070
## 17415      113070
## 17416      113070
## 17417      113070
## 17418      113070
## 17419      113070
## 17420      113070
## 17421      113070
## 17422      113070
## 17423      113070
## 17424      113070
## 17425      113070
## 17426      113070
## 17427      113070
## 17428      113070
## 17429      113070
## 17430      113070
## 17431      113070
## 17432      113070
## 17433      113070
## 17434      113070
## 17435      113070
## 17436      113070
## 17437      113070
## 17438      113070
## 17439      113070
## 17440      113070
## 17441      113070
## 17442      113070
## 17443      113070
## 17444      113070
## 17445      113070
## 17446      113070
## 17447      113070
## 17448      113070
## 17449      113070
## 17450      113070
## 17451      113070
## 17452      113070
## 17453      113070
## 17454      113070
## 17455      113070
## 17456      113070
## 17457      113070
## 17458      113070
## 17459      113070
## 17460      113070
## 17461      113070
## 17462      113070
## 17463      113070
## 17464      113070
## 17465      113070
## 17466      113070
## 17467      113070
## 17468      113070
## 17469      113070
## 17470      113070
## 17471      113070
## 17472      113070
## 17473      113070
## 17474      113070
## 17475      113070
## 17476      113070
## 17477      113070
## 17478      113070
## 17479      113070
## 17480      113070
## 17481      113070
## 17482      113070
## 17483      113070
## 17484      113070
## 17485      113070
## 17486      113070
## 17487      113070
## 17488      113070
## 17489      113070
## 17490      113070
## 17491      113070
## 17492      113070
## 17493      113070
## 17494      113070
## 17495      113070
## 17496      113070
## 17497      113070
## 17498      113070
## 17499      113070
## 17500      113070
## 17501      113070
## 17502      113070
## 17503      113070
## 17504      113070
## 17505      113070
## 17506      113070
## 17507      113070
## 17508      113070
## 17509      113070
## 17510      113070
## 17511      113070
## 17512      113070
## 17513      113070
## 17514      113070
## 17515      113070
## 17516      113070
## 17517      113070
## 17518      113070
## 17519      113070
## 17520      113070
## 17521      113070
## 17522      113070
## 17523      113070
## 17524      113070
## 17525      113070
## 17526      113070
## 17527      113070
## 17528      113070
## 17529      113070
## 17530      113070
## 17531      113070
## 17532      113070
## 17533      113070
## 17534      113070
## 17535      113070
## 17536      113070
## 17537      113070
## 17538      113070
## 17539      113070
## 17540      113070
## 17541      113070
## 17542      113070
## 17543      113070
## 17544      113070
## 17545      113070
## 17546      113070
## 17547      113070
## 17548      113070
## 17549      113070
## 17550      113070
## 17551      113070
## 17552      113070
## 17553      113070
## 17554      113070
## 17555      113070
## 17556      113070
## 17557      113070
## 17558      113070
## 17559      113070
## 17560      113070
## 17561      113070
## 17562      113070
## 17563      113070
## 17564      113070
## 17565      113070
## 17566      113070
## 17567      113070
## 17568      113070
## 17569      113070
## 17570      113070
## 17571      113070
## 17572      113070
## 17573      113070
## 17574      113070
## 17575      113070
## 17576      113070
## 17577      113070
## 17578      113070
## 17579      113070
## 17580      113070
## 17581      113070
## 17582      113070
## 17583      113070
## 17584      113070
## 17585      113070
## 17586      113070
## 17587      113070
## 17588      113070
## 17589      113070
## 17590      113070
## 17591      113070
## 17592      113070
## 17593      113070
## 17594      113070
## 17595      113070
## 17596      113070
## 17597      113070
## 17598      113070
## 17599      113070
## 17600      113070
## 17601      113070
## 17602      113070
## 17603      113070
## 17604      113070
## 17605      113070
## 17606      113070
## 17607      113070
## 17608      113070
## 17609      113070
## 17610      113070
## 17611      113070
## 17612      113070
## 17613      113070
## 17614      113070
## 17615      113070
## 17616      113070
## 17617      113070
## 17618      113070
## 17619      113070
## 17620      113070
## 17621      113070
## 17622      113070
## 17623      113070
## 17624      113070
## 17625      113070
## 17626      113070
## 17627      113070
## 17628      113070
## 17629      113070
## 17630      113070
## 17631      113070
## 17632      113070
## 17633      113070
## 17634      113070
## 17635      113070
## 17636      113070
## 17637      113070
## 17638      113070
## 17639      113070
## 17640      113070
## 17641      113070
## 17642      113070
## 17643      113070
## 17644      113070
## 17645      113070
## 17646      113070
## 17647      113070
## 17648      113070
## 17649      113070
## 17650      113070
## 17651      113070
## 17652      113070
## 17653      113070
## 17654      113070
## 17655      113070
## 17656      113070
## 17657      113070
## 17658      113070
## 17659      113070
## 17660      113070
## 17661      113070
## 17662      113070
## 17663      113070
## 17664      113070
## 17665      113070
## 17666      113070
## 17667      113070
## 17668      113070
## 17669      113070
## 17670      113070
## 17671      113070
## 17672      113070
## 17673      113070
## 17674      113070
## 17675      113070
## 17676      113070
## 17677      113070
## 17678      113070
## 17679      113070
## 17680      113070
## 17681      113070
## 17682      113070
## 17683      113070
## 17684      113070
## 17685      113070
## 17686      113070
## 17687      113070
## 17688      113070
## 17689      113070
## 17690      113070
## 17691      113070
## 17692      113070
## 17693      113070
## 17694      113070
## 17695      113070
## 17696      113070
## 17697      113070
## 17698      113070
## 17699      113070
## 17700      113070
## 17701      113070
## 17702      113070
## 17703      113070
## 17704      113070
## 17705      113070
## 17706      113070
## 17707      113070
## 17708      113070
## 17709      113070
## 17710      113070
## 17711      113070
## 17712      113070
## 17713      113070
## 17714      113070
## 17715      113070
## 17716      113070
## 17717      113070
## 17718      113070
## 17719      113070
## 17720      113070
## 17721      113070
## 17722      113070
## 17723      113070
## 17724      113070
## 17725      113070
## 17726      113070
## 17727      113070
## 17728      113070
## 17729      113070
## 17730      113070
## 17731      113070
## 17732      113070
## 17733      113070
## 17734      113070
## 17735      113070
## 17736      113070
## 17737      113070
## 17738      113070
## 17739      113070
## 17740      113070
## 17741      113070
## 17742      113070
## 17743      113070
## 17744      113070
## 17745      113070
## 17746      113070
## 17747      113070
## 17748      113070
## 17749      113070
## 17750      113070
## 17751      113070
## 17752      113070
## 17753      113070
## 17754      113070
## 17755      113070
## 17756      113070
## 17757      113070
## 17758      113070
## 17759      113070
## 17760      113070
## 17761      113070
## 17762      113070
## 17763      113070
## 17764      113070
## 17765      113070
## 17766      113070
## 17767      113070
## 17768      113070
## 17769      113070
## 17770      113070
## 17771      113070
## 17772      113070
## 17773      113070
## 17774      113070
## 17775      113070
## 17776      113070
## 17777      113070
## 17778      113070
## 17779      113070
## 17780      113070
## 17781      113070
## 17782      113070
## 17783      113070
## 17784      113070
## 17785      113070
## 17786      113070
## 17787      113070
## 17788      113070
## 17789      113070
## 17790      113070
## 17791      113070
## 17792      113070
## 17793      113070
## 17794      113070
## 17795      113070
## 17796      113070
## 17797      113070
## 17798      113070
## 17799      113070
## 17800      113070
## 17801      113070
## 17802      113070
## 17803      113070
## 17804      113070
## 17805      113070
## 17806      113070
## 17807      113070
## 17808      113070
## 17809      113070
## 17810      113070
## 17811      113070
## 17812      113070
## 17813      113070
## 17814      113070
## 17815      113070
## 17816      113070
## 17817      113070
## 17818      113070
## 17819      113070
## 17820      113070
## 17821      113070
## 17822      113070
## 17823      113070
## 17824      113070
## 17825      113070
## 17826      113070
## 17827      113070
## 17828      113070
## 17829      113070
## 17830      113070
## 17831      113070
## 17832      113070
## 17833      113070
## 17834      113070
## 17835      113070
## 17836      113070
## 17837      113070
## 17838      113070
## 17839      113070
## 17840      113070
## 17841      113093
## 17842      113093
## 17843      113093
## 17844      113093
## 17845      113093
## 17846      113093
## 17847      113093
## 17848      113093
## 17849      113093
## 17850      113093
## 17851      113093
## 17852      113093
## 17853      113093
## 17854      113093
## 17855      113093
## 17856      113093
## 17857      113093
## 17858      113093
## 17859      113093
## 17860      113093
## 17861      113093
## 17862      113093
## 17863      113093
## 17864      113093
## 17865      113093
## 17866      113093
## 17867      113093
## 17868      113093
## 17869      113093
## 17870      113093
## 17871      113093
## 17872      113093
## 17873      113093
## 17874      113093
## 17875      113093
## 17876      113093
## 17877      113093
## 17878      113093
## 17879      113093
## 17880      113093
## 17881      113093
## 17882      113093
## 17883      113093
## 17884      113093
## 17885      113093
## 17886      113093
## 17887      113093
## 17888      113093
## 17889      113093
## 17890      113093
## 17891      113093
## 17892      113093
## 17893      113093
## 17894      113093
## 17895      113093
## 17896      113093
## 17897      113093
## 17898      113093
## 17899      113093
## 17900      113093
## 17901      113093
## 17902      113093
## 17903      113093
## 17904      113093
## 17905      113093
## 17906      113093
## 17907      113093
## 17908      113093
## 17909      113093
## 17910      113093
## 17911      113093
## 17912      113093
## 17913      113093
## 17914      113093
## 17915      113093
## 17916      113093
## 17917      113093
## 17918      113093
## 17919      113093
## 17920      113093
## 17921      113093
## 17922      113093
## 17923      113093
## 17924      113093
## 17925      113093
## 17926      113093
## 17927      113093
## 17928      113093
## 17929      113093
## 17930      113093
## 17931      113093
## 17932      113093
## 17933      113093
## 17934      113093
## 17935      113093
## 17936      113093
## 17937      113093
## 17938      113093
## 17939      113093
## 17940      113093
## 17941      113093
## 17942      113093
## 17943      113093
## 17944      113093
## 17945      113093
## 17946      113093
## 17947      113093
## 17948      113093
## 17949      113093
## 17950      113093
## 17951      113093
## 17952      113093
## 17953      113093
## 17954      113093
## 17955      113093
## 17956      113093
## 17957      113093
## 17958      113093
## 17959      113093
## 17960      113093
## 17961      113093
## 17962      113093
## 17963      113093
## 17964      113093
## 17965      113093
## 17966      113093
## 17967      113093
## 17968      113093
## 17969      113093
## 17970      113093
## 17971      113093
## 17972      113093
## 17973      113093
## 17974      113093
## 17975      113093
## 17976      113093
## 17977      113093
## 17978      113093
## 17979      113093
## 17980      113093
## 17981      113093
## 17982      113093
## 17983      113093
## 17984      113093
## 17985      113093
## 17986      113093
## 17987      113093
## 17988      113093
## 17989      113093
## 17990      113093
## 17991      113093
## 17992      113093
## 17993      113093
## 17994      113093
## 17995      113093
## 17996      113093
## 17997      113093
## 17998      113093
## 17999      113093
## 18000      113093
## 18001      113093
## 18002      113093
## 18003      113093
## 18004      113093
## 18005      113093
## 18006      113093
## 18007      113093
## 18008      113093
## 18009      113093
## 18010      113093
## 18011      113093
## 18012      113093
## 18013      113093
## 18014      113093
## 18015      113093
## 18016      113093
## 18017      113093
## 18018      113093
## 18019      113093
## 18020      113093
## 18021      113093
## 18022      113093
## 18023      113093
## 18024      113093
## 18025      113093
## 18026      113093
## 18027      113093
## 18028      113093
## 18029      113093
## 18030      113093
## 18031      113093
## 18032      113093
## 18033      113093
## 18034      113093
## 18035      113093
## 18036      113093
## 18037      113093
## 18038      113093
## 18039      113093
## 18040      113093
## 18041      113093
## 18042      113093
## 18043      113093
## 18044      113093
## 18045      113093
## 18046      113093
## 18047      113093
## 18048      113093
## 18049      113093
## 18050      113093
## 18051      113093
## 18052      113093
## 18053      113093
## 18054      113093
## 18055      113093
## 18056      113093
## 18057      113093
## 18058      113093
## 18059      113093
## 18060      113093
## 18061      113093
## 18062      113093
## 18063      113093
## 18064      113093
## 18065      113093
## 18066      113093
## 18067      113093
## 18068      113093
## 18069      113093
## 18070      113093
## 18071      113093
## 18072      113093
## 18073      113093
## 18074      113093
## 18075      113093
## 18076      113093
## 18077      113093
## 18078      113093
## 18079      113093
## 18080      113093
## 18081      113093
## 18082      113093
## 18083      113093
## 18084      113093
## 18085      113214
## 18086      113323
## 18087      113323
## 18088      113323
## 18089      113323
## 18090      113323
## 18091      113323
## 18092      113323
## 18093      113323
## 18094      113323
## 18095      113323
## 18096      113323
## 18097      113323
## 18098      113323
## 18099      113323
## 18100      113323
## 18101      113323
## 18102      113323
## 18103      113323
## 18104      113323
## 18105      113323
## 18106      113323
## 18107      113323
## 18108      113323
## 18109      113323
## 18110      113323
## 18111      113323
## 18112      113323
## 18113      113323
## 18114      113323
## 18115      113323
## 18116      113323
## 18117      113323
## 18118      113323
## 18119      113323
## 18120      113323
## 18121      113323
## 18122      113323
## 18123      113323
## 18124      113323
## 18125      113323
## 18126      113323
## 18127      113323
## 18128      113323
## 18129      113323
## 18130      113323
## 18131      113323
## 18132      113323
## 18133      113323
## 18134      113323
## 18135      113323
## 18136      113323
## 18137      113323
## 18138      113323
## 18139      113323
## 18140      113323
## 18141      113323
## 18142      113323
## 18143      113323
## 18144      113323
## 18145      113323
## 18146      113323
## 18147      113323
## 18148      113323
## 18149      113323
## 18150      113323
## 18151      113323
## 18152      113323
## 18153      113323
## 18154      113323
## 18155      113323
## 18156      113323
## 18157      113323
## 18158      113323
## 18159      113323
## 18160      113323
## 18161      113323
## 18162      113323
## 18163      113416
## 18164      113416
## 18165      113416
## 18166      113416
## 18167      113904
## 18168      113904
## 18169      113904
## 18170      113904
## 18171      113904
## 18172      113904
## 18173      113904
## 18174      113904
## 18175      113904
## 18176      113904
## 18177      113904
## 18178      113904
## 18179      113904
## 18180      113904
## 18181      113904
## 18182      113904
## 18183      113904
## 18184      113904
## 18185      113904
## 18186      113904
## 18187      113904
## 18188      113904
## 18189      113904
## 18190      113904
## 18191      113904
## 18192      113904
## 18193      113904
## 18194      113904
## 18195      113904
## 18196      113904
## 18197      113904
## 18198      113904
## 18199      113904
## 18200      113904
## 18201      113904
## 18202      113904
## 18203      113904
## 18204      113904
## 18205      113904
## 18206      113904
## 18207      113904
## 18208      113904
## 18209      113904
## 18210      113904
## 18211      113904
## 18212      113904
## 18213      113904
## 18214      113904
## 18215      113904
## 18216      113904
## 18217      113904
## 18218      113904
## 18219      113904
## 18220      113904
## 18221      113904
## 18222      113904
## 18223      113904
## 18224      113904
## 18225      113904
## 18226      113904
## 18227      113904
## 18228      113904
## 18229      113904
## 18230      113904
## 18231      113904
## 18232      113904
## 18233      113904
## 18234      113904
## 18235      113904
## 18236      113904
## 18237      113904
## 18238      113904
## 18239      113904
## 18240      113904
## 18241      113904
## 18242      113904
## 18243      113904
## 18244      113904
## 18245      113904
## 18246      113904
## 18247      113904
## 18248      113904
## 18249      113904
## 18250      113904
## 18251      113904
## 18252      113904
## 18253      113904
## 18254      113904
## 18255      113904
## 18256      113904
## 18257      113904
## 18258      113904
## 18259      113904
## 18260      113904
## 18261      113904
## 18262      113904
## 18263      113904
## 18264      113904
## 18265      113904
## 18266      113904
## 18267      113904
## 18268      113904
## 18269      113904
## 18270      113904
## 18271      113904
## 18272      113904
## 18273      113904
## 18274      113904
## 18275      113904
## 18276      113904
## 18277      113904
## 18278      113904
## 18279      113904
## 18280      113904
## 18281      113904
## 18282      113904
## 18283      113904
## 18284      113904
## 18285      113904
## 18286      113904
## 18287      114000
## 18288      114000
## 18289      114000
## 18290      114000
## 18291      114000
## 18292      114000
## 18293      114000
## 18294      114000
## 18295      114000
## 18296      114000
## 18297      114000
## 18298      114000
## 18299      114000
## 18300      114000
## 18301      114000
## 18302      114000
## 18303      114000
## 18304      114000
## 18305      114000
## 18306      114000
## 18307      114000
## 18308      114000
## 18309      114025
## 18310      114025
## 18311      114025
## 18312      114025
## 18313      114025
## 18314      114025
## 18315      114025
## 18316      114025
## 18317      114025
## 18318      114025
## 18319      114025
## 18320      114025
## 18321      114025
## 18322      114025
## 18323      114025
## 18324      114025
## 18325      114025
## 18326      114025
## 18327      114025
## 18328      114025
## 18329      114025
## 18330      114025
## 18331      114025
## 18332      114025
## 18333      114025
## 18334      114025
## 18335      114025
## 18336      114025
## 18337      114025
## 18338      114025
## 18339      114025
## 18340      114025
## 18341      114025
## 18342      114025
## 18343      114025
## 18344      114025
## 18345      114025
## 18346      114025
## 18347      114025
## 18348      114025
## 18349      114025
## 18350      114025
## 18351      114025
## 18352      114025
## 18353      114025
## 18354      114025
## 18355      114025
## 18356      114025
## 18357      114025
## 18358      114025
## 18359      114025
## 18360      114025
## 18361      114025
## 18362      114025
## 18363      114025
## 18364      114025
## 18365      114025
## 18366      114025
## 18367      114025
## 18368      114025
## 18369      114025
## 18370      114025
## 18371      114025
## 18372      114025
## 18373      114025
## 18374      114025
## 18375      114025
## 18376      114025
## 18377      114025
## 18378      114025
## 18379      114025
## 18380      114025
## 18381      114025
## 18382      114025
## 18383      114025
## 18384      114025
## 18385      114025
## 18386      114025
## 18387      114025
## 18388      114025
## 18389      114025
## 18390      114025
## 18391      114025
## 18392      114025
## 18393      114025
## 18394      114025
## 18395      114025
## 18396      114025
## 18397      114025
## 18398      114025
## 18399      114025
## 18400      114025
## 18401      114025
## 18402      114025
## 18403      114025
## 18404      114025
## 18405      114185
## 18406      114185
## 18407      114185
## 18408      114185
## 18409      114185
## 18410      114185
## 18411      114185
## 18412      114185
## 18413      114185
## 18414      114185
## 18415      114185
## 18416      114185
## 18417      114185
## 18418      114185
## 18419      114185
## 18420      114185
## 18421      114185
## 18422      114185
## 18423      114185
## 18424      114185
## 18425      114185
## 18426      114185
## 18427      114185
## 18428      114222
## 18429      114222
## 18430      114222
## 18431      114222
## 18432      114222
## 18433      114222
## 18434      114222
## 18435      114222
## 18436      114222
## 18437      114222
## 18438      114222
## 18439      114222
## 18440      114222
## 18441      114222
## 18442      114222
## 18443      114222
## 18444      114222
## 18445      114222
## 18446      114222
## 18447      114222
## 18448      114222
## 18449      114222
## 18450      114222
## 18451      114222
## 18452      114222
## 18453      114222
## 18454      114222
## 18455      114222
## 18456      114222
## 18457      114222
## 18458      114449
## 18459      114449
## 18460      114449
## 18461      114449
## 18462      114449
## 18463      114449
## 18464      114449
## 18465      114449
## 18466      114449
## 18467      114449
## 18468      114449
## 18469      114449
## 18470      114449
## 18471      114449
## 18472      114449
## 18473      114449
## 18474      114449
## 18475      114449
## 18476      114449
## 18477      114449
## 18478      114449
## 18479      114449
## 18480      114449
## 18481      114449
## 18482      114449
## 18483      114449
## 18484      114449
## 18485      114449
## 18486      114449
## 18487      114449
## 18488      114449
## 18489      114449
## 18490      114449
## 18491      114449
## 18492      114449
## 18493      114449
## 18494      114449
## 18495      114449
## 18496      114449
## 18497      114449
## 18498      114449
## 18499      114449
## 18500      114449
## 18501      114449
## 18502      114449
## 18503      114449
## 18504      114449
## 18505      114449
## 18506      114449
## 18507      114449
## 18508      114449
## 18509      114449
## 18510      114449
## 18511      114449
## 18512      114449
## 18513      114449
## 18514      114449
## 18515      114449
## 18516      114449
## 18517      114449
## 18518      114449
## 18519      114449
## 18520      114449
## 18521      114449
## 18522      114449
## 18523      114449
## 18524      114449
## 18525      114449
## 18526      114449
## 18527      114449
## 18528      114449
## 18529      114449
## 18530      114449
## 18531      114449
## 18532      114449
## 18533      114449
## 18534      114449
## 18535      114449
## 18536      114449
## 18537      114449
## 18538      114449
## 18539      114449
## 18540      114449
## 18541      114449
## 18542      114449
## 18543      114449
## 18544      114449
## 18545      114449
## 18546      114449
## 18547      114449
## 18548      114449
## 18549      114449
## 18550      114449
## 18551      114449
## 18552      114449
## 18553      114449
## 18554      114449
## 18555      114449
## 18556      114449
## 18557      114449
## 18558      114449
## 18559      114449
## 18560      114449
## 18561      114449
## 18562      114449
## 18563      114449
## 18564      114449
## 18565      114449
## 18566      114449
## 18567      114449
## 18568      114449
## 18569      114449
## 18570      114449
## 18571      114449
## 18572      114449
## 18573      114449
## 18574      114449
## 18575      114449
## 18576      114449
## 18577      114449
## 18578      114449
## 18579      114449
## 18580      114449
## 18581      114449
## 18582      114449
## 18583      114449
## 18584      114449
## 18585      114449
## 18586      114449
## 18587      114449
## 18588      114449
## 18589      114449
## 18590      114449
## 18591      114449
## 18592      114449
## 18593      114449
## 18594      114449
## 18595      114449
## 18596      114449
## 18597      114496
## 18598      114496
## 18599      114496
## 18600      114496
## 18601      114496
## 18602      114496
## 18603      114496
## 18604      114496
## 18605      114496
## 18606      114496
## 18607      114496
## 18608      114496
## 18609      114496
## 18610      114496
## 18611      114496
## 18612      114496
## 18613      114496
## 18614      114496
## 18615      114496
## 18616      114496
## 18617      114546
## 18618      114546
## 18619      114546
## 18620      114546
## 18621      114546
## 18622      114546
## 18623      114546
## 18624      114546
## 18625      114546
## 18626      114546
## 18627      114546
## 18628      114546
## 18629      114546
## 18630      114546
## 18631      114546
## 18632      114546
## 18633      114546
## 18634      114546
## 18635      114546
## 18636      114546
## 18637      114546
## 18638      114546
## 18639      114546
## 18640      114546
## 18641      114546
## 18642      114546
## 18643      114804
## 18644      114804
## 18645      114804
## 18646      114804
## 18647      114804
## 18648      114804
## 18649      114804
## 18650      114804
## 18651      114804
## 18652      114804
## 18653      114804
## 18654      114804
## 18655      114804
## 18656      114804
## 18657      114804
## 18658      114804
## 18659      114804
## 18660      114804
## 18661      114873
## 18662      114873
## 18663      114873
## 18664      114873
## 18665      114873
## 18666      114873
## 18667      114873
## 18668      114873
## 18669      114873
## 18670      114873
## 18671      114873
## 18672      114873
## 18673      114873
## 18674      114873
## 18675      114873
## 18676      114873
## 18677      114873
## 18678      114873
## 18679      114873
## 18680      114873
## 18681      114873
## 18682      114873
## 18683      114873
## 18684      114873
## 18685      114873
## 18686      114873
## 18687      114873
## 18688      114873
## 18689      114873
## 18690      114873
## 18691      114873
## 18692      114873
## 18693      114873
## 18694       11499
## 18695       11499
## 18696       11499
## 18697       11499
## 18698       11499
## 18699       11499
## 18700       11499
## 18701       11499
## 18702       11499
## 18703       11499
## 18704       11499
## 18705       11499
## 18706       11499
## 18707      115027
## 18708      115027
## 18709      115027
## 18710      115027
## 18711      115027
## 18712      115027
## 18713      115027
## 18714      115027
## 18715      115027
## 18716      115027
## 18717      115027
## 18718      115027
## 18719      115027
## 18720      115027
## 18721      115027
## 18722      115027
## 18723      115027
## 18724      115027
## 18725      115027
## 18726      115027
## 18727      115027
## 18728      115027
## 18729      115027
## 18730      115027
## 18731      115027
## 18732      115027
## 18733      115027
## 18734      115027
## 18735      115027
## 18736      115027
## 18737      115107
## 18738      115107
## 18739      115107
## 18740      115107
## 18741      115107
## 18742      115107
## 18743      115107
## 18744      115107
## 18745      115107
## 18746      115107
## 18747      115107
## 18748      115107
## 18749      115107
## 18750      115107
## 18751      115107
## 18752      115107
## 18753      115107
## 18754      115107
## 18755      115107
## 18756      115107
## 18757      115107
## 18758      115107
## 18759      115107
## 18760      115107
## 18761      115482
## 18762      115482
## 18763      115482
## 18764      115482
## 18765      115482
## 18766      115482
## 18767      115482
## 18768      115482
## 18769      115482
## 18770      115482
## 18771      115482
## 18772      115482
## 18773      115482
## 18774      115482
## 18775      115482
## 18776      115482
## 18777      115482
## 18778      115482
## 18779      115482
## 18780      115482
## 18781      115590
## 18782      115590
## 18783      115590
## 18784      115590
## 18785      115590
## 18786      115590
## 18787      115590
## 18788      115590
## 18789      115590
## 18790      115590
## 18791      115590
## 18792      115590
## 18793      115590
## 18794      115590
## 18795      115590
## 18796      115590
## 18797      115590
## 18798      115590
## 18799      115590
## 18800      115590
## 18801      115590
## 18802      115590
## 18803      115590
## 18804      115590
## 18805      115590
## 18806      115590
## 18807      115590
## 18808      115590
## 18809      115590
## 18810      115590
## 18811      115590
## 18812      115590
## 18813      115590
## 18814      115590
## 18815      115605
## 18816      115605
## 18817      115605
## 18818      115605
## 18819      115605
## 18820      115605
## 18821      115605
## 18822      115605
## 18823      115605
## 18824      115605
## 18825      115605
## 18826      115605
## 18827      115605
## 18828      115605
## 18829      115605
## 18830      115605
## 18831      115605
## 18832      115605
## 18833      115605
## 18834      115605
## 18835      115725
## 18836      115725
## 18837      115725
## 18838      115725
## 18839      115725
## 18840      115725
## 18841      115725
## 18842      115725
## 18843      115725
## 18844      115725
## 18845      115725
## 18846      115725
## 18847      115725
## 18848      115725
## 18849      115725
## 18850      115725
## 18851      115725
## 18852      115725
## 18853      115725
## 18854      115725
## 18855      115725
## 18856      115725
## 18857      115725
## 18858      115725
## 18859      115725
## 18860      115725
## 18861      115725
## 18862      115725
## 18863      115725
## 18864      115725
## 18865      115725
## 18866      115725
## 18867      115725
## 18868      115725
## 18869      115725
## 18870      115725
## 18871      115725
## 18872      115725
## 18873      115725
## 18874      115725
## 18875      115772
## 18876      115772
## 18877      115772
## 18878      115772
## 18879      115772
## 18880      115772
## 18881      115772
## 18882      115772
## 18883      115772
## 18884      115772
## 18885      115772
## 18886      115772
## 18887      115772
## 18888      115772
## 18889      115772
## 18890      115772
## 18891      115772
## 18892      115772
## 18893      115772
## 18894      115772
## 18895      115772
## 18896      115772
## 18897      115772
## 18898      115772
## 18899      115772
## 18900      115772
## 18901      115772
## 18902      115772
## 18903      115772
## 18904      115772
## 18905      115772
## 18906      115772
## 18907      115772
## 18908      115772
## 18909      115772
## 18910      115772
## 18911      115772
## 18912      115772
## 18913      115772
## 18914      115772
## 18915      115772
## 18916      115772
## 18917      115772
## 18918      115772
## 18919      115772
## 18920      115772
## 18921      115772
## 18922      115772
## 18923      115772
## 18924      115772
## 18925      115772
## 18926      115772
## 18927      115772
## 18928      115772
## 18929      115772
## 18930      115772
## 18931      115772
## 18932      115772
## 18933      115772
## 18934      115772
## 18935      115772
## 18936      115772
## 18937      115772
## 18938      115772
## 18939      115772
## 18940      115772
## 18941      115772
## 18942      115772
## 18943      115772
## 18944      115772
## 18945      115772
## 18946      115772
## 18947      115772
## 18948      115904
## 18949      115904
## 18950      115904
## 18951      115904
## 18952      115904
## 18953      115904
## 18954      115904
## 18955      115904
## 18956      115904
## 18957      115904
## 18958      115904
## 18959      115904
## 18960      115904
## 18961      115904
## 18962      115909
## 18963      115909
## 18964      115909
## 18965      115909
## 18966      115909
## 18967      115909
## 18968      115909
## 18969      115909
## 18970      115909
## 18971      115909
## 18972      115909
## 18973      115909
## 18974      115948
## 18975      115948
## 18976      115948
## 18977      115948
## 18978      115948
## 18979      115948
## 18980      115948
## 18981      115948
## 18982      115948
## 18983      115948
## 18984      115948
## 18985      115948
## 18986      115948
## 18987      115948
## 18988      115948
## 18989      115948
## 18990      115948
## 18991      115948
## 18992      115948
## 18993      115948
## 18994      115948
## 18995      115948
## 18996      115948
## 18997      116042
## 18998      116042
## 18999      116042
## 19000      116042
## 19001      116042
## 19002      116042
## 19003      116042
## 19004      116042
## 19005      116042
## 19006      116042
## 19007      116042
## 19008      116042
## 19009      116042
## 19010      116042
## 19011      116042
## 19012      116042
## 19013      116042
## 19014      116042
## 19015      116042
## 19016      116042
## 19017      116042
## 19018      116042
## 19019      116042
## 19020      116042
## 19021      116042
## 19022      116042
## 19023      116042
## 19024      116042
## 19025      116042
## 19026      116042
## 19027      116042
## 19028      116042
## 19029      116042
## 19030      116042
## 19031      116042
## 19032      116042
## 19033      116042
## 19034      116042
## 19035      116042
## 19036      116042
## 19037      116042
## 19038      116042
## 19039      116042
## 19040      116042
## 19041      116042
## 19042      116042
## 19043      116042
## 19044      116042
## 19045      116160
## 19046      116160
## 19047      116160
## 19048      116160
## 19049      116160
## 19050      116160
## 19051      116160
## 19052      116160
## 19053      116160
## 19054      116160
## 19055      116160
## 19056      116160
## 19057      116160
## 19058      116160
## 19059      116160
## 19060      116160
## 19061      116160
## 19062      116160
## 19063      116160
## 19064      116160
## 19065      116160
## 19066      116160
## 19067      116160
## 19068      116160
## 19069      116160
## 19070      116195
## 19071      116195
## 19072      116195
## 19073      116195
## 19074      116195
## 19075      116195
## 19076      116195
## 19077      116195
## 19078      116195
## 19079      116195
## 19080      116195
## 19081      116195
## 19082      116195
## 19083      116195
## 19084      116195
## 19085      116195
## 19086      116195
## 19087      116195
## 19088      116198
## 19089      116198
## 19090      116198
## 19091      116198
## 19092      116198
## 19093      116198
## 19094      116198
## 19095      116198
## 19096      116198
## 19097      116198
## 19098      116198
## 19099      116198
## 19100      116198
## 19101      116198
## 19102      116198
## 19103      116198
## 19104      116254
## 19105      116254
## 19106      116254
## 19107      116254
## 19108      116254
## 19109      116254
## 19110      116254
## 19111      116254
## 19112      116254
## 19113      116254
## 19114      116321
## 19115      116321
## 19116      116321
## 19117      116321
## 19118      116321
## 19119      116321
## 19120      116321
## 19121      116321
## 19122      116321
## 19123      116321
## 19124      116321
## 19125      116321
## 19126      116321
## 19127      116321
## 19128      116321
## 19129      116321
## 19130      116321
## 19131      116321
## 19132      116321
## 19133      116321
## 19134      116321
## 19135      116321
## 19136      116321
## 19137      116321
## 19138      116321
## 19139      116321
## 19140      116321
## 19141      116321
## 19142      116321
## 19143      116321
## 19144      116321
## 19145      116321
## 19146      116321
## 19147      116321
## 19148      116346
## 19149      116346
## 19150      116346
## 19151      116346
## 19152      116346
## 19153      116346
## 19154      116346
## 19155      116346
## 19156      116346
## 19157      116346
## 19158      116346
## 19159      116346
## 19160      116346
## 19161      116346
## 19162      116346
## 19163      116346
## 19164      116346
## 19165      116346
## 19166      116346
## 19167      116346
## 19168      116346
## 19169      116346
## 19170      116346
## 19171      116346
## 19172      116346
## 19173      116346
## 19174      116351
## 19175      116351
## 19176      116351
## 19177      116351
## 19178      116351
## 19179      116351
## 19180      116351
## 19181      116351
## 19182      116351
## 19183      116351
## 19184      116351
## 19185      116351
## 19186      116351
## 19187      116351
## 19188      116351
## 19189      116351
## 19190      116351
## 19191      116351
## 19192      116351
## 19193      116351
## 19194      116351
## 19195      116351
## 19196      116351
## 19197      116351
## 19198      116351
## 19199      116351
## 19200      116420
## 19201      116420
## 19202      116420
## 19203      116420
## 19204      116420
## 19205      116420
## 19206      116420
## 19207      116420
## 19208      116420
## 19209      116420
## 19210      116420
## 19211      116420
## 19212      116420
## 19213      116420
## 19214      116420
## 19215      116420
## 19216      116420
## 19217      116420
## 19218      116420
## 19219      116420
## 19220      116420
## 19221      116420
## 19222      116420
## 19223      116420
## 19224      116420
## 19225      116420
## 19226      116420
## 19227      116420
## 19228      116420
## 19229      116420
## 19230      116420
## 19231      116420
## 19232      116420
## 19233      116420
## 19234      116420
## 19235      116420
## 19236      116420
## 19237      116420
## 19238      116420
## 19239      116420
## 19240      116420
## 19241      116420
## 19242      116420
## 19243      116420
## 19244      116420
## 19245      116420
## 19246      116420
## 19247      116420
## 19248      116420
## 19249      116420
## 19250      116420
## 19251      116420
## 19252      116420
## 19253      116420
## 19254      116420
## 19255      116420
## 19256      116420
## 19257      116420
## 19258      116420
## 19259      116420
## 19260      116420
## 19261      116420
## 19262      116420
## 19263      116420
## 19264      116420
## 19265      116420
## 19266      116420
## 19267      116420
## 19268      116420
## 19269      116420
## 19270      116420
## 19271      116420
## 19272      116420
## 19273      116420
## 19274      116420
## 19275      116420
## 19276      116420
## 19277      116420
## 19278      116420
## 19279      116420
## 19280      116420
## 19281      116420
## 19282      116420
## 19283      116420
## 19284      116420
## 19285      116420
## 19286      116420
## 19287      116420
## 19288      116420
## 19289      116420
## 19290      116420
## 19291      116420
## 19292      116420
## 19293      116420
## 19294      116420
## 19295      116420
## 19296      116420
## 19297      116420
## 19298      116420
## 19299      116420
## 19300      116420
## 19301      116420
## 19302      116420
## 19303      116420
## 19304      116420
## 19305      116420
## 19306      116420
## 19307      116420
## 19308      116420
## 19309      116420
## 19310      116420
## 19311      116420
## 19312      116420
## 19313      116420
## 19314      116420
## 19315      116420
## 19316      116420
## 19317      116420
## 19318      116420
## 19319      116420
## 19320      116420
## 19321      116420
## 19322      116420
## 19323      116420
## 19324      116420
## 19325      116420
## 19326      116420
## 19327      116420
## 19328      116420
## 19329      116420
## 19330      116420
## 19331      116420
## 19332      116420
## 19333      116420
## 19334      116420
## 19335      116420
## 19336      116420
## 19337      116420
## 19338      116420
## 19339      116420
## 19340      116420
## 19341      116420
## 19342      116420
## 19343      116420
## 19344      116420
## 19345      116420
## 19346      116420
## 19347      116420
## 19348      116420
## 19349      116420
## 19350      116420
## 19351      116420
## 19352      116420
## 19353      116449
## 19354      116449
## 19355      116449
## 19356      116449
## 19357      116449
## 19358      116449
## 19359      116449
## 19360      116449
## 19361      116449
## 19362      116449
## 19363      116449
## 19364      116449
## 19365      116449
## 19366      116449
## 19367      116449
## 19368      116449
## 19369      116449
## 19370      116449
## 19371      116449
## 19372      116449
## 19373      116449
## 19374      116449
## 19375      116449
## 19376      116449
## 19377      116449
## 19378      116449
## 19379      116449
## 19380      116449
## 19381      116449
## 19382      116449
## 19383      116449
## 19384      116449
## 19385      116449
## 19386      116449
## 19387      116449
## 19388      116449
## 19389      116449
## 19390      116449
## 19391      116449
## 19392      116449
## 19393      116449
## 19394      116449
## 19395      116449
## 19396      116449
## 19397      116449
## 19398      116449
## 19399      116449
## 19400      116449
## 19401      116449
## 19402      116449
## 19403      116449
## 19404      116449
## 19405      116449
## 19406      116449
## 19407      116449
## 19408      116449
## 19409      116449
## 19410      116449
## 19411      116449
## 19412      116449
## 19413      116449
## 19414      116449
## 19415      116449
## 19416      116449
## 19417      116449
## 19418      116449
## 19419      116449
## 19420      116449
## 19421      116449
## 19422      116449
## 19423      116449
## 19424      116449
## 19425      116449
## 19426      116449
## 19427      116449
## 19428      116449
## 19429      116449
## 19430      116449
## 19431      116449
## 19432      116449
## 19433      116449
## 19434      116449
## 19435      116449
## 19436      116449
## 19437      116449
## 19438      116449
## 19439      116449
## 19440      116449
## 19441      116449
## 19442      116449
## 19443      116449
## 19444      116449
## 19445      116449
## 19446      116449
## 19447      116449
## 19448      116449
## 19449      116449
## 19450      116449
## 19451      116449
## 19452      116449
## 19453      116449
## 19454      116449
## 19455      116449
## 19456      116449
## 19457      116449
## 19458      116449
## 19459      116449
## 19460      116449
## 19461      116449
## 19462      116449
## 19463      116449
## 19464      116449
## 19465      116449
## 19466      116449
## 19467      116449
## 19468      116449
## 19469      116449
## 19470      116449
## 19471      116449
## 19472      116449
## 19473      116449
## 19474      116449
## 19475      116449
## 19476      116449
## 19477      116449
## 19478      116449
## 19479      116449
## 19480      116449
## 19481      116449
## 19482      116449
## 19483      116449
## 19484      116449
## 19485      116449
## 19486      116449
## 19487      116449
## 19488      116449
## 19489      116449
## 19490      116449
## 19491      116449
## 19492      116449
## 19493      116449
## 19494      116449
## 19495      116449
## 19496      116449
## 19497      116449
## 19498      116449
## 19499      116449
## 19500      116449
## 19501      116449
## 19502      116449
## 19503      116449
## 19504      116449
## 19505      116449
## 19506      116449
## 19507      116449
## 19508      116449
## 19509      116449
## 19510      116449
## 19511      116449
## 19512      116449
## 19513      116449
## 19514      116449
## 19515      116449
## 19516      116449
## 19517      116449
## 19518      116449
## 19519      116449
## 19520      116449
## 19521      116449
## 19522      116449
## 19523      116449
## 19524      116449
## 19525      116449
## 19526      116449
## 19527      116449
## 19528      116449
## 19529      116449
## 19530      116449
## 19531      116449
## 19532      116449
## 19533      116449
## 19534      116449
## 19535      116449
## 19536      116449
## 19537      116449
## 19538      116449
## 19539      116449
## 19540      116449
## 19541      116449
## 19542      116449
## 19543      116449
## 19544      116449
## 19545      116449
## 19546      116449
## 19547      116449
## 19548      116449
## 19549      116449
## 19550      116449
## 19551      116449
## 19552      116449
## 19553      116449
## 19554      116449
## 19555      116449
## 19556      116449
## 19557      116449
## 19558      116449
## 19559      116449
## 19560      116449
## 19561      116449
## 19562      116449
## 19563      116449
## 19564      116449
## 19565      116449
## 19566      116449
## 19567      116449
## 19568      116449
## 19569      116449
## 19570      116449
## 19571      116449
## 19572      116449
## 19573      116449
## 19574      116449
## 19575      116449
## 19576      116449
## 19577      116449
## 19578      116449
## 19579      116449
## 19580      116449
## 19581      116449
## 19582      116449
## 19583      116449
## 19584      116449
## 19585      116449
## 19586      116449
## 19587      116449
## 19588      116449
## 19589      116449
## 19590      116449
## 19591      116449
## 19592      116449
## 19593      116449
## 19594      116449
## 19595      116449
## 19596      116449
## 19597      116449
## 19598      116449
## 19599      116449
## 19600      116449
## 19601      116449
## 19602      116449
## 19603      116449
## 19604      116449
## 19605      116449
## 19606      116449
## 19607      116449
## 19608      116449
## 19609      116449
## 19610      116449
## 19611      116449
## 19612      116449
## 19613      116449
## 19614      116449
## 19615      116449
## 19616      116449
## 19617      116449
## 19618      116449
## 19619      116477
## 19620      116477
## 19621      116477
## 19622      116477
## 19623      116477
## 19624      116477
## 19625      116477
## 19626      116477
## 19627      116477
## 19628      116477
## 19629      116477
## 19630      116477
## 19631      116477
## 19632      116477
## 19633      116477
## 19634      116477
## 19635      116477
## 19636      116477
## 19637      116477
## 19638      116477
## 19639      116477
## 19640      116477
## 19641      116477
## 19642      116477
## 19643      116477
## 19644      116477
## 19645      116477
## 19646      116477
## 19647      116477
## 19648      116477
## 19649      116477
## 19650      116477
## 19651      116477
## 19652      116477
## 19653      116477
## 19654      116509
## 19655      116509
## 19656      116509
## 19657      116509
## 19658      116509
## 19659      116509
## 19660      116509
## 19661      116509
## 19662      116509
## 19663      116509
## 19664      116509
## 19665      116509
## 19666      116509
## 19667      116509
## 19668      116509
## 19669      116509
## 19670      116509
## 19671      116509
## 19672      116509
## 19673      116509
## 19674      116509
## 19675      116509
## 19676      116509
## 19677      116509
## 19678      116509
## 19679      116509
## 19680      116509
## 19681      116509
## 19682      116509
## 19683      116509
## 19684      116509
## 19685      116509
## 19686      116509
## 19687      116509
## 19688      116509
## 19689      116509
## 19690      116509
## 19691      116523
## 19692      116523
## 19693      116523
## 19694      116523
## 19695      116523
## 19696      116523
## 19697      116523
## 19698      116523
## 19699      116523
## 19700      116523
## 19701      116523
## 19702      116523
## 19703      116523
## 19704      116523
## 19705      116523
## 19706      116523
## 19707      116523
## 19708      116523
## 19709      116523
## 19710      116523
## 19711      116523
## 19712      116523
## 19713      116523
## 19714      116523
## 19715      116523
## 19716      116523
## 19717      116523
## 19718      116523
## 19719      116523
## 19720      116523
## 19721      116523
## 19722      116523
## 19723      116523
## 19724      116523
## 19725      116523
## 19726      116523
## 19727      116523
## 19728      116523
## 19729      116523
## 19730      116523
## 19731      116523
## 19732      116523
## 19733      116523
## 19734      116523
## 19735      116523
## 19736      116523
## 19737      116523
## 19738      116523
## 19739      116523
## 19740      116523
## 19741      116523
## 19742      116653
## 19743      116653
## 19744      116653
## 19745      116653
## 19746      116653
## 19747      116653
## 19748      116653
## 19749      116653
## 19750      116653
## 19751      116653
## 19752      117081
## 19753      117081
## 19754      117081
## 19755      117081
## 19756      117081
## 19757      117081
## 19758      117081
## 19759      117081
## 19760      117081
## 19761      117081
## 19762      117081
## 19763      117081
## 19764      117081
## 19765      117081
## 19766      117081
## 19767      117081
## 19768      117081
## 19769      117081
## 19770      117081
## 19771      117081
## 19772      117081
## 19773      117081
## 19774      117081
## 19775      117081
## 19776      117081
## 19777      117081
## 19778      117081
## 19779      117081
## 19780      117120
## 19781      117120
## 19782      117120
## 19783      117120
## 19784      117120
## 19785      117120
## 19786      117120
## 19787      117120
## 19788      117120
## 19789      117120
## 19790      117120
## 19791      117120
## 19792      117120
## 19793      117201
## 19794      117201
## 19795      117201
## 19796      117201
## 19797      117201
## 19798      117201
## 19799      117201
## 19800      117201
## 19801      117201
## 19802      117201
## 19803      117201
## 19804      117201
## 19805      117201
## 19806      117201
## 19807      117201
## 19808       11749
## 19809       11749
## 19810       11749
## 19811       11749
## 19812       11749
## 19813       11749
## 19814       11749
## 19815       11749
## 19816       11749
## 19817       11749
## 19818       11749
## 19819       11749
## 19820       11749
## 19821       11749
## 19822       11749
## 19823       11749
## 19824       11749
## 19825       11749
## 19826       11749
## 19827       11749
## 19828       11749
## 19829       11749
## 19830       11749
## 19831       11749
## 19832       11749
## 19833       11749
## 19834       11749
## 19835       11749
## 19836       11749
## 19837       11749
## 19838       11749
## 19839       11749
## 19840       11749
## 19841       11749
## 19842       11749
## 19843       11749
## 19844       11749
## 19845       11749
## 19846       11749
## 19847       11749
## 19848       11749
## 19849       11749
## 19850       11749
## 19851       11749
## 19852       11749
## 19853       11749
## 19854       11749
## 19855       11749
## 19856       11749
## 19857       11749
## 19858       11749
## 19859       11749
## 19860       11749
## 19861       11749
## 19862       11749
## 19863       11749
## 19864       11749
## 19865       11749
## 19866       11749
## 19867       11749
## 19868       11749
## 19869       11749
## 19870       11749
## 19871       11749
## 19872       11749
## 19873       11749
## 19874       11749
## 19875       11749
## 19876       11749
## 19877       11749
## 19878       11749
## 19879       11749
## 19880       11749
## 19881       11749
## 19882       11749
## 19883       11749
## 19884       11749
## 19885       11749
## 19886       11749
## 19887       11749
## 19888       11749
## 19889       11749
## 19890       11749
## 19891       11749
## 19892       11749
## 19893       11749
## 19894       11749
## 19895       11749
## 19896       11749
## 19897       11749
## 19898       11749
## 19899       11749
## 19900       11749
## 19901       11749
## 19902       11749
## 19903       11749
## 19904       11749
## 19905       11749
## 19906       11749
## 19907       11749
## 19908       11749
## 19909       11749
## 19910       11749
## 19911       11749
## 19912       11749
## 19913       11749
## 19914       11749
## 19915       11749
## 19916       11749
## 19917       11749
## 19918       11749
## 19919       11749
## 19920       11749
## 19921       11749
## 19922       11749
## 19923       11749
## 19924       11749
## 19925       11749
## 19926       11749
## 19927       11749
## 19928       11749
## 19929       11749
## 19930       11749
## 19931       11749
## 19932       11749
## 19933       11749
## 19934       11749
## 19935       11749
## 19936       11749
## 19937       11749
## 19938       11749
## 19939       11749
## 19940       11749
## 19941       11749
## 19942       11749
## 19943       11749
## 19944       11749
## 19945       11749
## 19946       11749
## 19947       11749
## 19948       11749
## 19949       11749
## 19950       11749
## 19951       11749
## 19952       11749
## 19953       11749
## 19954       11749
## 19955       11749
## 19956       11749
## 19957       11749
## 19958       11749
## 19959       11749
## 19960       11749
## 19961       11749
## 19962       11749
## 19963       11749
## 19964       11749
## 19965       11749
## 19966       11749
## 19967       11749
## 19968       11749
## 19969       11749
## 19970       11749
## 19971       11749
## 19972       11749
## 19973       11749
## 19974       11749
## 19975       11749
## 19976       11749
## 19977       11749
## 19978       11749
## 19979       11749
## 19980       11749
## 19981       11749
## 19982       11749
## 19983       11749
## 19984       11749
## 19985       11749
## 19986       11749
## 19987       11749
## 19988       11749
## 19989       11749
## 19990       11749
## 19991       11749
## 19992       11749
## 19993       11749
## 19994       11749
## 19995       11749
## 19996       11749
## 19997       11749
## 19998       11749
## 19999       11749
##                                                              article_title
## 1                                                                  Parvati
## 2                                                                  Parvati
## 3                                                                  Parvati
## 4                                                                  Parvati
## 5                                                                  Parvati
## 6                                                                  Parvati
## 7                                                                  Parvati
## 8                                                                  Parvati
## 9                                                                  Parvati
## 10                                                                 Parvati
## 11                                                                 Parvati
## 12                                                                 Parvati
## 13                                                                 Parvati
## 14                                                                 Parvati
## 15                                                                 Parvati
## 16                                                                 Parvati
## 17                                                                 Parvati
## 18                                                                 Parvati
## 19                                                                 Parvati
## 20                                                                 Parvati
## 21                                                                 Parvati
## 22                                                                 Parvati
## 23                                                                 Parvati
## 24                                                                 Parvati
## 25                                                                 Parvati
## 26                                                                 Parvati
## 27                                                                 Parvati
## 28                                                                 Parvati
## 29                                                                 Parvati
## 30                                                                 Parvati
## 31                                                                 Parvati
## 32                                                                 Parvati
## 33                                                                 Parvati
## 34                                                                 Parvati
## 35                                                                 Parvati
## 36                                                                 Parvati
## 37                                                                 Parvati
## 38                                                                 Parvati
## 39                                                                 Parvati
## 40                                                                 Parvati
## 41                                                                 Parvati
## 42                                                                 Parvati
## 43                                                                 Parvati
## 44                                                                 Parvati
## 45                                                                 Parvati
## 46                                                                 Parvati
## 47                                                                 Parvati
## 48                                                                 Parvati
## 49                                                                 Parvati
## 50                                                                 Parvati
## 51                                                                 Parvati
## 52                                                                 Parvati
## 53                                                                 Parvati
## 54                                                                 Parvati
## 55                                                                 Parvati
## 56                                                                 Parvati
## 57                                                                 Parvati
## 58                                                                 Parvati
## 59                                                                 Parvati
## 60                                                                 Parvati
## 61                                                                 Parvati
## 62                                                                 Parvati
## 63                                                                 Parvati
## 64                                                                 Parvati
## 65                                                                 Parvati
## 66                                                                 Parvati
## 67                                                                 Parvati
## 68                                                                 Parvati
## 69                                                                 Parvati
## 70                                                                 Parvati
## 71                                                                 Parvati
## 72                                                                 Parvati
## 73                                                                 Parvati
## 74                                                                 Parvati
## 75                                                                 Parvati
## 76                                                                 Parvati
## 77                                                                 Parvati
## 78                                                                 Parvati
## 79                                                                 Parvati
## 80                                                                 Parvati
## 81                                                                 Parvati
## 82                                                                 Parvati
## 83                                                                 Parvati
## 84                                                                 Parvati
## 85                                                                 Parvati
## 86                                                                 Parvati
## 87                                                                 Parvati
## 88                                                                 Parvati
## 89                                                                 Parvati
## 90                                                                 Parvati
## 91                                                                 Parvati
## 92                                                                 Parvati
## 93                                                                 Parvati
## 94                                                                 Parvati
## 95                                                                 Parvati
## 96                                                                 Parvati
## 97                                                                 Parvati
## 98                                                                 Parvati
## 99                                                                 Parvati
## 100                                                                Parvati
## 101                                                                Parvati
## 102                                                                Parvati
## 103                                                                Parvati
## 104                                                                Parvati
## 105                                                                Parvati
## 106                                                                Parvati
## 107                                                                Parvati
## 108                                                                Parvati
## 109                                                                Parvati
## 110                                                                Parvati
## 111                                                                Parvati
## 112                                                                Parvati
## 113                                                                Parvati
## 114                                                                Parvati
## 115                                                                Parvati
## 116                                                                Parvati
## 117                                                                Parvati
## 118                                                                Parvati
## 119                                                                Parvati
## 120                                                                Parvati
## 121                                                                Parvati
## 122                                                                Parvati
## 123                                                                Parvati
## 124                                                                Parvati
## 125                                                                Parvati
## 126                                                                Parvati
## 127                                                                Parvati
## 128                                                                Parvati
## 129                                                                Parvati
## 130                                                                Parvati
## 131                                                                Parvati
## 132                                                                Parvati
## 133                                                                Parvati
## 134                                                                Parvati
## 135                                                                Parvati
## 136                                                                Parvati
## 137                                                                Parvati
## 138                                                                Parvati
## 139                                                                Parvati
## 140                                                                Parvati
## 141                                                                Parvati
## 142                                                                Parvati
## 143                                                                Parvati
## 144                                                                Parvati
## 145                                                                Parvati
## 146                                                                Parvati
## 147                                                                Parvati
## 148                                                                Parvati
## 149                                                                Parvati
## 150                                                                Parvati
## 151                                                                Parvati
## 152                                                                Parvati
## 153                                                                Parvati
## 154                                                                Parvati
## 155                                                                Parvati
## 156                                                                Parvati
## 157                                                                Parvati
## 158                                                                Parvati
## 159                                                                Parvati
## 160                                                                Parvati
## 161                                                                Parvati
## 162                                                                Parvati
## 163                                                                Parvati
## 164                                                                Parvati
## 165                                                                Parvati
## 166                                                                Parvati
## 167                                                                Parvati
## 168                                                                Parvati
## 169                                                                Parvati
## 170                                                                Parvati
## 171                                                                Parvati
## 172                                                                Parvati
## 173                                                                Parvati
## 174                                                                Parvati
## 175                                                                Parvati
## 176                                                                Parvati
## 177                                                                Parvati
## 178                                                                Parvati
## 179                                                                Parvati
## 180                                                                Parvati
## 181                                                                Parvati
## 182                                                                Parvati
## 183                                                                Parvati
## 184                                                                Parvati
## 185                                                                Parvati
## 186                                                                Parvati
## 187                                                                Parvati
## 188                                                                Parvati
## 189                                                                Parvati
## 190                                                                Parvati
## 191                                                                Parvati
## 192                                                                Parvati
## 193                                                                Parvati
## 194                                                                Parvati
## 195                                                                Parvati
## 196                                                                Parvati
## 197                                                                Parvati
## 198                                                                Parvati
## 199                                                                Parvati
## 200                                                                Parvati
## 201                                                                Parvati
## 202                                                                Parvati
## 203                                                                Parvati
## 204                                                                Parvati
## 205                                                                Parvati
## 206                                                                Parvati
## 207                                                                Parvati
## 208                                                                Parvati
## 209                                                                Parvati
## 210                                                                Parvati
## 211                                                                Parvati
## 212                                                                Parvati
## 213                                                                Parvati
## 214                                                                Parvati
## 215                                                                Parvati
## 216                                                                Parvati
## 217                                                                Parvati
## 218                                                                Parvati
## 219                                                                Parvati
## 220                                                                Parvati
## 221                                                                Parvati
## 222                                                                Parvati
## 223                                                                Parvati
## 224                                                                Parvati
## 225                                                                Parvati
## 226                                                                Parvati
## 227                                                                Parvati
## 228                                                                Parvati
## 229                                                                Parvati
## 230                                                                Parvati
## 231                                                                Parvati
## 232                                                                Parvati
## 233                                                                Parvati
## 234                                                                Parvati
## 235                                                                Parvati
## 236                                                                Parvati
## 237                                                                Parvati
## 238                                                                Parvati
## 239                                                                Parvati
## 240                                                                Parvati
## 241                                                                Parvati
## 242                                                                Parvati
## 243                                                                Parvati
## 244                                                                Parvati
## 245                                                                Parvati
## 246                                                                Parvati
## 247                                                                Parvati
## 248                                                                Parvati
## 249                                                                Parvati
## 250                                                                Parvati
## 251                                                                Parvati
## 252                                                                Parvati
## 253                                                                Parvati
## 254                                                                Parvati
## 255                                                                Parvati
## 256                                                                Parvati
## 257                                                                Parvati
## 258                                                                Parvati
## 259                                                                Parvati
## 260                                                                Parvati
## 261                                                                Parvati
## 262                                                                Parvati
## 263                                                                Parvati
## 264                                                                Parvati
## 265                                                                Parvati
## 266                                                                Parvati
## 267                                                                Parvati
## 268                                                                Parvati
## 269                                                                Parvati
## 270                                                                Parvati
## 271                                                                Parvati
## 272                                                                Parvati
## 273                                                                Parvati
## 274                                                                Parvati
## 275                                                                Parvati
## 276                                                                Parvati
## 277                                                                Parvati
## 278                                                                Parvati
## 279                                                                Parvati
## 280                                                                Parvati
## 281                                                                Parvati
## 282                                                                Parvati
## 283                                                                Parvati
## 284                                                                Parvati
## 285                                                                Parvati
## 286                                                                Parvati
## 287                                                                Parvati
## 288                                                                Parvati
## 289                                                                Parvati
## 290                                                                Parvati
## 291                                                                Parvati
## 292                                                                Parvati
## 293                                                                Parvati
## 294                                                                Parvati
## 295                                                                Parvati
## 296                                                                Parvati
## 297                                                                Parvati
## 298                                                                Parvati
## 299                                                                Parvati
## 300                                                                Parvati
## 301                                                                Parvati
## 302                                                                Parvati
## 303                                                                Parvati
## 304                                                                Parvati
## 305                                                                Parvati
## 306                                                                Parvati
## 307                                                                Parvati
## 308                                                                Parvati
## 309                                                                Parvati
## 310                                                                Parvati
## 311                                                                Parvati
## 312                                                                Parvati
## 313                                                                Parvati
## 314                                                                Parvati
## 315                                                                Parvati
## 316                                                                Parvati
## 317                                                                Parvati
## 318                                                                Parvati
## 319                                                       System-on-a-chip
## 320                                                       System-on-a-chip
## 321                                                       System-on-a-chip
## 322                                                       System-on-a-chip
## 323                                                       System-on-a-chip
## 324                                                       System-on-a-chip
## 325                                                       System-on-a-chip
## 326                                                       System-on-a-chip
## 327                                                       System-on-a-chip
## 328                                                       System-on-a-chip
## 329                                                       System-on-a-chip
## 330                                                       System-on-a-chip
## 331                                                       System-on-a-chip
## 332                                                       System-on-a-chip
## 333                                                       System-on-a-chip
## 334                                                       System-on-a-chip
## 335                                                       System-on-a-chip
## 336                                                       System-on-a-chip
## 337                                                       System-on-a-chip
## 338                                                       System-on-a-chip
## 339                                                       System-on-a-chip
## 340                                                       System-on-a-chip
## 341                                                       System-on-a-chip
## 342                                                       System-on-a-chip
## 343                                                       System-on-a-chip
## 344                                                       System-on-a-chip
## 345                                                       System-on-a-chip
## 346                                                       System-on-a-chip
## 347                                                       System-on-a-chip
## 348                                                       System-on-a-chip
## 349                                                       System-on-a-chip
## 350                                                       System-on-a-chip
## 351                                                       System-on-a-chip
## 352                                                       System-on-a-chip
## 353                                                       System-on-a-chip
## 354                                                       System-on-a-chip
## 355                                                       System-on-a-chip
## 356                                                       System-on-a-chip
## 357                                                       System-on-a-chip
## 358                                                       System-on-a-chip
## 359                                                       System-on-a-chip
## 360                                                       System-on-a-chip
## 361                                                       System-on-a-chip
## 362                                                       System-on-a-chip
## 363                                                       System-on-a-chip
## 364                                                       System-on-a-chip
## 365                                                       System-on-a-chip
## 366                                                       System-on-a-chip
## 367                                                       System-on-a-chip
## 368                                                       System-on-a-chip
## 369                                                       System-on-a-chip
## 370                                                       System-on-a-chip
## 371                                                       System-on-a-chip
## 372                                                       System-on-a-chip
## 373                                                       System-on-a-chip
## 374                                                       System-on-a-chip
## 375                                                       System-on-a-chip
## 376                                                       System-on-a-chip
## 377                                                       System-on-a-chip
## 378                                                       System-on-a-chip
## 379                                                       System-on-a-chip
## 380                                                       System-on-a-chip
## 381                                                       System-on-a-chip
## 382                                                       System-on-a-chip
## 383                                                       System-on-a-chip
## 384                                                       System-on-a-chip
## 385                                                       System-on-a-chip
## 386                                                       System-on-a-chip
## 387                                                       System-on-a-chip
## 388                                                       System-on-a-chip
## 389                                                       System-on-a-chip
## 390                                                       System-on-a-chip
## 391                                                       System-on-a-chip
## 392                                                       System-on-a-chip
## 393                                                       System-on-a-chip
## 394                                                       System-on-a-chip
## 395                                                       System-on-a-chip
## 396                                                       System-on-a-chip
## 397                                                       System-on-a-chip
## 398                                                       System-on-a-chip
## 399                                                       System-on-a-chip
## 400                                                       System-on-a-chip
## 401                                                       System-on-a-chip
## 402                                                       System-on-a-chip
## 403                                                       System-on-a-chip
## 404                                                       System-on-a-chip
## 405                                                       System-on-a-chip
## 406                                                       System-on-a-chip
## 407                                                       System-on-a-chip
## 408                                                       System-on-a-chip
## 409                                                       System-on-a-chip
## 410                                                       System-on-a-chip
## 411                                                       System-on-a-chip
## 412                                                       System-on-a-chip
## 413                                                       System-on-a-chip
## 414                                                       System-on-a-chip
## 415                                                       System-on-a-chip
## 416                                                       System-on-a-chip
## 417                                                       System-on-a-chip
## 418                                                       System-on-a-chip
## 419                                                       System-on-a-chip
## 420                                                       System-on-a-chip
## 421                                                       System-on-a-chip
## 422                                                       System-on-a-chip
## 423                                                       System-on-a-chip
## 424                                                       System-on-a-chip
## 425                                                       System-on-a-chip
## 426                                                       System-on-a-chip
## 427                                                       System-on-a-chip
## 428                                                       System-on-a-chip
## 429                                                       System-on-a-chip
## 430                                                       System-on-a-chip
## 431                                                       System-on-a-chip
## 432                                                       System-on-a-chip
## 433                                                       System-on-a-chip
## 434                                                       System-on-a-chip
## 435                                                       System-on-a-chip
## 436                                                       System-on-a-chip
## 437                                                       System-on-a-chip
## 438                                                       System-on-a-chip
## 439                                                       System-on-a-chip
## 440                                                       System-on-a-chip
## 441                                                       System-on-a-chip
## 442                                                       System-on-a-chip
## 443                                                       System-on-a-chip
## 444                                                       System-on-a-chip
## 445                                                       System-on-a-chip
## 446                                                       System-on-a-chip
## 447                                                       System-on-a-chip
## 448                                                       System-on-a-chip
## 449                                                       System-on-a-chip
## 450                                                       System-on-a-chip
## 451                                                       System-on-a-chip
## 452                                                       System-on-a-chip
## 453                                                       System-on-a-chip
## 454                                                       System-on-a-chip
## 455                                                       System-on-a-chip
## 456                                                       System-on-a-chip
## 457                                                       System-on-a-chip
## 458                                                       System-on-a-chip
## 459                                                       System-on-a-chip
## 460                                                       System-on-a-chip
## 461                                                       System-on-a-chip
## 462                                                       System-on-a-chip
## 463                                                       System-on-a-chip
## 464                                                       System-on-a-chip
## 465                                                       System-on-a-chip
## 466                                                       System-on-a-chip
## 467                                                       System-on-a-chip
## 468                                                       System-on-a-chip
## 469                                                       System-on-a-chip
## 470                                                       System-on-a-chip
## 471                                                       System-on-a-chip
## 472                                                       System-on-a-chip
## 473                                                       System-on-a-chip
## 474                                                       System-on-a-chip
## 475                                                       System-on-a-chip
## 476                                                       System-on-a-chip
## 477                                                       System-on-a-chip
## 478                                                       System-on-a-chip
## 479                                                       System-on-a-chip
## 480                                                       System-on-a-chip
## 481                                                       System-on-a-chip
## 482                                                       System-on-a-chip
## 483                                                       System-on-a-chip
## 484                                                       System-on-a-chip
## 485                                                       System-on-a-chip
## 486                                                       System-on-a-chip
## 487                                                       System-on-a-chip
## 488                                                       System-on-a-chip
## 489                                                       System-on-a-chip
## 490                                                       System-on-a-chip
## 491                                                       System-on-a-chip
## 492                                                       System-on-a-chip
## 493                                                       System-on-a-chip
## 494                                                       System-on-a-chip
## 495                                                       System-on-a-chip
## 496                                                       System-on-a-chip
## 497                                                       System-on-a-chip
## 498                                                       System-on-a-chip
## 499                                                       System-on-a-chip
## 500                                                       System-on-a-chip
## 501                                                       System-on-a-chip
## 502                                                       System-on-a-chip
## 503                                                       System-on-a-chip
## 504                                                       System-on-a-chip
## 505                                                       System-on-a-chip
## 506                                                       System-on-a-chip
## 507                                                       System-on-a-chip
## 508                                                       System-on-a-chip
## 509                                                       System-on-a-chip
## 510                                                       System-on-a-chip
## 511                                                       System-on-a-chip
## 512                                                       System-on-a-chip
## 513                                                       System-on-a-chip
## 514                                                       System-on-a-chip
## 515                                                       System-on-a-chip
## 516                                                       System-on-a-chip
## 517                                                       System-on-a-chip
## 518                                                       System-on-a-chip
## 519                                                       System-on-a-chip
## 520                                                       System-on-a-chip
## 521                                                       System-on-a-chip
## 522                                                       System-on-a-chip
## 523                                                       System-on-a-chip
## 524                                                       System-on-a-chip
## 525                                                       System-on-a-chip
## 526                                                       System-on-a-chip
## 527                                          People_in_systems_and_control
## 528                                          People_in_systems_and_control
## 529                                          People_in_systems_and_control
## 530                                          People_in_systems_and_control
## 531                                          People_in_systems_and_control
## 532                                          People_in_systems_and_control
## 533                                          People_in_systems_and_control
## 534                                          People_in_systems_and_control
## 535                                          People_in_systems_and_control
## 536                                          People_in_systems_and_control
## 537                                          People_in_systems_and_control
## 538                                          People_in_systems_and_control
## 539                                          People_in_systems_and_control
## 540                                          People_in_systems_and_control
## 541                                          People_in_systems_and_control
## 542                                          People_in_systems_and_control
## 543                                          People_in_systems_and_control
## 544                                          People_in_systems_and_control
## 545                                          People_in_systems_and_control
## 546                                          People_in_systems_and_control
## 547                                          People_in_systems_and_control
## 548                                          People_in_systems_and_control
## 549                                          People_in_systems_and_control
## 550                                          People_in_systems_and_control
## 551                                          People_in_systems_and_control
## 552                                          People_in_systems_and_control
## 553                                          People_in_systems_and_control
## 554                                          People_in_systems_and_control
## 555                                          People_in_systems_and_control
## 556                                          People_in_systems_and_control
## 557                                          People_in_systems_and_control
## 558                                          People_in_systems_and_control
## 559                                          People_in_systems_and_control
## 560                                          People_in_systems_and_control
## 561                                          People_in_systems_and_control
## 562                                          People_in_systems_and_control
## 563                                          People_in_systems_and_control
## 564                                          People_in_systems_and_control
## 565                                          People_in_systems_and_control
## 566                                          People_in_systems_and_control
## 567                                          People_in_systems_and_control
## 568                                          People_in_systems_and_control
## 569                                          People_in_systems_and_control
## 570                                          People_in_systems_and_control
## 571                                          People_in_systems_and_control
## 572                                          People_in_systems_and_control
## 573                                          People_in_systems_and_control
## 574                                          People_in_systems_and_control
## 575                                          People_in_systems_and_control
## 576                                          People_in_systems_and_control
## 577                                          People_in_systems_and_control
## 578                                          People_in_systems_and_control
## 579                                          People_in_systems_and_control
## 580                                          People_in_systems_and_control
## 581                                          People_in_systems_and_control
## 582                                          People_in_systems_and_control
## 583                                          People_in_systems_and_control
## 584                                          People_in_systems_and_control
## 585                                          People_in_systems_and_control
## 586                                          People_in_systems_and_control
## 587                                          People_in_systems_and_control
## 588                                          People_in_systems_and_control
## 589                                          People_in_systems_and_control
## 590                                          People_in_systems_and_control
## 591                                          People_in_systems_and_control
## 592                                          People_in_systems_and_control
## 593                                          People_in_systems_and_control
## 594                                          People_in_systems_and_control
## 595                                          People_in_systems_and_control
## 596                                          People_in_systems_and_control
## 597                                          People_in_systems_and_control
## 598                                          People_in_systems_and_control
## 599                                          People_in_systems_and_control
## 600                                          People_in_systems_and_control
## 601                                          People_in_systems_and_control
## 602                                          People_in_systems_and_control
## 603                                                Full-spectrum_dominance
## 604                                                Full-spectrum_dominance
## 605                                                Full-spectrum_dominance
## 606                                                Full-spectrum_dominance
## 607                                                Full-spectrum_dominance
## 608                                                Full-spectrum_dominance
## 609                                                Full-spectrum_dominance
## 610                                                Full-spectrum_dominance
## 611                                                Full-spectrum_dominance
## 612                                                Full-spectrum_dominance
## 613                                                Full-spectrum_dominance
## 614                                                Full-spectrum_dominance
## 615                                                Full-spectrum_dominance
## 616                                                Full-spectrum_dominance
## 617                                                Full-spectrum_dominance
## 618                                                Full-spectrum_dominance
## 619                                                Full-spectrum_dominance
## 620                                                Full-spectrum_dominance
## 621                                                Full-spectrum_dominance
## 622                                                Full-spectrum_dominance
## 623                                                Full-spectrum_dominance
## 624                                                Full-spectrum_dominance
## 625                                                Full-spectrum_dominance
## 626                                                Full-spectrum_dominance
## 627                                                Full-spectrum_dominance
## 628                                                Full-spectrum_dominance
## 629                                                Full-spectrum_dominance
## 630                                                Full-spectrum_dominance
## 631                                                Full-spectrum_dominance
## 632                                                                Epitaph
## 633                                                                Epitaph
## 634                                                                Epitaph
## 635                                                                Epitaph
## 636                                                                Epitaph
## 637                                                                Epitaph
## 638                                                                Epitaph
## 639                                                                Epitaph
## 640                                                                Epitaph
## 641                                                                Epitaph
## 642                                                                Epitaph
## 643                                                                Epitaph
## 644                                                                Epitaph
## 645                                                                Epitaph
## 646                                                                Epitaph
## 647                                                                Epitaph
## 648                                                                Epitaph
## 649                                                                Epitaph
## 650                                                                Epitaph
## 651                                                                Epitaph
## 652                                                                Epitaph
## 653                                                                Epitaph
## 654                                                                Epitaph
## 655                                                                Epitaph
## 656                                                                Epitaph
## 657                                                                Epitaph
## 658                                                                Epitaph
## 659                                                                Epitaph
## 660                                                                Epitaph
## 661                                                                Epitaph
## 662                                                                Epitaph
## 663                                                                Epitaph
## 664                                                                Epitaph
## 665                                                                Epitaph
## 666                                                                Epitaph
## 667                                                                Epitaph
## 668                                                                Epitaph
## 669                                                                Epitaph
## 670                                                                Epitaph
## 671                                                                Epitaph
## 672                                                                Epitaph
## 673                                                                Epitaph
## 674                                                                Epitaph
## 675                                                                Epitaph
## 676                                                                Epitaph
## 677                                                                Epitaph
## 678                                                                Epitaph
## 679                                                                Epitaph
## 680                                                                Epitaph
## 681                                                                Epitaph
## 682                                                                Epitaph
## 683                                                                Epitaph
## 684                                                                Epitaph
## 685                                                                Epitaph
## 686                                                                Epitaph
## 687                                                                Epitaph
## 688                                                                Epitaph
## 689                                                                Epitaph
## 690                                                                Epitaph
## 691                                                                Epitaph
## 692                                                                Epitaph
## 693                                                                Epitaph
## 694                                                                Epitaph
## 695                                                                Epitaph
## 696                                                                Epitaph
## 697                                                                Epitaph
## 698                                                                Epitaph
## 699                                                                Epitaph
## 700                                                                Epitaph
## 701                                                                Epitaph
## 702                                                                Epitaph
## 703                                                                Epitaph
## 704                                                                Epitaph
## 705                                                                Epitaph
## 706                                                                Epitaph
## 707                                                                Epitaph
## 708                                                                Epitaph
## 709                                                                Epitaph
## 710                                                                Epitaph
## 711                                                                Epitaph
## 712                                                                Epitaph
## 713                                                                Epitaph
## 714                                                                Epitaph
## 715                                                                Epitaph
## 716                                                                Epitaph
## 717                                                                Epitaph
## 718                                                                Epitaph
## 719                                                                Epitaph
## 720                                                                Epitaph
## 721                                                                Epitaph
## 722                                                                Epitaph
## 723                                                                Epitaph
## 724                                                                Epitaph
## 725                                                                Epitaph
## 726                                                                Epitaph
## 727                                                                Epitaph
## 728                                                                Epitaph
## 729                                                                Epitaph
## 730                                                                Epitaph
## 731                                                                Epitaph
## 732                                                                Epitaph
## 733                                                                Epitaph
## 734                                                                Epitaph
## 735                                                                Epitaph
## 736                                                                Epitaph
## 737                                                                Epitaph
## 738                                                                Epitaph
## 739                                                                Epitaph
## 740                                                                Epitaph
## 741                                                                Epitaph
## 742                                                                Epitaph
## 743                                                                Epitaph
## 744                                                                Epitaph
## 745                                                                Epitaph
## 746                                                                Epitaph
## 747                                                                Epitaph
## 748                                                                Epitaph
## 749                                                                Epitaph
## 750                                                                Epitaph
## 751                                                                Epitaph
## 752                                                                Epitaph
## 753                                                                Epitaph
## 754                                                                Epitaph
## 755                                                                Epitaph
## 756                                                                Epitaph
## 757                                                                Epitaph
## 758                                                                Epitaph
## 759                                                                Epitaph
## 760                                                                Epitaph
## 761                                                                Epitaph
## 762                                                                Epitaph
## 763                                                                Epitaph
## 764                                                                Epitaph
## 765                                                                Epitaph
## 766                                                                Epitaph
## 767                                                                Epitaph
## 768                                                                Epitaph
## 769                                                                Epitaph
## 770                                                                Epitaph
## 771                                                                Epitaph
## 772                                                                Epitaph
## 773                                                                Epitaph
## 774                                                                Epitaph
## 775                                                                Epitaph
## 776                                                                Epitaph
## 777                                                                Epitaph
## 778                                                                Epitaph
## 779                                                                Epitaph
## 780                                                                Epitaph
## 781                                                                Epitaph
## 782                                                                Epitaph
## 783                                                                Epitaph
## 784                                                                Epitaph
## 785                                                                Epitaph
## 786                                                                Epitaph
## 787                                                                Epitaph
## 788                                                                Epitaph
## 789                                                                Epitaph
## 790                                                                Epitaph
## 791                                                                Epitaph
## 792                                                                Epitaph
## 793                                                                Epitaph
## 794                                                                Epitaph
## 795                                                                Epitaph
## 796                                                                Epitaph
## 797                                                                Epitaph
## 798                                                                Epitaph
## 799                                                                Epitaph
## 800                                                                Epitaph
## 801                                                                Epitaph
## 802                                                                Epitaph
## 803                                                                Epitaph
## 804                                                                Epitaph
## 805                                                                Epitaph
## 806                                                                Epitaph
## 807                                                                Epitaph
## 808                                                                Epitaph
## 809                                                                Epitaph
## 810                                                                Epitaph
## 811                                                                Epitaph
## 812                                                                Epitaph
## 813                                                                Epitaph
## 814                                                                Epitaph
## 815                                                                Epitaph
## 816                                                                Epitaph
## 817                                                                Epitaph
## 818                                                                Epitaph
## 819                                                                Epitaph
## 820                                                                Epitaph
## 821                                                                Epitaph
## 822                                                                Epitaph
## 823                                                                Epitaph
## 824                                                                Epitaph
## 825                                                                Epitaph
## 826                                                                Epitaph
## 827                                                                Epitaph
## 828                                                                Epitaph
## 829                                                                Epitaph
## 830                                                                Epitaph
## 831                                                                Epitaph
## 832                                                                Epitaph
## 833                                                                Epitaph
## 834                                                                Epitaph
## 835                                                                Epitaph
## 836                                                                Epitaph
## 837                                                                Epitaph
## 838                                                                Epitaph
## 839                                                                Epitaph
## 840                                                                Epitaph
## 841                                                                Epitaph
## 842                                                                Epitaph
## 843                                                                Epitaph
## 844                                                                Epitaph
## 845                                                                Epitaph
## 846                                                                Epitaph
## 847                                                                Epitaph
## 848                                                                Epitaph
## 849                                                                Epitaph
## 850                                                                Epitaph
## 851                                                                Epitaph
## 852                                                                Epitaph
## 853                                                                Epitaph
## 854                                                                Epitaph
## 855                                                                Epitaph
## 856                                                                Epitaph
## 857                                                                Epitaph
## 858                                                                Epitaph
## 859                                                                Epitaph
## 860                                                                Epitaph
## 861                                                                Epitaph
## 862                                                                Epitaph
## 863                                                                Epitaph
## 864                                                                Epitaph
## 865                                                                Epitaph
## 866                                                                Epitaph
## 867                                                                Epitaph
## 868                                                                Epitaph
## 869                                                                Epitaph
## 870                                                                Epitaph
## 871                                                                Epitaph
## 872                                                                Epitaph
## 873                                                                Epitaph
## 874                                                                Epitaph
## 875                                                                Epitaph
## 876                                                                Epitaph
## 877                                                                Epitaph
## 878                                                                Epitaph
## 879                                                                Epitaph
## 880                                                                Epitaph
## 881                                                                Epitaph
## 882                                                                Epitaph
## 883                                                                Epitaph
## 884                                                                Epitaph
## 885                                                                Epitaph
## 886                                                                Epitaph
## 887                                                                Epitaph
## 888                                                                Epitaph
## 889                                                                Epitaph
## 890                                                                Epitaph
## 891                                                                Epitaph
## 892                                                                Epitaph
## 893                                                                Epitaph
## 894                                                                Epitaph
## 895                                                                Epitaph
## 896                                                                Epitaph
## 897                                                                Epitaph
## 898                                                                Epitaph
## 899                                                                Epitaph
## 900                                                                Epitaph
## 901                                                                Epitaph
## 902                                                                Epitaph
## 903                                                                Epitaph
## 904                                                                Epitaph
## 905                                                                Epitaph
## 906                                                                Epitaph
## 907                                                                Epitaph
## 908                                                                Epitaph
## 909                                                                Epitaph
## 910                                                                Epitaph
## 911                                                                Epitaph
## 912                                                                Epitaph
## 913                                            Jethro_Tull_(agriculturist)
## 914                                            Jethro_Tull_(agriculturist)
## 915                                            Jethro_Tull_(agriculturist)
## 916                                            Jethro_Tull_(agriculturist)
## 917                                            Jethro_Tull_(agriculturist)
## 918                                            Jethro_Tull_(agriculturist)
## 919                                            Jethro_Tull_(agriculturist)
## 920                                            Jethro_Tull_(agriculturist)
## 921                                            Jethro_Tull_(agriculturist)
## 922                                            Jethro_Tull_(agriculturist)
## 923                                            Jethro_Tull_(agriculturist)
## 924                                            Jethro_Tull_(agriculturist)
## 925                                            Jethro_Tull_(agriculturist)
## 926                                            Jethro_Tull_(agriculturist)
## 927                                            Jethro_Tull_(agriculturist)
## 928                                            Jethro_Tull_(agriculturist)
## 929                                            Jethro_Tull_(agriculturist)
## 930                                            Jethro_Tull_(agriculturist)
## 931                                            Jethro_Tull_(agriculturist)
## 932                                            Jethro_Tull_(agriculturist)
## 933                                            Jethro_Tull_(agriculturist)
## 934                                            Jethro_Tull_(agriculturist)
## 935                                            Jethro_Tull_(agriculturist)
## 936                                            Jethro_Tull_(agriculturist)
## 937                                            Jethro_Tull_(agriculturist)
## 938                                            Jethro_Tull_(agriculturist)
## 939                                            Jethro_Tull_(agriculturist)
## 940                                            Jethro_Tull_(agriculturist)
## 941                                            Jethro_Tull_(agriculturist)
## 942                                            Jethro_Tull_(agriculturist)
## 943                                            Jethro_Tull_(agriculturist)
## 944                                            Jethro_Tull_(agriculturist)
## 945                                            Jethro_Tull_(agriculturist)
## 946                                            Jethro_Tull_(agriculturist)
## 947                                            Jethro_Tull_(agriculturist)
## 948                                            Jethro_Tull_(agriculturist)
## 949                                            Jethro_Tull_(agriculturist)
## 950                                            Jethro_Tull_(agriculturist)
## 951                                            Jethro_Tull_(agriculturist)
## 952                                            Jethro_Tull_(agriculturist)
## 953                                            Jethro_Tull_(agriculturist)
## 954                                            Jethro_Tull_(agriculturist)
## 955                                            Jethro_Tull_(agriculturist)
## 956                                            Jethro_Tull_(agriculturist)
## 957                                            Jethro_Tull_(agriculturist)
## 958                                            Jethro_Tull_(agriculturist)
## 959                                            Jethro_Tull_(agriculturist)
## 960                                            Jethro_Tull_(agriculturist)
## 961                                            Jethro_Tull_(agriculturist)
## 962                                            Jethro_Tull_(agriculturist)
## 963                                            Jethro_Tull_(agriculturist)
## 964                                            Jethro_Tull_(agriculturist)
## 965                                            Jethro_Tull_(agriculturist)
## 966                                            Jethro_Tull_(agriculturist)
## 967                                            Jethro_Tull_(agriculturist)
## 968                                            Jethro_Tull_(agriculturist)
## 969                                            Jethro_Tull_(agriculturist)
## 970                                            Jethro_Tull_(agriculturist)
## 971                                            Jethro_Tull_(agriculturist)
## 972                                            Jethro_Tull_(agriculturist)
## 973                                            Jethro_Tull_(agriculturist)
## 974                                            Jethro_Tull_(agriculturist)
## 975                                            Jethro_Tull_(agriculturist)
## 976                                            Jethro_Tull_(agriculturist)
## 977                                            Jethro_Tull_(agriculturist)
## 978                                            Jethro_Tull_(agriculturist)
## 979                                            Jethro_Tull_(agriculturist)
## 980                                            Jethro_Tull_(agriculturist)
## 981                                            Jethro_Tull_(agriculturist)
## 982                                            Jethro_Tull_(agriculturist)
## 983                                            Jethro_Tull_(agriculturist)
## 984                                            Jethro_Tull_(agriculturist)
## 985                                            Jethro_Tull_(agriculturist)
## 986                                            Jethro_Tull_(agriculturist)
## 987                                            Jethro_Tull_(agriculturist)
## 988                                            Jethro_Tull_(agriculturist)
## 989                                            Jethro_Tull_(agriculturist)
## 990                                            Jethro_Tull_(agriculturist)
## 991                                            Jethro_Tull_(agriculturist)
## 992                                            Jethro_Tull_(agriculturist)
## 993                                            Jethro_Tull_(agriculturist)
## 994                                            Jethro_Tull_(agriculturist)
## 995                                            Jethro_Tull_(agriculturist)
## 996                                            Jethro_Tull_(agriculturist)
## 997                                            Jethro_Tull_(agriculturist)
## 998                                            Jethro_Tull_(agriculturist)
## 999                                            Jethro_Tull_(agriculturist)
## 1000                                           Jethro_Tull_(agriculturist)
## 1001                                           Jethro_Tull_(agriculturist)
## 1002                                           Jethro_Tull_(agriculturist)
## 1003                                           Jethro_Tull_(agriculturist)
## 1004                                           Jethro_Tull_(agriculturist)
## 1005                                           Jethro_Tull_(agriculturist)
## 1006                                           Jethro_Tull_(agriculturist)
## 1007                                           Jethro_Tull_(agriculturist)
## 1008                                           Jethro_Tull_(agriculturist)
## 1009                                           Jethro_Tull_(agriculturist)
## 1010                                           Jethro_Tull_(agriculturist)
## 1011                                           Jethro_Tull_(agriculturist)
## 1012                                           Jethro_Tull_(agriculturist)
## 1013                                           Jethro_Tull_(agriculturist)
## 1014                                           Jethro_Tull_(agriculturist)
## 1015                                           Jethro_Tull_(agriculturist)
## 1016                                           Jethro_Tull_(agriculturist)
## 1017                                           Jethro_Tull_(agriculturist)
## 1018                                           Jethro_Tull_(agriculturist)
## 1019                                           Jethro_Tull_(agriculturist)
## 1020                                           Jethro_Tull_(agriculturist)
## 1021                                           Jethro_Tull_(agriculturist)
## 1022                                           Jethro_Tull_(agriculturist)
## 1023                                           Jethro_Tull_(agriculturist)
## 1024                                           Jethro_Tull_(agriculturist)
## 1025                                           Jethro_Tull_(agriculturist)
## 1026                                           Jethro_Tull_(agriculturist)
## 1027                                           Jethro_Tull_(agriculturist)
## 1028                                           Jethro_Tull_(agriculturist)
## 1029                                           Jethro_Tull_(agriculturist)
## 1030                                           Jethro_Tull_(agriculturist)
## 1031                                           Jethro_Tull_(agriculturist)
## 1032                                           Jethro_Tull_(agriculturist)
## 1033                                           Jethro_Tull_(agriculturist)
## 1034                                           Jethro_Tull_(agriculturist)
## 1035                                           Jethro_Tull_(agriculturist)
## 1036                                           Jethro_Tull_(agriculturist)
## 1037                                           Jethro_Tull_(agriculturist)
## 1038                                           Jethro_Tull_(agriculturist)
## 1039                                           Jethro_Tull_(agriculturist)
## 1040                                           Jethro_Tull_(agriculturist)
## 1041                                           Jethro_Tull_(agriculturist)
## 1042                                           Jethro_Tull_(agriculturist)
## 1043                                           Jethro_Tull_(agriculturist)
## 1044                                           Jethro_Tull_(agriculturist)
## 1045                                           Jethro_Tull_(agriculturist)
## 1046                                           Jethro_Tull_(agriculturist)
## 1047                                           Jethro_Tull_(agriculturist)
## 1048                                           Jethro_Tull_(agriculturist)
## 1049                                           Jethro_Tull_(agriculturist)
## 1050                                           Jethro_Tull_(agriculturist)
## 1051                                           Jethro_Tull_(agriculturist)
## 1052                                           Jethro_Tull_(agriculturist)
## 1053                                           Jethro_Tull_(agriculturist)
## 1054                                           Jethro_Tull_(agriculturist)
## 1055                                           Jethro_Tull_(agriculturist)
## 1056                                           Jethro_Tull_(agriculturist)
## 1057                                           Jethro_Tull_(agriculturist)
## 1058                                           Jethro_Tull_(agriculturist)
## 1059                                           Jethro_Tull_(agriculturist)
## 1060                                           Jethro_Tull_(agriculturist)
## 1061                                           Jethro_Tull_(agriculturist)
## 1062                                           Jethro_Tull_(agriculturist)
## 1063                                           Jethro_Tull_(agriculturist)
## 1064                                           Jethro_Tull_(agriculturist)
## 1065                                           Jethro_Tull_(agriculturist)
## 1066                                           Jethro_Tull_(agriculturist)
## 1067                                           Jethro_Tull_(agriculturist)
## 1068                                           Jethro_Tull_(agriculturist)
## 1069                                           Jethro_Tull_(agriculturist)
## 1070                                           Jethro_Tull_(agriculturist)
## 1071                                           Jethro_Tull_(agriculturist)
## 1072                                           Jethro_Tull_(agriculturist)
## 1073                                           Jethro_Tull_(agriculturist)
## 1074                                           Jethro_Tull_(agriculturist)
## 1075                                           Jethro_Tull_(agriculturist)
## 1076                                           Jethro_Tull_(agriculturist)
## 1077                                           Jethro_Tull_(agriculturist)
## 1078                                           Jethro_Tull_(agriculturist)
## 1079                                           Jethro_Tull_(agriculturist)
## 1080                                           Jethro_Tull_(agriculturist)
## 1081                                           Jethro_Tull_(agriculturist)
## 1082                                           Jethro_Tull_(agriculturist)
## 1083                                           Jethro_Tull_(agriculturist)
## 1084                                           Jethro_Tull_(agriculturist)
## 1085                                           Jethro_Tull_(agriculturist)
## 1086                                           Jethro_Tull_(agriculturist)
## 1087                                           Jethro_Tull_(agriculturist)
## 1088                                           Jethro_Tull_(agriculturist)
## 1089                                           Jethro_Tull_(agriculturist)
## 1090                                           Jethro_Tull_(agriculturist)
## 1091                                           Jethro_Tull_(agriculturist)
## 1092                                           Jethro_Tull_(agriculturist)
## 1093                                           Jethro_Tull_(agriculturist)
## 1094                                           Jethro_Tull_(agriculturist)
## 1095                                           Jethro_Tull_(agriculturist)
## 1096                                           Jethro_Tull_(agriculturist)
## 1097                                           Jethro_Tull_(agriculturist)
## 1098                                           Jethro_Tull_(agriculturist)
## 1099                                           Jethro_Tull_(agriculturist)
## 1100                                           Jethro_Tull_(agriculturist)
## 1101                                           Jethro_Tull_(agriculturist)
## 1102                                           Jethro_Tull_(agriculturist)
## 1103                                           Jethro_Tull_(agriculturist)
## 1104                                           Jethro_Tull_(agriculturist)
## 1105                                           Jethro_Tull_(agriculturist)
## 1106                                           Jethro_Tull_(agriculturist)
## 1107                                           Jethro_Tull_(agriculturist)
## 1108                                           Jethro_Tull_(agriculturist)
## 1109                                           Jethro_Tull_(agriculturist)
## 1110                                           Jethro_Tull_(agriculturist)
## 1111                                           Jethro_Tull_(agriculturist)
## 1112                                           Jethro_Tull_(agriculturist)
## 1113                                           Jethro_Tull_(agriculturist)
## 1114                                           Jethro_Tull_(agriculturist)
## 1115                                           Jethro_Tull_(agriculturist)
## 1116                                           Jethro_Tull_(agriculturist)
## 1117                                           Jethro_Tull_(agriculturist)
## 1118                                           Jethro_Tull_(agriculturist)
## 1119                                           Jethro_Tull_(agriculturist)
## 1120                                           Jethro_Tull_(agriculturist)
## 1121                                           Jethro_Tull_(agriculturist)
## 1122                                           Jethro_Tull_(agriculturist)
## 1123                                           Jethro_Tull_(agriculturist)
## 1124                                           Jethro_Tull_(agriculturist)
## 1125                                           Jethro_Tull_(agriculturist)
## 1126                                           Jethro_Tull_(agriculturist)
## 1127                                           Jethro_Tull_(agriculturist)
## 1128                                           Jethro_Tull_(agriculturist)
## 1129                                           Jethro_Tull_(agriculturist)
## 1130                                           Jethro_Tull_(agriculturist)
## 1131                                           Jethro_Tull_(agriculturist)
## 1132                                           Jethro_Tull_(agriculturist)
## 1133                                           Jethro_Tull_(agriculturist)
## 1134                                           Jethro_Tull_(agriculturist)
## 1135                                           Jethro_Tull_(agriculturist)
## 1136                                           Jethro_Tull_(agriculturist)
## 1137                                           Jethro_Tull_(agriculturist)
## 1138                                           Jethro_Tull_(agriculturist)
## 1139                                           Jethro_Tull_(agriculturist)
## 1140                                           Jethro_Tull_(agriculturist)
## 1141                                           Jethro_Tull_(agriculturist)
## 1142                                           Jethro_Tull_(agriculturist)
## 1143                                           Jethro_Tull_(agriculturist)
## 1144                                           Jethro_Tull_(agriculturist)
## 1145                                           Jethro_Tull_(agriculturist)
## 1146                                           Jethro_Tull_(agriculturist)
## 1147                                           Jethro_Tull_(agriculturist)
## 1148                                           Jethro_Tull_(agriculturist)
## 1149                                           Jethro_Tull_(agriculturist)
## 1150                                           Jethro_Tull_(agriculturist)
## 1151                                           Jethro_Tull_(agriculturist)
## 1152                                           Jethro_Tull_(agriculturist)
## 1153                                           Jethro_Tull_(agriculturist)
## 1154                                           Jethro_Tull_(agriculturist)
## 1155                                           Jethro_Tull_(agriculturist)
## 1156                                           Jethro_Tull_(agriculturist)
## 1157                                           Jethro_Tull_(agriculturist)
## 1158                                           Jethro_Tull_(agriculturist)
## 1159                                           Jethro_Tull_(agriculturist)
## 1160                                           Jethro_Tull_(agriculturist)
## 1161                                           Jethro_Tull_(agriculturist)
## 1162                                           Jethro_Tull_(agriculturist)
## 1163                                           Jethro_Tull_(agriculturist)
## 1164                                           Jethro_Tull_(agriculturist)
## 1165                                           Jethro_Tull_(agriculturist)
## 1166                                           Jethro_Tull_(agriculturist)
## 1167                                           Jethro_Tull_(agriculturist)
## 1168                                           Jethro_Tull_(agriculturist)
## 1169                                           Jethro_Tull_(agriculturist)
## 1170                                           Jethro_Tull_(agriculturist)
## 1171                                           Jethro_Tull_(agriculturist)
## 1172                                           Jethro_Tull_(agriculturist)
## 1173                                           Jethro_Tull_(agriculturist)
## 1174                                           Jethro_Tull_(agriculturist)
## 1175                                           Jethro_Tull_(agriculturist)
## 1176                                           Jethro_Tull_(agriculturist)
## 1177                                           Jethro_Tull_(agriculturist)
## 1178                                           Jethro_Tull_(agriculturist)
## 1179                                           Jethro_Tull_(agriculturist)
## 1180                                           Jethro_Tull_(agriculturist)
## 1181                                           Jethro_Tull_(agriculturist)
## 1182                                           Jethro_Tull_(agriculturist)
## 1183                                           Jethro_Tull_(agriculturist)
## 1184                                           Jethro_Tull_(agriculturist)
## 1185                                           Jethro_Tull_(agriculturist)
## 1186                                           Jethro_Tull_(agriculturist)
## 1187                                           Jethro_Tull_(agriculturist)
## 1188                                           Jethro_Tull_(agriculturist)
## 1189                                           Jethro_Tull_(agriculturist)
## 1190                                           Jethro_Tull_(agriculturist)
## 1191                                           Jethro_Tull_(agriculturist)
## 1192                                           Jethro_Tull_(agriculturist)
## 1193                                           Jethro_Tull_(agriculturist)
## 1194                                           Jethro_Tull_(agriculturist)
## 1195                                           Jethro_Tull_(agriculturist)
## 1196                                           Jethro_Tull_(agriculturist)
## 1197                                           Jethro_Tull_(agriculturist)
## 1198                                           Jethro_Tull_(agriculturist)
## 1199                                           Jethro_Tull_(agriculturist)
## 1200                                           Jethro_Tull_(agriculturist)
## 1201                                           Jethro_Tull_(agriculturist)
## 1202                                           Jethro_Tull_(agriculturist)
## 1203                                           Jethro_Tull_(agriculturist)
## 1204                                           Jethro_Tull_(agriculturist)
## 1205                                           Jethro_Tull_(agriculturist)
## 1206                                           Jethro_Tull_(agriculturist)
## 1207                                           Jethro_Tull_(agriculturist)
## 1208                                           Jethro_Tull_(agriculturist)
## 1209                                           Jethro_Tull_(agriculturist)
## 1210                                           Jethro_Tull_(agriculturist)
## 1211                                           Jethro_Tull_(agriculturist)
## 1212                                           Jethro_Tull_(agriculturist)
## 1213                                           Jethro_Tull_(agriculturist)
## 1214                                           Jethro_Tull_(agriculturist)
## 1215                                           Jethro_Tull_(agriculturist)
## 1216                                           Jethro_Tull_(agriculturist)
## 1217                                           Jethro_Tull_(agriculturist)
## 1218                                           Jethro_Tull_(agriculturist)
## 1219                                           Jethro_Tull_(agriculturist)
## 1220                                           Jethro_Tull_(agriculturist)
## 1221                                           Jethro_Tull_(agriculturist)
## 1222                                           Jethro_Tull_(agriculturist)
## 1223                                           Jethro_Tull_(agriculturist)
## 1224                                           Jethro_Tull_(agriculturist)
## 1225                                           Jethro_Tull_(agriculturist)
## 1226                                           Jethro_Tull_(agriculturist)
## 1227                                           Jethro_Tull_(agriculturist)
## 1228                                           Bongil_Bongil_National_Park
## 1229                                           Bongil_Bongil_National_Park
## 1230                                           Bongil_Bongil_National_Park
## 1231                                           Bongil_Bongil_National_Park
## 1232                                           Bongil_Bongil_National_Park
## 1233                                           Bongil_Bongil_National_Park
## 1234                                           Bongil_Bongil_National_Park
## 1235                                           Bongil_Bongil_National_Park
## 1236                                           Bongil_Bongil_National_Park
## 1237                                           Bongil_Bongil_National_Park
## 1238                                           Bongil_Bongil_National_Park
## 1239                                           Bongil_Bongil_National_Park
## 1240                                                  Bouddi_National_Park
## 1241                                                  Bouddi_National_Park
## 1242                                                  Bouddi_National_Park
## 1243                                                  Bouddi_National_Park
## 1244                                                  Bouddi_National_Park
## 1245                                                  Bouddi_National_Park
## 1246                                                  Bouddi_National_Park
## 1247                                                  Bouddi_National_Park
## 1248                                                  Bouddi_National_Park
## 1249                                                  Bouddi_National_Park
## 1250                                                  Bouddi_National_Park
## 1251                                                  Bouddi_National_Park
## 1252                                                  Bouddi_National_Park
## 1253                                                  Bouddi_National_Park
## 1254                                                  Bouddi_National_Park
## 1255                                                  Bouddi_National_Park
## 1256                                                  Bouddi_National_Park
## 1257                                                  Bouddi_National_Park
## 1258                                                  Bouddi_National_Park
## 1259                                                  Bouddi_National_Park
## 1260                                                  Bouddi_National_Park
## 1261                                                  Bouddi_National_Park
## 1262                                                  Bouddi_National_Park
## 1263                                                  Bouddi_National_Park
## 1264                                                  Bouddi_National_Park
## 1265                                                              April_15
## 1266                                                              April_15
## 1267                                                              April_15
## 1268                                                              April_15
## 1269                                                              April_15
## 1270                                                              April_15
## 1271                                                              April_15
## 1272                                                              April_15
## 1273                                                              April_15
## 1274                                                              April_15
## 1275                                                              April_15
## 1276                                                              April_15
## 1277                                                              April_15
## 1278                                                              April_15
## 1279                                                              April_15
## 1280                                                              April_15
## 1281                                                              April_15
## 1282                                                              April_15
## 1283                                                              April_15
## 1284                                                              April_15
## 1285                                                              April_15
## 1286                                                              April_15
## 1287                                                              April_15
## 1288                                                              April_15
## 1289                                                              April_15
## 1290                                                              April_15
## 1291                                                              April_15
## 1292                                                              April_15
## 1293                                                              April_15
## 1294                                                              April_15
## 1295                                                              April_15
## 1296                                                              April_15
## 1297                                                              April_15
## 1298                                                              April_15
## 1299                                                              April_15
## 1300                                                              April_15
## 1301                                                              April_15
## 1302                                                              April_15
## 1303                                                              April_15
## 1304                                                              April_15
## 1305                                                              April_15
## 1306                                                              April_15
## 1307                                                              April_15
## 1308                                                              April_15
## 1309                                                              April_15
## 1310                                                              April_15
## 1311                                                              April_15
## 1312                                                              April_15
## 1313                                                              April_15
## 1314                                                              April_15
## 1315                                                              April_15
## 1316                                                              April_15
## 1317                                                              April_15
## 1318                                                              April_15
## 1319                                                              April_15
## 1320                                                              April_15
## 1321                                                              April_15
## 1322                                                              April_15
## 1323                                                              April_15
## 1324                                                              April_15
## 1325                                                              April_15
## 1326                                                              April_15
## 1327                                                              April_15
## 1328                                                              April_15
## 1329                                                              April_15
## 1330                                                              April_15
## 1331                                                              April_15
## 1332                                                              April_15
## 1333                                                              April_15
## 1334                                                              April_15
## 1335                                                              April_15
## 1336                                                              April_15
## 1337                                                              April_15
## 1338                                                              April_15
## 1339                                                              April_15
## 1340                                                              April_15
## 1341                                                              April_15
## 1342                                                              April_15
## 1343                                                              April_15
## 1344                                                              April_15
## 1345                                                              April_15
## 1346                                                              April_15
## 1347                                                              April_15
## 1348                                                              April_15
## 1349                                                              April_15
## 1350                                                              April_15
## 1351                                                              April_15
## 1352                                                              April_15
## 1353                                                              April_15
## 1354                                                              April_15
## 1355                                                              April_15
## 1356                                                              April_15
## 1357                                                              April_15
## 1358                                                              April_15
## 1359                                                              April_15
## 1360                                                              April_15
## 1361                                                              April_15
## 1362                                                              April_15
## 1363                                                              April_15
## 1364                                                              April_15
## 1365                                                              April_15
## 1366                                                              April_15
## 1367                                                              April_15
## 1368                                                              April_15
## 1369                                                              April_15
## 1370                                                              April_15
## 1371                                                              April_15
## 1372                                                              April_15
## 1373                                                              April_15
## 1374                                                              April_15
## 1375                                                              April_15
## 1376                                                              April_15
## 1377                                                              April_15
## 1378                                                              April_15
## 1379                                                              April_15
## 1380                                                              April_15
## 1381                                                              April_15
## 1382                                                              April_15
## 1383                                                              April_15
## 1384                                                              April_15
## 1385                                                              April_15
## 1386                                                              April_15
## 1387                                                              April_15
## 1388                                                              April_15
## 1389                                                              April_15
## 1390                                                              April_15
## 1391                                                              April_15
## 1392                                                              April_15
## 1393                                                              April_15
## 1394                                                              April_15
## 1395                                                              April_15
## 1396                                                              April_15
## 1397                                                              April_15
## 1398                                                              April_15
## 1399                                                              April_15
## 1400                                                              April_15
## 1401                                                              April_15
## 1402                                                              April_15
## 1403                                                              April_15
## 1404                                                              April_15
## 1405                                                              April_15
## 1406                                                              April_15
## 1407                                                              April_15
## 1408                                                              April_15
## 1409                                                              April_15
## 1410                                                              April_15
## 1411                                                              April_15
## 1412                                                              April_15
## 1413                                                              April_15
## 1414                                                              April_15
## 1415                                                              April_15
## 1416                                                              April_15
## 1417                                                              April_15
## 1418                                                              April_15
## 1419                                                              April_15
## 1420                                                              April_15
## 1421                                                              April_15
## 1422                                                              April_15
## 1423                                                              April_15
## 1424                                                              April_15
## 1425                                                              April_15
## 1426                                                              April_15
## 1427                                                              April_15
## 1428                                                              April_15
## 1429                                                              April_15
## 1430                                                              April_15
## 1431                                                              April_15
## 1432                                                              April_15
## 1433                                                              April_15
## 1434                                                              April_15
## 1435                                                              April_15
## 1436                                                              April_15
## 1437                                                              April_15
## 1438                                                              April_15
## 1439                                                              April_15
## 1440                                                              April_15
## 1441                                                              April_15
## 1442                                                              April_15
## 1443                                                              April_15
## 1444                                                              April_15
## 1445                                                              April_15
## 1446                                                              April_15
## 1447                                                              April_15
## 1448                                                              April_15
## 1449                                                              April_15
## 1450                                                              April_15
## 1451                                                              April_15
## 1452                                                              April_15
## 1453                                                              April_15
## 1454                                                              April_15
## 1455                                                              April_15
## 1456                                                              April_15
## 1457                                                              April_15
## 1458                                                              April_15
## 1459                                                              April_15
## 1460                                                              April_15
## 1461                                                              April_15
## 1462                                                              April_15
## 1463                                                              April_15
## 1464                                                              April_15
## 1465                                                              April_15
## 1466                                                              April_15
## 1467                                                              April_15
## 1468                                                              April_15
## 1469                                                              April_15
## 1470                                                              April_15
## 1471                                                              April_15
## 1472                                                              April_15
## 1473                                                              April_15
## 1474                                                              April_15
## 1475                                                              April_15
## 1476                                                              April_15
## 1477                                                              April_15
## 1478                                                              April_15
## 1479                                                              April_15
## 1480                                                              April_15
## 1481                                                              April_15
## 1482                                                              April_15
## 1483                                                              April_15
## 1484                                                              April_15
## 1485                                                              April_15
## 1486                                                              April_15
## 1487                                                              April_15
## 1488                                                              April_15
## 1489                                                              April_15
## 1490                                                              April_15
## 1491                                                              April_15
## 1492                                                              April_15
## 1493                                                              April_15
## 1494                                                              April_15
## 1495                                                              April_15
## 1496                                                              April_15
## 1497                                                              April_15
## 1498                                                              April_15
## 1499                                                              April_15
## 1500                                                              April_15
## 1501                                                              April_15
## 1502                                                              April_15
## 1503                                                              April_15
## 1504                                                              April_15
## 1505                                                              April_15
## 1506                                                              April_15
## 1507                                                              April_15
## 1508                                                              April_15
## 1509                                                              April_15
## 1510                                                              April_15
## 1511                                                              April_15
## 1512                                                              April_15
## 1513                                                              April_15
## 1514                                                              April_15
## 1515                                                              April_15
## 1516                                                              April_15
## 1517                                                              April_15
## 1518                                                              April_15
## 1519                                                              April_15
## 1520                                                              April_15
## 1521                                                              April_15
## 1522                                                              April_15
## 1523                                                              April_15
## 1524                                                              April_15
## 1525                                                              April_15
## 1526                                                              April_15
## 1527                                                              April_15
## 1528                                                              April_15
## 1529                                                              April_15
## 1530                                                              April_15
## 1531                                                              April_15
## 1532                                                              April_15
## 1533                                                              April_15
## 1534                                                              April_15
## 1535                                                              April_15
## 1536                                                              April_15
## 1537                                                              April_15
## 1538                                                              April_15
## 1539                                                              April_15
## 1540                                                              April_15
## 1541                                                              April_15
## 1542                                                              April_15
## 1543                                                              April_15
## 1544                                                              April_15
## 1545                                                              April_15
## 1546                                                              April_15
## 1547                                                              April_15
## 1548                                                              April_15
## 1549                                                              April_15
## 1550                                                              April_15
## 1551                                                              April_15
## 1552                                                              April_15
## 1553                                                              April_15
## 1554                                                              April_15
## 1555                                                              April_15
## 1556                                                              April_15
## 1557                                                              April_15
## 1558                                                              April_15
## 1559                                                              April_15
## 1560                                                              April_15
## 1561                                                              April_15
## 1562                                                              April_15
## 1563                                                              April_15
## 1564                                                              April_15
## 1565                                                              April_15
## 1566                                                              April_15
## 1567                                                              April_15
## 1568                                                              April_15
## 1569                                                              April_15
## 1570                                                              April_15
## 1571                                                              April_15
## 1572                                                              April_15
## 1573                                                              April_15
## 1574                                                              April_15
## 1575                                                              April_15
## 1576                                                              April_15
## 1577                                                              April_15
## 1578                                                              April_15
## 1579                                                              April_15
## 1580                                                              April_15
## 1581                                                              April_15
## 1582                                                              April_15
## 1583                                                              April_15
## 1584                                                              April_15
## 1585                                                              April_15
## 1586                                                              April_15
## 1587                                                              April_15
## 1588                                                              April_15
## 1589                                                              April_15
## 1590                                                              April_15
## 1591                                                              April_15
## 1592                                                              April_15
## 1593                                                              April_15
## 1594                                                              April_15
## 1595                                                              April_15
## 1596                                                              April_15
## 1597                                                              April_15
## 1598                                                              April_15
## 1599                                                              April_15
## 1600                                                              April_15
## 1601                                                              April_15
## 1602                                                              April_15
## 1603                                                              April_15
## 1604                                                              April_15
## 1605                                                              April_15
## 1606                                                              April_15
## 1607                                                              April_15
## 1608                                                              April_15
## 1609                                                              April_15
## 1610                                                              April_15
## 1611                                                              April_15
## 1612                                                              April_15
## 1613                                                              April_15
## 1614                                                              April_15
## 1615                                                              April_15
## 1616                                                              April_15
## 1617                                                              April_15
## 1618                                                              April_15
## 1619                                                              April_15
## 1620                                                              April_15
## 1621                                                              April_15
## 1622                                                              April_15
## 1623                                                              April_15
## 1624                                                              April_15
## 1625                                                              April_15
## 1626                                                              April_15
## 1627                                                              April_15
## 1628                                                              April_15
## 1629                                                              April_15
## 1630                                                              April_15
## 1631                                                              April_15
## 1632                                                              April_15
## 1633                                                              April_15
## 1634                                                              April_15
## 1635                                                              April_15
## 1636                                                              April_15
## 1637                                                              April_15
## 1638                                                              April_15
## 1639                                                              April_15
## 1640                                                              April_15
## 1641                                                              April_15
## 1642                                                              April_15
## 1643                                                              April_15
## 1644                                                              April_15
## 1645                                                              April_15
## 1646                                                              April_15
## 1647                                                              April_15
## 1648                                                              April_15
## 1649                                                              April_15
## 1650                                                              April_15
## 1651                                                              April_15
## 1652                                                              April_15
## 1653                                                              April_15
## 1654                                                              April_15
## 1655                                                              April_15
## 1656                                                              April_15
## 1657                                                              April_15
## 1658                                                              April_15
## 1659                                                              April_15
## 1660                                                              April_15
## 1661                                                              April_15
## 1662                                                              April_15
## 1663                                                              April_15
## 1664                                                              April_15
## 1665                                                              April_15
## 1666                                                              April_15
## 1667                                                              April_15
## 1668                                                              April_15
## 1669                                                              April_15
## 1670                                                              April_15
## 1671                                                              April_15
## 1672                                                              April_15
## 1673                                                              April_15
## 1674                                                              April_15
## 1675                                                              April_15
## 1676                                                              April_15
## 1677                                                              April_15
## 1678                                                              April_15
## 1679                                                              April_15
## 1680                                                              April_15
## 1681                                                              April_15
## 1682                                                              April_15
## 1683                                                              April_15
## 1684                                                              April_15
## 1685                                                              April_15
## 1686                                                              April_15
## 1687                                                              April_15
## 1688                                                              April_15
## 1689                                                              April_15
## 1690                                                              April_15
## 1691                                                              April_15
## 1692                                                              April_15
## 1693                                                              April_15
## 1694                                                              April_15
## 1695                                                              April_15
## 1696                                                              April_15
## 1697                                                              April_15
## 1698                                                              April_15
## 1699                                                              April_15
## 1700                                                              April_15
## 1701                                                              April_15
## 1702                                                              April_15
## 1703                                                              April_15
## 1704                                                              April_15
## 1705                                                              April_15
## 1706                                                              April_15
## 1707                                                              April_15
## 1708                                                              April_15
## 1709                                                              April_15
## 1710                                                              April_15
## 1711                                                              April_15
## 1712                                                              April_15
## 1713                                                              April_15
## 1714                                                              April_15
## 1715                                                              April_15
## 1716                                                              April_15
## 1717                                                              April_15
## 1718                                                              April_15
## 1719                                                              April_15
## 1720                                                              April_15
## 1721                                                              April_15
## 1722                                                              April_15
## 1723                                                              April_15
## 1724                                                              April_15
## 1725                                                              April_15
## 1726                                                              April_15
## 1727                                                              April_15
## 1728                                                              April_15
## 1729                                                              April_15
## 1730                                                              April_15
## 1731                                                              April_15
## 1732                                                              April_15
## 1733                                                              April_15
## 1734                                                              April_15
## 1735                                                              April_15
## 1736                                                              April_15
## 1737                                                              April_15
## 1738                                                              April_15
## 1739                                                              April_15
## 1740                                                              April_15
## 1741                                                              April_15
## 1742                                                              April_15
## 1743                                                              April_15
## 1744                                                              April_15
## 1745                                                              April_15
## 1746                                                              April_15
## 1747                                                              April_15
## 1748                                                              April_15
## 1749                                                              April_15
## 1750                                                              April_15
## 1751                                                              April_15
## 1752                                                              April_15
## 1753                                                              April_15
## 1754                                                              April_15
## 1755                                                              April_15
## 1756                                                              April_15
## 1757                                                              April_15
## 1758                                                              April_15
## 1759                                                              April_15
## 1760                                                              April_15
## 1761                                                              April_15
## 1762                                                              April_15
## 1763                                                              April_15
## 1764                                                              April_15
## 1765                                                              April_15
## 1766                                                              April_15
## 1767                                                              April_15
## 1768                                                              April_15
## 1769                                                              April_15
## 1770                                                              April_15
## 1771                                                              April_15
## 1772                                                              April_15
## 1773                                                              April_15
## 1774                                                              April_15
## 1775                                                              April_15
## 1776                                                              April_15
## 1777                                                              April_15
## 1778                                                              April_15
## 1779                                                              April_15
## 1780                                                              April_15
## 1781                                                              April_15
## 1782                                                              April_15
## 1783                                                              April_15
## 1784                                                              April_15
## 1785                                                              April_15
## 1786                                                              April_15
## 1787                                                              April_15
## 1788                                                              April_15
## 1789                                                              April_15
## 1790                                                              April_15
## 1791                                                              April_15
## 1792                                                              April_15
## 1793                                                              April_15
## 1794                                                              April_15
## 1795                                                              April_15
## 1796                                                              April_15
## 1797                                                              April_15
## 1798                                                              April_15
## 1799                                                              April_15
## 1800                                                              April_15
## 1801                                                              April_15
## 1802                                                              April_15
## 1803                                                              April_15
## 1804                                                              April_15
## 1805                                                              April_15
## 1806                                                              April_15
## 1807                                                              April_15
## 1808                                                              April_15
## 1809                                                              April_15
## 1810                                                              April_15
## 1811                                                              April_15
## 1812                                                              April_15
## 1813                                                              April_15
## 1814                                                              April_15
## 1815                                                              April_15
## 1816                                                              April_15
## 1817                                                              April_15
## 1818                                                              April_15
## 1819                                                              April_15
## 1820                                                              April_15
## 1821                                                              April_15
## 1822                                                              April_15
## 1823                                                              April_15
## 1824                                                              April_15
## 1825                                                              April_15
## 1826                                                              April_15
## 1827                                                              April_15
## 1828                                                              April_15
## 1829                                                              April_15
## 1830                                                              April_15
## 1831                                                              April_15
## 1832                                                              April_15
## 1833                                                              April_15
## 1834                                                              April_15
## 1835                                                              April_15
## 1836                                                              April_15
## 1837                                                              April_15
## 1838                                                              April_15
## 1839                                                              April_15
## 1840                                                              April_15
## 1841                                                              April_15
## 1842                                                              April_15
## 1843                                                              April_15
## 1844                                                              April_15
## 1845                                                              April_15
## 1846                                                              April_15
## 1847                                                              April_15
## 1848                                                              April_15
## 1849                                                              April_15
## 1850                                                              April_15
## 1851                                                              April_15
## 1852                                                              April_15
## 1853                                                              April_15
## 1854                                                              April_15
## 1855                                                              April_15
## 1856                                                              April_15
## 1857                                                              April_15
## 1858                                                              April_15
## 1859                                                              April_15
## 1860                                                              April_15
## 1861                                                              April_15
## 1862                                                              April_15
## 1863                                                              April_15
## 1864                                                              April_15
## 1865                                                              April_15
## 1866                                                              April_15
## 1867                                                              April_15
## 1868                                                              April_15
## 1869                                                              April_15
## 1870                                                              April_15
## 1871                                                              April_15
## 1872                                                              April_15
## 1873                                                              April_15
## 1874                                                              April_15
## 1875                                                              April_15
## 1876                                                              April_15
## 1877                                                              April_15
## 1878                                                              April_15
## 1879                                                              April_15
## 1880                                                              April_15
## 1881                                                              April_15
## 1882                                                              April_15
## 1883                                                              April_15
## 1884                                                              April_15
## 1885                                                              April_15
## 1886                                                              April_15
## 1887                                                              April_15
## 1888                                                              April_15
## 1889                                                              April_15
## 1890                                                              April_15
## 1891                                                              April_15
## 1892                                                              April_15
## 1893                                                              April_15
## 1894                                                              April_15
## 1895                                                              April_15
## 1896                                                              April_15
## 1897                                                              April_15
## 1898                                                              April_15
## 1899                                                              April_15
## 1900                                                              April_15
## 1901                                                              April_15
## 1902                                                              April_15
## 1903                                                              April_15
## 1904                                                              April_15
## 1905                                                              April_15
## 1906                                                              April_15
## 1907                                                              April_15
## 1908                                                              April_15
## 1909                                                              April_15
## 1910                                                              April_15
## 1911                                                              April_15
## 1912                                                              April_15
## 1913                                                              April_15
## 1914                                                              April_15
## 1915                                                              April_15
## 1916                                                              April_15
## 1917                                                              April_15
## 1918                                                              April_15
## 1919                                                              April_15
## 1920                                                              April_15
## 1921                                                              April_15
## 1922                                                              April_15
## 1923                                                              April_15
## 1924                                                              April_15
## 1925                                                              April_15
## 1926                                                              April_15
## 1927                                                              April_15
## 1928                                                              April_15
## 1929                                                              April_15
## 1930                                                              April_15
## 1931                                                              April_15
## 1932                                                              April_15
## 1933                                                              April_15
## 1934                                                              April_15
## 1935                                                              April_15
## 1936                                                              April_15
## 1937                                                              April_15
## 1938                                                              April_15
## 1939                                                              April_15
## 1940                                                              April_15
## 1941                                                              April_15
## 1942                                                              April_15
## 1943                                                              April_15
## 1944                                                              April_15
## 1945                                                              April_15
## 1946                                                              April_15
## 1947                                                              April_15
## 1948                                                              April_15
## 1949                                                              April_15
## 1950                                                              April_15
## 1951                                                              April_15
## 1952                                                              April_15
## 1953                                                              April_15
## 1954                                                              April_15
## 1955                                                              April_15
## 1956                                                              April_15
## 1957                                                              April_15
## 1958                                                              April_15
## 1959                                                              April_15
## 1960                                                              April_15
## 1961                                                              April_15
## 1962                                                              April_15
## 1963                                                              April_15
## 1964                                                              April_15
## 1965                                                              April_15
## 1966                                                              April_15
## 1967                                                              April_15
## 1968                                                              April_15
## 1969                                                              April_15
## 1970                                                              April_15
## 1971                                                              April_15
## 1972                                                              April_15
## 1973                                                              April_15
## 1974                                                              April_15
## 1975                                                              April_15
## 1976                                                              April_15
## 1977                                                              April_15
## 1978                                                              April_15
## 1979                                                              April_15
## 1980                                                              April_15
## 1981                                                              April_15
## 1982                                                              April_15
## 1983                                                              April_15
## 1984                                                              April_15
## 1985                                                              April_15
## 1986                                                              April_15
## 1987                                                              April_15
## 1988                                                              April_15
## 1989                                                              April_15
## 1990                                                              April_15
## 1991                                                              April_15
## 1992                                                              April_15
## 1993                                                              April_15
## 1994                                                              April_15
## 1995                                                              April_15
## 1996                                                              April_15
## 1997                                                              April_15
## 1998                                                              April_15
## 1999                                                              April_15
## 2000                                                              April_15
## 2001                                                              April_15
## 2002                                                              April_15
## 2003                                                              April_15
## 2004                                                              April_15
## 2005                                                              April_15
## 2006                                                              April_15
## 2007                                                              April_15
## 2008                                                              April_15
## 2009                                                              April_15
## 2010                                                              April_15
## 2011                                                              April_15
## 2012                                                              April_15
## 2013                                                              April_15
## 2014                                                              April_15
## 2015                                                              April_15
## 2016                                                              April_15
## 2017                                                              April_15
## 2018                                                              April_15
## 2019                                                              April_15
## 2020                                                              April_15
## 2021                                                              April_15
## 2022                                                              April_15
## 2023                                                              April_15
## 2024                                                              April_15
## 2025                                                              April_15
## 2026                                                              April_15
## 2027                                                              April_15
## 2028                                                              April_15
## 2029                                                              April_15
## 2030                                                              April_15
## 2031                                                              April_15
## 2032                                                              April_15
## 2033                                                              April_15
## 2034                                                              April_15
## 2035                                                              April_15
## 2036                                                              April_15
## 2037                                                              April_15
## 2038                                                              April_15
## 2039                                                              April_15
## 2040                                                              April_15
## 2041                                                              April_15
## 2042                                                              April_15
## 2043                                                              April_15
## 2044                                                              April_15
## 2045                                                              April_15
## 2046                                                              April_15
## 2047                                                              April_15
## 2048                                                              April_15
## 2049                                                              April_15
## 2050                                                              April_15
## 2051                                                              April_15
## 2052                                                              April_15
## 2053                                                              April_15
## 2054                                                              April_15
## 2055                                                              April_15
## 2056                                                              April_15
## 2057                                                              April_15
## 2058                                                              April_15
## 2059                                                              April_15
## 2060                                                              April_15
## 2061                                                              April_15
## 2062                                                              April_15
## 2063                                                              April_15
## 2064                                                              April_15
## 2065                                                              April_15
## 2066                                                              April_15
## 2067                                                              April_15
## 2068                                                              April_15
## 2069                                                              April_15
## 2070                                                              April_15
## 2071                                                              April_15
## 2072                                                              April_15
## 2073                                                              April_15
## 2074                                                              April_15
## 2075                                                              April_15
## 2076                                                              April_15
## 2077                                                              April_15
## 2078                                                              April_15
## 2079                                                              April_15
## 2080                                                              April_15
## 2081                                                              April_15
## 2082                                                              April_15
## 2083                                                              April_15
## 2084                                                              April_15
## 2085                                                              April_15
## 2086                                                              April_15
## 2087                                                              April_15
## 2088                                                              April_15
## 2089                                                              April_15
## 2090                                                              April_15
## 2091                                                              April_15
## 2092                                                              April_15
## 2093                                                              April_15
## 2094                                                              April_15
## 2095                                                              April_15
## 2096                                                              April_15
## 2097                                                              April_15
## 2098                                                              April_15
## 2099                                                              April_15
## 2100                                                              April_15
## 2101                                                              April_15
## 2102                                                              April_15
## 2103                                                              April_15
## 2104                                                              April_15
## 2105                                                              April_15
## 2106                                                              April_15
## 2107                                                              April_15
## 2108                                                              April_15
## 2109                                                              April_15
## 2110                                                              April_15
## 2111                                                              April_15
## 2112                                                              April_15
## 2113                                                              April_15
## 2114                                                              April_15
## 2115                                                              April_15
## 2116                                                              April_15
## 2117                                                              April_15
## 2118                                                              April_15
## 2119                                                              April_15
## 2120                                                              April_15
## 2121                                                              April_15
## 2122                                                              April_15
## 2123                                                              April_15
## 2124                                                              April_15
## 2125                                                              April_15
## 2126                                                              April_15
## 2127                                                              April_15
## 2128                                                              April_15
## 2129                                                              April_15
## 2130                                                              April_15
## 2131                                                              April_15
## 2132                                                              April_15
## 2133                                                              April_15
## 2134                                                              April_15
## 2135                                                              April_15
## 2136                                                              April_15
## 2137                                                              April_15
## 2138                                                              April_15
## 2139                                                              April_15
## 2140                                                              April_15
## 2141                                                              April_15
## 2142                                                              April_15
## 2143                                                              April_15
## 2144                                                              April_15
## 2145                                                              April_15
## 2146                                                              April_15
## 2147                                                              April_15
## 2148                                                              April_15
## 2149                                                              April_15
## 2150                                                              April_15
## 2151                                                              April_15
## 2152                                                              April_15
## 2153                                                              April_15
## 2154                                                              April_15
## 2155                                                              April_15
## 2156                                                              April_15
## 2157                                                              April_15
## 2158                                                              April_15
## 2159                                                              April_15
## 2160                                                              April_15
## 2161                                                              April_15
## 2162                                                              April_15
## 2163                                                              April_15
## 2164                                                              April_15
## 2165                                                              April_15
## 2166                                                              April_15
## 2167                                                              April_15
## 2168                                                              April_15
## 2169                                                              April_15
## 2170                                                              April_15
## 2171                                                              April_15
## 2172                                                              April_15
## 2173                                                              April_15
## 2174                                                              April_15
## 2175                                                              April_15
## 2176                                                              April_15
## 2177                                                              April_15
## 2178                                                              April_15
## 2179                                                              April_15
## 2180                                                              April_15
## 2181                                                              April_15
## 2182                                                              April_15
## 2183                                                              April_15
## 2184                                                              April_15
## 2185                                                              April_15
## 2186                                                              April_15
## 2187                                                              April_15
## 2188                                                              April_15
## 2189                                                              April_15
## 2190                                                              April_15
## 2191                                                              April_15
## 2192                                                              April_15
## 2193                                                              April_15
## 2194                                                              April_15
## 2195                                                              April_15
## 2196                                                              April_15
## 2197                                                              April_15
## 2198                                                              April_15
## 2199                                                              April_15
## 2200                                                              April_15
## 2201                                                              April_15
## 2202                                                              April_15
## 2203                                                              April_15
## 2204                                                              April_15
## 2205                                                              April_15
## 2206                                                              April_15
## 2207                                                              April_15
## 2208                                                              April_15
## 2209                                                              April_15
## 2210                                                              April_15
## 2211                                                              April_15
## 2212                                                              April_15
## 2213                                                              April_15
## 2214                                                              April_15
## 2215                                                              April_15
## 2216                                                              April_15
## 2217                                                              April_15
## 2218                                                              April_15
## 2219                                                              April_15
## 2220                                                              April_15
## 2221                                                              April_15
## 2222                                                              April_15
## 2223                                                              April_15
## 2224                                                              April_15
## 2225                                                              April_15
## 2226                                                              April_15
## 2227                                                              April_15
## 2228                                                              April_15
## 2229                                                              April_15
## 2230                                                              April_15
## 2231                                                              April_15
## 2232                                                              April_15
## 2233                                                              April_15
## 2234                                                              April_15
## 2235                                                              April_15
## 2236                                                              April_15
## 2237                                                              April_15
## 2238                                                              April_15
## 2239                                                              April_15
## 2240                                                              April_15
## 2241                                                              April_15
## 2242                                                              April_15
## 2243                                                              April_15
## 2244                                                              April_15
## 2245                                                              April_15
## 2246                                                              April_15
## 2247                                                              April_15
## 2248                                                              April_15
## 2249                                                              April_15
## 2250                                                              April_15
## 2251                                                              April_15
## 2252                                                              April_15
## 2253                                                              April_15
## 2254                                                              April_15
## 2255                                                              April_15
## 2256                                                              April_15
## 2257                                                              April_15
## 2258                                                              April_15
## 2259                                                              April_15
## 2260                                                              April_15
## 2261                                                              April_15
## 2262                                                              April_15
## 2263                                                              April_15
## 2264                                                              April_15
## 2265                                                              April_15
## 2266                                                              April_15
## 2267                                                              April_15
## 2268                                                              April_15
## 2269                                                              April_15
## 2270                                                              April_15
## 2271                                                              April_15
## 2272                                                              April_15
## 2273                                                              April_15
## 2274                                                              April_15
## 2275                                                              April_15
## 2276                                                              April_15
## 2277                                                              April_15
## 2278                                                              April_15
## 2279                                                              April_15
## 2280                                                              April_15
## 2281                                                              April_15
## 2282                                                              April_15
## 2283                                                              April_15
## 2284                                                              April_15
## 2285                                                              April_15
## 2286                                                              April_15
## 2287                                                              April_15
## 2288                                                              April_15
## 2289                                                              April_15
## 2290                                                              April_15
## 2291                                                              April_15
## 2292                                                              April_15
## 2293                                                              April_15
## 2294                                                              April_15
## 2295                                                              April_15
## 2296                                                              April_15
## 2297                                                              April_15
## 2298                                                              April_15
## 2299                                                              April_15
## 2300                                                              April_15
## 2301                                                              April_15
## 2302                                                              April_15
## 2303                                                              April_15
## 2304                                                              April_15
## 2305                                                              April_15
## 2306                                                              April_15
## 2307                                                              April_15
## 2308                                                              April_15
## 2309                                                              April_15
## 2310                                                              April_15
## 2311                                                              April_15
## 2312                                                              April_15
## 2313                                                              April_15
## 2314                                                              April_15
## 2315                                                              April_15
## 2316                                                              April_15
## 2317                                                              April_15
## 2318                                                              April_15
## 2319                                                              April_15
## 2320                                                              April_15
## 2321                                                              April_15
## 2322                                                              April_15
## 2323                                                              April_15
## 2324                                                              April_15
## 2325                                                              April_15
## 2326                                                              April_15
## 2327                                                              April_15
## 2328                                                              April_15
## 2329                                                              April_15
## 2330                                                              April_15
## 2331                                                              April_15
## 2332                                                              April_15
## 2333                                                              April_15
## 2334                                                              April_15
## 2335                                                              April_15
## 2336                                                              April_15
## 2337                                                              April_15
## 2338                                                              April_15
## 2339                                                              April_15
## 2340                                                              April_15
## 2341                                                              April_15
## 2342                                                              April_15
## 2343                                                              April_15
## 2344                                                              April_15
## 2345                                                              April_15
## 2346                                                              April_15
## 2347                                                              April_15
## 2348                                                              April_15
## 2349                                                              April_15
## 2350                                                              April_15
## 2351                                                              April_15
## 2352                                                              April_15
## 2353                                                              April_15
## 2354                                                              April_15
## 2355                                                              April_15
## 2356                                                              April_15
## 2357                                                              April_15
## 2358                                                              April_15
## 2359                                                              April_15
## 2360                                                              April_15
## 2361                                                              April_15
## 2362                                                              April_15
## 2363                                                              April_15
## 2364                                                              April_15
## 2365                                                              April_15
## 2366                                                              April_15
## 2367                                                              April_15
## 2368                                                              April_15
## 2369                                                              April_15
## 2370                                                              April_15
## 2371                                                              April_15
## 2372                                                              April_15
## 2373                                                              April_15
## 2374                                                              April_15
## 2375                                                              April_15
## 2376                                                              April_15
## 2377                                                              April_15
## 2378                                                              April_15
## 2379                                                              April_15
## 2380                                                              April_15
## 2381                                                              April_15
## 2382                                                              April_15
## 2383                                                              April_15
## 2384                                                              April_15
## 2385                                                              April_15
## 2386                                                              April_15
## 2387                                                              April_15
## 2388                                                              April_15
## 2389                                                              April_15
## 2390                                                              April_15
## 2391                                                              April_15
## 2392                                                              April_15
## 2393                                                              April_15
## 2394                                                              April_15
## 2395                                                              April_15
## 2396                                                              April_15
## 2397                                                              April_15
## 2398                                                              April_15
## 2399                                                              April_15
## 2400                                                              April_15
## 2401                                                              April_15
## 2402                                                              April_15
## 2403                                                              April_15
## 2404                                                              April_15
## 2405                                                              April_15
## 2406                                                              April_15
## 2407                                                              April_15
## 2408                                                              April_15
## 2409                                                              April_15
## 2410                                                              April_15
## 2411                                                              April_15
## 2412                                                              April_15
## 2413                                                              April_15
## 2414                                                              April_15
## 2415                                                              April_15
## 2416                                                              April_15
## 2417                                                              April_15
## 2418                                                              April_15
## 2419                                                              April_15
## 2420                                                              April_15
## 2421                                                              April_15
## 2422                                                              April_15
## 2423                                                              April_15
## 2424                                                              April_15
## 2425                                                              April_15
## 2426                                                              April_15
## 2427                                                              April_15
## 2428                                                              April_15
## 2429                                                              April_15
## 2430                                                              April_15
## 2431                                                              April_15
## 2432                                                              April_15
## 2433                                                              April_15
## 2434                                                              April_15
## 2435                                                              April_15
## 2436                                                              April_15
## 2437                                                              April_15
## 2438                                                              April_15
## 2439                                                              April_15
## 2440                                                              April_15
## 2441                                                              April_15
## 2442                                                              April_15
## 2443                                                              April_15
## 2444                                                              April_15
## 2445                                                              April_15
## 2446                                                              April_15
## 2447                                                              April_15
## 2448                                                              April_15
## 2449                                                              April_15
## 2450                                                              April_15
## 2451                                                              April_15
## 2452                                                              April_15
## 2453                                                              April_15
## 2454                                                              April_15
## 2455                                                              April_15
## 2456                                                              April_15
## 2457                                                              April_15
## 2458                                                              April_15
## 2459                                                              April_15
## 2460                                                              April_15
## 2461                                                              April_15
## 2462                                                              April_15
## 2463                                                              April_15
## 2464                                                              April_15
## 2465                                                              April_15
## 2466                                                              April_15
## 2467                                                              April_15
## 2468                                                              April_15
## 2469                                                              April_15
## 2470                                                              April_15
## 2471                                                              April_15
## 2472                                                              April_15
## 2473                                                              April_15
## 2474                                                              April_15
## 2475                                                              April_15
## 2476                                                              April_15
## 2477                                                              April_15
## 2478                                                              April_15
## 2479                                                              April_15
## 2480                                                              April_15
## 2481                                                              April_15
## 2482                                                              April_15
## 2483                                                              April_15
## 2484                                                              April_15
## 2485                                                              April_15
## 2486                                                              April_15
## 2487                                                              April_15
## 2488                                                              April_15
## 2489                                                              April_15
## 2490                                                              April_15
## 2491                                                              April_15
## 2492                                                              April_15
## 2493                                                              April_15
## 2494                                                              April_15
## 2495                                                              April_15
## 2496                                                              April_15
## 2497                                                              April_15
## 2498                                                              April_15
## 2499                                                              April_15
## 2500                                                              April_15
## 2501                                                              April_15
## 2502                                                              April_15
## 2503                                                              April_15
## 2504                                                              April_15
## 2505                                                              April_15
## 2506                                                              April_15
## 2507                                                              April_15
## 2508                                                              April_15
## 2509                                                              April_15
## 2510                                                              April_15
## 2511                                                              April_15
## 2512                                                              April_15
## 2513                                                              April_15
## 2514                                                              April_15
## 2515                                                              April_15
## 2516                                                              April_15
## 2517                                                              April_15
## 2518                                                              April_15
## 2519                                                              April_15
## 2520                                                              April_15
## 2521                                                              April_15
## 2522                                                              April_15
## 2523                                                              April_15
## 2524                                                              April_15
## 2525                                                              April_15
## 2526                                                              April_15
## 2527                                                              April_15
## 2528                                                              April_15
## 2529                                                              April_15
## 2530                                                              April_15
## 2531                                                              April_15
## 2532                                                              April_15
## 2533                                                              April_15
## 2534                                                              April_15
## 2535                                                              April_15
## 2536                                                              April_15
## 2537                                                              April_15
## 2538                                                              April_15
## 2539                                                              April_15
## 2540                                                              April_15
## 2541                                                              April_15
## 2542                                                              April_15
## 2543                                                              April_15
## 2544                                                              April_15
## 2545                                                              April_15
## 2546                                                              April_15
## 2547                                                              April_15
## 2548                                                              April_15
## 2549                                                              April_15
## 2550                                                              April_15
## 2551                                                              April_15
## 2552                                                              April_15
## 2553                                                              April_15
## 2554                                                              April_15
## 2555                                                              April_15
## 2556                                                              April_15
## 2557                                                              April_15
## 2558                                                              April_15
## 2559                                                              April_15
## 2560                                                              April_15
## 2561                                                              April_15
## 2562                                                              April_15
## 2563                                                              April_15
## 2564                                                              April_15
## 2565                                                              April_15
## 2566                                                              April_15
## 2567                                                              April_15
## 2568                                                              April_15
## 2569                                                              April_15
## 2570                                                              April_15
## 2571                                                              April_15
## 2572                                                              April_15
## 2573                                                              April_15
## 2574                                                              April_15
## 2575                                                              April_15
## 2576                                                              April_15
## 2577                                                              April_15
## 2578                                                              April_15
## 2579                                                              April_15
## 2580                                                              April_15
## 2581                                                              April_15
## 2582                                                              April_15
## 2583                                                              April_15
## 2584                                                              April_15
## 2585                                                              April_15
## 2586                                                              April_15
## 2587                                                              April_15
## 2588                                                              April_15
## 2589                                                              April_15
## 2590                                                              April_15
## 2591                                                              April_15
## 2592                                                              April_15
## 2593                                                              April_15
## 2594                                                              April_15
## 2595                                                              April_15
## 2596                                                              April_15
## 2597                                                              April_15
## 2598                                                              April_15
## 2599                                                              April_15
## 2600                                                              April_15
## 2601                                                              April_15
## 2602                                                              April_15
## 2603                                                              April_15
## 2604                                                              April_15
## 2605                                                              April_15
## 2606                                                              April_15
## 2607                                                              April_15
## 2608                                                              April_15
## 2609                                                              April_15
## 2610                                                              April_15
## 2611                                                              April_15
## 2612                                                              April_15
## 2613                                                              April_15
## 2614                                                              April_15
## 2615                                                              April_15
## 2616                                                              April_15
## 2617                                                              April_15
## 2618                                                              April_15
## 2619                                                              April_15
## 2620                                                              April_15
## 2621                                                              April_15
## 2622                                                              April_15
## 2623                                                              April_15
## 2624                                                              April_15
## 2625                                                              April_15
## 2626                                                              April_15
## 2627                                                              April_15
## 2628                                                              April_15
## 2629                                                              April_15
## 2630                                                              April_15
## 2631                                                              April_15
## 2632                                                              April_15
## 2633                                                              April_15
## 2634                                                              April_15
## 2635                                                              April_15
## 2636                                                              April_15
## 2637                                                              April_15
## 2638                                                              April_15
## 2639                                                              April_15
## 2640                                                              April_15
## 2641                                                              April_15
## 2642                                                              April_15
## 2643                                                              April_15
## 2644                                                              April_15
## 2645                                                              April_15
## 2646                                                              April_15
## 2647                                                              April_15
## 2648                                                              April_15
## 2649                                                              April_15
## 2650                                                              April_15
## 2651                                                              April_15
## 2652                                                              April_15
## 2653                                                              April_15
## 2654                                                              April_15
## 2655                                                              April_15
## 2656                                                              April_15
## 2657                                                              April_15
## 2658                                                              April_15
## 2659                                                              April_15
## 2660                                                              April_15
## 2661                                                              April_15
## 2662                                                              April_15
## 2663                                                              April_15
## 2664                                                              April_15
## 2665                                                              April_15
## 2666                                                              April_15
## 2667                                                              April_15
## 2668                                                              April_15
## 2669                                                              April_15
## 2670                                                              April_15
## 2671                                                              April_15
## 2672                                                              April_15
## 2673                                                              April_15
## 2674                                                              April_15
## 2675                                                              April_15
## 2676                                                              April_15
## 2677                                                              April_15
## 2678                                                              April_15
## 2679                                                              April_15
## 2680                                                              April_15
## 2681                                                              April_15
## 2682                                                              April_15
## 2683                                                              April_15
## 2684                                                              April_15
## 2685                                                              April_15
## 2686                                                              April_15
## 2687                                                              April_15
## 2688                                                              April_15
## 2689                                                              April_15
## 2690                                                              April_15
## 2691                                                              April_15
## 2692                                                              April_15
## 2693                                                              April_15
## 2694                                                              April_15
## 2695                                                              April_15
## 2696                                                              April_15
## 2697                                                              April_15
## 2698                                                              April_15
## 2699                                                              April_15
## 2700                                                              April_15
## 2701                                                              April_15
## 2702                                                              April_15
## 2703                                                              April_15
## 2704                                                              April_15
## 2705                                                              April_15
## 2706                                                              April_15
## 2707                                                              April_15
## 2708                                                              April_15
## 2709                                                              April_15
## 2710                                                              April_15
## 2711                                                              April_15
## 2712                                                              April_15
## 2713                                                              April_15
## 2714                                                              April_15
## 2715                                                              April_15
## 2716                                                              April_15
## 2717                                                              April_15
## 2718                                                              April_15
## 2719                                                              April_15
## 2720                                                              April_15
## 2721                                                              April_15
## 2722                                                              April_15
## 2723                                                              April_15
## 2724                                                              April_15
## 2725                                                              April_15
## 2726                                                              April_15
## 2727                                                              April_15
## 2728                                                              April_15
## 2729                                                              April_15
## 2730                                                              April_15
## 2731                                                              April_15
## 2732                                                              April_15
## 2733                                                              April_15
## 2734                                                              April_15
## 2735                                                              April_15
## 2736                                                              April_15
## 2737                                                              April_15
## 2738                                                              April_15
## 2739                                                              April_15
## 2740                                                              April_15
## 2741                                                              April_15
## 2742                                                              April_15
## 2743                                                              April_15
## 2744                                                              April_15
## 2745                                                              April_15
## 2746                                                              April_15
## 2747                                                              April_15
## 2748                                                              April_15
## 2749                                                              April_15
## 2750                                                              April_15
## 2751                                                              April_15
## 2752                                                              April_15
## 2753                                                              April_15
## 2754                                                              April_15
## 2755                                                              April_15
## 2756                                                              April_15
## 2757                                                              April_15
## 2758                                                              April_15
## 2759                                                              April_15
## 2760                                                              April_15
## 2761                                                              April_15
## 2762                                                              April_15
## 2763                                                              April_15
## 2764                                                              April_15
## 2765                                                              April_15
## 2766                                                              April_15
## 2767                                                              April_15
## 2768                                                              April_15
## 2769                                                              April_15
## 2770                                                              April_15
## 2771                                                              April_15
## 2772                                                              April_15
## 2773                                                              April_15
## 2774                                                              April_15
## 2775                                                              April_15
## 2776                                                              April_15
## 2777                                                              April_15
## 2778                                                              April_15
## 2779                                                              April_15
## 2780                                                              April_15
## 2781                                                              April_15
## 2782                                                              April_15
## 2783                                                              April_15
## 2784                                                              April_15
## 2785                                                              April_15
## 2786                                                              April_15
## 2787                                                              April_15
## 2788                                                              April_15
## 2789                                                              April_15
## 2790                                                              April_15
## 2791                                                              April_15
## 2792                                                              April_15
## 2793                                                              April_15
## 2794                                                              April_15
## 2795                                                              April_15
## 2796                                                              April_15
## 2797                                                              April_15
## 2798                                                              April_15
## 2799                                                              April_15
## 2800                                                              April_15
## 2801                                                              April_15
## 2802                                                              April_15
## 2803                                                              April_15
## 2804                                                              April_15
## 2805                                                              April_15
## 2806                                                              April_15
## 2807                                                              April_15
## 2808                                                              April_15
## 2809                                                              April_15
## 2810                                                              April_15
## 2811                                                              April_15
## 2812                                                              April_15
## 2813                                                              April_15
## 2814                                                              April_15
## 2815                                                              April_15
## 2816                                                              April_15
## 2817                                                              April_15
## 2818                                                              April_15
## 2819                                                              April_15
## 2820                                                              April_15
## 2821                                                              April_15
## 2822                                                              April_15
## 2823                                                              April_15
## 2824                                                              April_15
## 2825                                                              April_15
## 2826                                                              April_15
## 2827                                                              April_15
## 2828                                                              April_15
## 2829                                                              April_15
## 2830                                                              April_15
## 2831                                                              April_15
## 2832                                                              April_15
## 2833                                                              April_15
## 2834                                                              April_15
## 2835                                                              April_15
## 2836                                                              April_15
## 2837                                                              April_15
## 2838                                                              April_15
## 2839                                                              April_15
## 2840                                                              April_15
## 2841                                                              April_15
## 2842                                                              April_15
## 2843                                                              April_15
## 2844                                                              April_15
## 2845                                                              April_15
## 2846                                                              April_15
## 2847                                                              April_15
## 2848                                                              April_15
## 2849                                                              April_15
## 2850                                                              April_15
## 2851                                                              April_15
## 2852                                                              April_15
## 2853                                                              April_15
## 2854                                                              April_15
## 2855                                                              April_15
## 2856                                                              April_15
## 2857                                                              April_15
## 2858                                                              April_15
## 2859                                                              April_15
## 2860                                                              April_15
## 2861                                                              April_15
## 2862                                                              April_15
## 2863                                                              April_15
## 2864                                                              April_15
## 2865                                                              April_15
## 2866                                                              April_15
## 2867                                                              April_15
## 2868                                          Cottan-Bimbang_National_Park
## 2869                                          Cottan-Bimbang_National_Park
## 2870                                          Cottan-Bimbang_National_Park
## 2871                                          Cottan-Bimbang_National_Park
## 2872                                          Cottan-Bimbang_National_Park
## 2873                                          Cottan-Bimbang_National_Park
## 2874                                          Cottan-Bimbang_National_Park
## 2875                                          Cottan-Bimbang_National_Park
## 2876                                          Cottan-Bimbang_National_Park
## 2877                                          Cottan-Bimbang_National_Park
## 2878                                          Cottan-Bimbang_National_Park
## 2879                                          Cottan-Bimbang_National_Park
## 2880                                            Fortis_Creek_National_Park
## 2881                                            Fortis_Creek_National_Park
## 2882                                            Fortis_Creek_National_Park
## 2883                                            Fortis_Creek_National_Park
## 2884                                            Fortis_Creek_National_Park
## 2885                                            Fortis_Creek_National_Park
## 2886                                            Fortis_Creek_National_Park
## 2887                                            Fortis_Creek_National_Park
## 2888                                            Fortis_Creek_National_Park
## 2889                                            Fortis_Creek_National_Park
## 2890                                            Fortis_Creek_National_Park
## 2891                                            Fortis_Creek_National_Park
## 2892                                            Fortis_Creek_National_Park
## 2893                                            Fortis_Creek_National_Park
## 2894                                        Mount_Nothofagus_National_Park
## 2895                                        Mount_Nothofagus_National_Park
## 2896                                        Mount_Nothofagus_National_Park
## 2897                                        Mount_Nothofagus_National_Park
## 2898                                        Mount_Nothofagus_National_Park
## 2899                                        Mount_Nothofagus_National_Park
## 2900                                        Mount_Nothofagus_National_Park
## 2901                                        Mount_Nothofagus_National_Park
## 2902                                        Mount_Nothofagus_National_Park
## 2903                                        Mount_Nothofagus_National_Park
## 2904                                        Mount_Nothofagus_National_Park
## 2905                                        Mount_Nothofagus_National_Park
## 2906                                             New_England_National_Park
## 2907                                             New_England_National_Park
## 2908                                             New_England_National_Park
## 2909                                             New_England_National_Park
## 2910                                             New_England_National_Park
## 2911                                             New_England_National_Park
## 2912                                             New_England_National_Park
## 2913                                             New_England_National_Park
## 2914                                             New_England_National_Park
## 2915                                             New_England_National_Park
## 2916                                             New_England_National_Park
## 2917                                             New_England_National_Park
## 2918                                             New_England_National_Park
## 2919                                             New_England_National_Park
## 2920                                             New_England_National_Park
## 2921                                             New_England_National_Park
## 2922                                             New_England_National_Park
## 2923                                             New_England_National_Park
## 2924                                             New_England_National_Park
## 2925                                             New_England_National_Park
## 2926                                             New_England_National_Park
## 2927                                             New_England_National_Park
## 2928                                             New_England_National_Park
## 2929                                             New_England_National_Park
## 2930                                             New_England_National_Park
## 2931                                             New_England_National_Park
## 2932                                             New_England_National_Park
## 2933                                             New_England_National_Park
## 2934                                          Douglas_Apsley_National_Park
## 2935                                          Douglas_Apsley_National_Park
## 2936                                          Douglas_Apsley_National_Park
## 2937                                          Douglas_Apsley_National_Park
## 2938                                          Douglas_Apsley_National_Park
## 2939                                          Douglas_Apsley_National_Park
## 2940                                          Douglas_Apsley_National_Park
## 2941                                          Douglas_Apsley_National_Park
## 2942                                          Douglas_Apsley_National_Park
## 2943                                          Douglas_Apsley_National_Park
## 2944                                          Douglas_Apsley_National_Park
## 2945                                          Douglas_Apsley_National_Park
## 2946                                          Douglas_Apsley_National_Park
## 2947                                          Douglas_Apsley_National_Park
## 2948                                          Douglas_Apsley_National_Park
## 2949                                          Douglas_Apsley_National_Park
## 2950                                          Douglas_Apsley_National_Park
## 2951                                          Douglas_Apsley_National_Park
## 2952                                          Douglas_Apsley_National_Park
## 2953                                          Douglas_Apsley_National_Park
## 2954                                          Douglas_Apsley_National_Park
## 2955                                          Douglas_Apsley_National_Park
## 2956                                          Douglas_Apsley_National_Park
## 2957                                          Douglas_Apsley_National_Park
## 2958                                          Douglas_Apsley_National_Park
## 2959                                          Douglas_Apsley_National_Park
## 2960                                          Douglas_Apsley_National_Park
## 2961                                          Douglas_Apsley_National_Park
## 2962                                          Douglas_Apsley_National_Park
## 2963                                          Douglas_Apsley_National_Park
## 2964                                                Bound_for_Glory_(film)
## 2965                                                Bound_for_Glory_(film)
## 2966                                                Bound_for_Glory_(film)
## 2967                                                Bound_for_Glory_(film)
## 2968                                                Bound_for_Glory_(film)
## 2969                                                Bound_for_Glory_(film)
## 2970                                                Bound_for_Glory_(film)
## 2971                                                Bound_for_Glory_(film)
## 2972                                                Bound_for_Glory_(film)
## 2973                                                Bound_for_Glory_(film)
## 2974                                                Bound_for_Glory_(film)
## 2975                                                Bound_for_Glory_(film)
## 2976                                                Bound_for_Glory_(film)
## 2977                                                Bound_for_Glory_(film)
## 2978                                                Bound_for_Glory_(film)
## 2979                                                Bound_for_Glory_(film)
## 2980                                                Bound_for_Glory_(film)
## 2981                                                Bound_for_Glory_(film)
## 2982                                                Bound_for_Glory_(film)
## 2983                                                Bound_for_Glory_(film)
## 2984                                                Bound_for_Glory_(film)
## 2985                                                Bound_for_Glory_(film)
## 2986                                                Bound_for_Glory_(film)
## 2987                                                Bound_for_Glory_(film)
## 2988                                                Bound_for_Glory_(film)
## 2989                                                Bound_for_Glory_(film)
## 2990                                                Bound_for_Glory_(film)
## 2991                                                Bound_for_Glory_(film)
## 2992                                                Bound_for_Glory_(film)
## 2993                                                Bound_for_Glory_(film)
## 2994                                                Bound_for_Glory_(film)
## 2995                                                Bound_for_Glory_(film)
## 2996                                                Bound_for_Glory_(film)
## 2997                                                Bound_for_Glory_(film)
## 2998                                                Bound_for_Glory_(film)
## 2999                                                Bound_for_Glory_(film)
## 3000                                                Bound_for_Glory_(film)
## 3001                                                Bound_for_Glory_(film)
## 3002                                                Bound_for_Glory_(film)
## 3003                                                Bound_for_Glory_(film)
## 3004                                                Bound_for_Glory_(film)
## 3005                                                Bound_for_Glory_(film)
## 3006                                                Bound_for_Glory_(film)
## 3007                                                Bound_for_Glory_(film)
## 3008                                                Bound_for_Glory_(film)
## 3009                                                Bound_for_Glory_(film)
## 3010                                                Bound_for_Glory_(film)
## 3011                                                Bound_for_Glory_(film)
## 3012                                                Bound_for_Glory_(film)
## 3013                                                Bound_for_Glory_(film)
## 3014                                                Bound_for_Glory_(film)
## 3015                                                Bound_for_Glory_(film)
## 3016                                                Bound_for_Glory_(film)
## 3017                                                Bound_for_Glory_(film)
## 3018                                                Bound_for_Glory_(film)
## 3019                                                Bound_for_Glory_(film)
## 3020                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3021                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3022                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3023                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3024                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3025                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3026                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3027                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3028                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3029                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3030                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3031                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3032                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3033                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3034                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3035                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3036                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3037                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3038                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3039                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3040                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3041                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3042                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3043                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3044                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3045                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3046                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3047                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3048                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3049                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3050                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3051                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3052                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3053                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3054                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3055                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3056                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3057                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3058                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3059                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3060                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3061                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3062                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3063                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3064                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3065                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3066                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3067                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3068                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3069                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3070                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3071                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3072                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3073                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3074                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3075                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3076                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3077                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3078                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3079                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3080                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3081                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3082                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3083                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3084                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3085                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3086                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3087                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3088                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3089                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3090                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3091                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3092                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3093                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3094                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3095                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3096                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3097                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3098                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3099                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3100                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3101                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3102                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3103                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3104                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3105                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3106                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3107                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3108                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3109                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3110                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3111                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3112                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3113                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3114                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3115                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3116                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3117                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3118                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3119                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3120                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3121                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3122                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3123                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3124                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3125                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3126                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3127                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3128                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3129                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3130                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3131                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3132                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3133                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3134                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3135                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3136                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3137                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3138                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3139                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3140                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3141                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3142                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3143                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3144                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3145                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3146                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3147                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3148                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3149                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3150                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3151                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3152                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3153                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3154                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3155                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3156                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3157                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3158                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3159                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3160                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3161                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3162                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3163                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3164                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3165                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3166                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3167                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3168                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3169                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3170                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3171                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3172                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3173                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3174                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3175                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3176                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3177                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3178                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3179                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3180                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3181                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3182                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3183                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3184                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3185                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3186                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3187                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3188                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3189                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3190                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3191                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3192                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3193                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3194                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3195                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3196                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3197                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3198                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3199                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3200                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3201                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3202                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3203                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3204                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3205                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3206                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3207                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3208                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3209                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3210                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3211                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3212                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3213                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3214                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3215                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3216                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3217                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3218                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3219                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3220                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3221                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3222                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3223                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3224                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3225                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3226                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3227                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3228                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3229                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3230                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3231                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3232                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3233                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3234                               De\\u015fteapt\\u0103-te,_rom\\u00e2ne!
## 3235                                            Peak_Charles_National_Park
## 3236                                            Peak_Charles_National_Park
## 3237                                            Peak_Charles_National_Park
## 3238                                            Peak_Charles_National_Park
## 3239                                            Peak_Charles_National_Park
## 3240                                            Peak_Charles_National_Park
## 3241                                            Peak_Charles_National_Park
## 3242                                            Peak_Charles_National_Park
## 3243                                            Peak_Charles_National_Park
## 3244                                            Peak_Charles_National_Park
## 3245                                            Peak_Charles_National_Park
## 3246                                            Peak_Charles_National_Park
## 3247                                         Wilhelmina_of_the_Netherlands
## 3248                                         Wilhelmina_of_the_Netherlands
## 3249                                         Wilhelmina_of_the_Netherlands
## 3250                                         Wilhelmina_of_the_Netherlands
## 3251                                         Wilhelmina_of_the_Netherlands
## 3252                                         Wilhelmina_of_the_Netherlands
## 3253                                         Wilhelmina_of_the_Netherlands
## 3254                                         Wilhelmina_of_the_Netherlands
## 3255                                         Wilhelmina_of_the_Netherlands
## 3256                                         Wilhelmina_of_the_Netherlands
## 3257                                         Wilhelmina_of_the_Netherlands
## 3258                                         Wilhelmina_of_the_Netherlands
## 3259                                         Wilhelmina_of_the_Netherlands
## 3260                                         Wilhelmina_of_the_Netherlands
## 3261                                         Wilhelmina_of_the_Netherlands
## 3262                                         Wilhelmina_of_the_Netherlands
## 3263                                         Wilhelmina_of_the_Netherlands
## 3264                                         Wilhelmina_of_the_Netherlands
## 3265                                         Wilhelmina_of_the_Netherlands
## 3266                                         Wilhelmina_of_the_Netherlands
## 3267                                         Wilhelmina_of_the_Netherlands
## 3268                                         Wilhelmina_of_the_Netherlands
## 3269                                         Wilhelmina_of_the_Netherlands
## 3270                                         Wilhelmina_of_the_Netherlands
## 3271                                         Wilhelmina_of_the_Netherlands
## 3272                                         Wilhelmina_of_the_Netherlands
## 3273                                         Wilhelmina_of_the_Netherlands
## 3274                                         Wilhelmina_of_the_Netherlands
## 3275                                         Wilhelmina_of_the_Netherlands
## 3276                                         Wilhelmina_of_the_Netherlands
## 3277                                         Wilhelmina_of_the_Netherlands
## 3278                                         Wilhelmina_of_the_Netherlands
## 3279                                         Wilhelmina_of_the_Netherlands
## 3280                                         Wilhelmina_of_the_Netherlands
## 3281                                         Wilhelmina_of_the_Netherlands
## 3282                                         Wilhelmina_of_the_Netherlands
## 3283                                         Wilhelmina_of_the_Netherlands
## 3284                                         Wilhelmina_of_the_Netherlands
## 3285                                         Wilhelmina_of_the_Netherlands
## 3286                                         Wilhelmina_of_the_Netherlands
## 3287                                         Wilhelmina_of_the_Netherlands
## 3288                                         Wilhelmina_of_the_Netherlands
## 3289                                         Wilhelmina_of_the_Netherlands
## 3290                                         Wilhelmina_of_the_Netherlands
## 3291                                         Wilhelmina_of_the_Netherlands
## 3292                                         Wilhelmina_of_the_Netherlands
## 3293                                         Wilhelmina_of_the_Netherlands
## 3294                                         Wilhelmina_of_the_Netherlands
## 3295                                         Wilhelmina_of_the_Netherlands
## 3296                                         Wilhelmina_of_the_Netherlands
## 3297                                         Wilhelmina_of_the_Netherlands
## 3298                                         Wilhelmina_of_the_Netherlands
## 3299                                         Wilhelmina_of_the_Netherlands
## 3300                                         Wilhelmina_of_the_Netherlands
## 3301                                         Wilhelmina_of_the_Netherlands
## 3302                                         Wilhelmina_of_the_Netherlands
## 3303                                         Wilhelmina_of_the_Netherlands
## 3304                                         Wilhelmina_of_the_Netherlands
## 3305                                         Wilhelmina_of_the_Netherlands
## 3306                                         Wilhelmina_of_the_Netherlands
## 3307                                         Wilhelmina_of_the_Netherlands
## 3308                                         Wilhelmina_of_the_Netherlands
## 3309                                         Wilhelmina_of_the_Netherlands
## 3310                                         Wilhelmina_of_the_Netherlands
## 3311                                         Wilhelmina_of_the_Netherlands
## 3312                                         Wilhelmina_of_the_Netherlands
## 3313                                         Wilhelmina_of_the_Netherlands
## 3314                                         Wilhelmina_of_the_Netherlands
## 3315                                         Wilhelmina_of_the_Netherlands
## 3316                                         Wilhelmina_of_the_Netherlands
## 3317                                         Wilhelmina_of_the_Netherlands
## 3318                                         Wilhelmina_of_the_Netherlands
## 3319                                         Wilhelmina_of_the_Netherlands
## 3320                                         Wilhelmina_of_the_Netherlands
## 3321                                         Wilhelmina_of_the_Netherlands
## 3322                                         Wilhelmina_of_the_Netherlands
## 3323                                         Wilhelmina_of_the_Netherlands
## 3324                                         Wilhelmina_of_the_Netherlands
## 3325                                         Wilhelmina_of_the_Netherlands
## 3326                                         Wilhelmina_of_the_Netherlands
## 3327                                         Wilhelmina_of_the_Netherlands
## 3328                                         Wilhelmina_of_the_Netherlands
## 3329                                         Wilhelmina_of_the_Netherlands
## 3330                                         Wilhelmina_of_the_Netherlands
## 3331                                         Wilhelmina_of_the_Netherlands
## 3332                                         Wilhelmina_of_the_Netherlands
## 3333                                         Wilhelmina_of_the_Netherlands
## 3334                                         Wilhelmina_of_the_Netherlands
## 3335                                         Wilhelmina_of_the_Netherlands
## 3336                                         Wilhelmina_of_the_Netherlands
## 3337                                         Wilhelmina_of_the_Netherlands
## 3338                                         Wilhelmina_of_the_Netherlands
## 3339                                         Wilhelmina_of_the_Netherlands
## 3340                                         Wilhelmina_of_the_Netherlands
## 3341                                         Wilhelmina_of_the_Netherlands
## 3342                                         Wilhelmina_of_the_Netherlands
## 3343                                         Wilhelmina_of_the_Netherlands
## 3344                                         Wilhelmina_of_the_Netherlands
## 3345                                         Wilhelmina_of_the_Netherlands
## 3346                                         Wilhelmina_of_the_Netherlands
## 3347                                         Wilhelmina_of_the_Netherlands
## 3348                                         Wilhelmina_of_the_Netherlands
## 3349                                         Wilhelmina_of_the_Netherlands
## 3350                                         Wilhelmina_of_the_Netherlands
## 3351                                         Wilhelmina_of_the_Netherlands
## 3352                                         Wilhelmina_of_the_Netherlands
## 3353                                         Wilhelmina_of_the_Netherlands
## 3354                                         Wilhelmina_of_the_Netherlands
## 3355                                         Wilhelmina_of_the_Netherlands
## 3356                                         Wilhelmina_of_the_Netherlands
## 3357                                         Wilhelmina_of_the_Netherlands
## 3358                                         Wilhelmina_of_the_Netherlands
## 3359                                         Wilhelmina_of_the_Netherlands
## 3360                                         Wilhelmina_of_the_Netherlands
## 3361                                         Wilhelmina_of_the_Netherlands
## 3362                                         Wilhelmina_of_the_Netherlands
## 3363                                         Wilhelmina_of_the_Netherlands
## 3364                                         Wilhelmina_of_the_Netherlands
## 3365                                         Wilhelmina_of_the_Netherlands
## 3366                                         Wilhelmina_of_the_Netherlands
## 3367                                         Wilhelmina_of_the_Netherlands
## 3368                                         Wilhelmina_of_the_Netherlands
## 3369                                         Wilhelmina_of_the_Netherlands
## 3370                                         Wilhelmina_of_the_Netherlands
## 3371                                         Wilhelmina_of_the_Netherlands
## 3372                                         Wilhelmina_of_the_Netherlands
## 3373                                         Wilhelmina_of_the_Netherlands
## 3374                                         Wilhelmina_of_the_Netherlands
## 3375                                         Wilhelmina_of_the_Netherlands
## 3376                                         Wilhelmina_of_the_Netherlands
## 3377                                         Wilhelmina_of_the_Netherlands
## 3378                                         Wilhelmina_of_the_Netherlands
## 3379                                         Wilhelmina_of_the_Netherlands
## 3380                                         Wilhelmina_of_the_Netherlands
## 3381                                         Wilhelmina_of_the_Netherlands
## 3382                                         Wilhelmina_of_the_Netherlands
## 3383                                         Wilhelmina_of_the_Netherlands
## 3384                                         Wilhelmina_of_the_Netherlands
## 3385                                         Wilhelmina_of_the_Netherlands
## 3386                                         Wilhelmina_of_the_Netherlands
## 3387                                         Wilhelmina_of_the_Netherlands
## 3388                                         Wilhelmina_of_the_Netherlands
## 3389                                         Wilhelmina_of_the_Netherlands
## 3390                                         Wilhelmina_of_the_Netherlands
## 3391                                         Wilhelmina_of_the_Netherlands
## 3392                                         Wilhelmina_of_the_Netherlands
## 3393                                         Wilhelmina_of_the_Netherlands
## 3394                                         Wilhelmina_of_the_Netherlands
## 3395                                         Wilhelmina_of_the_Netherlands
## 3396                                         Wilhelmina_of_the_Netherlands
## 3397                                         Wilhelmina_of_the_Netherlands
## 3398                                         Wilhelmina_of_the_Netherlands
## 3399                                         Wilhelmina_of_the_Netherlands
## 3400                                         Wilhelmina_of_the_Netherlands
## 3401                                         Wilhelmina_of_the_Netherlands
## 3402                                         Wilhelmina_of_the_Netherlands
## 3403                                         Wilhelmina_of_the_Netherlands
## 3404                                         Wilhelmina_of_the_Netherlands
## 3405                                         Wilhelmina_of_the_Netherlands
## 3406                                         Wilhelmina_of_the_Netherlands
## 3407                                         Wilhelmina_of_the_Netherlands
## 3408                                         Wilhelmina_of_the_Netherlands
## 3409                                         Wilhelmina_of_the_Netherlands
## 3410                                         Wilhelmina_of_the_Netherlands
## 3411                                         Wilhelmina_of_the_Netherlands
## 3412                                         Wilhelmina_of_the_Netherlands
## 3413                                         Wilhelmina_of_the_Netherlands
## 3414                                         Wilhelmina_of_the_Netherlands
## 3415                                         Wilhelmina_of_the_Netherlands
## 3416                                         Wilhelmina_of_the_Netherlands
## 3417                                         Wilhelmina_of_the_Netherlands
## 3418                                         Wilhelmina_of_the_Netherlands
## 3419                                         Wilhelmina_of_the_Netherlands
## 3420                                         Wilhelmina_of_the_Netherlands
## 3421                                         Wilhelmina_of_the_Netherlands
## 3422                                         Wilhelmina_of_the_Netherlands
## 3423                                         Wilhelmina_of_the_Netherlands
## 3424                                         Wilhelmina_of_the_Netherlands
## 3425                                         Wilhelmina_of_the_Netherlands
## 3426                                         Wilhelmina_of_the_Netherlands
## 3427                                         Wilhelmina_of_the_Netherlands
## 3428                                         Wilhelmina_of_the_Netherlands
## 3429                                         Wilhelmina_of_the_Netherlands
## 3430                                         Wilhelmina_of_the_Netherlands
## 3431                                         Wilhelmina_of_the_Netherlands
## 3432                                         Wilhelmina_of_the_Netherlands
## 3433                                         Wilhelmina_of_the_Netherlands
## 3434                                         Wilhelmina_of_the_Netherlands
## 3435                                         Wilhelmina_of_the_Netherlands
## 3436                                         Wilhelmina_of_the_Netherlands
## 3437                                         Wilhelmina_of_the_Netherlands
## 3438                                         Wilhelmina_of_the_Netherlands
## 3439                                         Wilhelmina_of_the_Netherlands
## 3440                                         Wilhelmina_of_the_Netherlands
## 3441                                         Wilhelmina_of_the_Netherlands
## 3442                                         Wilhelmina_of_the_Netherlands
## 3443                                         Wilhelmina_of_the_Netherlands
## 3444                                         Wilhelmina_of_the_Netherlands
## 3445                                         Wilhelmina_of_the_Netherlands
## 3446                                         Wilhelmina_of_the_Netherlands
## 3447                                         Wilhelmina_of_the_Netherlands
## 3448                                         Wilhelmina_of_the_Netherlands
## 3449                                         Wilhelmina_of_the_Netherlands
## 3450                                         Wilhelmina_of_the_Netherlands
## 3451                                         Wilhelmina_of_the_Netherlands
## 3452                                         Wilhelmina_of_the_Netherlands
## 3453                                         Wilhelmina_of_the_Netherlands
## 3454                                         Wilhelmina_of_the_Netherlands
## 3455                                         Wilhelmina_of_the_Netherlands
## 3456                                         Wilhelmina_of_the_Netherlands
## 3457                                         Wilhelmina_of_the_Netherlands
## 3458                                         Wilhelmina_of_the_Netherlands
## 3459                                         Wilhelmina_of_the_Netherlands
## 3460                                         Wilhelmina_of_the_Netherlands
## 3461                                         Wilhelmina_of_the_Netherlands
## 3462                                         Wilhelmina_of_the_Netherlands
## 3463                                         Wilhelmina_of_the_Netherlands
## 3464                                         Wilhelmina_of_the_Netherlands
## 3465                                         Wilhelmina_of_the_Netherlands
## 3466                                         Wilhelmina_of_the_Netherlands
## 3467                                         Wilhelmina_of_the_Netherlands
## 3468                                         Wilhelmina_of_the_Netherlands
## 3469                                         Wilhelmina_of_the_Netherlands
## 3470                                         Wilhelmina_of_the_Netherlands
## 3471                                         Wilhelmina_of_the_Netherlands
## 3472                                         Wilhelmina_of_the_Netherlands
## 3473                                         Wilhelmina_of_the_Netherlands
## 3474                                         Wilhelmina_of_the_Netherlands
## 3475                                         Wilhelmina_of_the_Netherlands
## 3476                                         Wilhelmina_of_the_Netherlands
## 3477                                         Wilhelmina_of_the_Netherlands
## 3478                                         Wilhelmina_of_the_Netherlands
## 3479                                         Wilhelmina_of_the_Netherlands
## 3480                                         Wilhelmina_of_the_Netherlands
## 3481                                         Wilhelmina_of_the_Netherlands
## 3482                                         Wilhelmina_of_the_Netherlands
## 3483                                         Wilhelmina_of_the_Netherlands
## 3484                                         Wilhelmina_of_the_Netherlands
## 3485                                         Wilhelmina_of_the_Netherlands
## 3486                                         Wilhelmina_of_the_Netherlands
## 3487                                         Wilhelmina_of_the_Netherlands
## 3488                                         Wilhelmina_of_the_Netherlands
## 3489                                         Wilhelmina_of_the_Netherlands
## 3490                                         Wilhelmina_of_the_Netherlands
## 3491                                         Wilhelmina_of_the_Netherlands
## 3492                                         Wilhelmina_of_the_Netherlands
## 3493                                         Wilhelmina_of_the_Netherlands
## 3494                                         Wilhelmina_of_the_Netherlands
## 3495                                         Wilhelmina_of_the_Netherlands
## 3496                                         Wilhelmina_of_the_Netherlands
## 3497                                         Wilhelmina_of_the_Netherlands
## 3498                                         Wilhelmina_of_the_Netherlands
## 3499                                         Wilhelmina_of_the_Netherlands
## 3500                                         Wilhelmina_of_the_Netherlands
## 3501                                         Wilhelmina_of_the_Netherlands
## 3502                                         Wilhelmina_of_the_Netherlands
## 3503                                         Wilhelmina_of_the_Netherlands
## 3504                                         Wilhelmina_of_the_Netherlands
## 3505                                         Wilhelmina_of_the_Netherlands
## 3506                                         Wilhelmina_of_the_Netherlands
## 3507                                         Wilhelmina_of_the_Netherlands
## 3508                                         Wilhelmina_of_the_Netherlands
## 3509                                         Wilhelmina_of_the_Netherlands
## 3510                                         Wilhelmina_of_the_Netherlands
## 3511                                         Wilhelmina_of_the_Netherlands
## 3512                                         Wilhelmina_of_the_Netherlands
## 3513                                         Wilhelmina_of_the_Netherlands
## 3514                                         Wilhelmina_of_the_Netherlands
## 3515                                         Wilhelmina_of_the_Netherlands
## 3516                                         Wilhelmina_of_the_Netherlands
## 3517                                         Wilhelmina_of_the_Netherlands
## 3518                                         Wilhelmina_of_the_Netherlands
## 3519                                         Wilhelmina_of_the_Netherlands
## 3520                                         Wilhelmina_of_the_Netherlands
## 3521                                         Wilhelmina_of_the_Netherlands
## 3522                                         Wilhelmina_of_the_Netherlands
## 3523                                         Wilhelmina_of_the_Netherlands
## 3524                                         Wilhelmina_of_the_Netherlands
## 3525                                         Wilhelmina_of_the_Netherlands
## 3526                                         Wilhelmina_of_the_Netherlands
## 3527                                         Wilhelmina_of_the_Netherlands
## 3528                                         Wilhelmina_of_the_Netherlands
## 3529                                         Wilhelmina_of_the_Netherlands
## 3530                                         Wilhelmina_of_the_Netherlands
## 3531                                         Wilhelmina_of_the_Netherlands
## 3532                                         Wilhelmina_of_the_Netherlands
## 3533                                         Wilhelmina_of_the_Netherlands
## 3534                                         Wilhelmina_of_the_Netherlands
## 3535                                         Wilhelmina_of_the_Netherlands
## 3536                                         Wilhelmina_of_the_Netherlands
## 3537                                         Wilhelmina_of_the_Netherlands
## 3538                                         Wilhelmina_of_the_Netherlands
## 3539                                         Wilhelmina_of_the_Netherlands
## 3540                                         Wilhelmina_of_the_Netherlands
## 3541                                         Wilhelmina_of_the_Netherlands
## 3542                                         Wilhelmina_of_the_Netherlands
## 3543                                         Wilhelmina_of_the_Netherlands
## 3544                                         Wilhelmina_of_the_Netherlands
## 3545                                         Wilhelmina_of_the_Netherlands
## 3546                                         Wilhelmina_of_the_Netherlands
## 3547                                         Wilhelmina_of_the_Netherlands
## 3548                                         Wilhelmina_of_the_Netherlands
## 3549                                         Wilhelmina_of_the_Netherlands
## 3550                                         Wilhelmina_of_the_Netherlands
## 3551                                         Wilhelmina_of_the_Netherlands
## 3552                                         Wilhelmina_of_the_Netherlands
## 3553                                         Wilhelmina_of_the_Netherlands
## 3554                                         Wilhelmina_of_the_Netherlands
## 3555                                         Wilhelmina_of_the_Netherlands
## 3556                                         Wilhelmina_of_the_Netherlands
## 3557                                         Wilhelmina_of_the_Netherlands
## 3558                                         Wilhelmina_of_the_Netherlands
## 3559                                         Wilhelmina_of_the_Netherlands
## 3560                                         Wilhelmina_of_the_Netherlands
## 3561                                         Wilhelmina_of_the_Netherlands
## 3562                                         Wilhelmina_of_the_Netherlands
## 3563                                         Wilhelmina_of_the_Netherlands
## 3564                                         Wilhelmina_of_the_Netherlands
## 3565                                         Wilhelmina_of_the_Netherlands
## 3566                                         Wilhelmina_of_the_Netherlands
## 3567                                         Wilhelmina_of_the_Netherlands
## 3568                                         Wilhelmina_of_the_Netherlands
## 3569                                         Wilhelmina_of_the_Netherlands
## 3570                                         Wilhelmina_of_the_Netherlands
## 3571                                         Wilhelmina_of_the_Netherlands
## 3572                                         Wilhelmina_of_the_Netherlands
## 3573                                         Wilhelmina_of_the_Netherlands
## 3574                                         Wilhelmina_of_the_Netherlands
## 3575                                         Wilhelmina_of_the_Netherlands
## 3576                                         Wilhelmina_of_the_Netherlands
## 3577                                         Wilhelmina_of_the_Netherlands
## 3578                                         Wilhelmina_of_the_Netherlands
## 3579                                         Wilhelmina_of_the_Netherlands
## 3580                                         Wilhelmina_of_the_Netherlands
## 3581                                         Wilhelmina_of_the_Netherlands
## 3582                                         Wilhelmina_of_the_Netherlands
## 3583                                         Wilhelmina_of_the_Netherlands
## 3584                                         Wilhelmina_of_the_Netherlands
## 3585                                         Wilhelmina_of_the_Netherlands
## 3586                                         Wilhelmina_of_the_Netherlands
## 3587                                         Wilhelmina_of_the_Netherlands
## 3588                                         Wilhelmina_of_the_Netherlands
## 3589                                         Wilhelmina_of_the_Netherlands
## 3590                                         Wilhelmina_of_the_Netherlands
## 3591                                         Wilhelmina_of_the_Netherlands
## 3592                                         Wilhelmina_of_the_Netherlands
## 3593                                         Wilhelmina_of_the_Netherlands
## 3594                                         Wilhelmina_of_the_Netherlands
## 3595                                         Wilhelmina_of_the_Netherlands
## 3596                                         Wilhelmina_of_the_Netherlands
## 3597                                         Wilhelmina_of_the_Netherlands
## 3598                                         Wilhelmina_of_the_Netherlands
## 3599                                         Wilhelmina_of_the_Netherlands
## 3600                                         Wilhelmina_of_the_Netherlands
## 3601                                         Wilhelmina_of_the_Netherlands
## 3602                                         Wilhelmina_of_the_Netherlands
## 3603                                         Wilhelmina_of_the_Netherlands
## 3604                                         Wilhelmina_of_the_Netherlands
## 3605                                         Wilhelmina_of_the_Netherlands
## 3606                                         Wilhelmina_of_the_Netherlands
## 3607                                         Wilhelmina_of_the_Netherlands
## 3608                                         Wilhelmina_of_the_Netherlands
## 3609                                         Wilhelmina_of_the_Netherlands
## 3610                                         Wilhelmina_of_the_Netherlands
## 3611                                         Wilhelmina_of_the_Netherlands
## 3612                                         Wilhelmina_of_the_Netherlands
## 3613                                         Wilhelmina_of_the_Netherlands
## 3614                                         Wilhelmina_of_the_Netherlands
## 3615                                         Wilhelmina_of_the_Netherlands
## 3616                                         Wilhelmina_of_the_Netherlands
## 3617                                         Wilhelmina_of_the_Netherlands
## 3618                                         Wilhelmina_of_the_Netherlands
## 3619                                         Wilhelmina_of_the_Netherlands
## 3620                                         Wilhelmina_of_the_Netherlands
## 3621                                         Wilhelmina_of_the_Netherlands
## 3622                                         Wilhelmina_of_the_Netherlands
## 3623                                         Wilhelmina_of_the_Netherlands
## 3624                                         Wilhelmina_of_the_Netherlands
## 3625                                         Wilhelmina_of_the_Netherlands
## 3626                                         Wilhelmina_of_the_Netherlands
## 3627                                         Wilhelmina_of_the_Netherlands
## 3628                                         Wilhelmina_of_the_Netherlands
## 3629                                         Wilhelmina_of_the_Netherlands
## 3630                                         Wilhelmina_of_the_Netherlands
## 3631                                         Wilhelmina_of_the_Netherlands
## 3632                                         Wilhelmina_of_the_Netherlands
## 3633                                         Wilhelmina_of_the_Netherlands
## 3634                                         Wilhelmina_of_the_Netherlands
## 3635                                         Wilhelmina_of_the_Netherlands
## 3636                                         Wilhelmina_of_the_Netherlands
## 3637                                         Wilhelmina_of_the_Netherlands
## 3638                                         Wilhelmina_of_the_Netherlands
## 3639                                         Wilhelmina_of_the_Netherlands
## 3640                                         Wilhelmina_of_the_Netherlands
## 3641                                         Wilhelmina_of_the_Netherlands
## 3642                                         Wilhelmina_of_the_Netherlands
## 3643                                         Wilhelmina_of_the_Netherlands
## 3644                                         Wilhelmina_of_the_Netherlands
## 3645                                         Wilhelmina_of_the_Netherlands
## 3646                                         Wilhelmina_of_the_Netherlands
## 3647                                                    Board_of_Longitude
## 3648                                                    Board_of_Longitude
## 3649                                                    Board_of_Longitude
## 3650                                                    Board_of_Longitude
## 3651                                                    Board_of_Longitude
## 3652                                                    Board_of_Longitude
## 3653                                                    Board_of_Longitude
## 3654                                                    Board_of_Longitude
## 3655                                                    Board_of_Longitude
## 3656                                                    Board_of_Longitude
## 3657                                                    Board_of_Longitude
## 3658                                                    Board_of_Longitude
## 3659                                                    Board_of_Longitude
## 3660                                                    Board_of_Longitude
## 3661                                                    Board_of_Longitude
## 3662                                                    Board_of_Longitude
## 3663                                                    Board_of_Longitude
## 3664                                                    Board_of_Longitude
## 3665                                                    Board_of_Longitude
## 3666                                                    Board_of_Longitude
## 3667                                                    Board_of_Longitude
## 3668                                                    Board_of_Longitude
## 3669                                                    Board_of_Longitude
## 3670                                                    Board_of_Longitude
## 3671                                                    Board_of_Longitude
## 3672                                                    Board_of_Longitude
## 3673                                                    Board_of_Longitude
## 3674                                                    Board_of_Longitude
## 3675                                                    Board_of_Longitude
## 3676                                                    Board_of_Longitude
## 3677                                                    Board_of_Longitude
## 3678                                                    Board_of_Longitude
## 3679                                                    Board_of_Longitude
## 3680                                                    Board_of_Longitude
## 3681                                                    Board_of_Longitude
## 3682                                                    Board_of_Longitude
## 3683                                                    Board_of_Longitude
## 3684                                                    Board_of_Longitude
## 3685                                                    Board_of_Longitude
## 3686                                                    Board_of_Longitude
## 3687                                                    Board_of_Longitude
## 3688                                                    Board_of_Longitude
## 3689                                                    Board_of_Longitude
## 3690                                                    Board_of_Longitude
## 3691                                                    Board_of_Longitude
## 3692                                                    Board_of_Longitude
## 3693                                                    Board_of_Longitude
## 3694                                                    Board_of_Longitude
## 3695                                                    Board_of_Longitude
## 3696                                                    Board_of_Longitude
## 3697                                                Chattanooga,_Tennessee
## 3698                                                Chattanooga,_Tennessee
## 3699                                                Chattanooga,_Tennessee
## 3700                                                Chattanooga,_Tennessee
## 3701                                                Chattanooga,_Tennessee
## 3702                                                Chattanooga,_Tennessee
## 3703                                                Chattanooga,_Tennessee
## 3704                                                Chattanooga,_Tennessee
## 3705                                                Chattanooga,_Tennessee
## 3706                                                Chattanooga,_Tennessee
## 3707                                                Chattanooga,_Tennessee
## 3708                                                Chattanooga,_Tennessee
## 3709                                                Chattanooga,_Tennessee
## 3710                                                Chattanooga,_Tennessee
## 3711                                                Chattanooga,_Tennessee
## 3712                                                Chattanooga,_Tennessee
## 3713                                                Chattanooga,_Tennessee
## 3714                                                Chattanooga,_Tennessee
## 3715                                                Chattanooga,_Tennessee
## 3716                                                Chattanooga,_Tennessee
## 3717                                                Chattanooga,_Tennessee
## 3718                                                Chattanooga,_Tennessee
## 3719                                                Chattanooga,_Tennessee
## 3720                                                Chattanooga,_Tennessee
## 3721                                                Chattanooga,_Tennessee
## 3722                                                Chattanooga,_Tennessee
## 3723                                                Chattanooga,_Tennessee
## 3724                                                Chattanooga,_Tennessee
## 3725                                                Chattanooga,_Tennessee
## 3726                                                Chattanooga,_Tennessee
## 3727                                                Chattanooga,_Tennessee
## 3728                                                Chattanooga,_Tennessee
## 3729                                                Chattanooga,_Tennessee
## 3730                                                Chattanooga,_Tennessee
## 3731                                                Chattanooga,_Tennessee
## 3732                                                Chattanooga,_Tennessee
## 3733                                                Chattanooga,_Tennessee
## 3734                                                Chattanooga,_Tennessee
## 3735                                                Chattanooga,_Tennessee
## 3736                                                Chattanooga,_Tennessee
## 3737                                                Chattanooga,_Tennessee
## 3738                                                Chattanooga,_Tennessee
## 3739                                                Chattanooga,_Tennessee
## 3740                                                Chattanooga,_Tennessee
## 3741                                                Chattanooga,_Tennessee
## 3742                                                Chattanooga,_Tennessee
## 3743                                                Chattanooga,_Tennessee
## 3744                                                Chattanooga,_Tennessee
## 3745                                                Chattanooga,_Tennessee
## 3746                                                Chattanooga,_Tennessee
## 3747                                                Chattanooga,_Tennessee
## 3748                                                Chattanooga,_Tennessee
## 3749                                                Chattanooga,_Tennessee
## 3750                                                Chattanooga,_Tennessee
## 3751                                                Chattanooga,_Tennessee
## 3752                                                Chattanooga,_Tennessee
## 3753                                                Chattanooga,_Tennessee
## 3754                                                Chattanooga,_Tennessee
## 3755                                                Chattanooga,_Tennessee
## 3756                                                Chattanooga,_Tennessee
## 3757                                                Chattanooga,_Tennessee
## 3758                                                Chattanooga,_Tennessee
## 3759                                                Chattanooga,_Tennessee
## 3760                                                Chattanooga,_Tennessee
## 3761                                                Chattanooga,_Tennessee
## 3762                                                Chattanooga,_Tennessee
## 3763                                                Chattanooga,_Tennessee
## 3764                                                Chattanooga,_Tennessee
## 3765                                                Chattanooga,_Tennessee
## 3766                                                Chattanooga,_Tennessee
## 3767                                                Chattanooga,_Tennessee
## 3768                                                Chattanooga,_Tennessee
## 3769                                                Chattanooga,_Tennessee
## 3770                                                Chattanooga,_Tennessee
## 3771                                                Chattanooga,_Tennessee
## 3772                                                Chattanooga,_Tennessee
## 3773                                                Chattanooga,_Tennessee
## 3774                                                Chattanooga,_Tennessee
## 3775                                                Chattanooga,_Tennessee
## 3776                                                Chattanooga,_Tennessee
## 3777                                                Chattanooga,_Tennessee
## 3778                                                Chattanooga,_Tennessee
## 3779                                                Chattanooga,_Tennessee
## 3780                                                Chattanooga,_Tennessee
## 3781                                                Chattanooga,_Tennessee
## 3782                                                Chattanooga,_Tennessee
## 3783                                                Chattanooga,_Tennessee
## 3784                                                Chattanooga,_Tennessee
## 3785                                                Chattanooga,_Tennessee
## 3786                                                Chattanooga,_Tennessee
## 3787                                                Chattanooga,_Tennessee
## 3788                                                Chattanooga,_Tennessee
## 3789                                                Chattanooga,_Tennessee
## 3790                                                Chattanooga,_Tennessee
## 3791                                                Chattanooga,_Tennessee
## 3792                                                Chattanooga,_Tennessee
## 3793                                                Chattanooga,_Tennessee
## 3794                                                Chattanooga,_Tennessee
## 3795                                                Chattanooga,_Tennessee
## 3796                                                Chattanooga,_Tennessee
## 3797                                                Chattanooga,_Tennessee
## 3798                                                Chattanooga,_Tennessee
## 3799                                                Chattanooga,_Tennessee
## 3800                                                Chattanooga,_Tennessee
## 3801                                                Chattanooga,_Tennessee
## 3802                                                Chattanooga,_Tennessee
## 3803                                                Chattanooga,_Tennessee
## 3804                                                Chattanooga,_Tennessee
## 3805                                                Chattanooga,_Tennessee
## 3806                                                Chattanooga,_Tennessee
## 3807                                                Chattanooga,_Tennessee
## 3808                                                Chattanooga,_Tennessee
## 3809                                                Chattanooga,_Tennessee
## 3810                                                Chattanooga,_Tennessee
## 3811                                                Chattanooga,_Tennessee
## 3812                                                Chattanooga,_Tennessee
## 3813                                                Chattanooga,_Tennessee
## 3814                                                Chattanooga,_Tennessee
## 3815                                                Chattanooga,_Tennessee
## 3816                                                Chattanooga,_Tennessee
## 3817                                                Chattanooga,_Tennessee
## 3818                                                Chattanooga,_Tennessee
## 3819                                                Chattanooga,_Tennessee
## 3820                                                Chattanooga,_Tennessee
## 3821                                                Chattanooga,_Tennessee
## 3822                                                Chattanooga,_Tennessee
## 3823                                                Chattanooga,_Tennessee
## 3824                                                Chattanooga,_Tennessee
## 3825                                                Chattanooga,_Tennessee
## 3826                                                Chattanooga,_Tennessee
## 3827                                                Chattanooga,_Tennessee
## 3828                                                Chattanooga,_Tennessee
## 3829                                                Chattanooga,_Tennessee
## 3830                                                Chattanooga,_Tennessee
## 3831                                                Chattanooga,_Tennessee
## 3832                                                Chattanooga,_Tennessee
## 3833                                                Chattanooga,_Tennessee
## 3834                                                Chattanooga,_Tennessee
## 3835                                                Chattanooga,_Tennessee
## 3836                                                Chattanooga,_Tennessee
## 3837                                                Chattanooga,_Tennessee
## 3838                                                Chattanooga,_Tennessee
## 3839                                                Chattanooga,_Tennessee
## 3840                                                Chattanooga,_Tennessee
## 3841                                                Chattanooga,_Tennessee
## 3842                                                Chattanooga,_Tennessee
## 3843                                                Chattanooga,_Tennessee
## 3844                                                Chattanooga,_Tennessee
## 3845                                                Chattanooga,_Tennessee
## 3846                                                Chattanooga,_Tennessee
## 3847                                                Chattanooga,_Tennessee
## 3848                                                Chattanooga,_Tennessee
## 3849                                                Chattanooga,_Tennessee
## 3850                                                Chattanooga,_Tennessee
## 3851                                                Chattanooga,_Tennessee
## 3852                                                Chattanooga,_Tennessee
## 3853                                                Chattanooga,_Tennessee
## 3854                                                Chattanooga,_Tennessee
## 3855                                                Chattanooga,_Tennessee
## 3856                                                Chattanooga,_Tennessee
## 3857                                                Chattanooga,_Tennessee
## 3858                                                Chattanooga,_Tennessee
## 3859                                                Chattanooga,_Tennessee
## 3860                                                Chattanooga,_Tennessee
## 3861                                                Chattanooga,_Tennessee
## 3862                                                Chattanooga,_Tennessee
## 3863                                                Chattanooga,_Tennessee
## 3864                                                Chattanooga,_Tennessee
## 3865                                                Chattanooga,_Tennessee
## 3866                                                Chattanooga,_Tennessee
## 3867                                                Chattanooga,_Tennessee
## 3868                                                Chattanooga,_Tennessee
## 3869                                                Chattanooga,_Tennessee
## 3870                                                Chattanooga,_Tennessee
## 3871                                                Chattanooga,_Tennessee
## 3872                                                Chattanooga,_Tennessee
## 3873                                                Chattanooga,_Tennessee
## 3874                                                Chattanooga,_Tennessee
## 3875                                                Chattanooga,_Tennessee
## 3876                                                Chattanooga,_Tennessee
## 3877                                                Chattanooga,_Tennessee
## 3878                                                Chattanooga,_Tennessee
## 3879                                                Chattanooga,_Tennessee
## 3880                                                Chattanooga,_Tennessee
## 3881                                                Chattanooga,_Tennessee
## 3882                                                Chattanooga,_Tennessee
## 3883                                                Chattanooga,_Tennessee
## 3884                                                Chattanooga,_Tennessee
## 3885                                                Chattanooga,_Tennessee
## 3886                                                Chattanooga,_Tennessee
## 3887                                                Chattanooga,_Tennessee
## 3888                                                Chattanooga,_Tennessee
## 3889                                                Chattanooga,_Tennessee
## 3890                                                Chattanooga,_Tennessee
## 3891                                                Chattanooga,_Tennessee
## 3892                                                Chattanooga,_Tennessee
## 3893                                                Chattanooga,_Tennessee
## 3894                                                Chattanooga,_Tennessee
## 3895                                                Chattanooga,_Tennessee
## 3896                                                Chattanooga,_Tennessee
## 3897                                                Chattanooga,_Tennessee
## 3898                                                Chattanooga,_Tennessee
## 3899                                                Chattanooga,_Tennessee
## 3900                                                Chattanooga,_Tennessee
## 3901                                                Chattanooga,_Tennessee
## 3902                                                Chattanooga,_Tennessee
## 3903                                                Chattanooga,_Tennessee
## 3904                                                Chattanooga,_Tennessee
## 3905                                                Chattanooga,_Tennessee
## 3906                                                Chattanooga,_Tennessee
## 3907                                                Chattanooga,_Tennessee
## 3908                                                Chattanooga,_Tennessee
## 3909                                                Chattanooga,_Tennessee
## 3910                                                Chattanooga,_Tennessee
## 3911                                                Chattanooga,_Tennessee
## 3912                                                Chattanooga,_Tennessee
## 3913                                                Chattanooga,_Tennessee
## 3914                                                Chattanooga,_Tennessee
## 3915                                                Chattanooga,_Tennessee
## 3916                                                Chattanooga,_Tennessee
## 3917                                                Chattanooga,_Tennessee
## 3918                                                Chattanooga,_Tennessee
## 3919                                                Chattanooga,_Tennessee
## 3920                                                Chattanooga,_Tennessee
## 3921                                                Chattanooga,_Tennessee
## 3922                                                Chattanooga,_Tennessee
## 3923                                                Chattanooga,_Tennessee
## 3924                                                Chattanooga,_Tennessee
## 3925                                                Chattanooga,_Tennessee
## 3926                                                Chattanooga,_Tennessee
## 3927                                                Chattanooga,_Tennessee
## 3928                                                Chattanooga,_Tennessee
## 3929                                                Chattanooga,_Tennessee
## 3930                                                Chattanooga,_Tennessee
## 3931                                                Chattanooga,_Tennessee
## 3932                                                Chattanooga,_Tennessee
## 3933                                                Chattanooga,_Tennessee
## 3934                                                Chattanooga,_Tennessee
## 3935                                                Chattanooga,_Tennessee
## 3936                                                Chattanooga,_Tennessee
## 3937                                                Chattanooga,_Tennessee
## 3938                                                Chattanooga,_Tennessee
## 3939                                                Chattanooga,_Tennessee
## 3940                                                Chattanooga,_Tennessee
## 3941                                                Chattanooga,_Tennessee
## 3942                                                Chattanooga,_Tennessee
## 3943                                                Chattanooga,_Tennessee
## 3944                                                Chattanooga,_Tennessee
## 3945                                                Chattanooga,_Tennessee
## 3946                                                Chattanooga,_Tennessee
## 3947                                                Chattanooga,_Tennessee
## 3948                                                Chattanooga,_Tennessee
## 3949                                                Chattanooga,_Tennessee
## 3950                                                Chattanooga,_Tennessee
## 3951                                                Chattanooga,_Tennessee
## 3952                                                Chattanooga,_Tennessee
## 3953                                                Chattanooga,_Tennessee
## 3954                                                Chattanooga,_Tennessee
## 3955                                                Chattanooga,_Tennessee
## 3956                                                Chattanooga,_Tennessee
## 3957                                                Chattanooga,_Tennessee
## 3958                                                Chattanooga,_Tennessee
## 3959                                                Chattanooga,_Tennessee
## 3960                                                Chattanooga,_Tennessee
## 3961                                                Chattanooga,_Tennessee
## 3962                                                Chattanooga,_Tennessee
## 3963                                                Chattanooga,_Tennessee
## 3964                                                Chattanooga,_Tennessee
## 3965                                                Chattanooga,_Tennessee
## 3966                                                Chattanooga,_Tennessee
## 3967                                                Chattanooga,_Tennessee
## 3968                                                Chattanooga,_Tennessee
## 3969                                                Chattanooga,_Tennessee
## 3970                                                Chattanooga,_Tennessee
## 3971                                                Chattanooga,_Tennessee
## 3972                                                Chattanooga,_Tennessee
## 3973                                                Chattanooga,_Tennessee
## 3974                                                Chattanooga,_Tennessee
## 3975                                                Chattanooga,_Tennessee
## 3976                                                Chattanooga,_Tennessee
## 3977                                                Chattanooga,_Tennessee
## 3978                                                Chattanooga,_Tennessee
## 3979                                                Chattanooga,_Tennessee
## 3980                                                Chattanooga,_Tennessee
## 3981                                                Chattanooga,_Tennessee
## 3982                                                Chattanooga,_Tennessee
## 3983                                                Chattanooga,_Tennessee
## 3984                                                Chattanooga,_Tennessee
## 3985                                                Chattanooga,_Tennessee
## 3986                                                Chattanooga,_Tennessee
## 3987                                                Chattanooga,_Tennessee
## 3988                                                Chattanooga,_Tennessee
## 3989                                                Chattanooga,_Tennessee
## 3990                                                Chattanooga,_Tennessee
## 3991                                                Chattanooga,_Tennessee
## 3992                                                Chattanooga,_Tennessee
## 3993                                                Chattanooga,_Tennessee
## 3994                                                Chattanooga,_Tennessee
## 3995                                                Chattanooga,_Tennessee
## 3996                                                Chattanooga,_Tennessee
## 3997                                                Chattanooga,_Tennessee
## 3998                                                Chattanooga,_Tennessee
## 3999                                                Chattanooga,_Tennessee
## 4000                                                Chattanooga,_Tennessee
## 4001                                                Chattanooga,_Tennessee
## 4002                                                Chattanooga,_Tennessee
## 4003                                                Chattanooga,_Tennessee
## 4004                                                Chattanooga,_Tennessee
## 4005                                                Chattanooga,_Tennessee
## 4006                                                Chattanooga,_Tennessee
## 4007                                                Chattanooga,_Tennessee
## 4008                                                Chattanooga,_Tennessee
## 4009                                                Chattanooga,_Tennessee
## 4010                                                Chattanooga,_Tennessee
## 4011                                                Chattanooga,_Tennessee
## 4012                                                Chattanooga,_Tennessee
## 4013                                                Chattanooga,_Tennessee
## 4014                                                Chattanooga,_Tennessee
## 4015                                                Chattanooga,_Tennessee
## 4016                                                Chattanooga,_Tennessee
## 4017                                                Chattanooga,_Tennessee
## 4018                                                Chattanooga,_Tennessee
## 4019                                                Chattanooga,_Tennessee
## 4020                                                Chattanooga,_Tennessee
## 4021                                                Chattanooga,_Tennessee
## 4022                                                Chattanooga,_Tennessee
## 4023                                                Chattanooga,_Tennessee
## 4024                                                Chattanooga,_Tennessee
## 4025                                                Chattanooga,_Tennessee
## 4026                                                Chattanooga,_Tennessee
## 4027                                                Chattanooga,_Tennessee
## 4028                                                Chattanooga,_Tennessee
## 4029                                                Chattanooga,_Tennessee
## 4030                                                Chattanooga,_Tennessee
## 4031                                                Chattanooga,_Tennessee
## 4032                                                Chattanooga,_Tennessee
## 4033                                                Chattanooga,_Tennessee
## 4034                                                Chattanooga,_Tennessee
## 4035                                                Chattanooga,_Tennessee
## 4036                                                Chattanooga,_Tennessee
## 4037                                                Chattanooga,_Tennessee
## 4038                                                Chattanooga,_Tennessee
## 4039                                                Chattanooga,_Tennessee
## 4040                                                Chattanooga,_Tennessee
## 4041                                                Chattanooga,_Tennessee
## 4042                                                Chattanooga,_Tennessee
## 4043                                                Chattanooga,_Tennessee
## 4044                                                Chattanooga,_Tennessee
## 4045                                                Chattanooga,_Tennessee
## 4046                                                Chattanooga,_Tennessee
## 4047                                                Chattanooga,_Tennessee
## 4048                                                Chattanooga,_Tennessee
## 4049                                                Chattanooga,_Tennessee
## 4050                                                Chattanooga,_Tennessee
## 4051                                                Chattanooga,_Tennessee
## 4052                                                Chattanooga,_Tennessee
## 4053                                                Chattanooga,_Tennessee
## 4054                                                Chattanooga,_Tennessee
## 4055                                                Chattanooga,_Tennessee
## 4056                                                Chattanooga,_Tennessee
## 4057                                                Chattanooga,_Tennessee
## 4058                                                Chattanooga,_Tennessee
## 4059                                                Chattanooga,_Tennessee
## 4060                                                Chattanooga,_Tennessee
## 4061                                                Chattanooga,_Tennessee
## 4062                                                Chattanooga,_Tennessee
## 4063                                                Chattanooga,_Tennessee
## 4064                                                Chattanooga,_Tennessee
## 4065                                                Chattanooga,_Tennessee
## 4066                                                Chattanooga,_Tennessee
## 4067                                                Chattanooga,_Tennessee
## 4068                                                Chattanooga,_Tennessee
## 4069                                                Chattanooga,_Tennessee
## 4070                                                Chattanooga,_Tennessee
## 4071                                                Chattanooga,_Tennessee
## 4072                                                Chattanooga,_Tennessee
## 4073                                                Chattanooga,_Tennessee
## 4074                                                Chattanooga,_Tennessee
## 4075                                                Chattanooga,_Tennessee
## 4076                                                Chattanooga,_Tennessee
## 4077                                                Chattanooga,_Tennessee
## 4078                                                Chattanooga,_Tennessee
## 4079                                                Chattanooga,_Tennessee
## 4080                                                Chattanooga,_Tennessee
## 4081                                                Chattanooga,_Tennessee
## 4082                                                Chattanooga,_Tennessee
## 4083                                                Chattanooga,_Tennessee
## 4084                                                Chattanooga,_Tennessee
## 4085                                                Chattanooga,_Tennessee
## 4086                                                Chattanooga,_Tennessee
## 4087                                                Chattanooga,_Tennessee
## 4088                                                Chattanooga,_Tennessee
## 4089                                                Chattanooga,_Tennessee
## 4090                                                Chattanooga,_Tennessee
## 4091                                                Chattanooga,_Tennessee
## 4092                                                Chattanooga,_Tennessee
## 4093                                                Chattanooga,_Tennessee
## 4094                                                Chattanooga,_Tennessee
## 4095                                                Chattanooga,_Tennessee
## 4096                                                Chattanooga,_Tennessee
## 4097                                                Chattanooga,_Tennessee
## 4098                                                Chattanooga,_Tennessee
## 4099                                                Chattanooga,_Tennessee
## 4100                                                Chattanooga,_Tennessee
## 4101                                                Chattanooga,_Tennessee
## 4102                                                Chattanooga,_Tennessee
## 4103                                                Chattanooga,_Tennessee
## 4104                                                Chattanooga,_Tennessee
## 4105                                                Chattanooga,_Tennessee
## 4106                                                Chattanooga,_Tennessee
## 4107                                                Chattanooga,_Tennessee
## 4108                                                Chattanooga,_Tennessee
## 4109                                                Chattanooga,_Tennessee
## 4110                                                Chattanooga,_Tennessee
## 4111                                                Chattanooga,_Tennessee
## 4112                                                Chattanooga,_Tennessee
## 4113                                                Chattanooga,_Tennessee
## 4114                                                Chattanooga,_Tennessee
## 4115                                                Chattanooga,_Tennessee
## 4116                                                Chattanooga,_Tennessee
## 4117                                                Chattanooga,_Tennessee
## 4118                                                Chattanooga,_Tennessee
## 4119                                                Chattanooga,_Tennessee
## 4120                                                Chattanooga,_Tennessee
## 4121                                                Chattanooga,_Tennessee
## 4122                                                Chattanooga,_Tennessee
## 4123                                                Chattanooga,_Tennessee
## 4124                                                Chattanooga,_Tennessee
## 4125                                                Chattanooga,_Tennessee
## 4126                                                Chattanooga,_Tennessee
## 4127                                                Chattanooga,_Tennessee
## 4128                                                Chattanooga,_Tennessee
## 4129                                                Chattanooga,_Tennessee
## 4130                                                Chattanooga,_Tennessee
## 4131                                                Chattanooga,_Tennessee
## 4132                                                Chattanooga,_Tennessee
## 4133                                                Chattanooga,_Tennessee
## 4134                                                Chattanooga,_Tennessee
## 4135                                                Chattanooga,_Tennessee
## 4136                                                Chattanooga,_Tennessee
## 4137                                                Chattanooga,_Tennessee
## 4138                                                Chattanooga,_Tennessee
## 4139                                                Chattanooga,_Tennessee
## 4140                                                Chattanooga,_Tennessee
## 4141                                                Chattanooga,_Tennessee
## 4142                                                Chattanooga,_Tennessee
## 4143                                                Chattanooga,_Tennessee
## 4144                                                Chattanooga,_Tennessee
## 4145                                                Chattanooga,_Tennessee
## 4146                                                Chattanooga,_Tennessee
## 4147                                                Chattanooga,_Tennessee
## 4148                                                Chattanooga,_Tennessee
## 4149                                                Chattanooga,_Tennessee
## 4150                                                Chattanooga,_Tennessee
## 4151                                                Chattanooga,_Tennessee
## 4152                                                Chattanooga,_Tennessee
## 4153                                                Chattanooga,_Tennessee
## 4154                                                Chattanooga,_Tennessee
## 4155                                                Chattanooga,_Tennessee
## 4156                                                Chattanooga,_Tennessee
## 4157                                                Chattanooga,_Tennessee
## 4158                                                Chattanooga,_Tennessee
## 4159                                                Chattanooga,_Tennessee
## 4160                                                Chattanooga,_Tennessee
## 4161                                                Chattanooga,_Tennessee
## 4162                                                Chattanooga,_Tennessee
## 4163                                                Chattanooga,_Tennessee
## 4164                                                Chattanooga,_Tennessee
## 4165                                                Chattanooga,_Tennessee
## 4166                                                Chattanooga,_Tennessee
## 4167                                                Chattanooga,_Tennessee
## 4168                                                Chattanooga,_Tennessee
## 4169                                                Chattanooga,_Tennessee
## 4170                                                Chattanooga,_Tennessee
## 4171                                                Chattanooga,_Tennessee
## 4172                                                Chattanooga,_Tennessee
## 4173                                                Chattanooga,_Tennessee
## 4174                                                Chattanooga,_Tennessee
## 4175                                                Chattanooga,_Tennessee
## 4176                                                Chattanooga,_Tennessee
## 4177                                                Chattanooga,_Tennessee
## 4178                                                Chattanooga,_Tennessee
## 4179                                                Chattanooga,_Tennessee
## 4180                                                Chattanooga,_Tennessee
## 4181                                                Chattanooga,_Tennessee
## 4182                                                Chattanooga,_Tennessee
## 4183                                                Chattanooga,_Tennessee
## 4184                                                Chattanooga,_Tennessee
## 4185                                                Chattanooga,_Tennessee
## 4186                                                Chattanooga,_Tennessee
## 4187                                                Chattanooga,_Tennessee
## 4188                                                Chattanooga,_Tennessee
## 4189                                                Chattanooga,_Tennessee
## 4190                                                Chattanooga,_Tennessee
## 4191                                                Chattanooga,_Tennessee
## 4192                                                Chattanooga,_Tennessee
## 4193                                                Chattanooga,_Tennessee
## 4194                                                Chattanooga,_Tennessee
## 4195                                                Chattanooga,_Tennessee
## 4196                                                Chattanooga,_Tennessee
## 4197                                                Chattanooga,_Tennessee
## 4198                                                Chattanooga,_Tennessee
## 4199                                                Chattanooga,_Tennessee
## 4200                                                Chattanooga,_Tennessee
## 4201                                                Chattanooga,_Tennessee
## 4202                                                Chattanooga,_Tennessee
## 4203                                                Chattanooga,_Tennessee
## 4204                                                Chattanooga,_Tennessee
## 4205                                                Chattanooga,_Tennessee
## 4206                                                Chattanooga,_Tennessee
## 4207                                                Chattanooga,_Tennessee
## 4208                                                Chattanooga,_Tennessee
## 4209                                                Chattanooga,_Tennessee
## 4210                                                Chattanooga,_Tennessee
## 4211                                                Chattanooga,_Tennessee
## 4212                                                Chattanooga,_Tennessee
## 4213                                                Chattanooga,_Tennessee
## 4214                                                Chattanooga,_Tennessee
## 4215                                                Chattanooga,_Tennessee
## 4216                                                Chattanooga,_Tennessee
## 4217                                                Chattanooga,_Tennessee
## 4218                                                Chattanooga,_Tennessee
## 4219                                                Chattanooga,_Tennessee
## 4220                                                Chattanooga,_Tennessee
## 4221                                                Chattanooga,_Tennessee
## 4222                                                Chattanooga,_Tennessee
## 4223                                                Chattanooga,_Tennessee
## 4224                                                Chattanooga,_Tennessee
## 4225                                                Chattanooga,_Tennessee
## 4226                                                Chattanooga,_Tennessee
## 4227                                                Chattanooga,_Tennessee
## 4228                                                Chattanooga,_Tennessee
## 4229                                                Chattanooga,_Tennessee
## 4230                                                Chattanooga,_Tennessee
## 4231                                                Chattanooga,_Tennessee
## 4232                                                Chattanooga,_Tennessee
## 4233                                                Chattanooga,_Tennessee
## 4234                                                Chattanooga,_Tennessee
## 4235                                                Chattanooga,_Tennessee
## 4236                                                Chattanooga,_Tennessee
## 4237                                                Chattanooga,_Tennessee
## 4238                                                Chattanooga,_Tennessee
## 4239                                                Chattanooga,_Tennessee
## 4240                                                Chattanooga,_Tennessee
## 4241                                                Chattanooga,_Tennessee
## 4242                                                Chattanooga,_Tennessee
## 4243                                                Chattanooga,_Tennessee
## 4244                                                Chattanooga,_Tennessee
## 4245                                                Chattanooga,_Tennessee
## 4246                                                Chattanooga,_Tennessee
## 4247                                                Chattanooga,_Tennessee
## 4248                                                Chattanooga,_Tennessee
## 4249                                                Chattanooga,_Tennessee
## 4250                                                Chattanooga,_Tennessee
## 4251                                                Chattanooga,_Tennessee
## 4252                                                Chattanooga,_Tennessee
## 4253                                                Chattanooga,_Tennessee
## 4254                                                Chattanooga,_Tennessee
## 4255                                                Chattanooga,_Tennessee
## 4256                                                Chattanooga,_Tennessee
## 4257                                                Chattanooga,_Tennessee
## 4258                                                Chattanooga,_Tennessee
## 4259                                                Chattanooga,_Tennessee
## 4260                                                Chattanooga,_Tennessee
## 4261                                                Chattanooga,_Tennessee
## 4262                                                Chattanooga,_Tennessee
## 4263                                                Chattanooga,_Tennessee
## 4264                                                Chattanooga,_Tennessee
## 4265                                                Chattanooga,_Tennessee
## 4266                                                Chattanooga,_Tennessee
## 4267                                                Chattanooga,_Tennessee
## 4268                                                Chattanooga,_Tennessee
## 4269                                                Chattanooga,_Tennessee
## 4270                                                Chattanooga,_Tennessee
## 4271                                                Chattanooga,_Tennessee
## 4272                                                Chattanooga,_Tennessee
## 4273                                                Chattanooga,_Tennessee
## 4274                                                Chattanooga,_Tennessee
## 4275                                                Chattanooga,_Tennessee
## 4276                                                Chattanooga,_Tennessee
## 4277                                                Chattanooga,_Tennessee
## 4278                                                Chattanooga,_Tennessee
## 4279                                                Chattanooga,_Tennessee
## 4280                                                Chattanooga,_Tennessee
## 4281                                                Chattanooga,_Tennessee
## 4282                                                Chattanooga,_Tennessee
## 4283                                                Chattanooga,_Tennessee
## 4284                                                Chattanooga,_Tennessee
## 4285                                                Chattanooga,_Tennessee
## 4286                                                Chattanooga,_Tennessee
## 4287                                                Chattanooga,_Tennessee
## 4288                                                Chattanooga,_Tennessee
## 4289                                                Chattanooga,_Tennessee
## 4290                                                Chattanooga,_Tennessee
## 4291                                                Chattanooga,_Tennessee
## 4292                                                Chattanooga,_Tennessee
## 4293                                                Chattanooga,_Tennessee
## 4294                                                Chattanooga,_Tennessee
## 4295                                                Chattanooga,_Tennessee
## 4296                                                Chattanooga,_Tennessee
## 4297                                                Chattanooga,_Tennessee
## 4298                                                Chattanooga,_Tennessee
## 4299                                                Chattanooga,_Tennessee
## 4300                                                Chattanooga,_Tennessee
## 4301                                                Chattanooga,_Tennessee
## 4302                                                Chattanooga,_Tennessee
## 4303                                                Chattanooga,_Tennessee
## 4304                                                Chattanooga,_Tennessee
## 4305                                                Chattanooga,_Tennessee
## 4306                                                Chattanooga,_Tennessee
## 4307                                                Chattanooga,_Tennessee
## 4308                                                Chattanooga,_Tennessee
## 4309                                                Chattanooga,_Tennessee
## 4310                                                Chattanooga,_Tennessee
## 4311                                                Chattanooga,_Tennessee
## 4312                                                Chattanooga,_Tennessee
## 4313                                                Chattanooga,_Tennessee
## 4314                                                Chattanooga,_Tennessee
## 4315                                                Chattanooga,_Tennessee
## 4316                                                Chattanooga,_Tennessee
## 4317                                                Chattanooga,_Tennessee
## 4318                                                Chattanooga,_Tennessee
## 4319                                                Chattanooga,_Tennessee
## 4320                                                Chattanooga,_Tennessee
## 4321                                                Chattanooga,_Tennessee
## 4322                                                Chattanooga,_Tennessee
## 4323                                                Chattanooga,_Tennessee
## 4324                                                Chattanooga,_Tennessee
## 4325                                                Chattanooga,_Tennessee
## 4326                                                Chattanooga,_Tennessee
## 4327                                                Chattanooga,_Tennessee
## 4328                                                Chattanooga,_Tennessee
## 4329                                                Chattanooga,_Tennessee
## 4330                                                Chattanooga,_Tennessee
## 4331                                                Chattanooga,_Tennessee
## 4332                                                Chattanooga,_Tennessee
## 4333                                                Chattanooga,_Tennessee
## 4334                                                Chattanooga,_Tennessee
## 4335                                                Chattanooga,_Tennessee
## 4336                                                Chattanooga,_Tennessee
## 4337                                                Chattanooga,_Tennessee
## 4338                                                Chattanooga,_Tennessee
## 4339                                                Chattanooga,_Tennessee
## 4340                                                Chattanooga,_Tennessee
## 4341                                                Chattanooga,_Tennessee
## 4342                                                Chattanooga,_Tennessee
## 4343                                                Chattanooga,_Tennessee
## 4344                                                Chattanooga,_Tennessee
## 4345                                                Chattanooga,_Tennessee
## 4346                                                Chattanooga,_Tennessee
## 4347                                                Chattanooga,_Tennessee
## 4348                                                Chattanooga,_Tennessee
## 4349                                                Chattanooga,_Tennessee
## 4350                                                Chattanooga,_Tennessee
## 4351                                                Chattanooga,_Tennessee
## 4352                                                Chattanooga,_Tennessee
## 4353                                                Chattanooga,_Tennessee
## 4354                                                Chattanooga,_Tennessee
## 4355                                                Chattanooga,_Tennessee
## 4356                                                Chattanooga,_Tennessee
## 4357                                                Chattanooga,_Tennessee
## 4358                                                Chattanooga,_Tennessee
## 4359                                                Chattanooga,_Tennessee
## 4360                                                Chattanooga,_Tennessee
## 4361                                                Chattanooga,_Tennessee
## 4362                                                Chattanooga,_Tennessee
## 4363                                                Chattanooga,_Tennessee
## 4364                                                Chattanooga,_Tennessee
## 4365                                                Chattanooga,_Tennessee
## 4366                                                Chattanooga,_Tennessee
## 4367                                                Chattanooga,_Tennessee
## 4368                                                Chattanooga,_Tennessee
## 4369                                                Chattanooga,_Tennessee
## 4370                                                Chattanooga,_Tennessee
## 4371                                                Chattanooga,_Tennessee
## 4372                                                Chattanooga,_Tennessee
## 4373                                                Chattanooga,_Tennessee
## 4374                                                Chattanooga,_Tennessee
## 4375                                                Chattanooga,_Tennessee
## 4376                                                Chattanooga,_Tennessee
## 4377                                                Chattanooga,_Tennessee
## 4378                                                Chattanooga,_Tennessee
## 4379                                                Chattanooga,_Tennessee
## 4380                                                Chattanooga,_Tennessee
## 4381                                                Chattanooga,_Tennessee
## 4382                                                Chattanooga,_Tennessee
## 4383                                                Chattanooga,_Tennessee
## 4384                                                Chattanooga,_Tennessee
## 4385                                                Chattanooga,_Tennessee
## 4386                                                Chattanooga,_Tennessee
## 4387                                                Chattanooga,_Tennessee
## 4388                                                Chattanooga,_Tennessee
## 4389                                                Chattanooga,_Tennessee
## 4390                                                Chattanooga,_Tennessee
## 4391                                                Chattanooga,_Tennessee
## 4392                                                Chattanooga,_Tennessee
## 4393                                                Chattanooga,_Tennessee
## 4394                                                Chattanooga,_Tennessee
## 4395                                                Chattanooga,_Tennessee
## 4396                                                Chattanooga,_Tennessee
## 4397                                                Chattanooga,_Tennessee
## 4398                                                Chattanooga,_Tennessee
## 4399                                                Chattanooga,_Tennessee
## 4400                                                Chattanooga,_Tennessee
## 4401                                                Chattanooga,_Tennessee
## 4402                                                Chattanooga,_Tennessee
## 4403                                                Chattanooga,_Tennessee
## 4404                                                Chattanooga,_Tennessee
## 4405                                                Chattanooga,_Tennessee
## 4406                                                Chattanooga,_Tennessee
## 4407                                                Chattanooga,_Tennessee
## 4408                                                Chattanooga,_Tennessee
## 4409                                                Chattanooga,_Tennessee
## 4410                                                Chattanooga,_Tennessee
## 4411                                                Chattanooga,_Tennessee
## 4412                                                Chattanooga,_Tennessee
## 4413                                                Chattanooga,_Tennessee
## 4414                                                Chattanooga,_Tennessee
## 4415                                                Chattanooga,_Tennessee
## 4416                                                Chattanooga,_Tennessee
## 4417                                                Chattanooga,_Tennessee
## 4418                                                Chattanooga,_Tennessee
## 4419                                                Chattanooga,_Tennessee
## 4420                                                Chattanooga,_Tennessee
## 4421                                                Chattanooga,_Tennessee
## 4422                                                Chattanooga,_Tennessee
## 4423                                                Chattanooga,_Tennessee
## 4424                                                Chattanooga,_Tennessee
## 4425                                                Chattanooga,_Tennessee
## 4426                                                Chattanooga,_Tennessee
## 4427                                                Chattanooga,_Tennessee
## 4428                                                Chattanooga,_Tennessee
## 4429                                                Chattanooga,_Tennessee
## 4430                                                Chattanooga,_Tennessee
## 4431                                                Chattanooga,_Tennessee
## 4432                                                Chattanooga,_Tennessee
## 4433                                                Chattanooga,_Tennessee
## 4434                                                Chattanooga,_Tennessee
## 4435                                                Chattanooga,_Tennessee
## 4436                                                Chattanooga,_Tennessee
## 4437                                                Chattanooga,_Tennessee
## 4438                                                Chattanooga,_Tennessee
## 4439                                                Chattanooga,_Tennessee
## 4440                                                Chattanooga,_Tennessee
## 4441                                                Chattanooga,_Tennessee
## 4442                                                Chattanooga,_Tennessee
## 4443                                                Chattanooga,_Tennessee
## 4444                                                Chattanooga,_Tennessee
## 4445                                                Chattanooga,_Tennessee
## 4446                                                Chattanooga,_Tennessee
## 4447                                                Chattanooga,_Tennessee
## 4448                                                Chattanooga,_Tennessee
## 4449                                                Chattanooga,_Tennessee
## 4450                                                Chattanooga,_Tennessee
## 4451                                                Chattanooga,_Tennessee
## 4452                                                Chattanooga,_Tennessee
## 4453                                                Chattanooga,_Tennessee
## 4454                                                Chattanooga,_Tennessee
## 4455                                                Chattanooga,_Tennessee
## 4456                                                Chattanooga,_Tennessee
## 4457                                                Chattanooga,_Tennessee
## 4458                                                Chattanooga,_Tennessee
## 4459                                                Chattanooga,_Tennessee
## 4460                                                Chattanooga,_Tennessee
## 4461                                                Chattanooga,_Tennessee
## 4462                                                Chattanooga,_Tennessee
## 4463                                                Chattanooga,_Tennessee
## 4464                                                Chattanooga,_Tennessee
## 4465                                                Chattanooga,_Tennessee
## 4466                                                Chattanooga,_Tennessee
## 4467                                                Chattanooga,_Tennessee
## 4468                                                Chattanooga,_Tennessee
## 4469                                                Chattanooga,_Tennessee
## 4470                                                Chattanooga,_Tennessee
## 4471                                                Chattanooga,_Tennessee
## 4472                                                Chattanooga,_Tennessee
## 4473                                                Chattanooga,_Tennessee
## 4474                                                Chattanooga,_Tennessee
## 4475                                                Chattanooga,_Tennessee
## 4476                                                Chattanooga,_Tennessee
## 4477                                                Chattanooga,_Tennessee
## 4478                                                Chattanooga,_Tennessee
## 4479                                                Chattanooga,_Tennessee
## 4480                                                Chattanooga,_Tennessee
## 4481                                                Chattanooga,_Tennessee
## 4482                                                Chattanooga,_Tennessee
## 4483                                                Chattanooga,_Tennessee
## 4484                                                Chattanooga,_Tennessee
## 4485                                                Chattanooga,_Tennessee
## 4486                                                Chattanooga,_Tennessee
## 4487                                                Chattanooga,_Tennessee
## 4488                                                Chattanooga,_Tennessee
## 4489                                                Chattanooga,_Tennessee
## 4490                                                Chattanooga,_Tennessee
## 4491                                                Chattanooga,_Tennessee
## 4492                                                Chattanooga,_Tennessee
## 4493                                                Chattanooga,_Tennessee
## 4494                                                Chattanooga,_Tennessee
## 4495                                                Chattanooga,_Tennessee
## 4496                                                Chattanooga,_Tennessee
## 4497                                                Chattanooga,_Tennessee
## 4498                                                Chattanooga,_Tennessee
## 4499                                                Chattanooga,_Tennessee
## 4500                                                Chattanooga,_Tennessee
## 4501                                                Chattanooga,_Tennessee
## 4502                                                Chattanooga,_Tennessee
## 4503                                                Chattanooga,_Tennessee
## 4504                                                Chattanooga,_Tennessee
## 4505                                                Chattanooga,_Tennessee
## 4506                                                Chattanooga,_Tennessee
## 4507                                                Chattanooga,_Tennessee
## 4508                                                Chattanooga,_Tennessee
## 4509                                                Chattanooga,_Tennessee
## 4510                                                Chattanooga,_Tennessee
## 4511                                                Chattanooga,_Tennessee
## 4512                                                Chattanooga,_Tennessee
## 4513                                                Chattanooga,_Tennessee
## 4514                                                Chattanooga,_Tennessee
## 4515                                                Chattanooga,_Tennessee
## 4516                                                Chattanooga,_Tennessee
## 4517                                                Chattanooga,_Tennessee
## 4518                                                Chattanooga,_Tennessee
## 4519                                                Chattanooga,_Tennessee
## 4520                                                Chattanooga,_Tennessee
## 4521                                                Chattanooga,_Tennessee
## 4522                                                Chattanooga,_Tennessee
## 4523                                                Chattanooga,_Tennessee
## 4524                                                Chattanooga,_Tennessee
## 4525                                                Chattanooga,_Tennessee
## 4526                                                Chattanooga,_Tennessee
## 4527                                                Chattanooga,_Tennessee
## 4528                                                Chattanooga,_Tennessee
## 4529                                                Chattanooga,_Tennessee
## 4530                                                Chattanooga,_Tennessee
## 4531                                                Chattanooga,_Tennessee
## 4532                                                Chattanooga,_Tennessee
## 4533                                                Chattanooga,_Tennessee
## 4534                                                Chattanooga,_Tennessee
## 4535                                                Chattanooga,_Tennessee
## 4536                                                Chattanooga,_Tennessee
## 4537                                                Chattanooga,_Tennessee
## 4538                                                Chattanooga,_Tennessee
## 4539                                                Chattanooga,_Tennessee
## 4540                                                Chattanooga,_Tennessee
## 4541                                                Chattanooga,_Tennessee
## 4542                                                Chattanooga,_Tennessee
## 4543                                                Chattanooga,_Tennessee
## 4544                                                Chattanooga,_Tennessee
## 4545                                                Chattanooga,_Tennessee
## 4546                                                Chattanooga,_Tennessee
## 4547                                                Chattanooga,_Tennessee
## 4548                                                Chattanooga,_Tennessee
## 4549                                                Chattanooga,_Tennessee
## 4550                                                Chattanooga,_Tennessee
## 4551                                                Chattanooga,_Tennessee
## 4552                                                Chattanooga,_Tennessee
## 4553                                                Chattanooga,_Tennessee
## 4554                                                Chattanooga,_Tennessee
## 4555                                                Chattanooga,_Tennessee
## 4556                                                Chattanooga,_Tennessee
## 4557                                                Chattanooga,_Tennessee
## 4558                                                Chattanooga,_Tennessee
## 4559                                                Chattanooga,_Tennessee
## 4560                                                Chattanooga,_Tennessee
## 4561                                                Chattanooga,_Tennessee
## 4562                                                Chattanooga,_Tennessee
## 4563                                                Chattanooga,_Tennessee
## 4564                                                Chattanooga,_Tennessee
## 4565                                                Chattanooga,_Tennessee
## 4566                                                Chattanooga,_Tennessee
## 4567                                                Chattanooga,_Tennessee
## 4568                                                Chattanooga,_Tennessee
## 4569                                                Chattanooga,_Tennessee
## 4570                                                Chattanooga,_Tennessee
## 4571                                                Chattanooga,_Tennessee
## 4572                                                Chattanooga,_Tennessee
## 4573                                                Chattanooga,_Tennessee
## 4574                                                Chattanooga,_Tennessee
## 4575                                                Chattanooga,_Tennessee
## 4576                                                Chattanooga,_Tennessee
## 4577                                                Chattanooga,_Tennessee
## 4578                                                Chattanooga,_Tennessee
## 4579                                                Chattanooga,_Tennessee
## 4580                                                Chattanooga,_Tennessee
## 4581                                                Chattanooga,_Tennessee
## 4582                                                Chattanooga,_Tennessee
## 4583                                                Chattanooga,_Tennessee
## 4584                                                Chattanooga,_Tennessee
## 4585                                                Chattanooga,_Tennessee
## 4586                                                Chattanooga,_Tennessee
## 4587                                                Chattanooga,_Tennessee
## 4588                                                Chattanooga,_Tennessee
## 4589                                                Chattanooga,_Tennessee
## 4590                                                Chattanooga,_Tennessee
## 4591                                                Chattanooga,_Tennessee
## 4592                                                Chattanooga,_Tennessee
## 4593                                                Chattanooga,_Tennessee
## 4594                                                Chattanooga,_Tennessee
## 4595                                                Chattanooga,_Tennessee
## 4596                                                Chattanooga,_Tennessee
## 4597                                                Chattanooga,_Tennessee
## 4598                                                Chattanooga,_Tennessee
## 4599                                                Chattanooga,_Tennessee
## 4600                                                Chattanooga,_Tennessee
## 4601                                                Chattanooga,_Tennessee
## 4602                                                Chattanooga,_Tennessee
## 4603                                                Chattanooga,_Tennessee
## 4604                                                Chattanooga,_Tennessee
## 4605                                                Chattanooga,_Tennessee
## 4606                                                Chattanooga,_Tennessee
## 4607                                                Chattanooga,_Tennessee
## 4608                                                Chattanooga,_Tennessee
## 4609                                                Chattanooga,_Tennessee
## 4610                                                Chattanooga,_Tennessee
## 4611                                                Chattanooga,_Tennessee
## 4612                                                Chattanooga,_Tennessee
## 4613                                                Chattanooga,_Tennessee
## 4614                                                Chattanooga,_Tennessee
## 4615                                                Chattanooga,_Tennessee
## 4616                                                Chattanooga,_Tennessee
## 4617                                                Chattanooga,_Tennessee
## 4618                                                Chattanooga,_Tennessee
## 4619                                                Chattanooga,_Tennessee
## 4620                                                Chattanooga,_Tennessee
## 4621                                                Chattanooga,_Tennessee
## 4622                                                Chattanooga,_Tennessee
## 4623                                                Chattanooga,_Tennessee
## 4624                                                Chattanooga,_Tennessee
## 4625                                                Chattanooga,_Tennessee
## 4626                                                Chattanooga,_Tennessee
## 4627                                                Chattanooga,_Tennessee
## 4628                                                Chattanooga,_Tennessee
## 4629                                                Chattanooga,_Tennessee
## 4630                                                Chattanooga,_Tennessee
## 4631                                                Chattanooga,_Tennessee
## 4632                                                Chattanooga,_Tennessee
## 4633                                                Chattanooga,_Tennessee
## 4634                                                Chattanooga,_Tennessee
## 4635                                                Chattanooga,_Tennessee
## 4636                                                Chattanooga,_Tennessee
## 4637                                                Chattanooga,_Tennessee
## 4638                                                Chattanooga,_Tennessee
## 4639                                                Chattanooga,_Tennessee
## 4640                                                Chattanooga,_Tennessee
## 4641                                                Chattanooga,_Tennessee
## 4642                                                Chattanooga,_Tennessee
## 4643                                                Chattanooga,_Tennessee
## 4644                                                Chattanooga,_Tennessee
## 4645                                                Chattanooga,_Tennessee
## 4646                                                Chattanooga,_Tennessee
## 4647                                                Chattanooga,_Tennessee
## 4648                                                Chattanooga,_Tennessee
## 4649                                                Chattanooga,_Tennessee
## 4650                                                Chattanooga,_Tennessee
## 4651                                                Chattanooga,_Tennessee
## 4652                                                Chattanooga,_Tennessee
## 4653                                                Chattanooga,_Tennessee
## 4654                                                Chattanooga,_Tennessee
## 4655                                                Chattanooga,_Tennessee
## 4656                                                Chattanooga,_Tennessee
## 4657                                                Chattanooga,_Tennessee
## 4658                                                Chattanooga,_Tennessee
## 4659                                                Chattanooga,_Tennessee
## 4660                                                Chattanooga,_Tennessee
## 4661                                                Chattanooga,_Tennessee
## 4662                                                Chattanooga,_Tennessee
## 4663                                                Chattanooga,_Tennessee
## 4664                                                Chattanooga,_Tennessee
## 4665                                                Chattanooga,_Tennessee
## 4666                                                Chattanooga,_Tennessee
## 4667                                                Chattanooga,_Tennessee
## 4668                                                Chattanooga,_Tennessee
## 4669                                                Chattanooga,_Tennessee
## 4670                                                Chattanooga,_Tennessee
## 4671                                                Chattanooga,_Tennessee
## 4672                                                Chattanooga,_Tennessee
## 4673                                                Chattanooga,_Tennessee
## 4674                                                Chattanooga,_Tennessee
## 4675                                                Chattanooga,_Tennessee
## 4676                                                Chattanooga,_Tennessee
## 4677                                                Chattanooga,_Tennessee
## 4678                                                Chattanooga,_Tennessee
## 4679                                                Chattanooga,_Tennessee
## 4680                                                Chattanooga,_Tennessee
## 4681                                                Chattanooga,_Tennessee
## 4682                                                Chattanooga,_Tennessee
## 4683                                                Chattanooga,_Tennessee
## 4684                                                Chattanooga,_Tennessee
## 4685                                                Chattanooga,_Tennessee
## 4686                                                Chattanooga,_Tennessee
## 4687                                                Chattanooga,_Tennessee
## 4688                                                Chattanooga,_Tennessee
## 4689                                                Chattanooga,_Tennessee
## 4690                                                Chattanooga,_Tennessee
## 4691                                                Chattanooga,_Tennessee
## 4692                                                Chattanooga,_Tennessee
## 4693                                                Chattanooga,_Tennessee
## 4694                                                Chattanooga,_Tennessee
## 4695                                                Chattanooga,_Tennessee
## 4696                                                Chattanooga,_Tennessee
## 4697                                                Chattanooga,_Tennessee
## 4698                                                Chattanooga,_Tennessee
## 4699                                                Chattanooga,_Tennessee
## 4700                                                Chattanooga,_Tennessee
## 4701                                                Chattanooga,_Tennessee
## 4702                                                Chattanooga,_Tennessee
## 4703                                                Chattanooga,_Tennessee
## 4704                                                Chattanooga,_Tennessee
## 4705                                                Chattanooga,_Tennessee
## 4706                                                Chattanooga,_Tennessee
## 4707                                                Chattanooga,_Tennessee
## 4708                                                Chattanooga,_Tennessee
## 4709                                                Chattanooga,_Tennessee
## 4710                                                Chattanooga,_Tennessee
## 4711                                                Chattanooga,_Tennessee
## 4712                                                Chattanooga,_Tennessee
## 4713                                                Chattanooga,_Tennessee
## 4714                                                Chattanooga,_Tennessee
## 4715                                                Chattanooga,_Tennessee
## 4716                                                Chattanooga,_Tennessee
## 4717                                                Chattanooga,_Tennessee
## 4718                                                Chattanooga,_Tennessee
## 4719                                                Chattanooga,_Tennessee
## 4720                                                Chattanooga,_Tennessee
## 4721                                                Chattanooga,_Tennessee
## 4722                                                Chattanooga,_Tennessee
## 4723                                                Chattanooga,_Tennessee
## 4724                                                Chattanooga,_Tennessee
## 4725                                                Chattanooga,_Tennessee
## 4726                                                Chattanooga,_Tennessee
## 4727                                                Chattanooga,_Tennessee
## 4728                                                Chattanooga,_Tennessee
## 4729                                                Chattanooga,_Tennessee
## 4730                                                Chattanooga,_Tennessee
## 4731                                                Chattanooga,_Tennessee
## 4732                                                Chattanooga,_Tennessee
## 4733                                                Chattanooga,_Tennessee
## 4734                                                Chattanooga,_Tennessee
## 4735                                                Chattanooga,_Tennessee
## 4736                                                Chattanooga,_Tennessee
## 4737                                                Chattanooga,_Tennessee
## 4738                                                Chattanooga,_Tennessee
## 4739                                                Chattanooga,_Tennessee
## 4740                                                Chattanooga,_Tennessee
## 4741                                                Chattanooga,_Tennessee
## 4742                                                Chattanooga,_Tennessee
## 4743                                                Chattanooga,_Tennessee
## 4744                                                Chattanooga,_Tennessee
## 4745                                                Chattanooga,_Tennessee
## 4746                                                Chattanooga,_Tennessee
## 4747                                                Chattanooga,_Tennessee
## 4748                                                Chattanooga,_Tennessee
## 4749                                                Chattanooga,_Tennessee
## 4750                                                Chattanooga,_Tennessee
## 4751                                                Chattanooga,_Tennessee
## 4752                                                Chattanooga,_Tennessee
## 4753                                                Chattanooga,_Tennessee
## 4754                                                Chattanooga,_Tennessee
## 4755                                                Chattanooga,_Tennessee
## 4756                                                Chattanooga,_Tennessee
## 4757                                                Chattanooga,_Tennessee
## 4758                                                Chattanooga,_Tennessee
## 4759                                                Chattanooga,_Tennessee
## 4760                                                Chattanooga,_Tennessee
## 4761                                                Chattanooga,_Tennessee
## 4762                                                Chattanooga,_Tennessee
## 4763                                                Chattanooga,_Tennessee
## 4764                                                Chattanooga,_Tennessee
## 4765                                                Chattanooga,_Tennessee
## 4766                                                Chattanooga,_Tennessee
## 4767                                                Chattanooga,_Tennessee
## 4768                                                Chattanooga,_Tennessee
## 4769                                                Chattanooga,_Tennessee
## 4770                                                Chattanooga,_Tennessee
## 4771                                                Chattanooga,_Tennessee
## 4772                                                Chattanooga,_Tennessee
## 4773                                                Chattanooga,_Tennessee
## 4774                                                Chattanooga,_Tennessee
## 4775                                                Chattanooga,_Tennessee
## 4776                                                Chattanooga,_Tennessee
## 4777                                                Chattanooga,_Tennessee
## 4778                                                Chattanooga,_Tennessee
## 4779                                                Chattanooga,_Tennessee
## 4780                                                Chattanooga,_Tennessee
## 4781                                                Chattanooga,_Tennessee
## 4782                                                Chattanooga,_Tennessee
## 4783                                                Chattanooga,_Tennessee
## 4784                                                Chattanooga,_Tennessee
## 4785                                                Chattanooga,_Tennessee
## 4786                                                Chattanooga,_Tennessee
## 4787                                                Chattanooga,_Tennessee
## 4788                                                Chattanooga,_Tennessee
## 4789                                                Chattanooga,_Tennessee
## 4790                                                Chattanooga,_Tennessee
## 4791                                                Chattanooga,_Tennessee
## 4792                                                Chattanooga,_Tennessee
## 4793                                                Chattanooga,_Tennessee
## 4794                                                Chattanooga,_Tennessee
## 4795                                                Chattanooga,_Tennessee
## 4796                                                Chattanooga,_Tennessee
## 4797                                                Chattanooga,_Tennessee
## 4798                                                Chattanooga,_Tennessee
## 4799                                                Chattanooga,_Tennessee
## 4800                                                Chattanooga,_Tennessee
## 4801                                                Chattanooga,_Tennessee
## 4802                                                Chattanooga,_Tennessee
## 4803                                                Chattanooga,_Tennessee
## 4804                                                Chattanooga,_Tennessee
## 4805                                                Chattanooga,_Tennessee
## 4806                                                Chattanooga,_Tennessee
## 4807                                                Chattanooga,_Tennessee
## 4808                                                Chattanooga,_Tennessee
## 4809                                                Chattanooga,_Tennessee
## 4810                                                Chattanooga,_Tennessee
## 4811                                                Chattanooga,_Tennessee
## 4812                                                Chattanooga,_Tennessee
## 4813                                                Chattanooga,_Tennessee
## 4814                                                Chattanooga,_Tennessee
## 4815                                                Chattanooga,_Tennessee
## 4816                                                Chattanooga,_Tennessee
## 4817                                                Chattanooga,_Tennessee
## 4818                                                Chattanooga,_Tennessee
## 4819                                                Chattanooga,_Tennessee
## 4820                                                Chattanooga,_Tennessee
## 4821                                                Chattanooga,_Tennessee
## 4822                                                Chattanooga,_Tennessee
## 4823                                                Chattanooga,_Tennessee
## 4824                                                Chattanooga,_Tennessee
## 4825                                                Chattanooga,_Tennessee
## 4826                                                Chattanooga,_Tennessee
## 4827                                                Chattanooga,_Tennessee
## 4828                                                Chattanooga,_Tennessee
## 4829                                                Chattanooga,_Tennessee
## 4830                                                Chattanooga,_Tennessee
## 4831                                                Chattanooga,_Tennessee
## 4832                                                Chattanooga,_Tennessee
## 4833                                                Chattanooga,_Tennessee
## 4834                                                Chattanooga,_Tennessee
## 4835                                                Chattanooga,_Tennessee
## 4836                                                Chattanooga,_Tennessee
## 4837                                                Chattanooga,_Tennessee
## 4838                                                Chattanooga,_Tennessee
## 4839                                                Chattanooga,_Tennessee
## 4840                                                Chattanooga,_Tennessee
## 4841                                                Chattanooga,_Tennessee
## 4842                                                Chattanooga,_Tennessee
## 4843                                                Chattanooga,_Tennessee
## 4844                                                Chattanooga,_Tennessee
## 4845                                                Chattanooga,_Tennessee
## 4846                                                Chattanooga,_Tennessee
## 4847                                                Chattanooga,_Tennessee
## 4848                                                Chattanooga,_Tennessee
## 4849                                                Chattanooga,_Tennessee
## 4850                                                Chattanooga,_Tennessee
## 4851                                                Chattanooga,_Tennessee
## 4852                                                Chattanooga,_Tennessee
## 4853                                                Chattanooga,_Tennessee
## 4854                                                Chattanooga,_Tennessee
## 4855                                                Chattanooga,_Tennessee
## 4856                                                Chattanooga,_Tennessee
## 4857                                                Chattanooga,_Tennessee
## 4858                                                Chattanooga,_Tennessee
## 4859                                                Chattanooga,_Tennessee
## 4860                                                Chattanooga,_Tennessee
## 4861                                                Chattanooga,_Tennessee
## 4862                                                Chattanooga,_Tennessee
## 4863                                                Chattanooga,_Tennessee
## 4864                                                Chattanooga,_Tennessee
## 4865                                                Chattanooga,_Tennessee
## 4866                                                Chattanooga,_Tennessee
## 4867                                                Chattanooga,_Tennessee
## 4868                                                Chattanooga,_Tennessee
## 4869                                                Chattanooga,_Tennessee
## 4870                                                Chattanooga,_Tennessee
## 4871                                                Chattanooga,_Tennessee
## 4872                                                Chattanooga,_Tennessee
## 4873                                                Chattanooga,_Tennessee
## 4874                                                Chattanooga,_Tennessee
## 4875                                                Chattanooga,_Tennessee
## 4876                                                Chattanooga,_Tennessee
## 4877                                                Chattanooga,_Tennessee
## 4878                                                Chattanooga,_Tennessee
## 4879                                                Chattanooga,_Tennessee
## 4880                                                Chattanooga,_Tennessee
## 4881                                                Chattanooga,_Tennessee
## 4882                                                Chattanooga,_Tennessee
## 4883                                                Chattanooga,_Tennessee
## 4884                                                Chattanooga,_Tennessee
## 4885                                                Chattanooga,_Tennessee
## 4886                                                Chattanooga,_Tennessee
## 4887                                                Chattanooga,_Tennessee
## 4888                                                Chattanooga,_Tennessee
## 4889                                                Chattanooga,_Tennessee
## 4890                                                Chattanooga,_Tennessee
## 4891                                                Chattanooga,_Tennessee
## 4892                                                Chattanooga,_Tennessee
## 4893                                                Chattanooga,_Tennessee
## 4894                                                Chattanooga,_Tennessee
## 4895                                                Chattanooga,_Tennessee
## 4896                                                Chattanooga,_Tennessee
## 4897                                                Chattanooga,_Tennessee
## 4898                                                Chattanooga,_Tennessee
## 4899                                                Chattanooga,_Tennessee
## 4900                                                Chattanooga,_Tennessee
## 4901                                                Chattanooga,_Tennessee
## 4902                                                Chattanooga,_Tennessee
## 4903                                                Chattanooga,_Tennessee
## 4904                                                Chattanooga,_Tennessee
## 4905                                                Chattanooga,_Tennessee
## 4906                                                Chattanooga,_Tennessee
## 4907                                                Chattanooga,_Tennessee
## 4908                                                Chattanooga,_Tennessee
## 4909                                                Chattanooga,_Tennessee
## 4910                                                Chattanooga,_Tennessee
## 4911                                                Chattanooga,_Tennessee
## 4912                                                Chattanooga,_Tennessee
## 4913                                                Chattanooga,_Tennessee
## 4914                                                Chattanooga,_Tennessee
## 4915                                                Chattanooga,_Tennessee
## 4916                                                Chattanooga,_Tennessee
## 4917                                                Chattanooga,_Tennessee
## 4918                                                Chattanooga,_Tennessee
## 4919                                                Chattanooga,_Tennessee
## 4920                                                Chattanooga,_Tennessee
## 4921                                                Chattanooga,_Tennessee
## 4922                                                Chattanooga,_Tennessee
## 4923                                                Chattanooga,_Tennessee
## 4924                                                Chattanooga,_Tennessee
## 4925                                                Chattanooga,_Tennessee
## 4926                                                Chattanooga,_Tennessee
## 4927                                                Chattanooga,_Tennessee
## 4928                                                Chattanooga,_Tennessee
## 4929                                                Chattanooga,_Tennessee
## 4930                                                Chattanooga,_Tennessee
## 4931                                                Chattanooga,_Tennessee
## 4932                                                Chattanooga,_Tennessee
## 4933                                                Chattanooga,_Tennessee
## 4934                                                Chattanooga,_Tennessee
## 4935                                                Chattanooga,_Tennessee
## 4936                                                Chattanooga,_Tennessee
## 4937                                                Chattanooga,_Tennessee
## 4938                                                Chattanooga,_Tennessee
## 4939                                                Chattanooga,_Tennessee
## 4940                                                Chattanooga,_Tennessee
## 4941                                                Chattanooga,_Tennessee
## 4942                                                Chattanooga,_Tennessee
## 4943                                                Chattanooga,_Tennessee
## 4944                                                Chattanooga,_Tennessee
## 4945                                                Chattanooga,_Tennessee
## 4946                                                Chattanooga,_Tennessee
## 4947                                                Chattanooga,_Tennessee
## 4948                                                Chattanooga,_Tennessee
## 4949                                                Chattanooga,_Tennessee
## 4950                                                Chattanooga,_Tennessee
## 4951                                                Chattanooga,_Tennessee
## 4952                                                Chattanooga,_Tennessee
## 4953                                                Chattanooga,_Tennessee
## 4954                                                Chattanooga,_Tennessee
## 4955                                                Chattanooga,_Tennessee
## 4956                                                Chattanooga,_Tennessee
## 4957                                                Chattanooga,_Tennessee
## 4958                                                Chattanooga,_Tennessee
## 4959                                                Chattanooga,_Tennessee
## 4960                                                Chattanooga,_Tennessee
## 4961                                                Chattanooga,_Tennessee
## 4962                                                   Bure_Valley_Railway
## 4963                                                   Bure_Valley_Railway
## 4964                                                   Bure_Valley_Railway
## 4965                                                   Bure_Valley_Railway
## 4966                                                   Bure_Valley_Railway
## 4967                                                   Bure_Valley_Railway
## 4968                                                   Bure_Valley_Railway
## 4969                                                   Bure_Valley_Railway
## 4970                                                   Bure_Valley_Railway
## 4971                                                   Bure_Valley_Railway
## 4972                                                   Bure_Valley_Railway
## 4973                                                   Bure_Valley_Railway
## 4974                                                   Bure_Valley_Railway
## 4975                                                   Bure_Valley_Railway
## 4976                                                   Bure_Valley_Railway
## 4977                                                   Bure_Valley_Railway
## 4978                                                   Bure_Valley_Railway
## 4979                                                   Bure_Valley_Railway
## 4980                                                   Bure_Valley_Railway
## 4981                                                   Bure_Valley_Railway
## 4982                                                   Bure_Valley_Railway
## 4983                                                   Bure_Valley_Railway
## 4984                                                   Bure_Valley_Railway
## 4985                                                   Bure_Valley_Railway
## 4986                                                   Bure_Valley_Railway
## 4987                                                   Bure_Valley_Railway
## 4988                                                   Bure_Valley_Railway
## 4989                                                   Bure_Valley_Railway
## 4990                                                   Bure_Valley_Railway
## 4991                                                   Bure_Valley_Railway
## 4992                                                   Bure_Valley_Railway
## 4993                                                   Bure_Valley_Railway
## 4994                                                   Bure_Valley_Railway
## 4995                                                   Bure_Valley_Railway
## 4996                                                   Bure_Valley_Railway
## 4997                                                   Bure_Valley_Railway
## 4998                                                   Bure_Valley_Railway
## 4999                                                   Bure_Valley_Railway
## 5000                                                   Bure_Valley_Railway
## 5001                                                   Bure_Valley_Railway
## 5002                                                   Bure_Valley_Railway
## 5003                                                   Bure_Valley_Railway
## 5004                                                   Bure_Valley_Railway
## 5005                                                   Bure_Valley_Railway
## 5006                                                   Bure_Valley_Railway
## 5007                                                   Bure_Valley_Railway
## 5008                                                   Bure_Valley_Railway
## 5009                                                   Bure_Valley_Railway
## 5010                                                   Bure_Valley_Railway
## 5011                                                   Bure_Valley_Railway
## 5012                                                   Bure_Valley_Railway
## 5013                                                   Bure_Valley_Railway
## 5014                                                   Bure_Valley_Railway
## 5015                                                   Bure_Valley_Railway
## 5016                                                   Bure_Valley_Railway
## 5017                                                   Bure_Valley_Railway
## 5018                                                   Bure_Valley_Railway
## 5019                                                   Bure_Valley_Railway
## 5020                                                   Bure_Valley_Railway
## 5021                                                   Bure_Valley_Railway
## 5022                                                   Bure_Valley_Railway
## 5023                                                   Bure_Valley_Railway
## 5024                                                   Bure_Valley_Railway
## 5025                                                   Bure_Valley_Railway
## 5026                                                    Scouting_in_Hawaii
## 5027                                                    Scouting_in_Hawaii
## 5028                                                    Scouting_in_Hawaii
## 5029                                                    Scouting_in_Hawaii
## 5030                                                    Scouting_in_Hawaii
## 5031                                                    Scouting_in_Hawaii
## 5032                                                    Scouting_in_Hawaii
## 5033                                                    Scouting_in_Hawaii
## 5034                                                    Scouting_in_Hawaii
## 5035                                                    Scouting_in_Hawaii
## 5036                                                    Scouting_in_Hawaii
## 5037                                                    Scouting_in_Hawaii
## 5038                                                    Scouting_in_Hawaii
## 5039                                                    Scouting_in_Hawaii
## 5040                                                    Scouting_in_Hawaii
## 5041                                                    Scouting_in_Hawaii
## 5042                                                    Scouting_in_Hawaii
## 5043                                                    Scouting_in_Hawaii
## 5044                                                    Scouting_in_Hawaii
## 5045                                                    Scouting_in_Hawaii
## 5046                                                    Scouting_in_Hawaii
## 5047                                                    Scouting_in_Hawaii
## 5048                                                    Scouting_in_Hawaii
## 5049                                                    Scouting_in_Hawaii
## 5050                                                    Scouting_in_Hawaii
## 5051                                                    Scouting_in_Hawaii
## 5052                                                    Scouting_in_Hawaii
## 5053                                                    Scouting_in_Hawaii
## 5054                                                    Scouting_in_Hawaii
## 5055                                                    Scouting_in_Hawaii
## 5056                                                    Scouting_in_Hawaii
## 5057                                                    Scouting_in_Hawaii
## 5058                                                    Scouting_in_Hawaii
## 5059                                                    Scouting_in_Hawaii
## 5060                                                    Scouting_in_Hawaii
## 5061                                                    Scouting_in_Hawaii
## 5062                                                    Scouting_in_Hawaii
## 5063                                                    Scouting_in_Hawaii
## 5064                                                    Scouting_in_Hawaii
## 5065                                                    Scouting_in_Hawaii
## 5066                                                    Scouting_in_Hawaii
## 5067                                                    Scouting_in_Hawaii
## 5068                                                    Scouting_in_Hawaii
## 5069                                                    Scouting_in_Hawaii
## 5070                                                    Scouting_in_Hawaii
## 5071                                                    Scouting_in_Hawaii
## 5072                                                    Scouting_in_Hawaii
## 5073                                                    Scouting_in_Hawaii
## 5074                                                    Scouting_in_Hawaii
## 5075                                                    Scouting_in_Hawaii
## 5076                                                    Scouting_in_Hawaii
## 5077                                                    Scouting_in_Hawaii
## 5078                                                    Scouting_in_Hawaii
## 5079                                                    Scouting_in_Hawaii
## 5080                                                    Scouting_in_Hawaii
## 5081                                                    Scouting_in_Hawaii
## 5082                                                    Scouting_in_Hawaii
## 5083                                                    Scouting_in_Hawaii
## 5084                                                    Scouting_in_Hawaii
## 5085                                                    Scouting_in_Hawaii
## 5086                                                    Scouting_in_Hawaii
## 5087                                                    Scouting_in_Hawaii
## 5088                                                    Scouting_in_Hawaii
## 5089                                             Epistle_to_the_Laodiceans
## 5090                                             Epistle_to_the_Laodiceans
## 5091                                             Epistle_to_the_Laodiceans
## 5092                                             Epistle_to_the_Laodiceans
## 5093                                             Epistle_to_the_Laodiceans
## 5094                                             Epistle_to_the_Laodiceans
## 5095                                             Epistle_to_the_Laodiceans
## 5096                                             Epistle_to_the_Laodiceans
## 5097                                             Epistle_to_the_Laodiceans
## 5098                                             Epistle_to_the_Laodiceans
## 5099                                             Epistle_to_the_Laodiceans
## 5100                                             Epistle_to_the_Laodiceans
## 5101                                             Epistle_to_the_Laodiceans
## 5102                                             Epistle_to_the_Laodiceans
## 5103                                             Epistle_to_the_Laodiceans
## 5104                                             Epistle_to_the_Laodiceans
## 5105                                             Epistle_to_the_Laodiceans
## 5106                                             Epistle_to_the_Laodiceans
## 5107                                             Epistle_to_the_Laodiceans
## 5108                                             Epistle_to_the_Laodiceans
## 5109                                             Epistle_to_the_Laodiceans
## 5110                                             Epistle_to_the_Laodiceans
## 5111                                             Epistle_to_the_Laodiceans
## 5112                                             Epistle_to_the_Laodiceans
## 5113                                             Epistle_to_the_Laodiceans
## 5114                                             Epistle_to_the_Laodiceans
## 5115                                             Epistle_to_the_Laodiceans
## 5116                                             Epistle_to_the_Laodiceans
## 5117                                             Epistle_to_the_Laodiceans
## 5118                                             Epistle_to_the_Laodiceans
## 5119                                             Epistle_to_the_Laodiceans
## 5120                                             Epistle_to_the_Laodiceans
## 5121                                             Epistle_to_the_Laodiceans
## 5122                                             Epistle_to_the_Laodiceans
## 5123                                             Epistle_to_the_Laodiceans
## 5124                                             Epistle_to_the_Laodiceans
## 5125                                             Epistle_to_the_Laodiceans
## 5126                                             Epistle_to_the_Laodiceans
## 5127                                             Epistle_to_the_Laodiceans
## 5128                                             Epistle_to_the_Laodiceans
## 5129                                             Epistle_to_the_Laodiceans
## 5130                                             Epistle_to_the_Laodiceans
## 5131                                             Epistle_to_the_Laodiceans
## 5132                                             Epistle_to_the_Laodiceans
## 5133                                             Epistle_to_the_Laodiceans
## 5134                                             Epistle_to_the_Laodiceans
## 5135                                             Epistle_to_the_Laodiceans
## 5136                                             Epistle_to_the_Laodiceans
## 5137                                             Epistle_to_the_Laodiceans
## 5138                                             Epistle_to_the_Laodiceans
## 5139                                             Epistle_to_the_Laodiceans
## 5140                                             Epistle_to_the_Laodiceans
## 5141                                             Epistle_to_the_Laodiceans
## 5142                                             Epistle_to_the_Laodiceans
## 5143                                                 Scouting_in_Tennessee
## 5144                                                 Scouting_in_Tennessee
## 5145                                                 Scouting_in_Tennessee
## 5146                                                 Scouting_in_Tennessee
## 5147                                                 Scouting_in_Tennessee
## 5148                                                 Scouting_in_Tennessee
## 5149                                                 Scouting_in_Tennessee
## 5150                                                 Scouting_in_Tennessee
## 5151                                                 Scouting_in_Tennessee
## 5152                                                 Scouting_in_Tennessee
## 5153                                                 Scouting_in_Tennessee
## 5154                                                 Scouting_in_Tennessee
## 5155                                                 Scouting_in_Tennessee
## 5156                                                 Scouting_in_Tennessee
## 5157                                                 Scouting_in_Tennessee
## 5158                                                 Scouting_in_Tennessee
## 5159                                                 Scouting_in_Tennessee
## 5160                                                 Scouting_in_Tennessee
## 5161                                                 Scouting_in_Tennessee
## 5162                                                 Scouting_in_Tennessee
## 5163                                                 Scouting_in_Tennessee
## 5164                                                 Scouting_in_Tennessee
## 5165                                                 Scouting_in_Tennessee
## 5166                                                 Scouting_in_Tennessee
## 5167                                                 Scouting_in_Tennessee
## 5168                                                 Scouting_in_Tennessee
## 5169                                                 Scouting_in_Tennessee
## 5170                                                 Scouting_in_Tennessee
## 5171                                                 Scouting_in_Tennessee
## 5172                                                 Scouting_in_Tennessee
## 5173                                                 Scouting_in_Tennessee
## 5174                                                 Scouting_in_Tennessee
## 5175                                                 Scouting_in_Tennessee
## 5176                                                 Scouting_in_Tennessee
## 5177                                                 Scouting_in_Tennessee
## 5178                                                 Scouting_in_Tennessee
## 5179                                                 Scouting_in_Tennessee
## 5180                                                 Scouting_in_Tennessee
## 5181                                                 Scouting_in_Tennessee
## 5182                                                 Scouting_in_Tennessee
## 5183                                                 Scouting_in_Tennessee
## 5184                                                 Scouting_in_Tennessee
## 5185                                                 Scouting_in_Tennessee
## 5186                                                 Scouting_in_Tennessee
## 5187                                                 Scouting_in_Tennessee
## 5188                                                 Scouting_in_Tennessee
## 5189                                                 Scouting_in_Tennessee
## 5190                                                 Scouting_in_Tennessee
## 5191                                                 Scouting_in_Tennessee
## 5192                                                 Scouting_in_Tennessee
## 5193                                                 Scouting_in_Tennessee
## 5194                                                 Scouting_in_Tennessee
## 5195                                                 Scouting_in_Tennessee
## 5196                                                 Scouting_in_Tennessee
## 5197                                                 Scouting_in_Tennessee
## 5198                                                 Scouting_in_Tennessee
## 5199                                                 Scouting_in_Tennessee
## 5200                                                 Scouting_in_Tennessee
## 5201                                                 Scouting_in_Tennessee
## 5202                                                 Scouting_in_Tennessee
## 5203                                                 Scouting_in_Tennessee
## 5204                                                 Scouting_in_Tennessee
## 5205                                                 Scouting_in_Tennessee
## 5206                                                 Scouting_in_Tennessee
## 5207                                                 Scouting_in_Tennessee
## 5208                                                 Scouting_in_Tennessee
## 5209                                                 Scouting_in_Tennessee
## 5210                                                 Scouting_in_Tennessee
## 5211                                                 Scouting_in_Tennessee
## 5212                                                 Scouting_in_Tennessee
## 5213                                                 Scouting_in_Tennessee
## 5214                                                 Scouting_in_Tennessee
## 5215                                                 Scouting_in_Tennessee
## 5216                                                 Scouting_in_Tennessee
## 5217                                                 Scouting_in_Tennessee
## 5218                                        Palmerston_Rocks_National_Park
## 5219                                        Palmerston_Rocks_National_Park
## 5220                                        Palmerston_Rocks_National_Park
## 5221                                        Palmerston_Rocks_National_Park
## 5222                                        Palmerston_Rocks_National_Park
## 5223                                        Palmerston_Rocks_National_Park
## 5224                                        Palmerston_Rocks_National_Park
## 5225                                        Palmerston_Rocks_National_Park
## 5226                                        Palmerston_Rocks_National_Park
## 5227                                                        Paul_Morrissey
## 5228                                                        Paul_Morrissey
## 5229                                                        Paul_Morrissey
## 5230                                                        Paul_Morrissey
## 5231                                                        Paul_Morrissey
## 5232                                                        Paul_Morrissey
## 5233                                                        Paul_Morrissey
## 5234                                                        Paul_Morrissey
## 5235                                                        Paul_Morrissey
## 5236                                                        Paul_Morrissey
## 5237                                                        Paul_Morrissey
## 5238                                                        Paul_Morrissey
## 5239                                                        Paul_Morrissey
## 5240                                                        Paul_Morrissey
## 5241                                                        Paul_Morrissey
## 5242                                                        Paul_Morrissey
## 5243                                                        Paul_Morrissey
## 5244                                                        Paul_Morrissey
## 5245                                                        Paul_Morrissey
## 5246                                                        Paul_Morrissey
## 5247                                                        Paul_Morrissey
## 5248                                                        Paul_Morrissey
## 5249                                                        Paul_Morrissey
## 5250                                                        Paul_Morrissey
## 5251                                                        Paul_Morrissey
## 5252                                                        Paul_Morrissey
## 5253                                                        Paul_Morrissey
## 5254                                                        Paul_Morrissey
## 5255                                                        Paul_Morrissey
## 5256                                                        Paul_Morrissey
## 5257                                                        Paul_Morrissey
## 5258                                                        Paul_Morrissey
## 5259                                                        Paul_Morrissey
## 5260                                                        Paul_Morrissey
## 5261                                                        Paul_Morrissey
## 5262                                                        Paul_Morrissey
## 5263                                                        Paul_Morrissey
## 5264                                                        Paul_Morrissey
## 5265                                                        Paul_Morrissey
## 5266                                                        Paul_Morrissey
## 5267                                                        Paul_Morrissey
## 5268                                                        Paul_Morrissey
## 5269                                                        Paul_Morrissey
## 5270                                                        Paul_Morrissey
## 5271                                                        Paul_Morrissey
## 5272                                                        Paul_Morrissey
## 5273                                                        Paul_Morrissey
## 5274                                                        Paul_Morrissey
## 5275                                                        Paul_Morrissey
## 5276                                                        Paul_Morrissey
## 5277                                                        Paul_Morrissey
## 5278                                                        Paul_Morrissey
## 5279                                                    List_of_historians
## 5280                                                    List_of_historians
## 5281                                                    List_of_historians
## 5282                                                    List_of_historians
## 5283                                                    List_of_historians
## 5284                                                    List_of_historians
## 5285                                                    List_of_historians
## 5286                                                    List_of_historians
## 5287                                                    List_of_historians
## 5288                                                    List_of_historians
## 5289                                                    List_of_historians
## 5290                                                    List_of_historians
## 5291                                                    List_of_historians
## 5292                                                    List_of_historians
## 5293                                                    List_of_historians
## 5294                                                    List_of_historians
## 5295                                                    List_of_historians
## 5296                                                    List_of_historians
## 5297                                                    List_of_historians
## 5298                                                    List_of_historians
## 5299                                                    List_of_historians
## 5300                                                    List_of_historians
## 5301                                                    List_of_historians
## 5302                                                    List_of_historians
## 5303                                                    List_of_historians
## 5304                                                    List_of_historians
## 5305                                                    List_of_historians
## 5306                                                    List_of_historians
## 5307                                                    List_of_historians
## 5308                                                    List_of_historians
## 5309                                                    List_of_historians
## 5310                                                    List_of_historians
## 5311                                                    List_of_historians
## 5312                                                    List_of_historians
## 5313                                                    List_of_historians
## 5314                                                    List_of_historians
## 5315                                                    List_of_historians
## 5316                                                    List_of_historians
## 5317                                                    List_of_historians
## 5318                                                    List_of_historians
## 5319                                                    List_of_historians
## 5320                                                    List_of_historians
## 5321                                                    List_of_historians
## 5322                                                    List_of_historians
## 5323                                                    List_of_historians
## 5324                                                    List_of_historians
## 5325                                                    List_of_historians
## 5326                                                    List_of_historians
## 5327                                                    List_of_historians
## 5328                                                    List_of_historians
## 5329                                                    List_of_historians
## 5330                                                    List_of_historians
## 5331                                                    List_of_historians
## 5332                                                    List_of_historians
## 5333                                                    List_of_historians
## 5334                                                    List_of_historians
## 5335                                                    List_of_historians
## 5336                                                    List_of_historians
## 5337                                                    List_of_historians
## 5338                                                    List_of_historians
## 5339                                                    List_of_historians
## 5340                                                    List_of_historians
## 5341                                                    List_of_historians
## 5342                                                    List_of_historians
## 5343                                                    List_of_historians
## 5344                                                    List_of_historians
## 5345                                                    List_of_historians
## 5346                                                    List_of_historians
## 5347                                                    List_of_historians
## 5348                                                    List_of_historians
## 5349                                                    List_of_historians
## 5350                                                    List_of_historians
## 5351                                                    List_of_historians
## 5352                                                    List_of_historians
## 5353                                                    List_of_historians
## 5354                                                    List_of_historians
## 5355                                                    List_of_historians
## 5356                                                    List_of_historians
## 5357                                                    List_of_historians
## 5358                                                    List_of_historians
## 5359                                                    List_of_historians
## 5360                                                    List_of_historians
## 5361                                                    List_of_historians
## 5362                                                    List_of_historians
## 5363                                                    List_of_historians
## 5364                                                    List_of_historians
## 5365                                                    List_of_historians
## 5366                                                    List_of_historians
## 5367                                                    List_of_historians
## 5368                                                    List_of_historians
## 5369                                                    List_of_historians
## 5370                                                    List_of_historians
## 5371                                                    List_of_historians
## 5372                                                    List_of_historians
## 5373                                                    List_of_historians
## 5374                                                    List_of_historians
## 5375                                                    List_of_historians
## 5376                                                    List_of_historians
## 5377                                                    List_of_historians
## 5378                                                    List_of_historians
## 5379                                                    List_of_historians
## 5380                                                    List_of_historians
## 5381                                                    List_of_historians
## 5382                                                    List_of_historians
## 5383                                                    List_of_historians
## 5384                                                    List_of_historians
## 5385                                                    List_of_historians
## 5386                                                    List_of_historians
## 5387                                                    List_of_historians
## 5388                                                    List_of_historians
## 5389                                                    List_of_historians
## 5390                                                    List_of_historians
## 5391                                                    List_of_historians
## 5392                                                    List_of_historians
## 5393                                                    List_of_historians
## 5394                                                    List_of_historians
## 5395                                                    List_of_historians
## 5396                                                    List_of_historians
## 5397                                                    List_of_historians
## 5398                                                    List_of_historians
## 5399                                                    List_of_historians
## 5400                                                    List_of_historians
## 5401                                                    List_of_historians
## 5402                                                    List_of_historians
## 5403                                                    List_of_historians
## 5404                                                    List_of_historians
## 5405                                                    List_of_historians
## 5406                                                    List_of_historians
## 5407                                                    List_of_historians
## 5408                                                    List_of_historians
## 5409                                                    List_of_historians
## 5410                                                    List_of_historians
## 5411                                                    List_of_historians
## 5412                                                    List_of_historians
## 5413                                                    List_of_historians
## 5414                                                    List_of_historians
## 5415                                                    List_of_historians
## 5416                                                    List_of_historians
## 5417                                                    List_of_historians
## 5418                                                    List_of_historians
## 5419                                                    List_of_historians
## 5420                                                    List_of_historians
## 5421                                                    List_of_historians
## 5422                                                    List_of_historians
## 5423                                                    List_of_historians
## 5424                                                    List_of_historians
## 5425                                                    List_of_historians
## 5426                                                    List_of_historians
## 5427                                                    List_of_historians
## 5428                                                    List_of_historians
## 5429                                                    List_of_historians
## 5430                                                    List_of_historians
## 5431                                                    List_of_historians
## 5432                                                    List_of_historians
## 5433                                                    List_of_historians
## 5434                                                    List_of_historians
## 5435                                                    List_of_historians
## 5436                                                    List_of_historians
## 5437                                                    List_of_historians
## 5438                                                    List_of_historians
## 5439                                                    List_of_historians
## 5440                                                    List_of_historians
## 5441                                                    List_of_historians
## 5442                                                    List_of_historians
## 5443                                                    List_of_historians
## 5444                                                    List_of_historians
## 5445                                                    List_of_historians
## 5446                                                    List_of_historians
## 5447                                                    List_of_historians
## 5448                                                    List_of_historians
## 5449                                                    List_of_historians
## 5450                                                    List_of_historians
## 5451                                                    List_of_historians
## 5452                                                    List_of_historians
## 5453                                                    List_of_historians
## 5454                                                    List_of_historians
## 5455                                                    List_of_historians
## 5456                                                    List_of_historians
## 5457                                                    List_of_historians
## 5458                                                    List_of_historians
## 5459                                                    List_of_historians
## 5460                                                    List_of_historians
## 5461                                                    List_of_historians
## 5462                                                    List_of_historians
## 5463                                                    List_of_historians
## 5464                                                    List_of_historians
## 5465                                                    List_of_historians
## 5466                                                    List_of_historians
## 5467                                                    List_of_historians
## 5468                                                    List_of_historians
## 5469                                                    List_of_historians
## 5470                                                    List_of_historians
## 5471                                                    List_of_historians
## 5472                                                    List_of_historians
## 5473                                                    List_of_historians
## 5474                                                    List_of_historians
## 5475                                                    List_of_historians
## 5476                                                    List_of_historians
## 5477                                                    List_of_historians
## 5478                                                    List_of_historians
## 5479                                                    List_of_historians
## 5480                                                    List_of_historians
## 5481                                                    List_of_historians
## 5482                                                    List_of_historians
## 5483                                                    List_of_historians
## 5484                                                    List_of_historians
## 5485                                                    List_of_historians
## 5486                                                    List_of_historians
## 5487                                                    List_of_historians
## 5488                                                    List_of_historians
## 5489                                                    List_of_historians
## 5490                                                    List_of_historians
## 5491                                                    List_of_historians
## 5492                                                    List_of_historians
## 5493                                                    List_of_historians
## 5494                                                    List_of_historians
## 5495                                                    List_of_historians
## 5496                                                    List_of_historians
## 5497                                                    List_of_historians
## 5498                                                    List_of_historians
## 5499                                                    List_of_historians
## 5500                                                    List_of_historians
## 5501                                                    List_of_historians
## 5502                                                    List_of_historians
## 5503                                                    List_of_historians
## 5504                                                    List_of_historians
## 5505                                                    List_of_historians
## 5506                                                    List_of_historians
## 5507                                                    List_of_historians
## 5508                                                    List_of_historians
## 5509                                                    List_of_historians
## 5510                                                    List_of_historians
## 5511                                                    List_of_historians
## 5512                                                    List_of_historians
## 5513                                                    List_of_historians
## 5514                                                    List_of_historians
## 5515                                                    List_of_historians
## 5516                                                    List_of_historians
## 5517                                                    List_of_historians
## 5518                                                    List_of_historians
## 5519                                                    List_of_historians
## 5520                                                    List_of_historians
## 5521                                                    List_of_historians
## 5522                                                    List_of_historians
## 5523                                                    List_of_historians
## 5524                                                    List_of_historians
## 5525                                                    List_of_historians
## 5526                                                    List_of_historians
## 5527                                                    List_of_historians
## 5528                                                    List_of_historians
## 5529                                                    List_of_historians
## 5530                                                    List_of_historians
## 5531                                                    List_of_historians
## 5532                                                    List_of_historians
## 5533                                                    List_of_historians
## 5534                                                    List_of_historians
## 5535                                                    List_of_historians
## 5536                                                    List_of_historians
## 5537                                                    List_of_historians
## 5538                                                    List_of_historians
## 5539                                                    List_of_historians
## 5540                                                    List_of_historians
## 5541                                                    List_of_historians
## 5542                                                    List_of_historians
## 5543                                                    List_of_historians
## 5544                                                    List_of_historians
## 5545                                                    List_of_historians
## 5546                                                    List_of_historians
## 5547                                                    List_of_historians
## 5548                                                    List_of_historians
## 5549                                                    List_of_historians
## 5550                                                    List_of_historians
## 5551                                                    List_of_historians
## 5552                                                    List_of_historians
## 5553                                                    List_of_historians
## 5554                                                    List_of_historians
## 5555                                                    List_of_historians
## 5556                                                    List_of_historians
## 5557                                                    List_of_historians
## 5558                                                    List_of_historians
## 5559                                                    List_of_historians
## 5560                                                    List_of_historians
## 5561                                                    List_of_historians
## 5562                                                    List_of_historians
## 5563                                                    List_of_historians
## 5564                                                    List_of_historians
## 5565                                                    List_of_historians
## 5566                                                    List_of_historians
## 5567                                                    List_of_historians
## 5568                                                    List_of_historians
## 5569                                                    List_of_historians
## 5570                                                    List_of_historians
## 5571                                                    List_of_historians
## 5572                                                    List_of_historians
## 5573                                                    List_of_historians
## 5574                                                    List_of_historians
## 5575                                                    List_of_historians
## 5576                                                    List_of_historians
## 5577                                                    List_of_historians
## 5578                                                    List_of_historians
## 5579                                                    List_of_historians
## 5580                                                    List_of_historians
## 5581                                                    List_of_historians
## 5582                                                    List_of_historians
## 5583                                                    List_of_historians
## 5584                                                    List_of_historians
## 5585                                                    List_of_historians
## 5586                                                    List_of_historians
## 5587                                                    List_of_historians
## 5588                                                    List_of_historians
## 5589                                                    List_of_historians
## 5590                                                    List_of_historians
## 5591                                                    List_of_historians
## 5592                                                    List_of_historians
## 5593                                                    List_of_historians
## 5594                                                    List_of_historians
## 5595                                                    List_of_historians
## 5596                                                    List_of_historians
## 5597                                                    List_of_historians
## 5598                                                    List_of_historians
## 5599                                                    List_of_historians
## 5600                                                    List_of_historians
## 5601                                                    List_of_historians
## 5602                                                    List_of_historians
## 5603                                                    List_of_historians
## 5604                                                    List_of_historians
## 5605                                                    List_of_historians
## 5606                                                    List_of_historians
## 5607                                                    List_of_historians
## 5608                                                    List_of_historians
## 5609                                                    List_of_historians
## 5610                                                    List_of_historians
## 5611                                                    List_of_historians
## 5612                                                    List_of_historians
## 5613                                                    List_of_historians
## 5614                                                    List_of_historians
## 5615                                                    List_of_historians
## 5616                                                    List_of_historians
## 5617                                                    List_of_historians
## 5618                                                    List_of_historians
## 5619                                                    List_of_historians
## 5620                                                    List_of_historians
## 5621                                                    List_of_historians
## 5622                                                    List_of_historians
## 5623                                                    List_of_historians
## 5624                                                    List_of_historians
## 5625                                                    List_of_historians
## 5626                                                    List_of_historians
## 5627                                                    List_of_historians
## 5628                                                    List_of_historians
## 5629                                                    List_of_historians
## 5630                                                    List_of_historians
## 5631                                                    List_of_historians
## 5632                                                    List_of_historians
## 5633                                                    List_of_historians
## 5634                                                    List_of_historians
## 5635                                                    List_of_historians
## 5636                                                    List_of_historians
## 5637                                                    List_of_historians
## 5638                                                    List_of_historians
## 5639                                                    List_of_historians
## 5640                                                    List_of_historians
## 5641                                                    List_of_historians
## 5642                                                    List_of_historians
## 5643                                                    List_of_historians
## 5644                                                    List_of_historians
## 5645                                                    List_of_historians
## 5646                                                    List_of_historians
## 5647                                                    List_of_historians
## 5648                                                    List_of_historians
## 5649                                                    List_of_historians
## 5650                                                    List_of_historians
## 5651                                                    List_of_historians
## 5652                                                    List_of_historians
## 5653                                                    List_of_historians
## 5654                                                    List_of_historians
## 5655                                                    List_of_historians
## 5656                                                    List_of_historians
## 5657                                                    List_of_historians
## 5658                                                    List_of_historians
## 5659                                                    List_of_historians
## 5660                                                    List_of_historians
## 5661                                                    List_of_historians
## 5662                                                    List_of_historians
## 5663                                                    List_of_historians
## 5664                                                    List_of_historians
## 5665                                                    List_of_historians
## 5666                                                    List_of_historians
## 5667                                                    List_of_historians
## 5668                                                    List_of_historians
## 5669                                                    List_of_historians
## 5670                                                    List_of_historians
## 5671                                                    List_of_historians
## 5672                                                    List_of_historians
## 5673                                                    List_of_historians
## 5674                                                    List_of_historians
## 5675                                                    List_of_historians
## 5676                                                    List_of_historians
## 5677                                                    List_of_historians
## 5678                                                    List_of_historians
## 5679                                                    List_of_historians
## 5680                                                    List_of_historians
## 5681                                                    List_of_historians
## 5682                                                    List_of_historians
## 5683                                                    List_of_historians
## 5684                                                    List_of_historians
## 5685                                                    List_of_historians
## 5686                                                    List_of_historians
## 5687                                                    List_of_historians
## 5688                                                    List_of_historians
## 5689                                                    List_of_historians
## 5690                                                    List_of_historians
## 5691                                                    List_of_historians
## 5692                                                    List_of_historians
## 5693                                                    List_of_historians
## 5694                                                    List_of_historians
## 5695                                                    List_of_historians
## 5696                                                    List_of_historians
## 5697                                                    List_of_historians
## 5698                                                    List_of_historians
## 5699                                                    List_of_historians
## 5700                                                    List_of_historians
## 5701                                                    List_of_historians
## 5702                                                    List_of_historians
## 5703                                                    List_of_historians
## 5704                                                    List_of_historians
## 5705                                                    List_of_historians
## 5706                                                    List_of_historians
## 5707                                                    List_of_historians
## 5708                                                    List_of_historians
## 5709                                                    List_of_historians
## 5710                                                    List_of_historians
## 5711                                                    List_of_historians
## 5712                                                    List_of_historians
## 5713                                                    List_of_historians
## 5714                                                    List_of_historians
## 5715                                                    List_of_historians
## 5716                                                    List_of_historians
## 5717                                                    List_of_historians
## 5718                                                    List_of_historians
## 5719                                                    List_of_historians
## 5720                                                    List_of_historians
## 5721                                                    List_of_historians
## 5722                                                    List_of_historians
## 5723                                                    List_of_historians
## 5724                                                    List_of_historians
## 5725                                                    List_of_historians
## 5726                                                    List_of_historians
## 5727                                                    List_of_historians
## 5728                                                    List_of_historians
## 5729                                                    List_of_historians
## 5730                                                    List_of_historians
## 5731                                                    List_of_historians
## 5732                                                    List_of_historians
## 5733                                                    List_of_historians
## 5734                                                    List_of_historians
## 5735                                                    List_of_historians
## 5736                                                    List_of_historians
## 5737                                                    List_of_historians
## 5738                                                    List_of_historians
## 5739                                                    List_of_historians
## 5740                                                    List_of_historians
## 5741                                                    List_of_historians
## 5742                                                    List_of_historians
## 5743                                                    List_of_historians
## 5744                                                    List_of_historians
## 5745                                                    List_of_historians
## 5746                                                    List_of_historians
## 5747                                                    List_of_historians
## 5748                                                    List_of_historians
## 5749                                                    List_of_historians
## 5750                                                    List_of_historians
## 5751                                                    List_of_historians
## 5752                                                    List_of_historians
## 5753                                                    List_of_historians
## 5754                                                    List_of_historians
## 5755                                                    List_of_historians
## 5756                                                    List_of_historians
## 5757                                                    List_of_historians
## 5758                                                    List_of_historians
## 5759                                                    List_of_historians
## 5760                                                    List_of_historians
## 5761                                                    List_of_historians
## 5762                                                    List_of_historians
## 5763                                                    List_of_historians
## 5764                                                    List_of_historians
## 5765                                                    List_of_historians
## 5766                                                    List_of_historians
## 5767                                                    List_of_historians
## 5768                                                    List_of_historians
## 5769                                                    List_of_historians
## 5770                                                    List_of_historians
## 5771                                                    List_of_historians
## 5772                                                    List_of_historians
## 5773                                                    List_of_historians
## 5774                                                    List_of_historians
## 5775                                                    List_of_historians
## 5776                                                    List_of_historians
## 5777                                                    List_of_historians
## 5778                                                    List_of_historians
## 5779                                                    List_of_historians
## 5780                                                    List_of_historians
## 5781                                                    List_of_historians
## 5782                                                    List_of_historians
## 5783                                                    List_of_historians
## 5784                                                    List_of_historians
## 5785                                                    List_of_historians
## 5786                                                    List_of_historians
## 5787                                                    List_of_historians
## 5788                                                    List_of_historians
## 5789                                                    List_of_historians
## 5790                                                    List_of_historians
## 5791                                                    List_of_historians
## 5792                                                    List_of_historians
## 5793                                                    List_of_historians
## 5794                                                    List_of_historians
## 5795                                                    List_of_historians
## 5796                                                    List_of_historians
## 5797                                                    List_of_historians
## 5798                                                    List_of_historians
## 5799                                                    List_of_historians
## 5800                                                    List_of_historians
## 5801                                                    List_of_historians
## 5802                                                    List_of_historians
## 5803                                                    List_of_historians
## 5804                                                    List_of_historians
## 5805                                                    List_of_historians
## 5806                                                    List_of_historians
## 5807                                                    List_of_historians
## 5808                                                    List_of_historians
## 5809                                                    List_of_historians
## 5810                                                    List_of_historians
## 5811                                                    List_of_historians
## 5812                                                    List_of_historians
## 5813                                                    List_of_historians
## 5814                                                    List_of_historians
## 5815                                                    List_of_historians
## 5816                                                    List_of_historians
## 5817                                                    List_of_historians
## 5818                                                    List_of_historians
## 5819                                                    List_of_historians
## 5820                                                    List_of_historians
## 5821                                                    List_of_historians
## 5822                                                    List_of_historians
## 5823                                                    List_of_historians
## 5824                                                    List_of_historians
## 5825                                                    List_of_historians
## 5826                                                    List_of_historians
## 5827                                                    List_of_historians
## 5828                                                    List_of_historians
## 5829                                                    List_of_historians
## 5830                                                    List_of_historians
## 5831                                                    List_of_historians
## 5832                                                    List_of_historians
## 5833                                                    List_of_historians
## 5834                                                    List_of_historians
## 5835                                                    List_of_historians
## 5836                                                    List_of_historians
## 5837                                                    List_of_historians
## 5838                                                    List_of_historians
## 5839                                                    List_of_historians
## 5840                                                    List_of_historians
## 5841                                                    List_of_historians
## 5842                                                    List_of_historians
## 5843                                                    List_of_historians
## 5844                                                    List_of_historians
## 5845                                                    List_of_historians
## 5846                                                    List_of_historians
## 5847                                                    List_of_historians
## 5848                                                    List_of_historians
## 5849                                                    List_of_historians
## 5850                                                    List_of_historians
## 5851                                                    List_of_historians
## 5852                                                    List_of_historians
## 5853                                                    List_of_historians
## 5854                                                    List_of_historians
## 5855                                                    List_of_historians
## 5856                                                    List_of_historians
## 5857                                                    List_of_historians
## 5858                                                    List_of_historians
## 5859                                                    List_of_historians
## 5860                                                    List_of_historians
## 5861                                                    List_of_historians
## 5862                                                    List_of_historians
## 5863                                                    List_of_historians
## 5864                                                    List_of_historians
## 5865                                                    List_of_historians
## 5866                                                    List_of_historians
## 5867                                                    List_of_historians
## 5868                                                    List_of_historians
## 5869                                                    List_of_historians
## 5870                                                    List_of_historians
## 5871                                                    List_of_historians
## 5872                                                    List_of_historians
## 5873                                                    List_of_historians
## 5874                                                    List_of_historians
## 5875                                                    List_of_historians
## 5876                                                    List_of_historians
## 5877                                                    List_of_historians
## 5878                                                    List_of_historians
## 5879                                                    List_of_historians
## 5880                                                    List_of_historians
## 5881                                                    List_of_historians
## 5882                                                    List_of_historians
## 5883                                                    List_of_historians
## 5884                                                    List_of_historians
## 5885                                                    List_of_historians
## 5886                                                    List_of_historians
## 5887                                                    List_of_historians
## 5888                                                    List_of_historians
## 5889                                                    List_of_historians
## 5890                                                    List_of_historians
## 5891                                                    List_of_historians
## 5892                                                    List_of_historians
## 5893                                                    List_of_historians
## 5894                                                    List_of_historians
## 5895                                                    List_of_historians
## 5896                                                    List_of_historians
## 5897                                                    List_of_historians
## 5898                                                    List_of_historians
## 5899                                                    List_of_historians
## 5900                                                    List_of_historians
## 5901                                                    List_of_historians
## 5902                                                    List_of_historians
## 5903                                                    List_of_historians
## 5904                                                    List_of_historians
## 5905                                                    List_of_historians
## 5906                                                    List_of_historians
## 5907                                                    List_of_historians
## 5908                                                    List_of_historians
## 5909                                                    List_of_historians
## 5910                                                    List_of_historians
## 5911                                                    List_of_historians
## 5912                                                    List_of_historians
## 5913                                                    List_of_historians
## 5914                                                    List_of_historians
## 5915                                                    List_of_historians
## 5916                                                    List_of_historians
## 5917                                                    List_of_historians
## 5918                                                    List_of_historians
## 5919                                                    List_of_historians
## 5920                                                    List_of_historians
## 5921                                                    List_of_historians
## 5922                                                    List_of_historians
## 5923                                                    List_of_historians
## 5924                                                    List_of_historians
## 5925                                                    List_of_historians
## 5926                                                    List_of_historians
## 5927                                                    List_of_historians
## 5928                                                    List_of_historians
## 5929                                                    List_of_historians
## 5930                                                    List_of_historians
## 5931                                                    List_of_historians
## 5932                                                    List_of_historians
## 5933                                                    List_of_historians
## 5934                                                    List_of_historians
## 5935                                                    List_of_historians
## 5936                                                    List_of_historians
## 5937                                                    List_of_historians
## 5938                                                    List_of_historians
## 5939                                                    List_of_historians
## 5940                                                    List_of_historians
## 5941                                                    List_of_historians
## 5942                                                    List_of_historians
## 5943                                                    List_of_historians
## 5944                                                    List_of_historians
## 5945                                                    List_of_historians
## 5946                                                    List_of_historians
## 5947                                                    List_of_historians
## 5948                                                    List_of_historians
## 5949                                                    List_of_historians
## 5950                                                    List_of_historians
## 5951                                                    List_of_historians
## 5952                                                    List_of_historians
## 5953                                                    List_of_historians
## 5954                                                    List_of_historians
## 5955                                                    List_of_historians
## 5956                                                    List_of_historians
## 5957                                                    List_of_historians
## 5958                                                    List_of_historians
## 5959                                                    List_of_historians
## 5960                                                    List_of_historians
## 5961                                                    List_of_historians
## 5962                                                    List_of_historians
## 5963                                                    List_of_historians
## 5964                                                    List_of_historians
## 5965                                                    List_of_historians
## 5966                                                    List_of_historians
## 5967                                                    List_of_historians
## 5968                                                    List_of_historians
## 5969                                                    List_of_historians
## 5970                                                    List_of_historians
## 5971                                                    List_of_historians
## 5972                                                    List_of_historians
## 5973                                                    List_of_historians
## 5974                                                    List_of_historians
## 5975                                                    List_of_historians
## 5976                                                    List_of_historians
## 5977                                                    List_of_historians
## 5978                                                    List_of_historians
## 5979                                                    List_of_historians
## 5980                                                    List_of_historians
## 5981                                                    List_of_historians
## 5982                                                    List_of_historians
## 5983                                                    List_of_historians
## 5984                                                    List_of_historians
## 5985                                                    List_of_historians
## 5986                                                    List_of_historians
## 5987                                                    List_of_historians
## 5988                                                    List_of_historians
## 5989                                                    List_of_historians
## 5990                                                    List_of_historians
## 5991                                                    List_of_historians
## 5992                                                    List_of_historians
## 5993                                                    List_of_historians
## 5994                                                    List_of_historians
## 5995                                                    List_of_historians
## 5996                                                    List_of_historians
## 5997                                                    List_of_historians
## 5998                                                    List_of_historians
## 5999                                                    List_of_historians
## 6000                                                    List_of_historians
## 6001                                                    List_of_historians
## 6002                                                    List_of_historians
## 6003                                                    List_of_historians
## 6004                                                    List_of_historians
## 6005                                                    List_of_historians
## 6006                                                    List_of_historians
## 6007                                                    List_of_historians
## 6008                                                    List_of_historians
## 6009                                                    List_of_historians
## 6010                                                    List_of_historians
## 6011                                                    List_of_historians
## 6012                                                    List_of_historians
## 6013                                                    List_of_historians
## 6014                                                    List_of_historians
## 6015                                                    List_of_historians
## 6016                                                    List_of_historians
## 6017                                                    List_of_historians
## 6018                                                    List_of_historians
## 6019                                                    List_of_historians
## 6020                                                    List_of_historians
## 6021                                                    List_of_historians
## 6022                                                    List_of_historians
## 6023                                                    List_of_historians
## 6024                                                    List_of_historians
## 6025                                                    List_of_historians
## 6026                                                    List_of_historians
## 6027                                                    List_of_historians
## 6028                                                    List_of_historians
## 6029                                                    List_of_historians
## 6030                                                    List_of_historians
## 6031                                                    List_of_historians
## 6032                                                    List_of_historians
## 6033                                                    List_of_historians
## 6034                                                    List_of_historians
## 6035                                                    List_of_historians
## 6036                                                    List_of_historians
## 6037                                                    List_of_historians
## 6038                                                    List_of_historians
## 6039                                                    List_of_historians
## 6040                                                    List_of_historians
## 6041                                                    List_of_historians
## 6042                                                    List_of_historians
## 6043                                                    List_of_historians
## 6044                                                    List_of_historians
## 6045                                                    List_of_historians
## 6046                                                    List_of_historians
## 6047                                                    List_of_historians
## 6048                                                    List_of_historians
## 6049                                                    List_of_historians
## 6050                                                    List_of_historians
## 6051                                                    List_of_historians
## 6052                                                    List_of_historians
## 6053                                                    List_of_historians
## 6054                                                    List_of_historians
## 6055                                                    List_of_historians
## 6056                                                    List_of_historians
## 6057                                                    List_of_historians
## 6058                                                    List_of_historians
## 6059                                                    List_of_historians
## 6060                                                    List_of_historians
## 6061                                                    List_of_historians
## 6062                                                    List_of_historians
## 6063                                                    List_of_historians
## 6064                                                    List_of_historians
## 6065                                                    List_of_historians
## 6066                                                    List_of_historians
## 6067                                                    List_of_historians
## 6068                                                    List_of_historians
## 6069                                                    List_of_historians
## 6070                                                    List_of_historians
## 6071                                                    List_of_historians
## 6072                                                    List_of_historians
## 6073                                                    List_of_historians
## 6074                                                    List_of_historians
## 6075                                                    List_of_historians
## 6076                                                    List_of_historians
## 6077                                                    List_of_historians
## 6078                                                    List_of_historians
## 6079                                                    List_of_historians
## 6080                                                    List_of_historians
## 6081                                                    List_of_historians
## 6082                                                    List_of_historians
## 6083                                                    List_of_historians
## 6084                                                    List_of_historians
## 6085                                                    List_of_historians
## 6086                                                    List_of_historians
## 6087                                                    List_of_historians
## 6088                                                    List_of_historians
## 6089                                                    List_of_historians
## 6090                                                    List_of_historians
## 6091                                                    List_of_historians
## 6092                                                    List_of_historians
## 6093                                                    List_of_historians
## 6094                                                    List_of_historians
## 6095                                                    List_of_historians
## 6096                                                    List_of_historians
## 6097                                                    List_of_historians
## 6098                                                    List_of_historians
## 6099                                                    List_of_historians
## 6100                                                    List_of_historians
## 6101                                                    List_of_historians
## 6102                                                    List_of_historians
## 6103                                                    List_of_historians
## 6104                                                    List_of_historians
## 6105                                                    List_of_historians
## 6106                                                    List_of_historians
## 6107                                                    List_of_historians
## 6108                                                    List_of_historians
## 6109                                                    List_of_historians
## 6110                                                    List_of_historians
## 6111                                                    List_of_historians
## 6112                                                    List_of_historians
## 6113                                                    List_of_historians
## 6114                                                    List_of_historians
## 6115                                                    List_of_historians
## 6116                                                    List_of_historians
## 6117                                                    List_of_historians
## 6118                                                    List_of_historians
## 6119                                                    List_of_historians
## 6120                                                    List_of_historians
## 6121                                                    List_of_historians
## 6122                                                    List_of_historians
## 6123                                                    List_of_historians
## 6124                                                    List_of_historians
## 6125                                                    List_of_historians
## 6126                                                    List_of_historians
## 6127                                                    List_of_historians
## 6128                                                    List_of_historians
## 6129                                                    List_of_historians
## 6130                                                    List_of_historians
## 6131                                                    List_of_historians
## 6132                                                    List_of_historians
## 6133                                                    List_of_historians
## 6134                                                    List_of_historians
## 6135                                                    List_of_historians
## 6136                                                    List_of_historians
## 6137                                                    List_of_historians
## 6138                                                    List_of_historians
## 6139                                                    List_of_historians
## 6140                                                    List_of_historians
## 6141                                                    List_of_historians
## 6142                                                    List_of_historians
## 6143                                                    List_of_historians
## 6144                                                    List_of_historians
## 6145                                                    List_of_historians
## 6146                                                    List_of_historians
## 6147                                                    List_of_historians
## 6148                                                    List_of_historians
## 6149                                                    List_of_historians
## 6150                                                    List_of_historians
## 6151                                                    List_of_historians
## 6152                                                    List_of_historians
## 6153                                                    List_of_historians
## 6154                                                    List_of_historians
## 6155                                                    List_of_historians
## 6156                                                    List_of_historians
## 6157                                                    List_of_historians
## 6158                                                    List_of_historians
## 6159                                                    List_of_historians
## 6160                                                    List_of_historians
## 6161                                                    List_of_historians
## 6162                                                    List_of_historians
## 6163                                                    List_of_historians
## 6164                                                    List_of_historians
## 6165                                                    List_of_historians
## 6166                                                    List_of_historians
## 6167                                                    List_of_historians
## 6168                                                    List_of_historians
## 6169                                                    List_of_historians
## 6170                                                    List_of_historians
## 6171                                                    List_of_historians
## 6172                                                    List_of_historians
## 6173                                                    List_of_historians
## 6174                                                    List_of_historians
## 6175                                                    List_of_historians
## 6176                                                    List_of_historians
## 6177                                                    List_of_historians
## 6178                                                    List_of_historians
## 6179                                                    List_of_historians
## 6180                                                    List_of_historians
## 6181                                                    List_of_historians
## 6182                                                    List_of_historians
## 6183                                                    List_of_historians
## 6184                                                    List_of_historians
## 6185                                                    List_of_historians
## 6186                                                    List_of_historians
## 6187                                                    List_of_historians
## 6188                                                    List_of_historians
## 6189                                                    List_of_historians
## 6190                                                    List_of_historians
## 6191                                                    List_of_historians
## 6192                                                    List_of_historians
## 6193                                                    List_of_historians
## 6194                                                    List_of_historians
## 6195                                                    List_of_historians
## 6196                                                    List_of_historians
## 6197                                                    List_of_historians
## 6198                                                    List_of_historians
## 6199                                                    List_of_historians
## 6200                                                    List_of_historians
## 6201                                                    List_of_historians
## 6202                                                    List_of_historians
## 6203                                                    List_of_historians
## 6204                                                    List_of_historians
## 6205                                                    List_of_historians
## 6206                                                    List_of_historians
## 6207                                                    List_of_historians
## 6208                                                    List_of_historians
## 6209                                                    List_of_historians
## 6210                                                    List_of_historians
## 6211                                                    List_of_historians
## 6212                                                    List_of_historians
## 6213                                                    List_of_historians
## 6214                                                    List_of_historians
## 6215                                                    List_of_historians
## 6216                                                    List_of_historians
## 6217                                                    List_of_historians
## 6218                                                    List_of_historians
## 6219                                                    List_of_historians
## 6220                                                    List_of_historians
## 6221                                                    List_of_historians
## 6222                                                    List_of_historians
## 6223                                                    List_of_historians
## 6224                                                    List_of_historians
## 6225                                                    List_of_historians
## 6226                                                    List_of_historians
## 6227                                                    List_of_historians
## 6228                                                    List_of_historians
## 6229                                                    List_of_historians
## 6230                                                    List_of_historians
## 6231                                                    List_of_historians
## 6232                                                    List_of_historians
## 6233                                                    List_of_historians
## 6234                                                    List_of_historians
## 6235                                                    List_of_historians
## 6236                                                    List_of_historians
## 6237                                                    List_of_historians
## 6238                                                    List_of_historians
## 6239                                                    List_of_historians
## 6240                                                    List_of_historians
## 6241                                                    List_of_historians
## 6242                                                    List_of_historians
## 6243                                                    List_of_historians
## 6244                                                    List_of_historians
## 6245                                                    List_of_historians
## 6246                                                    List_of_historians
## 6247                                                    List_of_historians
## 6248                                                    List_of_historians
## 6249                                                    List_of_historians
## 6250                                                    List_of_historians
## 6251                                                    List_of_historians
## 6252                                                       Fulton,_Alabama
## 6253                                                       Fulton,_Alabama
## 6254                                                       Fulton,_Alabama
## 6255                                                       Fulton,_Alabama
## 6256                                                       Fulton,_Alabama
## 6257                                                       Fulton,_Alabama
## 6258                                                       Fulton,_Alabama
## 6259                                                       Fulton,_Alabama
## 6260                                                       Fulton,_Alabama
## 6261                                                       Fulton,_Alabama
## 6262                                                       Fulton,_Alabama
## 6263                                                       Fulton,_Alabama
## 6264                                                       Fulton,_Alabama
## 6265                                                       Fulton,_Alabama
## 6266                                                       Fulton,_Alabama
## 6267                                                       Fulton,_Alabama
## 6268                                                       Fulton,_Alabama
## 6269                                                       Fulton,_Alabama
## 6270                                                       Fulton,_Alabama
## 6271                                                       Fulton,_Alabama
## 6272                                                       Fulton,_Alabama
## 6273                                                       Fulton,_Alabama
## 6274                                                       Fulton,_Alabama
## 6275                                                       Fulton,_Alabama
## 6276                                                       Fulton,_Alabama
## 6277                                                       Fulton,_Alabama
## 6278                                                       Fulton,_Alabama
## 6279                                                       Fulton,_Alabama
## 6280                                                       Fulton,_Alabama
## 6281                                                     Rockford,_Alabama
## 6282                                                     Rockford,_Alabama
## 6283                                                     Rockford,_Alabama
## 6284                                                     Rockford,_Alabama
## 6285                                                     Rockford,_Alabama
## 6286                                                     Rockford,_Alabama
## 6287                                                     Rockford,_Alabama
## 6288                                                     Rockford,_Alabama
## 6289                                                     Rockford,_Alabama
## 6290                                                     Rockford,_Alabama
## 6291                                                     Rockford,_Alabama
## 6292                                                     Rockford,_Alabama
## 6293                                                     Rockford,_Alabama
## 6294                                                     Rockford,_Alabama
## 6295                                                     Rockford,_Alabama
## 6296                                                     Rockford,_Alabama
## 6297                                                     Rockford,_Alabama
## 6298                                                     Rockford,_Alabama
## 6299                                                     Rockford,_Alabama
## 6300                                                     Rockford,_Alabama
## 6301                                                     Rockford,_Alabama
## 6302                                                     Rockford,_Alabama
## 6303                                                     Rockford,_Alabama
## 6304                                                     Rockford,_Alabama
## 6305                                                     Rockford,_Alabama
## 6306                                                     Rockford,_Alabama
## 6307                                                     Rockford,_Alabama
## 6308                                                     Rockford,_Alabama
## 6309                                                 Level_Plains,_Alabama
## 6310                                                 Level_Plains,_Alabama
## 6311                                                 Level_Plains,_Alabama
## 6312                                                 Level_Plains,_Alabama
## 6313                                                 Level_Plains,_Alabama
## 6314                                                 Level_Plains,_Alabama
## 6315                                                 Level_Plains,_Alabama
## 6316                                                 Level_Plains,_Alabama
## 6317                                                 Level_Plains,_Alabama
## 6318                                                 Level_Plains,_Alabama
## 6319                                                 Level_Plains,_Alabama
## 6320                                                 Level_Plains,_Alabama
## 6321                                                 Level_Plains,_Alabama
## 6322                                                 Level_Plains,_Alabama
## 6323                                                 Level_Plains,_Alabama
## 6324                                                 Level_Plains,_Alabama
## 6325                                                 Level_Plains,_Alabama
## 6326                                                 Level_Plains,_Alabama
## 6327                                                 Level_Plains,_Alabama
## 6328                                                 Level_Plains,_Alabama
## 6329                                                 Level_Plains,_Alabama
## 6330                                                 Level_Plains,_Alabama
## 6331                                                 Level_Plains,_Alabama
## 6332                                                 Level_Plains,_Alabama
## 6333                                                 Level_Plains,_Alabama
## 6334                                                 Level_Plains,_Alabama
## 6335                                                 Level_Plains,_Alabama
## 6336                                                 Level_Plains,_Alabama
## 6337                                                 Level_Plains,_Alabama
## 6338                                                   Pine_Ridge,_Alabama
## 6339                                                   Pine_Ridge,_Alabama
## 6340                                                   Pine_Ridge,_Alabama
## 6341                                                   Pine_Ridge,_Alabama
## 6342                                                   Pine_Ridge,_Alabama
## 6343                                                   Pine_Ridge,_Alabama
## 6344                                                   Pine_Ridge,_Alabama
## 6345                                                   Pine_Ridge,_Alabama
## 6346                                                   Pine_Ridge,_Alabama
## 6347                                                   Pine_Ridge,_Alabama
## 6348                                                   Pine_Ridge,_Alabama
## 6349                                                   Pine_Ridge,_Alabama
## 6350                                                   Pine_Ridge,_Alabama
## 6351                                                   Pine_Ridge,_Alabama
## 6352                                                   Pine_Ridge,_Alabama
## 6353                                                   Pine_Ridge,_Alabama
## 6354                                                   Pine_Ridge,_Alabama
## 6355                                                   Pine_Ridge,_Alabama
## 6356                                                   Pine_Ridge,_Alabama
## 6357                                                   Pine_Ridge,_Alabama
## 6358                                                   Pine_Ridge,_Alabama
## 6359                                                   Pine_Ridge,_Alabama
## 6360                                                   Pine_Ridge,_Alabama
## 6361                                                   Pine_Ridge,_Alabama
## 6362                                                   Pine_Ridge,_Alabama
## 6363                                                   Pine_Ridge,_Alabama
## 6364                                                      Attalla,_Alabama
## 6365                                                      Attalla,_Alabama
## 6366                                                      Attalla,_Alabama
## 6367                                                      Attalla,_Alabama
## 6368                                                      Attalla,_Alabama
## 6369                                                      Attalla,_Alabama
## 6370                                                      Attalla,_Alabama
## 6371                                                      Attalla,_Alabama
## 6372                                                      Attalla,_Alabama
## 6373                                                      Attalla,_Alabama
## 6374                                                      Attalla,_Alabama
## 6375                                                      Attalla,_Alabama
## 6376                                                      Attalla,_Alabama
## 6377                                                      Attalla,_Alabama
## 6378                                                      Attalla,_Alabama
## 6379                                                      Attalla,_Alabama
## 6380                                                      Attalla,_Alabama
## 6381                                                      Attalla,_Alabama
## 6382                                                      Attalla,_Alabama
## 6383                                                      Attalla,_Alabama
## 6384                                                      Attalla,_Alabama
## 6385                                                      Attalla,_Alabama
## 6386                                                      Attalla,_Alabama
## 6387                                                      Attalla,_Alabama
## 6388                                                      Attalla,_Alabama
## 6389                                                      Attalla,_Alabama
## 6390                                                      Attalla,_Alabama
## 6391                                                      Attalla,_Alabama
## 6392                                                      Attalla,_Alabama
## 6393                                                      Attalla,_Alabama
## 6394                                                      Attalla,_Alabama
## 6395                                                      Attalla,_Alabama
## 6396                                                      Attalla,_Alabama
## 6397                                                      Attalla,_Alabama
## 6398                                                      Attalla,_Alabama
## 6399                                                      Attalla,_Alabama
## 6400                                                      Attalla,_Alabama
## 6401                                                      Attalla,_Alabama
## 6402                                                      Attalla,_Alabama
## 6403                                                      Attalla,_Alabama
## 6404                                                      Attalla,_Alabama
## 6405                                                      Attalla,_Alabama
## 6406                                                      Attalla,_Alabama
## 6407                                                      Attalla,_Alabama
## 6408                                                      Attalla,_Alabama
## 6409                                                      Attalla,_Alabama
## 6410                                                      Attalla,_Alabama
## 6411                                                      Attalla,_Alabama
## 6412                                                      Attalla,_Alabama
## 6413                                                      Attalla,_Alabama
## 6414                                                      Attalla,_Alabama
## 6415                                                      Attalla,_Alabama
## 6416                                                      Attalla,_Alabama
## 6417                                                      Attalla,_Alabama
## 6418                                                      Attalla,_Alabama
## 6419                                                      Attalla,_Alabama
## 6420                                                      Attalla,_Alabama
## 6421                                                      Attalla,_Alabama
## 6422                                                      Attalla,_Alabama
## 6423                                                      Attalla,_Alabama
## 6424                                                      Attalla,_Alabama
## 6425                                                      Attalla,_Alabama
## 6426                                                      Attalla,_Alabama
## 6427                                                      Attalla,_Alabama
## 6428                                                      Attalla,_Alabama
## 6429                                                      Attalla,_Alabama
## 6430                                                      Attalla,_Alabama
## 6431                                                      Attalla,_Alabama
## 6432                                                      Attalla,_Alabama
## 6433                                                          Earless_seal
## 6434                                                          Earless_seal
## 6435                                                          Earless_seal
## 6436                                                          Earless_seal
## 6437                                                          Earless_seal
## 6438                                                          Earless_seal
## 6439                                                          Earless_seal
## 6440                                                          Earless_seal
## 6441                                                          Earless_seal
## 6442                                                          Earless_seal
## 6443                                                          Earless_seal
## 6444                                                          Earless_seal
## 6445                                                          Earless_seal
## 6446                                                          Earless_seal
## 6447                                                          Earless_seal
## 6448                                                          Earless_seal
## 6449                                                          Earless_seal
## 6450                                                          Earless_seal
## 6451                                                          Earless_seal
## 6452                                                          Earless_seal
## 6453                                                          Earless_seal
## 6454                                                          Earless_seal
## 6455                                                          Earless_seal
## 6456                                                          Earless_seal
## 6457                                                          Earless_seal
## 6458                                                          Earless_seal
## 6459                                                          Earless_seal
## 6460                                                          Earless_seal
## 6461                                                          Earless_seal
## 6462                                                          Earless_seal
## 6463                                                          Earless_seal
## 6464                                                          Earless_seal
## 6465                                                          Earless_seal
## 6466                                                          Earless_seal
## 6467                                                          Earless_seal
## 6468                                                          Earless_seal
## 6469                                                          Earless_seal
## 6470                                                          Earless_seal
## 6471                                                          Earless_seal
## 6472                                                          Earless_seal
## 6473                                                          Earless_seal
## 6474                                                          Earless_seal
## 6475                                                          Earless_seal
## 6476                                                          Earless_seal
## 6477                                                          Earless_seal
## 6478                                                          Earless_seal
## 6479                                                          Earless_seal
## 6480                                                          Earless_seal
## 6481                                                          Earless_seal
## 6482                                                          Earless_seal
## 6483                                                          Earless_seal
## 6484                                                          Earless_seal
## 6485                                                          Earless_seal
## 6486                                                          Earless_seal
## 6487                                                          Earless_seal
## 6488                                                          Earless_seal
## 6489                                                          Earless_seal
## 6490                                                          Earless_seal
## 6491                                                          Earless_seal
## 6492                                                          Earless_seal
## 6493                                                          Earless_seal
## 6494                                                          Earless_seal
## 6495                                                          Earless_seal
## 6496                                                          Earless_seal
## 6497                                                          Earless_seal
## 6498                                                          Earless_seal
## 6499                                                          Earless_seal
## 6500                                                          Earless_seal
## 6501                                                          Earless_seal
## 6502                                                          Earless_seal
## 6503                                                          Earless_seal
## 6504                                                          Earless_seal
## 6505                                                          Earless_seal
## 6506                                                          Earless_seal
## 6507                                                          Earless_seal
## 6508                                                          Earless_seal
## 6509                                                          Earless_seal
## 6510                                                          Earless_seal
## 6511                                                          Earless_seal
## 6512                                                          Earless_seal
## 6513                                                          Earless_seal
## 6514                                                          Earless_seal
## 6515                                                          Earless_seal
## 6516                                                          Earless_seal
## 6517                                                          Earless_seal
## 6518                                                          Earless_seal
## 6519                                                          Earless_seal
## 6520                                                          Earless_seal
## 6521                                                          Earless_seal
## 6522                                                          Earless_seal
## 6523                                                          Earless_seal
## 6524                                                          Earless_seal
## 6525                                                          Earless_seal
## 6526                                                          Earless_seal
## 6527                                                          Earless_seal
## 6528                                                          Earless_seal
## 6529                                                          Earless_seal
## 6530                                                          Earless_seal
## 6531                                                          Earless_seal
## 6532                                                          Earless_seal
## 6533                                                          Earless_seal
## 6534                                                          Earless_seal
## 6535                                                          Earless_seal
## 6536                                                          Earless_seal
## 6537                                                          Earless_seal
## 6538                                                          Earless_seal
## 6539                                                          Earless_seal
## 6540                                                          Earless_seal
## 6541                                                          Earless_seal
## 6542                                                          Earless_seal
## 6543                                                          Earless_seal
## 6544                                                          Earless_seal
## 6545                                                          Earless_seal
## 6546                                                          Earless_seal
## 6547                                                          Earless_seal
## 6548                                                          Earless_seal
## 6549                                                          Earless_seal
## 6550                                                          Earless_seal
## 6551                                                          Earless_seal
## 6552                                                          Earless_seal
## 6553                                                          Earless_seal
## 6554                                                          Earless_seal
## 6555                                                          Earless_seal
## 6556                                                          Earless_seal
## 6557                                                          Earless_seal
## 6558                                                          Earless_seal
## 6559                                                          Earless_seal
## 6560                                                          Earless_seal
## 6561                                                          Earless_seal
## 6562                                                          Earless_seal
## 6563                                                          Earless_seal
## 6564                                                          Earless_seal
## 6565                                                          Earless_seal
## 6566                                                          Earless_seal
## 6567                                                          Earless_seal
## 6568                                                          Earless_seal
## 6569                                                          Earless_seal
## 6570                                                          Earless_seal
## 6571                                                          Earless_seal
## 6572                                                          Earless_seal
## 6573                                                          Earless_seal
## 6574                                                          Earless_seal
## 6575                                                          Earless_seal
## 6576                                                          Earless_seal
## 6577                                                          Earless_seal
## 6578                                                          Earless_seal
## 6579                                                          Earless_seal
## 6580                                                          Earless_seal
## 6581                                                          Earless_seal
## 6582                                                          Earless_seal
## 6583                                                          Earless_seal
## 6584                                                          Earless_seal
## 6585                                                          Earless_seal
## 6586                                                          Earless_seal
## 6587                                                          Earless_seal
## 6588                                                          Earless_seal
## 6589                                                          Earless_seal
## 6590                                                          Earless_seal
## 6591                                                          Earless_seal
## 6592                                                          Earless_seal
## 6593                                                          Earless_seal
## 6594                                                          Earless_seal
## 6595                                                          Earless_seal
## 6596                                                          Earless_seal
## 6597                                                          Earless_seal
## 6598                                                          Earless_seal
## 6599                                                          Earless_seal
## 6600                                                          Earless_seal
## 6601                                                          Earless_seal
## 6602                                                          Earless_seal
## 6603                                                          Earless_seal
## 6604                                                          Earless_seal
## 6605                                                          Earless_seal
## 6606                                                          Earless_seal
## 6607                                                          Earless_seal
## 6608                                                          Earless_seal
## 6609                                                          Earless_seal
## 6610                                                          Earless_seal
## 6611                                                          Earless_seal
## 6612                                                          Earless_seal
## 6613                                                          Earless_seal
## 6614                                                          Earless_seal
## 6615                                                          Earless_seal
## 6616                                                          Earless_seal
## 6617                                                          Earless_seal
## 6618                                                          Earless_seal
## 6619                                                          Earless_seal
## 6620                                                          Earless_seal
## 6621                                                          Earless_seal
## 6622                                                          Earless_seal
## 6623                                                          Earless_seal
## 6624                                                          Earless_seal
## 6625                                                          Earless_seal
## 6626                                                          Earless_seal
## 6627                                                          Earless_seal
## 6628                                                          Earless_seal
## 6629                                                          Earless_seal
## 6630                                                          Earless_seal
## 6631                                                          Earless_seal
## 6632                                                          Earless_seal
## 6633                                                          Earless_seal
## 6634                                                          Earless_seal
## 6635                                                          Earless_seal
## 6636                                                          Earless_seal
## 6637                                                          Earless_seal
## 6638                                                          Earless_seal
## 6639                                                          Earless_seal
## 6640                                                          Earless_seal
## 6641                                                          Earless_seal
## 6642                                                          Earless_seal
## 6643                                                          Earless_seal
## 6644                                                          Earless_seal
## 6645                                                          Earless_seal
## 6646                                                          Earless_seal
## 6647                                                          Earless_seal
## 6648                                                          Earless_seal
## 6649                                                          Earless_seal
## 6650                                                          Earless_seal
## 6651                                                          Earless_seal
## 6652                                                          Earless_seal
## 6653                                                          Earless_seal
## 6654                                                          Earless_seal
## 6655                                                          Earless_seal
## 6656                                                          Earless_seal
## 6657                                                          Earless_seal
## 6658                                                          Earless_seal
## 6659                                                          Earless_seal
## 6660                                                          Earless_seal
## 6661                                                          Earless_seal
## 6662                                                          Earless_seal
## 6663                                                          Earless_seal
## 6664                                                          Earless_seal
## 6665                                                                 Gules
## 6666                                                                 Gules
## 6667                                                                 Gules
## 6668                                                                 Gules
## 6669                                                                 Gules
## 6670                                                                 Gules
## 6671                                                                 Gules
## 6672                                                                 Gules
## 6673                                                                 Gules
## 6674                                                                 Gules
## 6675                                                                 Gules
## 6676                                                                 Gules
## 6677                                                                 Gules
## 6678                                                                 Gules
## 6679                                                                 Gules
## 6680                                                                 Gules
## 6681                                                                 Gules
## 6682                                                                 Gules
## 6683                                                                 Gules
## 6684                                                                 Gules
## 6685                                                                 Gules
## 6686                                                                 Gules
## 6687                                                                 Gules
## 6688                                                                 Gules
## 6689                                                                 Gules
## 6690                                                                 Gules
## 6691                                                                 Gules
## 6692                                                                 Gules
## 6693                                                                 Gules
## 6694                                                                 Gules
## 6695                                                                 Gules
## 6696                                                                 Gules
## 6697                                                                 Gules
## 6698                                                                 Gules
## 6699                                                                 Gules
## 6700                                                                 Gules
## 6701                                                                 Gules
## 6702                                                                 Gules
## 6703                                                                 Gules
## 6704                                                                 Gules
## 6705                                                                 Gules
## 6706                                                                 Gules
## 6707                                                                 Gules
## 6708                                                                 Gules
## 6709                                                     Nightmute,_Alaska
## 6710                                                     Nightmute,_Alaska
## 6711                                                     Nightmute,_Alaska
## 6712                                                     Nightmute,_Alaska
## 6713                                                     Nightmute,_Alaska
## 6714                                                     Nightmute,_Alaska
## 6715                                                     Nightmute,_Alaska
## 6716                                                     Nightmute,_Alaska
## 6717                                                     Nightmute,_Alaska
## 6718                                                     Nightmute,_Alaska
## 6719                                                     Nightmute,_Alaska
## 6720                                                     Nightmute,_Alaska
## 6721                                                     Nightmute,_Alaska
## 6722                                                     Nightmute,_Alaska
## 6723                                                     Nightmute,_Alaska
## 6724                                                     Nightmute,_Alaska
## 6725                                                     Nightmute,_Alaska
## 6726                                                     Nightmute,_Alaska
## 6727                                                     Nightmute,_Alaska
## 6728                                                     Nightmute,_Alaska
## 6729                                                     Nightmute,_Alaska
## 6730                                                     Nightmute,_Alaska
## 6731                                                     Nightmute,_Alaska
## 6732                                                     Nightmute,_Alaska
## 6733                                                     Nightmute,_Alaska
## 6734                                                     Nightmute,_Alaska
## 6735                                                     Nightmute,_Alaska
## 6736                                                     Nightmute,_Alaska
## 6737                                                     Nightmute,_Alaska
## 6738                                                     Nightmute,_Alaska
## 6739                                                     Nightmute,_Alaska
## 6740                                                     Nightmute,_Alaska
## 6741                                                     Nightmute,_Alaska
## 6742                                                     Nightmute,_Alaska
## 6743                                                     Nightmute,_Alaska
## 6744                                                     Nightmute,_Alaska
## 6745                                                     Nightmute,_Alaska
## 6746                                                      Tatitlek,_Alaska
## 6747                                                      Tatitlek,_Alaska
## 6748                                                      Tatitlek,_Alaska
## 6749                                                      Tatitlek,_Alaska
## 6750                                                      Tatitlek,_Alaska
## 6751                                                      Tatitlek,_Alaska
## 6752                                                      Tatitlek,_Alaska
## 6753                                                      Tatitlek,_Alaska
## 6754                                                      Tatitlek,_Alaska
## 6755                                                      Tatitlek,_Alaska
## 6756                                                      Tatitlek,_Alaska
## 6757                                                      Tatitlek,_Alaska
## 6758                                                      Tatitlek,_Alaska
## 6759                                                      Tatitlek,_Alaska
## 6760                                                      Tatitlek,_Alaska
## 6761                                                      Tatitlek,_Alaska
## 6762                                                      Tatitlek,_Alaska
## 6763                                                      Tatitlek,_Alaska
## 6764                                                      Tatitlek,_Alaska
## 6765                                                      Tatitlek,_Alaska
## 6766                                                      Tatitlek,_Alaska
## 6767                                                      Tatitlek,_Alaska
## 6768                                                      Tatitlek,_Alaska
## 6769                                                      Tatitlek,_Alaska
## 6770                                                      Tatitlek,_Alaska
## 6771                                               Fallacies_of_definition
## 6772                                               Fallacies_of_definition
## 6773                                               Fallacies_of_definition
## 6774                                               Fallacies_of_definition
## 6775                                               Fallacies_of_definition
## 6776                                               Fallacies_of_definition
## 6777                                               Fallacies_of_definition
## 6778                                               Fallacies_of_definition
## 6779                                               Fallacies_of_definition
## 6780                                               Fallacies_of_definition
## 6781                                               Fallacies_of_definition
## 6782                                               Fallacies_of_definition
## 6783                                               Fallacies_of_definition
## 6784                                               Fallacies_of_definition
## 6785                                               Fallacies_of_definition
## 6786                                               Fallacies_of_definition
## 6787                                               Fallacies_of_definition
## 6788                                               Fallacies_of_definition
## 6789                                               Fallacies_of_definition
## 6790                                               Fallacies_of_definition
## 6791                                               Fallacies_of_definition
## 6792                                               Fallacies_of_definition
## 6793                                               Fallacies_of_definition
## 6794                                               Fallacies_of_definition
## 6795                                               Fallacies_of_definition
## 6796                                               Fallacies_of_definition
## 6797                                               Fallacies_of_definition
## 6798                                               Fallacies_of_definition
## 6799                                               Fallacies_of_definition
## 6800                                               Fallacies_of_definition
## 6801                                               Fallacies_of_definition
## 6802                                               Fallacies_of_definition
## 6803                                               Fallacies_of_definition
## 6804                                               Fallacies_of_definition
## 6805                                               Fallacies_of_definition
## 6806                                               Fallacies_of_definition
## 6807                                               Fallacies_of_definition
## 6808                                               Fallacies_of_definition
## 6809                                               Fallacies_of_definition
## 6810                                               Fallacies_of_definition
## 6811                                               Fallacies_of_definition
## 6812                                               Fallacies_of_definition
## 6813                                               Fallacies_of_definition
## 6814                                               Fallacies_of_definition
## 6815                                               Fallacies_of_definition
## 6816                                               Fallacies_of_definition
## 6817                                               Fallacies_of_definition
## 6818                                               Fallacies_of_definition
## 6819                                               Fallacies_of_definition
## 6820                                               Fallacies_of_definition
## 6821                                               Fallacies_of_definition
## 6822                                               Fallacies_of_definition
## 6823                                               Fallacies_of_definition
## 6824                                               Fallacies_of_definition
## 6825                                               Fallacies_of_definition
## 6826                                               Fallacies_of_definition
## 6827                                               Fallacies_of_definition
## 6828                                               Fallacies_of_definition
## 6829                                               Fallacies_of_definition
## 6830                                               Fallacies_of_definition
## 6831                                               Fallacies_of_definition
## 6832                                               Fallacies_of_definition
## 6833                                               Fallacies_of_definition
## 6834                                               Fallacies_of_definition
## 6835                                               Fallacies_of_definition
## 6836                                               Fallacies_of_definition
## 6837                                               Fallacies_of_definition
## 6838                                               Fallacies_of_definition
## 6839                                               Fallacies_of_definition
## 6840                                               Fallacies_of_definition
## 6841                                               Fallacies_of_definition
## 6842                                               Fallacies_of_definition
## 6843                                               Fallacies_of_definition
## 6844                                               Fallacies_of_definition
## 6845                                               Fallacies_of_definition
## 6846                                               Fallacies_of_definition
## 6847                                               Fallacies_of_definition
## 6848                                               Fallacies_of_definition
## 6849                                               Fallacies_of_definition
## 6850                                               Fallacies_of_definition
## 6851                                               Fallacies_of_definition
## 6852                                               Fallacies_of_definition
## 6853                                               Fallacies_of_definition
## 6854                                               Fallacies_of_definition
## 6855                                               Fallacies_of_definition
## 6856                                               Fallacies_of_definition
## 6857                                               Fallacies_of_definition
## 6858                                               Fallacies_of_definition
## 6859                                               Fallacies_of_definition
## 6860                                               Fallacies_of_definition
## 6861                                               Fallacies_of_definition
## 6862                                               Fallacies_of_definition
## 6863                                               Fallacies_of_definition
## 6864                                               Fallacies_of_definition
## 6865                                                       Summit,_Arizona
## 6866                                                       Summit,_Arizona
## 6867                                                       Summit,_Arizona
## 6868                                                       Summit,_Arizona
## 6869                                                       Summit,_Arizona
## 6870                                                       Summit,_Arizona
## 6871                                                       Summit,_Arizona
## 6872                                                       Summit,_Arizona
## 6873                                                       Summit,_Arizona
## 6874                                                       Summit,_Arizona
## 6875                                                       Summit,_Arizona
## 6876                                                       Summit,_Arizona
## 6877                                                       Summit,_Arizona
## 6878                                                       Summit,_Arizona
## 6879                                                       Summit,_Arizona
## 6880                                                       Summit,_Arizona
## 6881                                                       Summit,_Arizona
## 6882                                                       Summit,_Arizona
## 6883                                                       Summit,_Arizona
## 6884                                                       Summit,_Arizona
## 6885                                                       Summit,_Arizona
## 6886                                                       Summit,_Arizona
## 6887                                                       Summit,_Arizona
## 6888                                                       Summit,_Arizona
## 6889                                                       Summit,_Arizona
## 6890                                                       Summit,_Arizona
## 6891                                                 Bentonville,_Arkansas
## 6892                                                 Bentonville,_Arkansas
## 6893                                                 Bentonville,_Arkansas
## 6894                                                 Bentonville,_Arkansas
## 6895                                                 Bentonville,_Arkansas
## 6896                                                 Bentonville,_Arkansas
## 6897                                                 Bentonville,_Arkansas
## 6898                                                 Bentonville,_Arkansas
## 6899                                                 Bentonville,_Arkansas
## 6900                                                 Bentonville,_Arkansas
## 6901                                                 Bentonville,_Arkansas
## 6902                                                 Bentonville,_Arkansas
## 6903                                                 Bentonville,_Arkansas
## 6904                                                 Bentonville,_Arkansas
## 6905                                                 Bentonville,_Arkansas
## 6906                                                 Bentonville,_Arkansas
## 6907                                                 Bentonville,_Arkansas
## 6908                                                 Bentonville,_Arkansas
## 6909                                                 Bentonville,_Arkansas
## 6910                                                 Bentonville,_Arkansas
## 6911                                                 Bentonville,_Arkansas
## 6912                                                 Bentonville,_Arkansas
## 6913                                                 Bentonville,_Arkansas
## 6914                                                 Bentonville,_Arkansas
## 6915                                                 Bentonville,_Arkansas
## 6916                                                 Bentonville,_Arkansas
## 6917                                                 Bentonville,_Arkansas
## 6918                                                 Bentonville,_Arkansas
## 6919                                                 Bentonville,_Arkansas
## 6920                                                 Bentonville,_Arkansas
## 6921                                                 Bentonville,_Arkansas
## 6922                                                 Bentonville,_Arkansas
## 6923                                                 Bentonville,_Arkansas
## 6924                                                 Bentonville,_Arkansas
## 6925                                                 Bentonville,_Arkansas
## 6926                                                 Bentonville,_Arkansas
## 6927                                                 Bentonville,_Arkansas
## 6928                                                 Bentonville,_Arkansas
## 6929                                                 Bentonville,_Arkansas
## 6930                                                 Bentonville,_Arkansas
## 6931                                                 Bentonville,_Arkansas
## 6932                                                 Bentonville,_Arkansas
## 6933                                                 Bentonville,_Arkansas
## 6934                                                 Bentonville,_Arkansas
## 6935                                                 Bentonville,_Arkansas
## 6936                                                 Bentonville,_Arkansas
## 6937                                                 Bentonville,_Arkansas
## 6938                                                 Bentonville,_Arkansas
## 6939                                                 Bentonville,_Arkansas
## 6940                                                 Bentonville,_Arkansas
## 6941                                                 Bentonville,_Arkansas
## 6942                                                 Bentonville,_Arkansas
## 6943                                                 Bentonville,_Arkansas
## 6944                                                 Bentonville,_Arkansas
## 6945                                                 Bentonville,_Arkansas
## 6946                                                 Bentonville,_Arkansas
## 6947                                                 Bentonville,_Arkansas
## 6948                                                 Bentonville,_Arkansas
## 6949                                                 Bentonville,_Arkansas
## 6950                                                 Bentonville,_Arkansas
## 6951                                                 Bentonville,_Arkansas
## 6952                                                 Bentonville,_Arkansas
## 6953                                                 Bentonville,_Arkansas
## 6954                                                 Bentonville,_Arkansas
## 6955                                                 Bentonville,_Arkansas
## 6956                                                 Bentonville,_Arkansas
## 6957                                                 Bentonville,_Arkansas
## 6958                                                 Bentonville,_Arkansas
## 6959                                                 Bentonville,_Arkansas
## 6960                                                 Bentonville,_Arkansas
## 6961                                                 Bentonville,_Arkansas
## 6962                                                 Bentonville,_Arkansas
## 6963                                                 Bentonville,_Arkansas
## 6964                                                 Bentonville,_Arkansas
## 6965                                                 Bentonville,_Arkansas
## 6966                                                 Bentonville,_Arkansas
## 6967                                                 Bentonville,_Arkansas
## 6968                                                 Bentonville,_Arkansas
## 6969                                                 Bentonville,_Arkansas
## 6970                                                 Bentonville,_Arkansas
## 6971                                                 Bentonville,_Arkansas
## 6972                                                 Bentonville,_Arkansas
## 6973                                                 Bentonville,_Arkansas
## 6974                                                 Bentonville,_Arkansas
## 6975                                                 Bentonville,_Arkansas
## 6976                                                 Bentonville,_Arkansas
## 6977                                                 Bentonville,_Arkansas
## 6978                                                 Bentonville,_Arkansas
## 6979                                                 Bentonville,_Arkansas
## 6980                                                 Bentonville,_Arkansas
## 6981                                                 Bentonville,_Arkansas
## 6982                                                 Bentonville,_Arkansas
## 6983                                                 Bentonville,_Arkansas
## 6984                                                 Bentonville,_Arkansas
## 6985                                                 Bentonville,_Arkansas
## 6986                                                 Bentonville,_Arkansas
## 6987                                                 Bentonville,_Arkansas
## 6988                                                 Bentonville,_Arkansas
## 6989                                                 Bentonville,_Arkansas
## 6990                                                 Bentonville,_Arkansas
## 6991                                                 Bentonville,_Arkansas
## 6992                                                 Bentonville,_Arkansas
## 6993                                                 Bentonville,_Arkansas
## 6994                                                 Bentonville,_Arkansas
## 6995                                                 Bentonville,_Arkansas
## 6996                                                 Bentonville,_Arkansas
## 6997                                                 Bentonville,_Arkansas
## 6998                                                 Bentonville,_Arkansas
## 6999                                                 Bentonville,_Arkansas
## 7000                                                 Bentonville,_Arkansas
## 7001                                                 Bentonville,_Arkansas
## 7002                                                 Bentonville,_Arkansas
## 7003                                                 Bentonville,_Arkansas
## 7004                                                 Bentonville,_Arkansas
## 7005                                                 Bentonville,_Arkansas
## 7006                                                 Bentonville,_Arkansas
## 7007                                                 Bentonville,_Arkansas
## 7008                                                 Bentonville,_Arkansas
## 7009                                                 Bentonville,_Arkansas
## 7010                                                 Bentonville,_Arkansas
## 7011                                                 Bentonville,_Arkansas
## 7012                                                 Bentonville,_Arkansas
## 7013                                                 Bentonville,_Arkansas
## 7014                                                 Bentonville,_Arkansas
## 7015                                                 Bentonville,_Arkansas
## 7016                                                 Bentonville,_Arkansas
## 7017                                                 Bentonville,_Arkansas
## 7018                                                 Bentonville,_Arkansas
## 7019                                                 Bentonville,_Arkansas
## 7020                                                 Bentonville,_Arkansas
## 7021                                                 Bentonville,_Arkansas
## 7022                                                 Bentonville,_Arkansas
## 7023                                                 Bentonville,_Arkansas
## 7024                                                 Bentonville,_Arkansas
## 7025                                                 Bentonville,_Arkansas
## 7026                                                 Bentonville,_Arkansas
## 7027                                                 Bentonville,_Arkansas
## 7028                                                 Bentonville,_Arkansas
## 7029                                                 Bentonville,_Arkansas
## 7030                                                 Bentonville,_Arkansas
## 7031                                                 Bentonville,_Arkansas
## 7032                                                 Bentonville,_Arkansas
## 7033                                                 Bentonville,_Arkansas
## 7034                                                 Bentonville,_Arkansas
## 7035                                                 Bentonville,_Arkansas
## 7036                                                 Bentonville,_Arkansas
## 7037                                                 Bentonville,_Arkansas
## 7038                                                 Bentonville,_Arkansas
## 7039                                                 Bentonville,_Arkansas
## 7040                                                 Bentonville,_Arkansas
## 7041                                                 Bentonville,_Arkansas
## 7042                                                 Bentonville,_Arkansas
## 7043                                                 Bentonville,_Arkansas
## 7044                                                 Bentonville,_Arkansas
## 7045                                                 Bentonville,_Arkansas
## 7046                                                 Bentonville,_Arkansas
## 7047                                                 Bentonville,_Arkansas
## 7048                                                 Bentonville,_Arkansas
## 7049                                                 Bentonville,_Arkansas
## 7050                                                 Bentonville,_Arkansas
## 7051                                                 Bentonville,_Arkansas
## 7052                                                 Bentonville,_Arkansas
## 7053                                                 Bentonville,_Arkansas
## 7054                                                 Bentonville,_Arkansas
## 7055                                                 Bentonville,_Arkansas
## 7056                                                 Bentonville,_Arkansas
## 7057                                                 Bentonville,_Arkansas
## 7058                                                 Bentonville,_Arkansas
## 7059                                                 Bentonville,_Arkansas
## 7060                                                 Bentonville,_Arkansas
## 7061                                                 Bentonville,_Arkansas
## 7062                                                 Bentonville,_Arkansas
## 7063                                                      Kibler,_Arkansas
## 7064                                                      Kibler,_Arkansas
## 7065                                                      Kibler,_Arkansas
## 7066                                                      Kibler,_Arkansas
## 7067                                                      Kibler,_Arkansas
## 7068                                                      Kibler,_Arkansas
## 7069                                                      Kibler,_Arkansas
## 7070                                                      Kibler,_Arkansas
## 7071                                                      Kibler,_Arkansas
## 7072                                                      Kibler,_Arkansas
## 7073                                                      Kibler,_Arkansas
## 7074                                                      Kibler,_Arkansas
## 7075                                                      Kibler,_Arkansas
## 7076                                                      Kibler,_Arkansas
## 7077                                                      Kibler,_Arkansas
## 7078                                                      Kibler,_Arkansas
## 7079                                                      Kibler,_Arkansas
## 7080                                                      Kibler,_Arkansas
## 7081                                                      Kibler,_Arkansas
## 7082                                                      Kibler,_Arkansas
## 7083                                                      Kibler,_Arkansas
## 7084                                                      Kibler,_Arkansas
## 7085                                                      Kibler,_Arkansas
## 7086                                                      Kibler,_Arkansas
## 7087                                                      Kibler,_Arkansas
## 7088                                                      Kibler,_Arkansas
## 7089                                     Government_of_Antigua_and_Barbuda
## 7090                                     Government_of_Antigua_and_Barbuda
## 7091                                     Government_of_Antigua_and_Barbuda
## 7092                                                      Bodcaw,_Arkansas
## 7093                                                      Bodcaw,_Arkansas
## 7094                                                      Bodcaw,_Arkansas
## 7095                                                      Bodcaw,_Arkansas
## 7096                                                      Bodcaw,_Arkansas
## 7097                                                      Bodcaw,_Arkansas
## 7098                                                      Bodcaw,_Arkansas
## 7099                                                      Bodcaw,_Arkansas
## 7100                                                      Bodcaw,_Arkansas
## 7101                                                      Bodcaw,_Arkansas
## 7102                                                      Bodcaw,_Arkansas
## 7103                                                      Bodcaw,_Arkansas
## 7104                                                      Bodcaw,_Arkansas
## 7105                                                      Bodcaw,_Arkansas
## 7106                                                      Bodcaw,_Arkansas
## 7107                                                      Bodcaw,_Arkansas
## 7108                                                      Bodcaw,_Arkansas
## 7109                                                      Bodcaw,_Arkansas
## 7110                                                      Bodcaw,_Arkansas
## 7111                                                      Bodcaw,_Arkansas
## 7112                                                      Bodcaw,_Arkansas
## 7113                                    Antigua_and_Barbuda/Transportation
## 7114                                    Antigua_and_Barbuda/Transportation
## 7115                                            Clearlake_Oaks,_California
## 7116                                            Clearlake_Oaks,_California
## 7117                                            Clearlake_Oaks,_California
## 7118                                            Clearlake_Oaks,_California
## 7119                                            Clearlake_Oaks,_California
## 7120                                            Clearlake_Oaks,_California
## 7121                                            Clearlake_Oaks,_California
## 7122                                            Clearlake_Oaks,_California
## 7123                                            Clearlake_Oaks,_California
## 7124                                            Clearlake_Oaks,_California
## 7125                                            Clearlake_Oaks,_California
## 7126                                            Clearlake_Oaks,_California
## 7127                                            Clearlake_Oaks,_California
## 7128                                            Clearlake_Oaks,_California
## 7129                                            Clearlake_Oaks,_California
## 7130                                            Clearlake_Oaks,_California
## 7131                                            Clearlake_Oaks,_California
## 7132                                            Clearlake_Oaks,_California
## 7133                                            Clearlake_Oaks,_California
## 7134                                            Clearlake_Oaks,_California
## 7135                                            Clearlake_Oaks,_California
## 7136                                            Clearlake_Oaks,_California
## 7137                                            Clearlake_Oaks,_California
## 7138                                            Clearlake_Oaks,_California
## 7139                                            Clearlake_Oaks,_California
## 7140                                            Clearlake_Oaks,_California
## 7141                                            Clearlake_Oaks,_California
## 7142                                            Clearlake_Oaks,_California
## 7143                                            Clearlake_Oaks,_California
## 7144                                            Clearlake_Oaks,_California
## 7145                                        Hidden_Valley_Lake,_California
## 7146                                        Hidden_Valley_Lake,_California
## 7147                                        Hidden_Valley_Lake,_California
## 7148                                        Hidden_Valley_Lake,_California
## 7149                                        Hidden_Valley_Lake,_California
## 7150                                        Hidden_Valley_Lake,_California
## 7151                                        Hidden_Valley_Lake,_California
## 7152                                        Hidden_Valley_Lake,_California
## 7153                                        Hidden_Valley_Lake,_California
## 7154                                        Hidden_Valley_Lake,_California
## 7155                                        Hidden_Valley_Lake,_California
## 7156                                        Hidden_Valley_Lake,_California
## 7157                                        Hidden_Valley_Lake,_California
## 7158                                        Hidden_Valley_Lake,_California
## 7159                                        Hidden_Valley_Lake,_California
## 7160                                        Hidden_Valley_Lake,_California
## 7161                                        Hidden_Valley_Lake,_California
## 7162                                        Hidden_Valley_Lake,_California
## 7163                                        Hidden_Valley_Lake,_California
## 7164                                        Hidden_Valley_Lake,_California
## 7165                                        Hidden_Valley_Lake,_California
## 7166                                        Hidden_Valley_Lake,_California
## 7167                                        Hidden_Valley_Lake,_California
## 7168                                        Hidden_Valley_Lake,_California
## 7169                                        Hidden_Valley_Lake,_California
## 7170                                        Hidden_Valley_Lake,_California
## 7171                                        Hidden_Valley_Lake,_California
## 7172                                        Hidden_Valley_Lake,_California
## 7173                                               Mill_Valley,_California
## 7174                                               Mill_Valley,_California
## 7175                                               Mill_Valley,_California
## 7176                                               Mill_Valley,_California
## 7177                                               Mill_Valley,_California
## 7178                                               Mill_Valley,_California
## 7179                                               Mill_Valley,_California
## 7180                                               Mill_Valley,_California
## 7181                                               Mill_Valley,_California
## 7182                                               Mill_Valley,_California
## 7183                                               Mill_Valley,_California
## 7184                                               Mill_Valley,_California
## 7185                                               Mill_Valley,_California
## 7186                                               Mill_Valley,_California
## 7187                                               Mill_Valley,_California
## 7188                                               Mill_Valley,_California
## 7189                                               Mill_Valley,_California
## 7190                                               Mill_Valley,_California
## 7191                                               Mill_Valley,_California
## 7192                                               Mill_Valley,_California
## 7193                                               Mill_Valley,_California
## 7194                                               Mill_Valley,_California
## 7195                                               Mill_Valley,_California
## 7196                                               Mill_Valley,_California
## 7197                                               Mill_Valley,_California
## 7198                                               Mill_Valley,_California
## 7199                                               Mill_Valley,_California
## 7200                                               Mill_Valley,_California
## 7201                                               Mill_Valley,_California
## 7202                                               Mill_Valley,_California
## 7203                                               Mill_Valley,_California
## 7204                                               Mill_Valley,_California
## 7205                                               Mill_Valley,_California
## 7206                                               Mill_Valley,_California
## 7207                                               Mill_Valley,_California
## 7208                                               Mill_Valley,_California
## 7209                                               Mill_Valley,_California
## 7210                                               Mill_Valley,_California
## 7211                                               Mill_Valley,_California
## 7212                                               Mill_Valley,_California
## 7213                                               Mill_Valley,_California
## 7214                                               Mill_Valley,_California
## 7215                                               Mill_Valley,_California
## 7216                                               Mill_Valley,_California
## 7217                                               Mill_Valley,_California
## 7218                                               Mill_Valley,_California
## 7219                                               Mill_Valley,_California
## 7220                                               Mill_Valley,_California
## 7221                                               Mill_Valley,_California
## 7222                                               Mill_Valley,_California
## 7223                                               Mill_Valley,_California
## 7224                                               Mill_Valley,_California
## 7225                                               Mill_Valley,_California
## 7226                                               Mill_Valley,_California
## 7227                                               Mill_Valley,_California
## 7228                                               Mill_Valley,_California
## 7229                                               Mill_Valley,_California
## 7230                                               Mill_Valley,_California
## 7231                                               Mill_Valley,_California
## 7232                                               Mill_Valley,_California
## 7233                                               Mill_Valley,_California
## 7234                                               Mill_Valley,_California
## 7235                                               Mill_Valley,_California
## 7236                                               Mill_Valley,_California
## 7237                                               Mill_Valley,_California
## 7238                                               Mill_Valley,_California
## 7239                                               Mill_Valley,_California
## 7240                                               Mill_Valley,_California
## 7241                                               Mill_Valley,_California
## 7242                                               Mill_Valley,_California
## 7243                                               Mill_Valley,_California
## 7244                                               Mill_Valley,_California
## 7245                                               Mill_Valley,_California
## 7246                                               Mill_Valley,_California
## 7247                                               Mill_Valley,_California
## 7248                                               Mill_Valley,_California
## 7249                                               Mill_Valley,_California
## 7250                                               Mill_Valley,_California
## 7251                                               Mill_Valley,_California
## 7252                                               Mill_Valley,_California
## 7253                                               Mill_Valley,_California
## 7254                                               Mill_Valley,_California
## 7255                                               Mill_Valley,_California
## 7256                                               Mill_Valley,_California
## 7257                                               Mill_Valley,_California
## 7258                                               Mill_Valley,_California
## 7259                                               Mill_Valley,_California
## 7260                                               Mill_Valley,_California
## 7261                                               Mill_Valley,_California
## 7262                                               Mill_Valley,_California
## 7263                                               Mill_Valley,_California
## 7264                                               Mill_Valley,_California
## 7265                                               Mill_Valley,_California
## 7266                                               Mill_Valley,_California
## 7267                                               Mill_Valley,_California
## 7268                                               Mill_Valley,_California
## 7269                                               Mill_Valley,_California
## 7270                                               Mill_Valley,_California
## 7271                                               Mill_Valley,_California
## 7272                                               Mill_Valley,_California
## 7273                                               Mill_Valley,_California
## 7274                                               Mill_Valley,_California
## 7275                                               Mill_Valley,_California
## 7276                                               Mill_Valley,_California
## 7277                                               Mill_Valley,_California
## 7278                                               Mill_Valley,_California
## 7279                                               Mill_Valley,_California
## 7280                                               Mill_Valley,_California
## 7281                                               Mill_Valley,_California
## 7282                                               Mill_Valley,_California
## 7283                                               Mill_Valley,_California
## 7284                                               Mill_Valley,_California
## 7285                                               Mill_Valley,_California
## 7286                                               Mill_Valley,_California
## 7287                                               Mill_Valley,_California
## 7288                                               Mill_Valley,_California
## 7289                                               Mill_Valley,_California
## 7290                                               Mill_Valley,_California
## 7291                                               Mill_Valley,_California
## 7292                                               Mill_Valley,_California
## 7293                                               Mill_Valley,_California
## 7294                                               Mill_Valley,_California
## 7295                                               Mill_Valley,_California
## 7296                                               Mill_Valley,_California
## 7297                                               Mill_Valley,_California
## 7298                                               Mill_Valley,_California
## 7299                                               Mill_Valley,_California
## 7300                                               Mill_Valley,_California
## 7301                                               Mill_Valley,_California
## 7302                                               Mill_Valley,_California
## 7303                                               Mill_Valley,_California
## 7304                                               Mill_Valley,_California
## 7305                                               Mill_Valley,_California
## 7306                                               Mill_Valley,_California
## 7307                                               Mill_Valley,_California
## 7308                                               Mill_Valley,_California
## 7309                                               Mill_Valley,_California
## 7310                                               Mill_Valley,_California
## 7311                                               Mill_Valley,_California
## 7312                                               Mill_Valley,_California
## 7313                                               Mill_Valley,_California
## 7314                                               Mill_Valley,_California
## 7315                                               Mill_Valley,_California
## 7316                                               Mill_Valley,_California
## 7317                                               Mill_Valley,_California
## 7318                                               Mill_Valley,_California
## 7319                                               Mill_Valley,_California
## 7320                                               Mill_Valley,_California
## 7321                                               Mill_Valley,_California
## 7322                                               Mill_Valley,_California
## 7323                                               Mill_Valley,_California
## 7324                                               Mill_Valley,_California
## 7325                                               Mill_Valley,_California
## 7326                                               Mill_Valley,_California
## 7327                                               Mill_Valley,_California
## 7328                                               Mill_Valley,_California
## 7329                                               Mill_Valley,_California
## 7330                                               Mill_Valley,_California
## 7331                                               Mill_Valley,_California
## 7332                                               Mill_Valley,_California
## 7333                                               Mill_Valley,_California
## 7334                                               Mill_Valley,_California
## 7335                                               Mill_Valley,_California
## 7336                                               Mill_Valley,_California
## 7337                                               Mill_Valley,_California
## 7338                                               Mill_Valley,_California
## 7339                                               Mill_Valley,_California
## 7340                                               Mill_Valley,_California
## 7341                                               Mill_Valley,_California
## 7342                                               Mill_Valley,_California
## 7343                                               Mill_Valley,_California
## 7344                                               Mill_Valley,_California
## 7345                                               Mill_Valley,_California
## 7346                                               Mill_Valley,_California
## 7347                                               Mill_Valley,_California
## 7348                                               Mill_Valley,_California
## 7349                                               Mill_Valley,_California
## 7350                                               Mill_Valley,_California
## 7351                                               Mill_Valley,_California
## 7352                                               Mill_Valley,_California
## 7353                                               Mill_Valley,_California
## 7354                                               Mill_Valley,_California
## 7355                                               Mill_Valley,_California
## 7356                                               Mill_Valley,_California
## 7357                                               Mill_Valley,_California
## 7358                                               Mill_Valley,_California
## 7359                                               Mill_Valley,_California
## 7360                                               Mill_Valley,_California
## 7361                                               Mill_Valley,_California
## 7362                                               Mill_Valley,_California
## 7363                                               Mill_Valley,_California
## 7364                                               Mill_Valley,_California
## 7365                                               Mill_Valley,_California
## 7366                                               Mill_Valley,_California
## 7367                                               Mill_Valley,_California
## 7368                                               Mill_Valley,_California
## 7369                                               Mill_Valley,_California
## 7370                                               Mill_Valley,_California
## 7371                                               Mill_Valley,_California
## 7372                                               Mill_Valley,_California
## 7373                                               Mill_Valley,_California
## 7374                                               Mill_Valley,_California
## 7375                                               Mill_Valley,_California
## 7376                                               Mill_Valley,_California
## 7377                                               Mill_Valley,_California
## 7378                                               Mill_Valley,_California
## 7379                                               Mill_Valley,_California
## 7380                                               Mill_Valley,_California
## 7381                                               Mill_Valley,_California
## 7382                                               Mill_Valley,_California
## 7383                                               Mill_Valley,_California
## 7384                                               Mill_Valley,_California
## 7385                                               Mill_Valley,_California
## 7386                                               Mill_Valley,_California
## 7387                                               Mill_Valley,_California
## 7388                                               Mill_Valley,_California
## 7389                                               Mill_Valley,_California
## 7390                                               Mill_Valley,_California
## 7391                                               Mill_Valley,_California
## 7392                                               Mill_Valley,_California
## 7393                                               Mill_Valley,_California
## 7394                                               Mill_Valley,_California
## 7395                                               Mill_Valley,_California
## 7396                                               Mill_Valley,_California
## 7397                                               Mill_Valley,_California
## 7398                                               Mill_Valley,_California
## 7399                                               Mill_Valley,_California
## 7400                                               Mill_Valley,_California
## 7401                                               Mill_Valley,_California
## 7402                                               Mill_Valley,_California
## 7403                                               Mill_Valley,_California
## 7404                                               Mill_Valley,_California
## 7405                                               Mill_Valley,_California
## 7406                                               Mill_Valley,_California
## 7407                                               Mill_Valley,_California
## 7408                                               Mill_Valley,_California
## 7409                                               Mill_Valley,_California
## 7410                                               Mill_Valley,_California
## 7411                                               Mill_Valley,_California
## 7412                                               Mill_Valley,_California
## 7413                                               Mill_Valley,_California
## 7414                                               Mill_Valley,_California
## 7415                                               Mill_Valley,_California
## 7416                                               Mill_Valley,_California
## 7417                                               Mill_Valley,_California
## 7418                                               Mill_Valley,_California
## 7419                                               Mill_Valley,_California
## 7420                                               Mill_Valley,_California
## 7421                                               Mill_Valley,_California
## 7422                                               Mill_Valley,_California
## 7423                                               Mill_Valley,_California
## 7424                                               Mill_Valley,_California
## 7425                                               Mill_Valley,_California
## 7426                                               Mill_Valley,_California
## 7427                                               Mill_Valley,_California
## 7428                                                          Antisemitism
## 7429                                                          Antisemitism
## 7430                                                          Antisemitism
## 7431                                                          Antisemitism
## 7432                                                          Antisemitism
## 7433                                                          Antisemitism
## 7434                                                          Antisemitism
## 7435                                                          Antisemitism
## 7436                                                          Antisemitism
## 7437                                                          Antisemitism
## 7438                                                          Antisemitism
## 7439                                                          Antisemitism
## 7440                                                          Antisemitism
## 7441                                                          Antisemitism
## 7442                                                          Antisemitism
## 7443                                                          Antisemitism
## 7444                                                          Antisemitism
## 7445                                                          Antisemitism
## 7446                                                          Antisemitism
## 7447                                                          Antisemitism
## 7448                                                          Antisemitism
## 7449                                                          Antisemitism
## 7450                                                          Antisemitism
## 7451                                                          Antisemitism
## 7452                                                          Antisemitism
## 7453                                                          Antisemitism
## 7454                                                          Antisemitism
## 7455                                                          Antisemitism
## 7456                                                          Antisemitism
## 7457                                                          Antisemitism
## 7458                                                          Antisemitism
## 7459                                                          Antisemitism
## 7460                                                          Antisemitism
## 7461                                                          Antisemitism
## 7462                                                          Antisemitism
## 7463                                                          Antisemitism
## 7464                                                          Antisemitism
## 7465                                                          Antisemitism
## 7466                                                          Antisemitism
## 7467                                                          Antisemitism
## 7468                                                          Antisemitism
## 7469                                                          Antisemitism
## 7470                                                          Antisemitism
## 7471                                                          Antisemitism
## 7472                                                          Antisemitism
## 7473                                                          Antisemitism
## 7474                                                          Antisemitism
## 7475                                                          Antisemitism
## 7476                                                          Antisemitism
## 7477                                                          Antisemitism
## 7478                                                          Antisemitism
## 7479                                                          Antisemitism
## 7480                                                          Antisemitism
## 7481                                                          Antisemitism
## 7482                                                          Antisemitism
## 7483                                                          Antisemitism
## 7484                                                          Antisemitism
## 7485                                                          Antisemitism
## 7486                                                          Antisemitism
## 7487                                                          Antisemitism
## 7488                                                          Antisemitism
## 7489                                                          Antisemitism
## 7490                                                          Antisemitism
## 7491                                                          Antisemitism
## 7492                                                          Antisemitism
## 7493                                                          Antisemitism
## 7494                                                          Antisemitism
## 7495                                                          Antisemitism
## 7496                                                          Antisemitism
## 7497                                                          Antisemitism
## 7498                                                          Antisemitism
## 7499                                                          Antisemitism
## 7500                                                          Antisemitism
## 7501                                                          Antisemitism
## 7502                                                          Antisemitism
## 7503                                                          Antisemitism
## 7504                                                          Antisemitism
## 7505                                                          Antisemitism
## 7506                                                          Antisemitism
## 7507                                                          Antisemitism
## 7508                                                          Antisemitism
## 7509                                                          Antisemitism
## 7510                                                          Antisemitism
## 7511                                                          Antisemitism
## 7512                                                          Antisemitism
## 7513                                                          Antisemitism
## 7514                                                          Antisemitism
## 7515                                                          Antisemitism
## 7516                                                          Antisemitism
## 7517                                                          Antisemitism
## 7518                                                          Antisemitism
## 7519                                                          Antisemitism
## 7520                                                          Antisemitism
## 7521                                                          Antisemitism
## 7522                                                          Antisemitism
## 7523                                                          Antisemitism
## 7524                                                          Antisemitism
## 7525                                                          Antisemitism
## 7526                                                          Antisemitism
## 7527                                                          Antisemitism
## 7528                                                          Antisemitism
## 7529                                                          Antisemitism
## 7530                                                          Antisemitism
## 7531                                                          Antisemitism
## 7532                                                          Antisemitism
## 7533                                                          Antisemitism
## 7534                                                          Antisemitism
## 7535                                                          Antisemitism
## 7536                                                          Antisemitism
## 7537                                                          Antisemitism
## 7538                                                          Antisemitism
## 7539                                                          Antisemitism
## 7540                                                          Antisemitism
## 7541                                                          Antisemitism
## 7542                                                          Antisemitism
## 7543                                                          Antisemitism
## 7544                                                          Antisemitism
## 7545                                                          Antisemitism
## 7546                                                          Antisemitism
## 7547                                                          Antisemitism
## 7548                                                          Antisemitism
## 7549                                                          Antisemitism
## 7550                                                          Antisemitism
## 7551                                                          Antisemitism
## 7552                                                          Antisemitism
## 7553                                                          Antisemitism
## 7554                                                          Antisemitism
## 7555                                                          Antisemitism
## 7556                                                          Antisemitism
## 7557                                                          Antisemitism
## 7558                                                          Antisemitism
## 7559                                                          Antisemitism
## 7560                                                          Antisemitism
## 7561                                                          Antisemitism
## 7562                                                          Antisemitism
## 7563                                                          Antisemitism
## 7564                                                          Antisemitism
## 7565                                                          Antisemitism
## 7566                                                          Antisemitism
## 7567                                                          Antisemitism
## 7568                                                          Antisemitism
## 7569                                                          Antisemitism
## 7570                                                          Antisemitism
## 7571                                                          Antisemitism
## 7572                                                          Antisemitism
## 7573                                                          Antisemitism
## 7574                                                          Antisemitism
## 7575                                                          Antisemitism
## 7576                                                          Antisemitism
## 7577                                                          Antisemitism
## 7578                                                          Antisemitism
## 7579                                                          Antisemitism
## 7580                                                          Antisemitism
## 7581                                                          Antisemitism
## 7582                                                          Antisemitism
## 7583                                                          Antisemitism
## 7584                                                          Antisemitism
## 7585                                                          Antisemitism
## 7586                                                          Antisemitism
## 7587                                                          Antisemitism
## 7588                                                          Antisemitism
## 7589                                                          Antisemitism
## 7590                                                          Antisemitism
## 7591                                                          Antisemitism
## 7592                                                          Antisemitism
## 7593                                                          Antisemitism
## 7594                                                          Antisemitism
## 7595                                                          Antisemitism
## 7596                                                          Antisemitism
## 7597                                                          Antisemitism
## 7598                                                          Antisemitism
## 7599                                                          Antisemitism
## 7600                                                          Antisemitism
## 7601                                                          Antisemitism
## 7602                                                          Antisemitism
## 7603                                                          Antisemitism
## 7604                                                          Antisemitism
## 7605                                                          Antisemitism
## 7606                                                          Antisemitism
## 7607                                                          Antisemitism
## 7608                                                          Antisemitism
## 7609                                                          Antisemitism
## 7610                                                          Antisemitism
## 7611                                                          Antisemitism
## 7612                                                          Antisemitism
## 7613                                                          Antisemitism
## 7614                                                          Antisemitism
## 7615                                                          Antisemitism
## 7616                                                          Antisemitism
## 7617                                                          Antisemitism
## 7618                                                          Antisemitism
## 7619                                                          Antisemitism
## 7620                                                          Antisemitism
## 7621                                                          Antisemitism
## 7622                                                          Antisemitism
## 7623                                                          Antisemitism
## 7624                                                          Antisemitism
## 7625                                                          Antisemitism
## 7626                                                          Antisemitism
## 7627                                                          Antisemitism
## 7628                                                          Antisemitism
## 7629                                                          Antisemitism
## 7630                                                          Antisemitism
## 7631                                                          Antisemitism
## 7632                                                          Antisemitism
## 7633                                                          Antisemitism
## 7634                                                          Antisemitism
## 7635                                                          Antisemitism
## 7636                                                          Antisemitism
## 7637                                                          Antisemitism
## 7638                                                          Antisemitism
## 7639                                                          Antisemitism
## 7640                                                          Antisemitism
## 7641                                                          Antisemitism
## 7642                                                          Antisemitism
## 7643                                                          Antisemitism
## 7644                                                          Antisemitism
## 7645                                                          Antisemitism
## 7646                                                          Antisemitism
## 7647                                                          Antisemitism
## 7648                                                          Antisemitism
## 7649                                                          Antisemitism
## 7650                                                          Antisemitism
## 7651                                                          Antisemitism
## 7652                                                          Antisemitism
## 7653                                                          Antisemitism
## 7654                                                          Antisemitism
## 7655                                                          Antisemitism
## 7656                                                          Antisemitism
## 7657                                                          Antisemitism
## 7658                                                          Antisemitism
## 7659                                                          Antisemitism
## 7660                                                          Antisemitism
## 7661                                                          Antisemitism
## 7662                                                          Antisemitism
## 7663                                                          Antisemitism
## 7664                                                          Antisemitism
## 7665                                                          Antisemitism
## 7666                                                          Antisemitism
## 7667                                                          Antisemitism
## 7668                                                          Antisemitism
## 7669                                                          Antisemitism
## 7670                                                          Antisemitism
## 7671                                                          Antisemitism
## 7672                                                          Antisemitism
## 7673                                                          Antisemitism
## 7674                                                          Antisemitism
## 7675                                                          Antisemitism
## 7676                                                          Antisemitism
## 7677                                                          Antisemitism
## 7678                                                          Antisemitism
## 7679                                                          Antisemitism
## 7680                                                          Antisemitism
## 7681                                                          Antisemitism
## 7682                                                          Antisemitism
## 7683                                                          Antisemitism
## 7684                                                          Antisemitism
## 7685                                                          Antisemitism
## 7686                                                          Antisemitism
## 7687                                                          Antisemitism
## 7688                                                          Antisemitism
## 7689                                                          Antisemitism
## 7690                                                          Antisemitism
## 7691                                                          Antisemitism
## 7692                                                          Antisemitism
## 7693                                                          Antisemitism
## 7694                                                          Antisemitism
## 7695                                                          Antisemitism
## 7696                                                          Antisemitism
## 7697                                                          Antisemitism
## 7698                                                          Antisemitism
## 7699                                                          Antisemitism
## 7700                                                          Antisemitism
## 7701                                                          Antisemitism
## 7702                                                          Antisemitism
## 7703                                                          Antisemitism
## 7704                                                          Antisemitism
## 7705                                                          Antisemitism
## 7706                                                          Antisemitism
## 7707                                                          Antisemitism
## 7708                                                          Antisemitism
## 7709                                                          Antisemitism
## 7710                                                          Antisemitism
## 7711                                                          Antisemitism
## 7712                                                          Antisemitism
## 7713                                                          Antisemitism
## 7714                                                          Antisemitism
## 7715                                                          Antisemitism
## 7716                                                          Antisemitism
## 7717                                                          Antisemitism
## 7718                                                          Antisemitism
## 7719                                                          Antisemitism
## 7720                                                          Antisemitism
## 7721                                                          Antisemitism
## 7722                                                          Antisemitism
## 7723                                                          Antisemitism
## 7724                                                          Antisemitism
## 7725                                                          Antisemitism
## 7726                                                          Antisemitism
## 7727                                                          Antisemitism
## 7728                                                          Antisemitism
## 7729                                                          Antisemitism
## 7730                                                          Antisemitism
## 7731                                                          Antisemitism
## 7732                                                          Antisemitism
## 7733                                                          Antisemitism
## 7734                                                          Antisemitism
## 7735                                                          Antisemitism
## 7736                                                          Antisemitism
## 7737                                                          Antisemitism
## 7738                                                          Antisemitism
## 7739                                                          Antisemitism
## 7740                                                          Antisemitism
## 7741                                                          Antisemitism
## 7742                                                          Antisemitism
## 7743                                                          Antisemitism
## 7744                                                          Antisemitism
## 7745                                                          Antisemitism
## 7746                                                          Antisemitism
## 7747                                                          Antisemitism
## 7748                                                          Antisemitism
## 7749                                                          Antisemitism
## 7750                                                          Antisemitism
## 7751                                                          Antisemitism
## 7752                                                          Antisemitism
## 7753                                                          Antisemitism
## 7754                                                          Antisemitism
## 7755                                                          Antisemitism
## 7756                                                          Antisemitism
## 7757                                                          Antisemitism
## 7758                                                          Antisemitism
## 7759                                                          Antisemitism
## 7760                                                          Antisemitism
## 7761                                                          Antisemitism
## 7762                                                          Antisemitism
## 7763                                                          Antisemitism
## 7764                                                          Antisemitism
## 7765                                                          Antisemitism
## 7766                                                          Antisemitism
## 7767                                                          Antisemitism
## 7768                                                          Antisemitism
## 7769                                                          Antisemitism
## 7770                                                          Antisemitism
## 7771                                                          Antisemitism
## 7772                                                          Antisemitism
## 7773                                                          Antisemitism
## 7774                                                          Antisemitism
## 7775                                                          Antisemitism
## 7776                                                          Antisemitism
## 7777                                                          Antisemitism
## 7778                                                          Antisemitism
## 7779                                                          Antisemitism
## 7780                                                          Antisemitism
## 7781                                                          Antisemitism
## 7782                                                          Antisemitism
## 7783                                                          Antisemitism
## 7784                                                          Antisemitism
## 7785                                                          Antisemitism
## 7786                                                          Antisemitism
## 7787                                                          Antisemitism
## 7788                                                          Antisemitism
## 7789                                                          Antisemitism
## 7790                                                          Antisemitism
## 7791                                                          Antisemitism
## 7792                                                          Antisemitism
## 7793                                                          Antisemitism
## 7794                                                          Antisemitism
## 7795                                                          Antisemitism
## 7796                                                          Antisemitism
## 7797                                                          Antisemitism
## 7798                                                          Antisemitism
## 7799                                                          Antisemitism
## 7800                                                          Antisemitism
## 7801                                                          Antisemitism
## 7802                                                          Antisemitism
## 7803                                                          Antisemitism
## 7804                                                          Antisemitism
## 7805                                                          Antisemitism
## 7806                                                          Antisemitism
## 7807                                                          Antisemitism
## 7808                                                          Antisemitism
## 7809                                                          Antisemitism
## 7810                                                          Antisemitism
## 7811                                                          Antisemitism
## 7812                                                          Antisemitism
## 7813                                                          Antisemitism
## 7814                                                          Antisemitism
## 7815                                                          Antisemitism
## 7816                                                          Antisemitism
## 7817                                                          Antisemitism
## 7818                                                          Antisemitism
## 7819                                                          Antisemitism
## 7820                                                          Antisemitism
## 7821                                                          Antisemitism
## 7822                                                          Antisemitism
## 7823                                                          Antisemitism
## 7824                                                          Antisemitism
## 7825                                                          Antisemitism
## 7826                                                          Antisemitism
## 7827                                                          Antisemitism
## 7828                                                          Antisemitism
## 7829                                                          Antisemitism
## 7830                                                          Antisemitism
## 7831                                                          Antisemitism
## 7832                                                          Antisemitism
## 7833                                                          Antisemitism
## 7834                                                          Antisemitism
## 7835                                                          Antisemitism
## 7836                                                          Antisemitism
## 7837                                                          Antisemitism
## 7838                                                          Antisemitism
## 7839                                                          Antisemitism
## 7840                                                          Antisemitism
## 7841                                                          Antisemitism
## 7842                                                          Antisemitism
## 7843                                                          Antisemitism
## 7844                                                          Antisemitism
## 7845                                                          Antisemitism
## 7846                                                          Antisemitism
## 7847                                                          Antisemitism
## 7848                                                          Antisemitism
## 7849                                                          Antisemitism
## 7850                                                          Antisemitism
## 7851                                                          Antisemitism
## 7852                                                          Antisemitism
## 7853                                                          Antisemitism
## 7854                                                          Antisemitism
## 7855                                                          Antisemitism
## 7856                                                          Antisemitism
## 7857                                                          Antisemitism
## 7858                                                          Antisemitism
## 7859                                                          Antisemitism
## 7860                                                          Antisemitism
## 7861                                                          Antisemitism
## 7862                                                          Antisemitism
## 7863                                                          Antisemitism
## 7864                                                          Antisemitism
## 7865                                                          Antisemitism
## 7866                                                          Antisemitism
## 7867                                                          Antisemitism
## 7868                                                          Antisemitism
## 7869                                                          Antisemitism
## 7870                                                          Antisemitism
## 7871                                                          Antisemitism
## 7872                                                          Antisemitism
## 7873                                                          Antisemitism
## 7874                                                          Antisemitism
## 7875                                                          Antisemitism
## 7876                                                          Antisemitism
## 7877                                                          Antisemitism
## 7878                                                          Antisemitism
## 7879                                                          Antisemitism
## 7880                                                          Antisemitism
## 7881                                                          Antisemitism
## 7882                                                          Antisemitism
## 7883                                                          Antisemitism
## 7884                                                          Antisemitism
## 7885                                                          Antisemitism
## 7886                                                          Antisemitism
## 7887                                                          Antisemitism
## 7888                                                          Antisemitism
## 7889                                                          Antisemitism
## 7890                                                          Antisemitism
## 7891                                                          Antisemitism
## 7892                                                          Antisemitism
## 7893                                                          Antisemitism
## 7894                                                          Antisemitism
## 7895                                                          Antisemitism
## 7896                                                          Antisemitism
## 7897                                                          Antisemitism
## 7898                                                          Antisemitism
## 7899                                                          Antisemitism
## 7900                                                          Antisemitism
## 7901                                                          Antisemitism
## 7902                                                          Antisemitism
## 7903                                                          Antisemitism
## 7904                                                          Antisemitism
## 7905                                                          Antisemitism
## 7906                                                          Antisemitism
## 7907                                                          Antisemitism
## 7908                                                          Antisemitism
## 7909                                                          Antisemitism
## 7910                                                          Antisemitism
## 7911                                                          Antisemitism
## 7912                                                          Antisemitism
## 7913                                                          Antisemitism
## 7914                                                          Antisemitism
## 7915                                                          Antisemitism
## 7916                                                          Antisemitism
## 7917                                                          Antisemitism
## 7918                                                          Antisemitism
## 7919                                                          Antisemitism
## 7920                                                          Antisemitism
## 7921                                                          Antisemitism
## 7922                                                          Antisemitism
## 7923                                                          Antisemitism
## 7924                                                          Antisemitism
## 7925                                                          Antisemitism
## 7926                                                          Antisemitism
## 7927                                                          Antisemitism
## 7928                                                          Antisemitism
## 7929                                                          Antisemitism
## 7930                                                          Antisemitism
## 7931                                                          Antisemitism
## 7932                                                          Antisemitism
## 7933                                                          Antisemitism
## 7934                                                          Antisemitism
## 7935                                                          Antisemitism
## 7936                                                          Antisemitism
## 7937                                                          Antisemitism
## 7938                                                          Antisemitism
## 7939                                                          Antisemitism
## 7940                                                          Antisemitism
## 7941                                                          Antisemitism
## 7942                                                          Antisemitism
## 7943                                                          Antisemitism
## 7944                                                          Antisemitism
## 7945                                                          Antisemitism
## 7946                                                          Antisemitism
## 7947                                                          Antisemitism
## 7948                                                          Antisemitism
## 7949                                                          Antisemitism
## 7950                                                          Antisemitism
## 7951                                                          Antisemitism
## 7952                                                          Antisemitism
## 7953                                                          Antisemitism
## 7954                                                          Antisemitism
## 7955                                                          Antisemitism
## 7956                                                          Antisemitism
## 7957                                                          Antisemitism
## 7958                                                          Antisemitism
## 7959                                                          Antisemitism
## 7960                                                          Antisemitism
## 7961                                                          Antisemitism
## 7962                                                          Antisemitism
## 7963                                                          Antisemitism
## 7964                                                          Antisemitism
## 7965                                                          Antisemitism
## 7966                                                          Antisemitism
## 7967                                                          Antisemitism
## 7968                                                          Antisemitism
## 7969                                                          Antisemitism
## 7970                                                          Antisemitism
## 7971                                                          Antisemitism
## 7972                                                          Antisemitism
## 7973                                                          Antisemitism
## 7974                                                          Antisemitism
## 7975                                                          Antisemitism
## 7976                                                          Antisemitism
## 7977                                                          Antisemitism
## 7978                                                          Antisemitism
## 7979                                                          Antisemitism
## 7980                                                          Antisemitism
## 7981                                                          Antisemitism
## 7982                                                          Antisemitism
## 7983                                                          Antisemitism
## 7984                                                          Antisemitism
## 7985                                                          Antisemitism
## 7986                                                          Antisemitism
## 7987                                                          Antisemitism
## 7988                                                          Antisemitism
## 7989                                                          Antisemitism
## 7990                                                          Antisemitism
## 7991                                                          Antisemitism
## 7992                                                          Antisemitism
## 7993                                                          Antisemitism
## 7994                                                          Antisemitism
## 7995                                                          Antisemitism
## 7996                                                          Antisemitism
## 7997                                                          Antisemitism
## 7998                                                          Antisemitism
## 7999                                                          Antisemitism
## 8000                                                          Antisemitism
## 8001                                                          Antisemitism
## 8002                                                          Antisemitism
## 8003                                                          Antisemitism
## 8004                                                          Antisemitism
## 8005                                                          Antisemitism
## 8006                                                          Antisemitism
## 8007                                                          Antisemitism
## 8008                                                          Antisemitism
## 8009                                                          Antisemitism
## 8010                                                          Antisemitism
## 8011                                                          Antisemitism
## 8012                                                          Antisemitism
## 8013                                                          Antisemitism
## 8014                                                          Antisemitism
## 8015                                                          Antisemitism
## 8016                                                          Antisemitism
## 8017                                                          Antisemitism
## 8018                                                          Antisemitism
## 8019                                                          Antisemitism
## 8020                                                          Antisemitism
## 8021                                                          Antisemitism
## 8022                                                          Antisemitism
## 8023                                                          Antisemitism
## 8024                                                          Antisemitism
## 8025                                                          Antisemitism
## 8026                                                          Antisemitism
## 8027                                                          Antisemitism
## 8028                                                          Antisemitism
## 8029                                                          Antisemitism
## 8030                                                          Antisemitism
## 8031                                                          Antisemitism
## 8032                                                          Antisemitism
## 8033                                                          Antisemitism
## 8034                                                          Antisemitism
## 8035                                                          Antisemitism
## 8036                                                          Antisemitism
## 8037                                                          Antisemitism
## 8038                                                          Antisemitism
## 8039                                                          Antisemitism
## 8040                                                          Antisemitism
## 8041                                                          Antisemitism
## 8042                                                          Antisemitism
## 8043                                                          Antisemitism
## 8044                                                          Antisemitism
## 8045                                                          Antisemitism
## 8046                                                          Antisemitism
## 8047                                                          Antisemitism
## 8048                                                          Antisemitism
## 8049                                                          Antisemitism
## 8050                                                          Antisemitism
## 8051                                                          Antisemitism
## 8052                                                          Antisemitism
## 8053                                                          Antisemitism
## 8054                                                          Antisemitism
## 8055                                                          Antisemitism
## 8056                                                          Antisemitism
## 8057                                                          Antisemitism
## 8058                                                          Antisemitism
## 8059                                                          Antisemitism
## 8060                                                          Antisemitism
## 8061                                                          Antisemitism
## 8062                                                          Antisemitism
## 8063                                                          Antisemitism
## 8064                                                          Antisemitism
## 8065                                                          Antisemitism
## 8066                                                          Antisemitism
## 8067                                                          Antisemitism
## 8068                                                          Antisemitism
## 8069                                                          Antisemitism
## 8070                                                          Antisemitism
## 8071                                                          Antisemitism
## 8072                                                          Antisemitism
## 8073                                                          Antisemitism
## 8074                                                          Antisemitism
## 8075                                                          Antisemitism
## 8076                                                          Antisemitism
## 8077                                                          Antisemitism
## 8078                                                          Antisemitism
## 8079                                                          Antisemitism
## 8080                                                          Antisemitism
## 8081                                                          Antisemitism
## 8082                                                          Antisemitism
## 8083                                                          Antisemitism
## 8084                                                          Antisemitism
## 8085                                                          Antisemitism
## 8086                                                          Antisemitism
## 8087                                                          Antisemitism
## 8088                                                          Antisemitism
## 8089                                                          Antisemitism
## 8090                                                          Antisemitism
## 8091                                                          Antisemitism
## 8092                                                          Antisemitism
## 8093                                                          Antisemitism
## 8094                                                          Antisemitism
## 8095                                                          Antisemitism
## 8096                                                          Antisemitism
## 8097                                                          Antisemitism
## 8098                                                          Antisemitism
## 8099                                                          Antisemitism
## 8100                                                          Antisemitism
## 8101                                                          Antisemitism
## 8102                                                          Antisemitism
## 8103                                                          Antisemitism
## 8104                                                          Antisemitism
## 8105                                                          Antisemitism
## 8106                                                          Antisemitism
## 8107                                                          Antisemitism
## 8108                                                          Antisemitism
## 8109                                                          Antisemitism
## 8110                                                          Antisemitism
## 8111                                                          Antisemitism
## 8112                                                          Antisemitism
## 8113                                                          Antisemitism
## 8114                                                          Antisemitism
## 8115                                                          Antisemitism
## 8116                                                          Antisemitism
## 8117                                                          Antisemitism
## 8118                                                          Antisemitism
## 8119                                                          Antisemitism
## 8120                                                          Antisemitism
## 8121                                                          Antisemitism
## 8122                                                          Antisemitism
## 8123                                                          Antisemitism
## 8124                                                          Antisemitism
## 8125                                                          Antisemitism
## 8126                                                          Antisemitism
## 8127                                                          Antisemitism
## 8128                                                          Antisemitism
## 8129                                                          Antisemitism
## 8130                                                          Antisemitism
## 8131                                                          Antisemitism
## 8132                                                          Antisemitism
## 8133                                                          Antisemitism
## 8134                                                          Antisemitism
## 8135                                                          Antisemitism
## 8136                                                          Antisemitism
## 8137                                                          Antisemitism
## 8138                                                          Antisemitism
## 8139                                                          Antisemitism
## 8140                                                          Antisemitism
## 8141                                                          Antisemitism
## 8142                                                          Antisemitism
## 8143                                                          Antisemitism
## 8144                                                          Antisemitism
## 8145                                                          Antisemitism
## 8146                                                          Antisemitism
## 8147                                                          Antisemitism
## 8148                                                          Antisemitism
## 8149                                                          Antisemitism
## 8150                                                          Antisemitism
## 8151                                                          Antisemitism
## 8152                                                          Antisemitism
## 8153                                                          Antisemitism
## 8154                                                          Antisemitism
## 8155                                                          Antisemitism
## 8156                                                          Antisemitism
## 8157                                                          Antisemitism
## 8158                                                          Antisemitism
## 8159                                                          Antisemitism
## 8160                                                          Antisemitism
## 8161                                                          Antisemitism
## 8162                                                          Antisemitism
## 8163                                                          Antisemitism
## 8164                                                          Antisemitism
## 8165                                                          Antisemitism
## 8166                                                          Antisemitism
## 8167                                                          Antisemitism
## 8168                                                          Antisemitism
## 8169                                                          Antisemitism
## 8170                                                          Antisemitism
## 8171                                                          Antisemitism
## 8172                                                          Antisemitism
## 8173                                                          Antisemitism
## 8174                                                          Antisemitism
## 8175                                                          Antisemitism
## 8176                                                          Antisemitism
## 8177                                                          Antisemitism
## 8178                                                          Antisemitism
## 8179                                                          Antisemitism
## 8180                                                          Antisemitism
## 8181                                                          Antisemitism
## 8182                                                          Antisemitism
## 8183                                                          Antisemitism
## 8184                                                          Antisemitism
## 8185                                                          Antisemitism
## 8186                                                          Antisemitism
## 8187                                                          Antisemitism
## 8188                                                          Antisemitism
## 8189                                                          Antisemitism
## 8190                                                          Antisemitism
## 8191                                                          Antisemitism
## 8192                                                          Antisemitism
## 8193                                                          Antisemitism
## 8194                                                          Antisemitism
## 8195                                                          Antisemitism
## 8196                                                          Antisemitism
## 8197                                                          Antisemitism
## 8198                                                          Antisemitism
## 8199                                                          Antisemitism
## 8200                                                          Antisemitism
## 8201                                                          Antisemitism
## 8202                                                          Antisemitism
## 8203                                                          Antisemitism
## 8204                                                          Antisemitism
## 8205                                                          Antisemitism
## 8206                                                          Antisemitism
## 8207                                                          Antisemitism
## 8208                                                          Antisemitism
## 8209                                                          Antisemitism
## 8210                                                          Antisemitism
## 8211                                                          Antisemitism
## 8212                                                          Antisemitism
## 8213                                                          Antisemitism
## 8214                                                          Antisemitism
## 8215                                                          Antisemitism
## 8216                                                          Antisemitism
## 8217                                                          Antisemitism
## 8218                                                          Antisemitism
## 8219                                                          Antisemitism
## 8220                                                          Antisemitism
## 8221                                                          Antisemitism
## 8222                                                          Antisemitism
## 8223                                                          Antisemitism
## 8224                                                          Antisemitism
## 8225                                                          Antisemitism
## 8226                                                          Antisemitism
## 8227                                                          Antisemitism
## 8228                                                          Antisemitism
## 8229                                                          Antisemitism
## 8230                                                          Antisemitism
## 8231                                                          Antisemitism
## 8232                                                          Antisemitism
## 8233                                                          Antisemitism
## 8234                                                          Antisemitism
## 8235                                                          Antisemitism
## 8236                                                          Antisemitism
## 8237                                                          Antisemitism
## 8238                                                          Antisemitism
## 8239                                                          Antisemitism
## 8240                                                          Antisemitism
## 8241                                                          Antisemitism
## 8242                                                          Antisemitism
## 8243                                                          Antisemitism
## 8244                                                          Antisemitism
## 8245                                                          Antisemitism
## 8246                                                          Antisemitism
## 8247                                                          Antisemitism
## 8248                                                          Antisemitism
## 8249                                                          Antisemitism
## 8250                                                          Antisemitism
## 8251                                                          Antisemitism
## 8252                                                          Antisemitism
## 8253                                                          Antisemitism
## 8254                                                          Antisemitism
## 8255                                                          Antisemitism
## 8256                                                          Antisemitism
## 8257                                                          Antisemitism
## 8258                                                          Antisemitism
## 8259                                                          Antisemitism
## 8260                                                          Antisemitism
## 8261                                                          Antisemitism
## 8262                                                          Antisemitism
## 8263                                                          Antisemitism
## 8264                                                          Antisemitism
## 8265                                                          Antisemitism
## 8266                                                          Antisemitism
## 8267                                                          Antisemitism
## 8268                                                          Antisemitism
## 8269                                                          Antisemitism
## 8270                                                          Antisemitism
## 8271                                                          Antisemitism
## 8272                                                          Antisemitism
## 8273                                                          Antisemitism
## 8274                                                          Antisemitism
## 8275                                                          Antisemitism
## 8276                                                          Antisemitism
## 8277                                                          Antisemitism
## 8278                                                          Antisemitism
## 8279                                                          Antisemitism
## 8280                                                          Antisemitism
## 8281                                                          Antisemitism
## 8282                                                          Antisemitism
## 8283                                                          Antisemitism
## 8284                                                          Antisemitism
## 8285                                                          Antisemitism
## 8286                                                          Antisemitism
## 8287                                                          Antisemitism
## 8288                                                          Antisemitism
## 8289                                                          Antisemitism
## 8290                                                          Antisemitism
## 8291                                                          Antisemitism
## 8292                                                          Antisemitism
## 8293                                                          Antisemitism
## 8294                                                          Antisemitism
## 8295                                                          Antisemitism
## 8296                                                          Antisemitism
## 8297                                                          Antisemitism
## 8298                                                          Antisemitism
## 8299                                                          Antisemitism
## 8300                                                          Antisemitism
## 8301                                                          Antisemitism
## 8302                                                          Antisemitism
## 8303                                                          Antisemitism
## 8304                                                          Antisemitism
## 8305                                                          Antisemitism
## 8306                                                          Antisemitism
## 8307                                                          Antisemitism
## 8308                                                          Antisemitism
## 8309                                                          Antisemitism
## 8310                                                          Antisemitism
## 8311                                                          Antisemitism
## 8312                                                          Antisemitism
## 8313                                                          Antisemitism
## 8314                                                          Antisemitism
## 8315                                                          Antisemitism
## 8316                                                          Antisemitism
## 8317                                                          Antisemitism
## 8318                                                          Antisemitism
## 8319                                                          Antisemitism
## 8320                                                          Antisemitism
## 8321                                                          Antisemitism
## 8322                                                          Antisemitism
## 8323                                                          Antisemitism
## 8324                                                          Antisemitism
## 8325                                                          Antisemitism
## 8326                                                          Antisemitism
## 8327                                                          Antisemitism
## 8328                                                          Antisemitism
## 8329                                                          Antisemitism
## 8330                                                          Antisemitism
## 8331                                                          Antisemitism
## 8332                                                          Antisemitism
## 8333                                                          Antisemitism
## 8334                                                          Antisemitism
## 8335                                                          Antisemitism
## 8336                                                          Antisemitism
## 8337                                                          Antisemitism
## 8338                                                          Antisemitism
## 8339                                                          Antisemitism
## 8340                                                          Antisemitism
## 8341                                                          Antisemitism
## 8342                                                          Antisemitism
## 8343                                                          Antisemitism
## 8344                                                          Antisemitism
## 8345                                                          Antisemitism
## 8346                                                          Antisemitism
## 8347                                                          Antisemitism
## 8348                                                          Antisemitism
## 8349                                                          Antisemitism
## 8350                                                          Antisemitism
## 8351                                                          Antisemitism
## 8352                                                          Antisemitism
## 8353                                                          Antisemitism
## 8354                                                          Antisemitism
## 8355                                                          Antisemitism
## 8356                                                          Antisemitism
## 8357                                                          Antisemitism
## 8358                                                          Antisemitism
## 8359                                                          Antisemitism
## 8360                                                          Antisemitism
## 8361                                                          Antisemitism
## 8362                                                          Antisemitism
## 8363                                                          Antisemitism
## 8364                                                          Antisemitism
## 8365                                                          Antisemitism
## 8366                                                          Antisemitism
## 8367                                                          Antisemitism
## 8368                                                          Antisemitism
## 8369                                                          Antisemitism
## 8370                                                          Antisemitism
## 8371                                                          Antisemitism
## 8372                                                          Antisemitism
## 8373                                                          Antisemitism
## 8374                                                          Antisemitism
## 8375                                                          Antisemitism
## 8376                                                          Antisemitism
## 8377                                                          Antisemitism
## 8378                                                          Antisemitism
## 8379                                                          Antisemitism
## 8380                                                          Antisemitism
## 8381                                                          Antisemitism
## 8382                                                          Antisemitism
## 8383                                                          Antisemitism
## 8384                                                          Antisemitism
## 8385                                                          Antisemitism
## 8386                                                          Antisemitism
## 8387                                                          Antisemitism
## 8388                                                          Antisemitism
## 8389                                                          Antisemitism
## 8390                                                          Antisemitism
## 8391                                                          Antisemitism
## 8392                                                          Antisemitism
## 8393                                                          Antisemitism
## 8394                                                          Antisemitism
## 8395                                                          Antisemitism
## 8396                                                          Antisemitism
## 8397                                                          Antisemitism
## 8398                                                          Antisemitism
## 8399                                                          Antisemitism
## 8400                                                          Antisemitism
## 8401                                                          Antisemitism
## 8402                                                          Antisemitism
## 8403                                                          Antisemitism
## 8404                                                          Antisemitism
## 8405                                                          Antisemitism
## 8406                                                          Antisemitism
## 8407                                                          Antisemitism
## 8408                                                          Antisemitism
## 8409                                                          Antisemitism
## 8410                                                          Antisemitism
## 8411                                                          Antisemitism
## 8412                                                          Antisemitism
## 8413                                                          Antisemitism
## 8414                                                          Antisemitism
## 8415                                                          Antisemitism
## 8416                                                          Antisemitism
## 8417                                                          Antisemitism
## 8418                                                          Antisemitism
## 8419                                                          Antisemitism
## 8420                                                          Antisemitism
## 8421                                                          Antisemitism
## 8422                                                          Antisemitism
## 8423                                                          Antisemitism
## 8424                                                          Antisemitism
## 8425                                                          Antisemitism
## 8426                                                          Antisemitism
## 8427                                                          Antisemitism
## 8428                                                          Antisemitism
## 8429                                                          Antisemitism
## 8430                                                          Antisemitism
## 8431                                                          Antisemitism
## 8432                                                          Antisemitism
## 8433                                                          Antisemitism
## 8434                                                          Antisemitism
## 8435                                                          Antisemitism
## 8436                                                          Antisemitism
## 8437                                                          Antisemitism
## 8438                                                          Antisemitism
## 8439                                                          Antisemitism
## 8440                                                          Antisemitism
## 8441                                                          Antisemitism
## 8442                                                          Antisemitism
## 8443                                                          Antisemitism
## 8444                                                          Antisemitism
## 8445                                                          Antisemitism
## 8446                                                          Antisemitism
## 8447                                                          Antisemitism
## 8448                                                          Antisemitism
## 8449                                                          Antisemitism
## 8450                                                          Antisemitism
## 8451                                                          Antisemitism
## 8452                                                          Antisemitism
## 8453                                                          Antisemitism
## 8454                                                          Antisemitism
## 8455                                                          Antisemitism
## 8456                                                          Antisemitism
## 8457                                                          Antisemitism
## 8458                                                          Antisemitism
## 8459                                                          Antisemitism
## 8460                                                          Antisemitism
## 8461                                                          Antisemitism
## 8462                                                          Antisemitism
## 8463                                                          Antisemitism
## 8464                                                          Antisemitism
## 8465                                                          Antisemitism
## 8466                                                          Antisemitism
## 8467                                                          Antisemitism
## 8468                                                          Antisemitism
## 8469                                                          Antisemitism
## 8470                                                          Antisemitism
## 8471                                                          Antisemitism
## 8472                                                          Antisemitism
## 8473                                                          Antisemitism
## 8474                                                          Antisemitism
## 8475                                                          Antisemitism
## 8476                                                          Antisemitism
## 8477                                                          Antisemitism
## 8478                                                          Antisemitism
## 8479                                                          Antisemitism
## 8480                                                          Antisemitism
## 8481                                                          Antisemitism
## 8482                                                          Antisemitism
## 8483                                                          Antisemitism
## 8484                                                          Antisemitism
## 8485                                                          Antisemitism
## 8486                                                          Antisemitism
## 8487                                                          Antisemitism
## 8488                                                          Antisemitism
## 8489                                                          Antisemitism
## 8490                                                          Antisemitism
## 8491                                                          Antisemitism
## 8492                                                          Antisemitism
## 8493                                                          Antisemitism
## 8494                                                          Antisemitism
## 8495                                                          Antisemitism
## 8496                                                          Antisemitism
## 8497                                                          Antisemitism
## 8498                                                          Antisemitism
## 8499                                                          Antisemitism
## 8500                                                          Antisemitism
## 8501                                                          Antisemitism
## 8502                                                          Antisemitism
## 8503                                                          Antisemitism
## 8504                                                          Antisemitism
## 8505                                                          Antisemitism
## 8506                                                          Antisemitism
## 8507                                                          Antisemitism
## 8508                                                          Antisemitism
## 8509                                                          Antisemitism
## 8510                                                          Antisemitism
## 8511                                                          Antisemitism
## 8512                                                          Antisemitism
## 8513                                                          Antisemitism
## 8514                                                          Antisemitism
## 8515                                                          Antisemitism
## 8516                                                          Antisemitism
## 8517                                                          Antisemitism
## 8518                                                          Antisemitism
## 8519                                                          Antisemitism
## 8520                                                          Antisemitism
## 8521                                                          Antisemitism
## 8522                                                          Antisemitism
## 8523                                                          Antisemitism
## 8524                                                          Antisemitism
## 8525                                                          Antisemitism
## 8526                                                          Antisemitism
## 8527                                                          Antisemitism
## 8528                                                          Antisemitism
## 8529                                                          Antisemitism
## 8530                                                          Antisemitism
## 8531                                                          Antisemitism
## 8532                                                          Antisemitism
## 8533                                                          Antisemitism
## 8534                                                          Antisemitism
## 8535                                                          Antisemitism
## 8536                                                          Antisemitism
## 8537                                                          Antisemitism
## 8538                                                          Antisemitism
## 8539                                                          Antisemitism
## 8540                                                          Antisemitism
## 8541                                                          Antisemitism
## 8542                                                          Antisemitism
## 8543                                                          Antisemitism
## 8544                                                          Antisemitism
## 8545                                                          Antisemitism
## 8546                                                          Antisemitism
## 8547                                                          Antisemitism
## 8548                                                          Antisemitism
## 8549                                                          Antisemitism
## 8550                                                          Antisemitism
## 8551                                                          Antisemitism
## 8552                                                          Antisemitism
## 8553                                                          Antisemitism
## 8554                                                          Antisemitism
## 8555                                                          Antisemitism
## 8556                                                          Antisemitism
## 8557                                                          Antisemitism
## 8558                                                          Antisemitism
## 8559                                                          Antisemitism
## 8560                                                          Antisemitism
## 8561                                                          Antisemitism
## 8562                                                          Antisemitism
## 8563                                                          Antisemitism
## 8564                                                          Antisemitism
## 8565                                                          Antisemitism
## 8566                                                          Antisemitism
## 8567                                                          Antisemitism
## 8568                                                          Antisemitism
## 8569                                                          Antisemitism
## 8570                                                          Antisemitism
## 8571                                                          Antisemitism
## 8572                                                          Antisemitism
## 8573                                                          Antisemitism
## 8574                                                          Antisemitism
## 8575                                                          Antisemitism
## 8576                                                          Antisemitism
## 8577                                                          Antisemitism
## 8578                                                          Antisemitism
## 8579                                                          Antisemitism
## 8580                                                          Antisemitism
## 8581                                                          Antisemitism
## 8582                                                          Antisemitism
## 8583                                                          Antisemitism
## 8584                                                          Antisemitism
## 8585                                                          Antisemitism
## 8586                                                          Antisemitism
## 8587                                                          Antisemitism
## 8588                                                          Antisemitism
## 8589                                                          Antisemitism
## 8590                                                          Antisemitism
## 8591                                                          Antisemitism
## 8592                                                          Antisemitism
## 8593                                                          Antisemitism
## 8594                                                          Antisemitism
## 8595                                                          Antisemitism
## 8596                                                          Antisemitism
## 8597                                                          Antisemitism
## 8598                                                          Antisemitism
## 8599                                                          Antisemitism
## 8600                                                          Antisemitism
## 8601                                                          Antisemitism
## 8602                                                          Antisemitism
## 8603                                                          Antisemitism
## 8604                                                          Antisemitism
## 8605                                                          Antisemitism
## 8606                                                          Antisemitism
## 8607                                                          Antisemitism
## 8608                                                          Antisemitism
## 8609                                                          Antisemitism
## 8610                                                          Antisemitism
## 8611                                                          Antisemitism
## 8612                                                          Antisemitism
## 8613                                                          Antisemitism
## 8614                                                          Antisemitism
## 8615                                                          Antisemitism
## 8616                                                          Antisemitism
## 8617                                                          Antisemitism
## 8618                                                          Antisemitism
## 8619                                                          Antisemitism
## 8620                                                          Antisemitism
## 8621                                                          Antisemitism
## 8622                                                          Antisemitism
## 8623                                                          Antisemitism
## 8624                                                          Antisemitism
## 8625                                                          Antisemitism
## 8626                                                          Antisemitism
## 8627                                                          Antisemitism
## 8628                                                          Antisemitism
## 8629                                                          Antisemitism
## 8630                                                          Antisemitism
## 8631                                                          Antisemitism
## 8632                                                          Antisemitism
## 8633                                                          Antisemitism
## 8634                                                          Antisemitism
## 8635                                                          Antisemitism
## 8636                                                          Antisemitism
## 8637                                                          Antisemitism
## 8638                                                          Antisemitism
## 8639                                                          Antisemitism
## 8640                                                          Antisemitism
## 8641                                                          Antisemitism
## 8642                                                          Antisemitism
## 8643                                                          Antisemitism
## 8644                                                          Antisemitism
## 8645                                                          Antisemitism
## 8646                                                          Antisemitism
## 8647                                                          Antisemitism
## 8648                                                          Antisemitism
## 8649                                                          Antisemitism
## 8650                                                          Antisemitism
## 8651                                                          Antisemitism
## 8652                                                          Antisemitism
## 8653                                                          Antisemitism
## 8654                                                          Antisemitism
## 8655                                                          Antisemitism
## 8656                                                          Antisemitism
## 8657                                                          Antisemitism
## 8658                                                          Antisemitism
## 8659                                                          Antisemitism
## 8660                                                          Antisemitism
## 8661                                                          Antisemitism
## 8662                                                          Antisemitism
## 8663                                                          Antisemitism
## 8664                                                          Antisemitism
## 8665                                                          Antisemitism
## 8666                                                          Antisemitism
## 8667                                                          Antisemitism
## 8668                                                          Antisemitism
## 8669                                                          Antisemitism
## 8670                                                          Antisemitism
## 8671                                                          Antisemitism
## 8672                                                          Antisemitism
## 8673                                                          Antisemitism
## 8674                                                          Antisemitism
## 8675                                                          Antisemitism
## 8676                                                          Antisemitism
## 8677                                                          Antisemitism
## 8678                                                          Antisemitism
## 8679                                                          Antisemitism
## 8680                                                          Antisemitism
## 8681                                                          Antisemitism
## 8682                                                          Antisemitism
## 8683                                                          Antisemitism
## 8684                                                          Antisemitism
## 8685                                                          Antisemitism
## 8686                                                          Antisemitism
## 8687                                                          Antisemitism
## 8688                                                          Antisemitism
## 8689                                                          Antisemitism
## 8690                                                          Antisemitism
## 8691                                                          Antisemitism
## 8692                                                          Antisemitism
## 8693                                                          Antisemitism
## 8694                                                          Antisemitism
## 8695                                                          Antisemitism
## 8696                                                          Antisemitism
## 8697                                                          Antisemitism
## 8698                                                          Antisemitism
## 8699                                                          Antisemitism
## 8700                                                          Antisemitism
## 8701                                                          Antisemitism
## 8702                                                          Antisemitism
## 8703                                                          Antisemitism
## 8704                                                          Antisemitism
## 8705                                                          Antisemitism
## 8706                                                          Antisemitism
## 8707                                                          Antisemitism
## 8708                                                          Antisemitism
## 8709                                                          Antisemitism
## 8710                                                          Antisemitism
## 8711                                                          Antisemitism
## 8712                                                          Antisemitism
## 8713                                                          Antisemitism
## 8714                                                          Antisemitism
## 8715                                                          Antisemitism
## 8716                                                          Antisemitism
## 8717                                                          Antisemitism
## 8718                                                          Antisemitism
## 8719                                                          Antisemitism
## 8720                                                          Antisemitism
## 8721                                                          Antisemitism
## 8722                                                          Antisemitism
## 8723                                                          Antisemitism
## 8724                                                          Antisemitism
## 8725                                                          Antisemitism
## 8726                                                          Antisemitism
## 8727                                                          Antisemitism
## 8728                                                          Antisemitism
## 8729                                                          Antisemitism
## 8730                                                          Antisemitism
## 8731                                                          Antisemitism
## 8732                                                          Antisemitism
## 8733                                                          Antisemitism
## 8734                                                          Antisemitism
## 8735                                                          Antisemitism
## 8736                                                          Antisemitism
## 8737                                                          Antisemitism
## 8738                                                          Antisemitism
## 8739                                                          Antisemitism
## 8740                                                          Antisemitism
## 8741                                                          Antisemitism
## 8742                                                          Antisemitism
## 8743                                                          Antisemitism
## 8744                                                          Antisemitism
## 8745                                                          Antisemitism
## 8746                                                          Antisemitism
## 8747                                                          Antisemitism
## 8748                                                          Antisemitism
## 8749                                                          Antisemitism
## 8750                                                          Antisemitism
## 8751                                                          Antisemitism
## 8752                                                          Antisemitism
## 8753                                                          Antisemitism
## 8754                                                          Antisemitism
## 8755                                                          Antisemitism
## 8756                                                          Antisemitism
## 8757                                                          Antisemitism
## 8758                                                          Antisemitism
## 8759                                                          Antisemitism
## 8760                                                          Antisemitism
## 8761                                                          Antisemitism
## 8762                                                          Antisemitism
## 8763                                                          Antisemitism
## 8764                                                          Antisemitism
## 8765                                                          Antisemitism
## 8766                                                          Antisemitism
## 8767                                                          Antisemitism
## 8768                                                          Antisemitism
## 8769                                                          Antisemitism
## 8770                                                          Antisemitism
## 8771                                                          Antisemitism
## 8772                                                          Antisemitism
## 8773                                                          Antisemitism
## 8774                                                          Antisemitism
## 8775                                                          Antisemitism
## 8776                                                          Antisemitism
## 8777                                                          Antisemitism
## 8778                                                          Antisemitism
## 8779                                                          Antisemitism
## 8780                                                          Antisemitism
## 8781                                                          Antisemitism
## 8782                                                          Antisemitism
## 8783                                                          Antisemitism
## 8784                                                          Antisemitism
## 8785                                                          Antisemitism
## 8786                                                          Antisemitism
## 8787                                                          Antisemitism
## 8788                                                          Antisemitism
## 8789                                                          Antisemitism
## 8790                                                          Antisemitism
## 8791                                                          Antisemitism
## 8792                                                          Antisemitism
## 8793                                                          Antisemitism
## 8794                                                          Antisemitism
## 8795                                                          Antisemitism
## 8796                                                          Antisemitism
## 8797                                                          Antisemitism
## 8798                                                          Antisemitism
## 8799                                                          Antisemitism
## 8800                                                          Antisemitism
## 8801                                                          Antisemitism
## 8802                                                          Antisemitism
## 8803                                                          Antisemitism
## 8804                                                          Antisemitism
## 8805                                                          Antisemitism
## 8806                                                          Antisemitism
## 8807                                                          Antisemitism
## 8808                                                          Antisemitism
## 8809                                                          Antisemitism
## 8810                                                          Antisemitism
## 8811                                                          Antisemitism
## 8812                                                          Antisemitism
## 8813                                                          Antisemitism
## 8814                                                          Antisemitism
## 8815                                                          Antisemitism
## 8816                                                          Antisemitism
## 8817                                                          Antisemitism
## 8818                                                          Antisemitism
## 8819                                                          Antisemitism
## 8820                                                          Antisemitism
## 8821                                                          Antisemitism
## 8822                                                          Antisemitism
## 8823                                                          Antisemitism
## 8824                                                          Antisemitism
## 8825                                                          Antisemitism
## 8826                                                          Antisemitism
## 8827                                                          Antisemitism
## 8828                                                          Antisemitism
## 8829                                                          Antisemitism
## 8830                                                          Antisemitism
## 8831                                                          Antisemitism
## 8832                                                          Antisemitism
## 8833                                                          Antisemitism
## 8834                                                          Antisemitism
## 8835                                                          Antisemitism
## 8836                                                          Antisemitism
## 8837                                                          Antisemitism
## 8838                                                          Antisemitism
## 8839                                                          Antisemitism
## 8840                                                          Antisemitism
## 8841                                                          Antisemitism
## 8842                                                          Antisemitism
## 8843                                                          Antisemitism
## 8844                                                          Antisemitism
## 8845                                                          Antisemitism
## 8846                                                          Antisemitism
## 8847                                                          Antisemitism
## 8848                                                          Antisemitism
## 8849                                                          Antisemitism
## 8850                                                          Antisemitism
## 8851                                                          Antisemitism
## 8852                                                          Antisemitism
## 8853                                                          Antisemitism
## 8854                                                          Antisemitism
## 8855                                                          Antisemitism
## 8856                                                          Antisemitism
## 8857                                                          Antisemitism
## 8858                                                          Antisemitism
## 8859                                                          Antisemitism
## 8860                                                          Antisemitism
## 8861                                                          Antisemitism
## 8862                                                          Antisemitism
## 8863                                                          Antisemitism
## 8864                                                          Antisemitism
## 8865                                                          Antisemitism
## 8866                                                          Antisemitism
## 8867                                                          Antisemitism
## 8868                                                          Antisemitism
## 8869                                                          Antisemitism
## 8870                                                          Antisemitism
## 8871                                                          Antisemitism
## 8872                                                          Antisemitism
## 8873                                                          Antisemitism
## 8874                                                          Antisemitism
## 8875                                                          Antisemitism
## 8876                                                          Antisemitism
## 8877                                                          Antisemitism
## 8878                                                          Antisemitism
## 8879                                                          Antisemitism
## 8880                                                          Antisemitism
## 8881                                                          Antisemitism
## 8882                                                          Antisemitism
## 8883                                                          Antisemitism
## 8884                                                          Antisemitism
## 8885                                                          Antisemitism
## 8886                                                          Antisemitism
## 8887                                                          Antisemitism
## 8888                                                          Antisemitism
## 8889                                                          Antisemitism
## 8890                                                          Antisemitism
## 8891                                                          Antisemitism
## 8892                                                          Antisemitism
## 8893                                                          Antisemitism
## 8894                                                          Antisemitism
## 8895                                                          Antisemitism
## 8896                                                          Antisemitism
## 8897                                                          Antisemitism
## 8898                                                          Antisemitism
## 8899                                                          Antisemitism
## 8900                                                          Antisemitism
## 8901                                                          Antisemitism
## 8902                                                          Antisemitism
## 8903                                                          Antisemitism
## 8904                                                          Antisemitism
## 8905                                                          Antisemitism
## 8906                                                          Antisemitism
## 8907                                                          Antisemitism
## 8908                                                          Antisemitism
## 8909                                                          Antisemitism
## 8910                                                          Antisemitism
## 8911                                                          Antisemitism
## 8912                                                          Antisemitism
## 8913                                                          Antisemitism
## 8914                                                          Antisemitism
## 8915                                                          Antisemitism
## 8916                                                          Antisemitism
## 8917                                                          Antisemitism
## 8918                                                          Antisemitism
## 8919                                                          Antisemitism
## 8920                                                          Antisemitism
## 8921                                                          Antisemitism
## 8922                                                          Antisemitism
## 8923                                                          Antisemitism
## 8924                                                          Antisemitism
## 8925                                                          Antisemitism
## 8926                                                          Antisemitism
## 8927                                                          Antisemitism
## 8928                                                          Antisemitism
## 8929                                                          Antisemitism
## 8930                                                          Antisemitism
## 8931                                                          Antisemitism
## 8932                                                          Antisemitism
## 8933                                                          Antisemitism
## 8934                                                          Antisemitism
## 8935                                                          Antisemitism
## 8936                                                          Antisemitism
## 8937                                                          Antisemitism
## 8938                                                          Antisemitism
## 8939                                                          Antisemitism
## 8940                                                          Antisemitism
## 8941                                                          Antisemitism
## 8942                                                          Antisemitism
## 8943                                                          Antisemitism
## 8944                                                          Antisemitism
## 8945                                                          Antisemitism
## 8946                                                          Antisemitism
## 8947                                                          Antisemitism
## 8948                                                          Antisemitism
## 8949                                                          Antisemitism
## 8950                                                          Antisemitism
## 8951                                                          Antisemitism
## 8952                                                          Antisemitism
## 8953                                                          Antisemitism
## 8954                                                          Antisemitism
## 8955                                                          Antisemitism
## 8956                                                          Antisemitism
## 8957                                                          Antisemitism
## 8958                                                          Antisemitism
## 8959                                                          Antisemitism
## 8960                                                          Antisemitism
## 8961                                                          Antisemitism
## 8962                                                          Antisemitism
## 8963                                                          Antisemitism
## 8964                                                          Antisemitism
## 8965                                                          Antisemitism
## 8966                                                          Antisemitism
## 8967                                                          Antisemitism
## 8968                                                          Antisemitism
## 8969                                                          Antisemitism
## 8970                                                          Antisemitism
## 8971                                                          Antisemitism
## 8972                                                          Antisemitism
## 8973                                                          Antisemitism
## 8974                                                          Antisemitism
## 8975                                                          Antisemitism
## 8976                                                          Antisemitism
## 8977                                                          Antisemitism
## 8978                                                          Antisemitism
## 8979                                                          Antisemitism
## 8980                                                          Antisemitism
## 8981                                                          Antisemitism
## 8982                                                          Antisemitism
## 8983                                                          Antisemitism
## 8984                                                          Antisemitism
## 8985                                                          Antisemitism
## 8986                                                          Antisemitism
## 8987                                                          Antisemitism
## 8988                                                          Antisemitism
## 8989                                                          Antisemitism
## 8990                                                          Antisemitism
## 8991                                                          Antisemitism
## 8992                                                          Antisemitism
## 8993                                                          Antisemitism
## 8994                                                          Antisemitism
## 8995                                                          Antisemitism
## 8996                                                          Antisemitism
## 8997                                                          Antisemitism
## 8998                                                          Antisemitism
## 8999                                                          Antisemitism
## 9000                                                          Antisemitism
## 9001                                                          Antisemitism
## 9002                                                          Antisemitism
## 9003                                                          Antisemitism
## 9004                                                          Antisemitism
## 9005                                                          Antisemitism
## 9006                                                          Antisemitism
## 9007                                                          Antisemitism
## 9008                                                          Antisemitism
## 9009                                                          Antisemitism
## 9010                                                          Antisemitism
## 9011                                                          Antisemitism
## 9012                                                          Antisemitism
## 9013                                                          Antisemitism
## 9014                                                          Antisemitism
## 9015                                                          Antisemitism
## 9016                                                          Antisemitism
## 9017                                                          Antisemitism
## 9018                                                          Antisemitism
## 9019                                                          Antisemitism
## 9020                                                          Antisemitism
## 9021                                                          Antisemitism
## 9022                                                          Antisemitism
## 9023                                                          Antisemitism
## 9024                                                          Antisemitism
## 9025                                                          Antisemitism
## 9026                                                          Antisemitism
## 9027                                                          Antisemitism
## 9028                                                          Antisemitism
## 9029                                                          Antisemitism
## 9030                                                          Antisemitism
## 9031                                                          Antisemitism
## 9032                                                          Antisemitism
## 9033                                                          Antisemitism
## 9034                                                          Antisemitism
## 9035                                                          Antisemitism
## 9036                                                          Antisemitism
## 9037                                                          Antisemitism
## 9038                                                          Antisemitism
## 9039                                                          Antisemitism
## 9040                                                          Antisemitism
## 9041                                                          Antisemitism
## 9042                                                          Antisemitism
## 9043                                                          Antisemitism
## 9044                                                          Antisemitism
## 9045                                                          Antisemitism
## 9046                                                          Antisemitism
## 9047                                                          Antisemitism
## 9048                                                          Antisemitism
## 9049                                                          Antisemitism
## 9050                                                          Antisemitism
## 9051                                                          Antisemitism
## 9052                                                          Antisemitism
## 9053                                                          Antisemitism
## 9054                                                          Antisemitism
## 9055                                                          Antisemitism
## 9056                                                          Antisemitism
## 9057                                                          Antisemitism
## 9058                                                          Antisemitism
## 9059                                                          Antisemitism
## 9060                                                          Antisemitism
## 9061                                                          Antisemitism
## 9062                                                          Antisemitism
## 9063                                                          Antisemitism
## 9064                                                          Antisemitism
## 9065                                                          Antisemitism
## 9066                                                          Antisemitism
## 9067                                                          Antisemitism
## 9068                                                          Antisemitism
## 9069                                                          Antisemitism
## 9070                                                          Antisemitism
## 9071                                                          Antisemitism
## 9072                                                          Antisemitism
## 9073                                                          Antisemitism
## 9074                                                          Antisemitism
## 9075                                                          Antisemitism
## 9076                                                          Antisemitism
## 9077                                                          Antisemitism
## 9078                                                          Antisemitism
## 9079                                                          Antisemitism
## 9080                                                          Antisemitism
## 9081                                                          Antisemitism
## 9082                                                          Antisemitism
## 9083                                                          Antisemitism
## 9084                                                          Antisemitism
## 9085                                                          Antisemitism
## 9086                                                          Antisemitism
## 9087                                                          Antisemitism
## 9088                                                          Antisemitism
## 9089                                                          Antisemitism
## 9090                                                          Antisemitism
## 9091                                                          Antisemitism
## 9092                                                          Antisemitism
## 9093                                                          Antisemitism
## 9094                                                          Antisemitism
## 9095                                                          Antisemitism
## 9096                                                          Antisemitism
## 9097                                                          Antisemitism
## 9098                                                          Antisemitism
## 9099                                                          Antisemitism
## 9100                                                          Antisemitism
## 9101                                                          Antisemitism
## 9102                                                          Antisemitism
## 9103                                                          Antisemitism
## 9104                                                          Antisemitism
## 9105                                                          Antisemitism
## 9106                                                          Antisemitism
## 9107                                                          Antisemitism
## 9108                                                          Antisemitism
## 9109                                                          Antisemitism
## 9110                                                          Antisemitism
## 9111                                                          Antisemitism
## 9112                                                          Antisemitism
## 9113                                                          Antisemitism
## 9114                                                          Antisemitism
## 9115                                                          Antisemitism
## 9116                                                          Antisemitism
## 9117                                                          Antisemitism
## 9118                                                          Antisemitism
## 9119                                                          Antisemitism
## 9120                                                          Antisemitism
## 9121                                                          Antisemitism
## 9122                                                          Antisemitism
## 9123                                                          Antisemitism
## 9124                                                          Antisemitism
## 9125                                                          Antisemitism
## 9126                                                          Antisemitism
## 9127                                                          Antisemitism
## 9128                                                          Antisemitism
## 9129                                                          Antisemitism
## 9130                                                          Antisemitism
## 9131                                                          Antisemitism
## 9132                                                          Antisemitism
## 9133                                                          Antisemitism
## 9134                                                          Antisemitism
## 9135                                                          Antisemitism
## 9136                                                          Antisemitism
## 9137                                                          Antisemitism
## 9138                                                          Antisemitism
## 9139                                                          Antisemitism
## 9140                                                          Antisemitism
## 9141                                                          Antisemitism
## 9142                                                          Antisemitism
## 9143                                                          Antisemitism
## 9144                                                          Antisemitism
## 9145                                                          Antisemitism
## 9146                                                          Antisemitism
## 9147                                                          Antisemitism
## 9148                                                          Antisemitism
## 9149                                                          Antisemitism
## 9150                                                          Antisemitism
## 9151                                                          Antisemitism
## 9152                                                          Antisemitism
## 9153                                                          Antisemitism
## 9154                                                          Antisemitism
## 9155                                                          Antisemitism
## 9156                                                          Antisemitism
## 9157                                                          Antisemitism
## 9158                                                          Antisemitism
## 9159                                                          Antisemitism
## 9160                                                          Antisemitism
## 9161                                                          Antisemitism
## 9162                                                          Antisemitism
## 9163                                                          Antisemitism
## 9164                                                          Antisemitism
## 9165                                                          Antisemitism
## 9166                                                          Antisemitism
## 9167                                                          Antisemitism
## 9168                                                          Antisemitism
## 9169                                                          Antisemitism
## 9170                                                          Antisemitism
## 9171                                                          Antisemitism
## 9172                                                          Antisemitism
## 9173                                                          Antisemitism
## 9174                                                          Antisemitism
## 9175                                                          Antisemitism
## 9176                                                          Antisemitism
## 9177                                                          Antisemitism
## 9178                                                          Antisemitism
## 9179                                                          Antisemitism
## 9180                                                          Antisemitism
## 9181                                                          Antisemitism
## 9182                                                          Antisemitism
## 9183                                                          Antisemitism
## 9184                                                          Antisemitism
## 9185                                                          Antisemitism
## 9186                                                          Antisemitism
## 9187                                                          Antisemitism
## 9188                                                          Antisemitism
## 9189                                                          Antisemitism
## 9190                                                          Antisemitism
## 9191                                                          Antisemitism
## 9192                                                          Antisemitism
## 9193                                                          Antisemitism
## 9194                                                          Antisemitism
## 9195                                                          Antisemitism
## 9196                                                          Antisemitism
## 9197                                                          Antisemitism
## 9198                                                          Antisemitism
## 9199                                                          Antisemitism
## 9200                                                          Antisemitism
## 9201                                                          Antisemitism
## 9202                                                          Antisemitism
## 9203                                                          Antisemitism
## 9204                                                          Antisemitism
## 9205                                                          Antisemitism
## 9206                                                          Antisemitism
## 9207                                                          Antisemitism
## 9208                                                          Antisemitism
## 9209                                                          Antisemitism
## 9210                                                          Antisemitism
## 9211                                                          Antisemitism
## 9212                                                          Antisemitism
## 9213                                                          Antisemitism
## 9214                                                          Antisemitism
## 9215                                                          Antisemitism
## 9216                                                          Antisemitism
## 9217                                                          Antisemitism
## 9218                                                          Antisemitism
## 9219                                                          Antisemitism
## 9220                                                          Antisemitism
## 9221                                                          Antisemitism
## 9222                                                          Antisemitism
## 9223                                                          Antisemitism
## 9224                                                          Antisemitism
## 9225                                                          Antisemitism
## 9226                                                          Antisemitism
## 9227                                                          Antisemitism
## 9228                                                          Antisemitism
## 9229                                                          Antisemitism
## 9230                                                          Antisemitism
## 9231                                                          Antisemitism
## 9232                                                          Antisemitism
## 9233                                                          Antisemitism
## 9234                                                          Antisemitism
## 9235                                                          Antisemitism
## 9236                                                          Antisemitism
## 9237                                                          Antisemitism
## 9238                                                          Antisemitism
## 9239                                                          Antisemitism
## 9240                                                          Antisemitism
## 9241                                                          Antisemitism
## 9242                                                          Antisemitism
## 9243                                                          Antisemitism
## 9244                                                          Antisemitism
## 9245                                                          Antisemitism
## 9246                                                          Antisemitism
## 9247                                                          Antisemitism
## 9248                                                          Antisemitism
## 9249                                                          Antisemitism
## 9250                                                          Antisemitism
## 9251                                                          Antisemitism
## 9252                                                          Antisemitism
## 9253                                                          Antisemitism
## 9254                                                          Antisemitism
## 9255                                                          Antisemitism
## 9256                                                          Antisemitism
## 9257                                                          Antisemitism
## 9258                                                          Antisemitism
## 9259                                                          Antisemitism
## 9260                                                          Antisemitism
## 9261                                                          Antisemitism
## 9262                                                          Antisemitism
## 9263                                                          Antisemitism
## 9264                                                          Antisemitism
## 9265                                                          Antisemitism
## 9266                                                          Antisemitism
## 9267                                                          Antisemitism
## 9268                                                          Antisemitism
## 9269                                                          Antisemitism
## 9270                                                          Antisemitism
## 9271                                                          Antisemitism
## 9272                                                          Antisemitism
## 9273                                                          Antisemitism
## 9274                                                          Antisemitism
## 9275                                                          Antisemitism
## 9276                                                          Antisemitism
## 9277                                                          Antisemitism
## 9278                                                          Antisemitism
## 9279                                                          Antisemitism
## 9280                                                          Antisemitism
## 9281                                                          Antisemitism
## 9282                                                          Antisemitism
## 9283                                                          Antisemitism
## 9284                                                          Antisemitism
## 9285                                                          Antisemitism
## 9286                                                          Antisemitism
## 9287                                                          Antisemitism
## 9288                                                          Antisemitism
## 9289                                                          Antisemitism
## 9290                                                          Antisemitism
## 9291                                                          Antisemitism
## 9292                                                          Antisemitism
## 9293                                                          Antisemitism
## 9294                                                          Antisemitism
## 9295                                                          Antisemitism
## 9296                                                          Antisemitism
## 9297                                                          Antisemitism
## 9298                                                          Antisemitism
## 9299                                                          Antisemitism
## 9300                                                          Antisemitism
## 9301                                                          Antisemitism
## 9302                                                          Antisemitism
## 9303                                                          Antisemitism
## 9304                                                          Antisemitism
## 9305                                                          Antisemitism
## 9306                                                          Antisemitism
## 9307                                                          Antisemitism
## 9308                                                          Antisemitism
## 9309                                                          Antisemitism
## 9310                                                          Antisemitism
## 9311                                                          Antisemitism
## 9312                                                          Antisemitism
## 9313                                                          Antisemitism
## 9314                                                          Antisemitism
## 9315                                                          Antisemitism
## 9316                                                          Antisemitism
## 9317                                                          Antisemitism
## 9318                                                          Antisemitism
## 9319                                                          Antisemitism
## 9320                                                          Antisemitism
## 9321                                                          Antisemitism
## 9322                                                          Antisemitism
## 9323                                                          Antisemitism
## 9324                                                          Antisemitism
## 9325                                                          Antisemitism
## 9326                                                          Antisemitism
## 9327                                                          Antisemitism
## 9328                                                          Antisemitism
## 9329                                                          Antisemitism
## 9330                                                          Antisemitism
## 9331                                                          Antisemitism
## 9332                                                          Antisemitism
## 9333                                                          Antisemitism
## 9334                                                          Antisemitism
## 9335                                                          Antisemitism
## 9336                                                          Antisemitism
## 9337                                                          Antisemitism
## 9338                                                          Antisemitism
## 9339                                                          Antisemitism
## 9340                                                          Antisemitism
## 9341                                                          Antisemitism
## 9342                                                          Antisemitism
## 9343                                                          Antisemitism
## 9344                                                          Antisemitism
## 9345                                                          Antisemitism
## 9346                                                          Antisemitism
## 9347                                                          Antisemitism
## 9348                                                          Antisemitism
## 9349                                                          Antisemitism
## 9350                                                          Antisemitism
## 9351                                                          Antisemitism
## 9352                                                          Antisemitism
## 9353                                                          Antisemitism
## 9354                                                          Antisemitism
## 9355                                                          Antisemitism
## 9356                                                          Antisemitism
## 9357                                                          Antisemitism
## 9358                                                          Antisemitism
## 9359                                                          Antisemitism
## 9360                                                          Antisemitism
## 9361                                                          Antisemitism
## 9362                                                          Antisemitism
## 9363                                                          Antisemitism
## 9364                                                          Antisemitism
## 9365                                                          Antisemitism
## 9366                                                          Antisemitism
## 9367                                                          Antisemitism
## 9368                                                          Antisemitism
## 9369                                                          Antisemitism
## 9370                                                          Antisemitism
## 9371                                                          Antisemitism
## 9372                                                          Antisemitism
## 9373                                                          Antisemitism
## 9374                                                          Antisemitism
## 9375                                                          Antisemitism
## 9376                                                          Antisemitism
## 9377                                                          Antisemitism
## 9378                                                          Antisemitism
## 9379                                                          Antisemitism
## 9380                                                          Antisemitism
## 9381                                                          Antisemitism
## 9382                                                          Antisemitism
## 9383                                                          Antisemitism
## 9384                                                          Antisemitism
## 9385                                                          Antisemitism
## 9386                                                          Antisemitism
## 9387                                                          Antisemitism
## 9388                                                          Antisemitism
## 9389                                                          Antisemitism
## 9390                                                          Antisemitism
## 9391                                                          Antisemitism
## 9392                                                          Antisemitism
## 9393                                                          Antisemitism
## 9394                                                          Antisemitism
## 9395                                                          Antisemitism
## 9396                                                          Antisemitism
## 9397                                                          Antisemitism
## 9398                                                          Antisemitism
## 9399                                                          Antisemitism
## 9400                                                          Antisemitism
## 9401                                                          Antisemitism
## 9402                                                          Antisemitism
## 9403                                                          Antisemitism
## 9404                                                          Antisemitism
## 9405                                                          Antisemitism
## 9406                                                          Antisemitism
## 9407                                                          Antisemitism
## 9408                                                          Antisemitism
## 9409                                                          Antisemitism
## 9410                                                          Antisemitism
## 9411                                                          Antisemitism
## 9412                                                          Antisemitism
## 9413                                                          Antisemitism
## 9414                                                          Antisemitism
## 9415                                                          Antisemitism
## 9416                                                          Antisemitism
## 9417                                                          Antisemitism
## 9418                                                          Antisemitism
## 9419                                                          Antisemitism
## 9420                                                          Antisemitism
## 9421                                                          Antisemitism
## 9422                                                          Antisemitism
## 9423                                                          Antisemitism
## 9424                                                          Antisemitism
## 9425                                                          Antisemitism
## 9426                                                          Antisemitism
## 9427                                                          Antisemitism
## 9428                                                          Antisemitism
## 9429                                                          Antisemitism
## 9430                                                          Antisemitism
## 9431                                                          Antisemitism
## 9432                                                          Antisemitism
## 9433                                                          Antisemitism
## 9434                                                          Antisemitism
## 9435                                                          Antisemitism
## 9436                                                          Antisemitism
## 9437                                                          Antisemitism
## 9438                                                          Antisemitism
## 9439                                                          Antisemitism
## 9440                                                          Antisemitism
## 9441                                                          Antisemitism
## 9442                                                          Antisemitism
## 9443                                                          Antisemitism
## 9444                                                          Antisemitism
## 9445                                                          Antisemitism
## 9446                                                          Antisemitism
## 9447                                                          Antisemitism
## 9448                                                          Antisemitism
## 9449                                                          Antisemitism
## 9450                                                          Antisemitism
## 9451                                                          Antisemitism
## 9452                                                          Antisemitism
## 9453                                                          Antisemitism
## 9454                                                          Antisemitism
## 9455                                                          Antisemitism
## 9456                                                          Antisemitism
## 9457                                                          Antisemitism
## 9458                                                          Antisemitism
## 9459                                                          Antisemitism
## 9460                                                          Antisemitism
## 9461                                                          Antisemitism
## 9462                                                          Antisemitism
## 9463                                                          Antisemitism
## 9464                                                          Antisemitism
## 9465                                                          Antisemitism
## 9466                                                          Antisemitism
## 9467                                                          Antisemitism
## 9468                                                          Antisemitism
## 9469                                                          Antisemitism
## 9470                                                          Antisemitism
## 9471                                                          Antisemitism
## 9472                                                          Antisemitism
## 9473                                                          Antisemitism
## 9474                                                          Antisemitism
## 9475                                                          Antisemitism
## 9476                                                          Antisemitism
## 9477                                                          Antisemitism
## 9478                                                          Antisemitism
## 9479                                                          Antisemitism
## 9480                                                          Antisemitism
## 9481                                                          Antisemitism
## 9482                                                          Antisemitism
## 9483                                                          Antisemitism
## 9484                                                          Antisemitism
## 9485                                                          Antisemitism
## 9486                                                          Antisemitism
## 9487                                                          Antisemitism
## 9488                                                          Antisemitism
## 9489                                                          Antisemitism
## 9490                                                          Antisemitism
## 9491                                                          Antisemitism
## 9492                                                          Antisemitism
## 9493                                                          Antisemitism
## 9494                                                          Antisemitism
## 9495                                                          Antisemitism
## 9496                                                          Antisemitism
## 9497                                                          Antisemitism
## 9498                                                          Antisemitism
## 9499                                                          Antisemitism
## 9500                                                          Antisemitism
## 9501                                                          Antisemitism
## 9502                                                          Antisemitism
## 9503                                                          Antisemitism
## 9504                                                          Antisemitism
## 9505                                                          Antisemitism
## 9506                                                          Antisemitism
## 9507                                                          Antisemitism
## 9508                                                          Antisemitism
## 9509                                                          Antisemitism
## 9510                                                          Antisemitism
## 9511                                                          Antisemitism
## 9512                                                          Antisemitism
## 9513                                                          Antisemitism
## 9514                                                          Antisemitism
## 9515                                                          Antisemitism
## 9516                                                          Antisemitism
## 9517                                                          Antisemitism
## 9518                                                          Antisemitism
## 9519                                                          Antisemitism
## 9520                                                          Antisemitism
## 9521                                                          Antisemitism
## 9522                                                          Antisemitism
## 9523                                                          Antisemitism
## 9524                                                          Antisemitism
## 9525                                                          Antisemitism
## 9526                                                          Antisemitism
## 9527                                                          Antisemitism
## 9528                                                          Antisemitism
## 9529                                                          Antisemitism
## 9530                                                          Antisemitism
## 9531                                                          Antisemitism
## 9532                                                          Antisemitism
## 9533                                                          Antisemitism
## 9534                                                          Antisemitism
## 9535                                                          Antisemitism
## 9536                                                          Antisemitism
## 9537                                                          Antisemitism
## 9538                                                          Antisemitism
## 9539                                                          Antisemitism
## 9540                                                          Antisemitism
## 9541                                                          Antisemitism
## 9542                                                          Antisemitism
## 9543                                                          Antisemitism
## 9544                                                          Antisemitism
## 9545                                                          Antisemitism
## 9546                                                          Antisemitism
## 9547                                                          Antisemitism
## 9548                                                          Antisemitism
## 9549                                                          Antisemitism
## 9550                                                          Antisemitism
## 9551                                                          Antisemitism
## 9552                                                          Antisemitism
## 9553                                                          Antisemitism
## 9554                                                          Antisemitism
## 9555                                                          Antisemitism
## 9556                                                          Antisemitism
## 9557                                                          Antisemitism
## 9558                                                          Antisemitism
## 9559                                                          Antisemitism
## 9560                                                          Antisemitism
## 9561                                                          Antisemitism
## 9562                                                          Antisemitism
## 9563                                                          Antisemitism
## 9564                                                          Antisemitism
## 9565                                                          Antisemitism
## 9566                                                          Antisemitism
## 9567                                                          Antisemitism
## 9568                                                          Antisemitism
## 9569                                                          Antisemitism
## 9570                                                          Antisemitism
## 9571                                                          Antisemitism
## 9572                                                          Antisemitism
## 9573                                                          Antisemitism
## 9574                                                          Antisemitism
## 9575                                                          Antisemitism
## 9576                                                          Antisemitism
## 9577                                                          Antisemitism
## 9578                                                          Antisemitism
## 9579                                                          Antisemitism
## 9580                                                          Antisemitism
## 9581                                                          Antisemitism
## 9582                                                          Antisemitism
## 9583                                                          Antisemitism
## 9584                                                          Antisemitism
## 9585                                                          Antisemitism
## 9586                                                          Antisemitism
## 9587                                                          Antisemitism
## 9588                                                          Antisemitism
## 9589                                                          Antisemitism
## 9590                                                          Antisemitism
## 9591                                                          Antisemitism
## 9592                                                          Antisemitism
## 9593                                                          Antisemitism
## 9594                                                          Antisemitism
## 9595                                                          Antisemitism
## 9596                                                          Antisemitism
## 9597                                                          Antisemitism
## 9598                                                          Antisemitism
## 9599                                                          Antisemitism
## 9600                                                          Antisemitism
## 9601                                                          Antisemitism
## 9602                                                          Antisemitism
## 9603                                                          Antisemitism
## 9604                                                          Antisemitism
## 9605                                                          Antisemitism
## 9606                                                          Antisemitism
## 9607                                                          Antisemitism
## 9608                                                          Antisemitism
## 9609                                                          Antisemitism
## 9610                                                          Antisemitism
## 9611                                                          Antisemitism
## 9612                                                          Antisemitism
## 9613                                                          Antisemitism
## 9614                                                          Antisemitism
## 9615                                                          Antisemitism
## 9616                                                          Antisemitism
## 9617                                                          Antisemitism
## 9618                                                          Antisemitism
## 9619                                                          Antisemitism
## 9620                                                          Antisemitism
## 9621                                                          Antisemitism
## 9622                                                          Antisemitism
## 9623                                                          Antisemitism
## 9624                                                          Antisemitism
## 9625                                                          Antisemitism
## 9626                                                          Antisemitism
## 9627                                                          Antisemitism
## 9628                                                          Antisemitism
## 9629                                                          Antisemitism
## 9630                                                          Antisemitism
## 9631                                                          Antisemitism
## 9632                                                          Antisemitism
## 9633                                                          Antisemitism
## 9634                                                          Antisemitism
## 9635                                                          Antisemitism
## 9636                                                          Antisemitism
## 9637                                                          Antisemitism
## 9638                                                          Antisemitism
## 9639                                                          Antisemitism
## 9640                                                          Antisemitism
## 9641                                                          Antisemitism
## 9642                                                          Antisemitism
## 9643                                                          Antisemitism
## 9644                                                          Antisemitism
## 9645                                                          Antisemitism
## 9646                                                          Antisemitism
## 9647                                                          Antisemitism
## 9648                                                          Antisemitism
## 9649                                                          Antisemitism
## 9650                                                          Antisemitism
## 9651                                                          Antisemitism
## 9652                                                          Antisemitism
## 9653                                                          Antisemitism
## 9654                                                          Antisemitism
## 9655                                                          Antisemitism
## 9656                                                          Antisemitism
## 9657                                                          Antisemitism
## 9658                                                          Antisemitism
## 9659                                                          Antisemitism
## 9660                                                          Antisemitism
## 9661                                                          Antisemitism
## 9662                                                          Antisemitism
## 9663                                                          Antisemitism
## 9664                                                          Antisemitism
## 9665                                                          Antisemitism
## 9666                                                          Antisemitism
## 9667                                                          Antisemitism
## 9668                                                          Antisemitism
## 9669                                                          Antisemitism
## 9670                                                          Antisemitism
## 9671                                                          Antisemitism
## 9672                                                          Antisemitism
## 9673                                                          Antisemitism
## 9674                                                          Antisemitism
## 9675                                                          Antisemitism
## 9676                                                          Antisemitism
## 9677                                                          Antisemitism
## 9678                                                          Antisemitism
## 9679                                                          Antisemitism
## 9680                                                          Antisemitism
## 9681                                                          Antisemitism
## 9682                                                          Antisemitism
## 9683                                                          Antisemitism
## 9684                                                          Antisemitism
## 9685                                                          Antisemitism
## 9686                                                          Antisemitism
## 9687                                                          Antisemitism
## 9688                                                          Antisemitism
## 9689                                                          Antisemitism
## 9690                                                          Antisemitism
## 9691                                                          Antisemitism
## 9692                                                          Antisemitism
## 9693                                                          Antisemitism
## 9694                                                          Antisemitism
## 9695                                                          Antisemitism
## 9696                                                          Antisemitism
## 9697                                                          Antisemitism
## 9698                                                          Antisemitism
## 9699                                                          Antisemitism
## 9700                                                          Antisemitism
## 9701                                                          Antisemitism
## 9702                                                          Antisemitism
## 9703                                                          Antisemitism
## 9704                                                          Antisemitism
## 9705                                                          Antisemitism
## 9706                                                          Antisemitism
## 9707                                                          Antisemitism
## 9708                                                          Antisemitism
## 9709                                                          Antisemitism
## 9710                                                          Antisemitism
## 9711                                                          Antisemitism
## 9712                                                          Antisemitism
## 9713                                                          Antisemitism
## 9714                                                          Antisemitism
## 9715                                                          Antisemitism
## 9716                                                          Antisemitism
## 9717                                                          Antisemitism
## 9718                                                          Antisemitism
## 9719                                                          Antisemitism
## 9720                                                          Antisemitism
## 9721                                                          Antisemitism
## 9722                                                          Antisemitism
## 9723                                                          Antisemitism
## 9724                                                          Antisemitism
## 9725                                                          Antisemitism
## 9726                                                          Antisemitism
## 9727                                                          Antisemitism
## 9728                                                          Antisemitism
## 9729                                                          Antisemitism
## 9730                                                          Antisemitism
## 9731                                                          Antisemitism
## 9732                                                          Antisemitism
## 9733                                                          Antisemitism
## 9734                                                          Antisemitism
## 9735                                                          Antisemitism
## 9736                                                          Antisemitism
## 9737                                                          Antisemitism
## 9738                                                          Antisemitism
## 9739                                                          Antisemitism
## 9740                                                          Antisemitism
## 9741                                                          Antisemitism
## 9742                                                          Antisemitism
## 9743                                                          Antisemitism
## 9744                                                          Antisemitism
## 9745                                                          Antisemitism
## 9746                                                          Antisemitism
## 9747                                                          Antisemitism
## 9748                                                          Antisemitism
## 9749                                                          Antisemitism
## 9750                                                          Antisemitism
## 9751                                                          Antisemitism
## 9752                                                          Antisemitism
## 9753                                                          Antisemitism
## 9754                                                          Antisemitism
## 9755                                                          Antisemitism
## 9756                                                          Antisemitism
## 9757                                                          Antisemitism
## 9758                                                          Antisemitism
## 9759                                                          Antisemitism
## 9760                                                          Antisemitism
## 9761                                                          Antisemitism
## 9762                                                          Antisemitism
## 9763                                                          Antisemitism
## 9764                                                          Antisemitism
## 9765                                                          Antisemitism
## 9766                                                          Antisemitism
## 9767                                                          Antisemitism
## 9768                                                          Antisemitism
## 9769                                                          Antisemitism
## 9770                                                          Antisemitism
## 9771                                                          Antisemitism
## 9772                                                          Antisemitism
## 9773                                                          Antisemitism
## 9774                                                          Antisemitism
## 9775                                                          Antisemitism
## 9776                                                          Antisemitism
## 9777                                                          Antisemitism
## 9778                                                          Antisemitism
## 9779                                                          Antisemitism
## 9780                                                          Antisemitism
## 9781                                                          Antisemitism
## 9782                                                          Antisemitism
## 9783                                                          Antisemitism
## 9784                                                          Antisemitism
## 9785                                                          Antisemitism
## 9786                                                          Antisemitism
## 9787                                                          Antisemitism
## 9788                                                          Antisemitism
## 9789                                                          Antisemitism
## 9790                                                          Antisemitism
## 9791                                                          Antisemitism
## 9792                                                          Antisemitism
## 9793                                                          Antisemitism
## 9794                                                          Antisemitism
## 9795                                                          Antisemitism
## 9796                                                          Antisemitism
## 9797                                                          Antisemitism
## 9798                                                          Antisemitism
## 9799                                                          Antisemitism
## 9800                                                          Antisemitism
## 9801                                                          Antisemitism
## 9802                                                          Antisemitism
## 9803                                                          Antisemitism
## 9804                                                          Antisemitism
## 9805                                                          Antisemitism
## 9806                                                          Antisemitism
## 9807                                                          Antisemitism
## 9808                                                          Antisemitism
## 9809                                                          Antisemitism
## 9810                                                          Antisemitism
## 9811                                                          Antisemitism
## 9812                                                          Antisemitism
## 9813                                                          Antisemitism
## 9814                                                          Antisemitism
## 9815                                                          Antisemitism
## 9816                                                          Antisemitism
## 9817                                                          Antisemitism
## 9818                                                          Antisemitism
## 9819                                                          Antisemitism
## 9820                                                          Antisemitism
## 9821                                                          Antisemitism
## 9822                                                          Antisemitism
## 9823                                                          Antisemitism
## 9824                                                          Antisemitism
## 9825                                                          Antisemitism
## 9826                                                          Antisemitism
## 9827                                                          Antisemitism
## 9828                                                          Antisemitism
## 9829                                                          Antisemitism
## 9830                                                          Antisemitism
## 9831                                                          Antisemitism
## 9832                                                          Antisemitism
## 9833                                                          Antisemitism
## 9834                                                          Antisemitism
## 9835                                                          Antisemitism
## 9836                                                          Antisemitism
## 9837                                                          Antisemitism
## 9838                                                          Antisemitism
## 9839                                                          Antisemitism
## 9840                                                          Antisemitism
## 9841                                                          Antisemitism
## 9842                                                          Antisemitism
## 9843                                                          Antisemitism
## 9844                                                          Antisemitism
## 9845                                                          Antisemitism
## 9846                                                          Antisemitism
## 9847                                                          Antisemitism
## 9848                                                          Antisemitism
## 9849                                                          Antisemitism
## 9850                                                          Antisemitism
## 9851                                                          Antisemitism
## 9852                                                          Antisemitism
## 9853                                                          Antisemitism
## 9854                                                          Antisemitism
## 9855                                                          Antisemitism
## 9856                                                          Antisemitism
## 9857                                                          Antisemitism
## 9858                                                          Antisemitism
## 9859                                                          Antisemitism
## 9860                                                          Antisemitism
## 9861                                                          Antisemitism
## 9862                                                          Antisemitism
## 9863                                                          Antisemitism
## 9864                                                          Antisemitism
## 9865                                                          Antisemitism
## 9866                                                          Antisemitism
## 9867                                                          Antisemitism
## 9868                                                          Antisemitism
## 9869                                                          Antisemitism
## 9870                                                          Antisemitism
## 9871                                                          Antisemitism
## 9872                                                          Antisemitism
## 9873                                                          Antisemitism
## 9874                                                          Antisemitism
## 9875                                                          Antisemitism
## 9876                                                          Antisemitism
## 9877                                                          Antisemitism
## 9878                                                          Antisemitism
## 9879                                                          Antisemitism
## 9880                                                          Antisemitism
## 9881                                                          Antisemitism
## 9882                                                          Antisemitism
## 9883                                                          Antisemitism
## 9884                                                          Antisemitism
## 9885                                                          Antisemitism
## 9886                                                          Antisemitism
## 9887                                                          Antisemitism
## 9888                                                          Antisemitism
## 9889                                                          Antisemitism
## 9890                                                          Antisemitism
## 9891                                                          Antisemitism
## 9892                                                          Antisemitism
## 9893                                                          Antisemitism
## 9894                                                          Antisemitism
## 9895                                                          Antisemitism
## 9896                                                          Antisemitism
## 9897                                                          Antisemitism
## 9898                                                          Antisemitism
## 9899                                                          Antisemitism
## 9900                                                          Antisemitism
## 9901                                                          Antisemitism
## 9902                                                          Antisemitism
## 9903                                                          Antisemitism
## 9904                                                          Antisemitism
## 9905                                                          Antisemitism
## 9906                                                          Antisemitism
## 9907                                                          Antisemitism
## 9908                                                          Antisemitism
## 9909                                                          Antisemitism
## 9910                                                          Antisemitism
## 9911                                                          Antisemitism
## 9912                                                          Antisemitism
## 9913                                                          Antisemitism
## 9914                                                          Antisemitism
## 9915                                                          Antisemitism
## 9916                                                          Antisemitism
## 9917                                                          Antisemitism
## 9918                                                          Antisemitism
## 9919                                                          Antisemitism
## 9920                                                          Antisemitism
## 9921                                                          Antisemitism
## 9922                                                          Antisemitism
## 9923                                                          Antisemitism
## 9924                                                          Antisemitism
## 9925                                                          Antisemitism
## 9926                                                          Antisemitism
## 9927                                                          Antisemitism
## 9928                                                          Antisemitism
## 9929                                                          Antisemitism
## 9930                                                          Antisemitism
## 9931                                                          Antisemitism
## 9932                                                          Antisemitism
## 9933                                                          Antisemitism
## 9934                                                          Antisemitism
## 9935                                                          Antisemitism
## 9936                                                          Antisemitism
## 9937                                                          Antisemitism
## 9938                                                          Antisemitism
## 9939                                                          Antisemitism
## 9940                                                          Antisemitism
## 9941                                                          Antisemitism
## 9942                                                          Antisemitism
## 9943                                                          Antisemitism
## 9944                                                          Antisemitism
## 9945                                                          Antisemitism
## 9946                                                          Antisemitism
## 9947                                                          Antisemitism
## 9948                                                          Antisemitism
## 9949                                                          Antisemitism
## 9950                                                          Antisemitism
## 9951                                                          Antisemitism
## 9952                                                          Antisemitism
## 9953                                                          Antisemitism
## 9954                                                          Antisemitism
## 9955                                                          Antisemitism
## 9956                                                          Antisemitism
## 9957                                                          Antisemitism
## 9958                                                          Antisemitism
## 9959                                                          Antisemitism
## 9960                                                          Antisemitism
## 9961                                                          Antisemitism
## 9962                                                          Antisemitism
## 9963                                                          Antisemitism
## 9964                                                          Antisemitism
## 9965                                                          Antisemitism
## 9966                                                          Antisemitism
## 9967                                                          Antisemitism
## 9968                                                          Antisemitism
## 9969                                                          Antisemitism
## 9970                                                          Antisemitism
## 9971                                                          Antisemitism
## 9972                                                          Antisemitism
## 9973                                                          Antisemitism
## 9974                                                          Antisemitism
## 9975                                                          Antisemitism
## 9976                                                          Antisemitism
## 9977                                                          Antisemitism
## 9978                                                          Antisemitism
## 9979                                                          Antisemitism
## 9980                                                          Antisemitism
## 9981                                                          Antisemitism
## 9982                                                          Antisemitism
## 9983                                                          Antisemitism
## 9984                                                          Antisemitism
## 9985                                                          Antisemitism
## 9986                                                          Antisemitism
## 9987                                                          Antisemitism
## 9988                                                          Antisemitism
## 9989                                                          Antisemitism
## 9990                                                          Antisemitism
## 9991                                                          Antisemitism
## 9992                                                          Antisemitism
## 9993                                                          Antisemitism
## 9994                                                          Antisemitism
## 9995                                                          Antisemitism
## 9996                                                          Antisemitism
## 9997                                                          Antisemitism
## 9998                                                          Antisemitism
## 9999                                                          Antisemitism
## 10000                                                         Antisemitism
## 10001                                                         Antisemitism
## 10002                                                         Antisemitism
## 10003                                                         Antisemitism
## 10004                                                         Antisemitism
## 10005                                                         Antisemitism
## 10006                                                         Antisemitism
## 10007                                                         Antisemitism
## 10008                                                         Antisemitism
## 10009                                                         Antisemitism
## 10010                                                         Antisemitism
## 10011                                                         Antisemitism
## 10012                                                         Antisemitism
## 10013                                                         Antisemitism
## 10014                                                         Antisemitism
## 10015                                                         Antisemitism
## 10016                                                         Antisemitism
## 10017                                                         Antisemitism
## 10018                                                         Antisemitism
## 10019                                                         Antisemitism
## 10020                                                         Antisemitism
## 10021                                                         Antisemitism
## 10022                                                         Antisemitism
## 10023                                                         Antisemitism
## 10024                                                         Antisemitism
## 10025                                                         Antisemitism
## 10026                                                         Antisemitism
## 10027                                                         Antisemitism
## 10028                                                         Antisemitism
## 10029                                                         Antisemitism
## 10030                                                         Antisemitism
## 10031                                                         Antisemitism
## 10032                                                         Antisemitism
## 10033                                                         Antisemitism
## 10034                                                         Antisemitism
## 10035                                                         Antisemitism
## 10036                                                         Antisemitism
## 10037                                                         Antisemitism
## 10038                                                         Antisemitism
## 10039                                                         Antisemitism
## 10040                                                         Antisemitism
## 10041                                                         Antisemitism
## 10042                                                         Antisemitism
## 10043                                                         Antisemitism
## 10044                                                         Antisemitism
## 10045                                                         Antisemitism
## 10046                                                         Antisemitism
## 10047                                                         Antisemitism
## 10048                                                         Antisemitism
## 10049                                                         Antisemitism
## 10050                                                         Antisemitism
## 10051                                                         Antisemitism
## 10052                                                         Antisemitism
## 10053                                                         Antisemitism
## 10054                                                         Antisemitism
## 10055                                                         Antisemitism
## 10056                                                         Antisemitism
## 10057                                                         Antisemitism
## 10058                                                         Antisemitism
## 10059                                                         Antisemitism
## 10060                                                         Antisemitism
## 10061                                                         Antisemitism
## 10062                                                         Antisemitism
## 10063                                                         Antisemitism
## 10064                                                         Antisemitism
## 10065                                                         Antisemitism
## 10066                                                         Antisemitism
## 10067                                                         Antisemitism
## 10068                                                         Antisemitism
## 10069                                                         Antisemitism
## 10070                                                         Antisemitism
## 10071                                                         Antisemitism
## 10072                                                         Antisemitism
## 10073                                                         Antisemitism
## 10074                                                         Antisemitism
## 10075                                                         Antisemitism
## 10076                                                         Antisemitism
## 10077                                                         Antisemitism
## 10078                                                         Antisemitism
## 10079                                                         Antisemitism
## 10080                                                         Antisemitism
## 10081                                                         Antisemitism
## 10082                                                         Antisemitism
## 10083                                                         Antisemitism
## 10084                                                         Antisemitism
## 10085                                                         Antisemitism
## 10086                                                         Antisemitism
## 10087                                                         Antisemitism
## 10088                                                         Antisemitism
## 10089                                                         Antisemitism
## 10090                                                         Antisemitism
## 10091                                                         Antisemitism
## 10092                                                         Antisemitism
## 10093                                                         Antisemitism
## 10094                                                         Antisemitism
## 10095                                                         Antisemitism
## 10096                                                         Antisemitism
## 10097                                                         Antisemitism
## 10098                                                         Antisemitism
## 10099                                                         Antisemitism
## 10100                                                         Antisemitism
## 10101                                                         Antisemitism
## 10102                                                         Antisemitism
## 10103                                                         Antisemitism
## 10104                                                         Antisemitism
## 10105                                                         Antisemitism
## 10106                                                         Antisemitism
## 10107                                                         Antisemitism
## 10108                                                         Antisemitism
## 10109                                                         Antisemitism
## 10110                                                         Antisemitism
## 10111                                                         Antisemitism
## 10112                                                         Antisemitism
## 10113                                                         Antisemitism
## 10114                                                         Antisemitism
## 10115                                                         Antisemitism
## 10116                                                         Antisemitism
## 10117                                                         Antisemitism
## 10118                                                         Antisemitism
## 10119                                                         Antisemitism
## 10120                                                         Antisemitism
## 10121                                                         Antisemitism
## 10122                                                         Antisemitism
## 10123                                                         Antisemitism
## 10124                                                         Antisemitism
## 10125                                                         Antisemitism
## 10126                                                         Antisemitism
## 10127                                                         Antisemitism
## 10128                                                         Antisemitism
## 10129                                                         Antisemitism
## 10130                                                         Antisemitism
## 10131                                                         Antisemitism
## 10132                                                         Antisemitism
## 10133                                                         Antisemitism
## 10134                                                         Antisemitism
## 10135                                                         Antisemitism
## 10136                                                         Antisemitism
## 10137                                                         Antisemitism
## 10138                                                         Antisemitism
## 10139                                                         Antisemitism
## 10140                                                         Antisemitism
## 10141                                                         Antisemitism
## 10142                                                         Antisemitism
## 10143                                                         Antisemitism
## 10144                                                         Antisemitism
## 10145                                                         Antisemitism
## 10146                                                         Antisemitism
## 10147                                                         Antisemitism
## 10148                                                         Antisemitism
## 10149                                                         Antisemitism
## 10150                                                         Antisemitism
## 10151                                                         Antisemitism
## 10152                                                         Antisemitism
## 10153                                                         Antisemitism
## 10154                                                         Antisemitism
## 10155                                                         Antisemitism
## 10156                                                         Antisemitism
## 10157                                                         Antisemitism
## 10158                                                         Antisemitism
## 10159                                                         Antisemitism
## 10160                                                         Antisemitism
## 10161                                                         Antisemitism
## 10162                                                         Antisemitism
## 10163                                                         Antisemitism
## 10164                                                         Antisemitism
## 10165                                                         Antisemitism
## 10166                                                         Antisemitism
## 10167                                                         Antisemitism
## 10168                                                         Antisemitism
## 10169                                                         Antisemitism
## 10170                                                         Antisemitism
## 10171                                                         Antisemitism
## 10172                                                         Antisemitism
## 10173                                                         Antisemitism
## 10174                                                         Antisemitism
## 10175                                                         Antisemitism
## 10176                                                         Antisemitism
## 10177                                                         Antisemitism
## 10178                                                         Antisemitism
## 10179                                                         Antisemitism
## 10180                                                         Antisemitism
## 10181                                                         Antisemitism
## 10182                                                         Antisemitism
## 10183                                                         Antisemitism
## 10184                                                         Antisemitism
## 10185                                                         Antisemitism
## 10186                                                         Antisemitism
## 10187                                                         Antisemitism
## 10188                                                         Antisemitism
## 10189                                                         Antisemitism
## 10190                                                         Antisemitism
## 10191                                                         Antisemitism
## 10192                                                         Antisemitism
## 10193                                                         Antisemitism
## 10194                                                         Antisemitism
## 10195                                                         Antisemitism
## 10196                                                         Antisemitism
## 10197                                                         Antisemitism
## 10198                                                         Antisemitism
## 10199                                                         Antisemitism
## 10200                                                         Antisemitism
## 10201                                                         Antisemitism
## 10202                                                         Antisemitism
## 10203                                                         Antisemitism
## 10204                                                         Antisemitism
## 10205                                                         Antisemitism
## 10206                                                         Antisemitism
## 10207                                                         Antisemitism
## 10208                                                         Antisemitism
## 10209                                                         Antisemitism
## 10210                                                         Antisemitism
## 10211                                                         Antisemitism
## 10212                                                         Antisemitism
## 10213                                                         Antisemitism
## 10214                                                         Antisemitism
## 10215                                                         Antisemitism
## 10216                                                         Antisemitism
## 10217                                                         Antisemitism
## 10218                                                         Antisemitism
## 10219                                                         Antisemitism
## 10220                                                         Antisemitism
## 10221                                                         Antisemitism
## 10222                                                         Antisemitism
## 10223                                                         Antisemitism
## 10224                                                         Antisemitism
## 10225                                                         Antisemitism
## 10226                                                         Antisemitism
## 10227                                                         Antisemitism
## 10228                                                         Antisemitism
## 10229                                                         Antisemitism
## 10230                                                         Antisemitism
## 10231                                                         Antisemitism
## 10232                                                         Antisemitism
## 10233                                                         Antisemitism
## 10234                                                         Antisemitism
## 10235                                                         Antisemitism
## 10236                                                         Antisemitism
## 10237                                                         Antisemitism
## 10238                                                         Antisemitism
## 10239                                                         Antisemitism
## 10240                                                         Antisemitism
## 10241                                                         Antisemitism
## 10242                                                         Antisemitism
## 10243                                                         Antisemitism
## 10244                                                         Antisemitism
## 10245                                                         Antisemitism
## 10246                                                         Antisemitism
## 10247                                                         Antisemitism
## 10248                                                         Antisemitism
## 10249                                                         Antisemitism
## 10250                                                         Antisemitism
## 10251                                                         Antisemitism
## 10252                                                         Antisemitism
## 10253                                                         Antisemitism
## 10254                                                         Antisemitism
## 10255                                                         Antisemitism
## 10256                                                         Antisemitism
## 10257                                                         Antisemitism
## 10258                                                         Antisemitism
## 10259                                                         Antisemitism
## 10260                                                         Antisemitism
## 10261                                                         Antisemitism
## 10262                                                         Antisemitism
## 10263                                                         Antisemitism
## 10264                                                         Antisemitism
## 10265                                                         Antisemitism
## 10266                                                         Antisemitism
## 10267                                                         Antisemitism
## 10268                                                         Antisemitism
## 10269                                                         Antisemitism
## 10270                                                         Antisemitism
## 10271                                                         Antisemitism
## 10272                                                         Antisemitism
## 10273                                                         Antisemitism
## 10274                                                         Antisemitism
## 10275                                                         Antisemitism
## 10276                                                         Antisemitism
## 10277                                                         Antisemitism
## 10278                                                         Antisemitism
## 10279                                                         Antisemitism
## 10280                                                         Antisemitism
## 10281                                                         Antisemitism
## 10282                                                         Antisemitism
## 10283                                                         Antisemitism
## 10284                                                         Antisemitism
## 10285                                                         Antisemitism
## 10286                                                         Antisemitism
## 10287                                                         Antisemitism
## 10288                                                         Antisemitism
## 10289                                                         Antisemitism
## 10290                                                         Antisemitism
## 10291                                                         Antisemitism
## 10292                                                         Antisemitism
## 10293                                                         Antisemitism
## 10294                                                         Antisemitism
## 10295                                                         Antisemitism
## 10296                                                         Antisemitism
## 10297                                                         Antisemitism
## 10298                                                         Antisemitism
## 10299                                                         Antisemitism
## 10300                                                         Antisemitism
## 10301                                                         Antisemitism
## 10302                                                         Antisemitism
## 10303                                                         Antisemitism
## 10304                                                         Antisemitism
## 10305                                                         Antisemitism
## 10306                                                         Antisemitism
## 10307                                                         Antisemitism
## 10308                                                         Antisemitism
## 10309                                                         Antisemitism
## 10310                                                         Antisemitism
## 10311                                                         Antisemitism
## 10312                                                         Antisemitism
## 10313                                                         Antisemitism
## 10314                                                         Antisemitism
## 10315                                                         Antisemitism
## 10316                                                         Antisemitism
## 10317                                                         Antisemitism
## 10318                                                         Antisemitism
## 10319                                                         Antisemitism
## 10320                                                         Antisemitism
## 10321                                                         Antisemitism
## 10322                                                         Antisemitism
## 10323                                                         Antisemitism
## 10324                                                         Antisemitism
## 10325                                                         Antisemitism
## 10326                                                         Antisemitism
## 10327                                                         Antisemitism
## 10328                                                         Antisemitism
## 10329                                                         Antisemitism
## 10330                                                         Antisemitism
## 10331                                                         Antisemitism
## 10332                                                         Antisemitism
## 10333                                                         Antisemitism
## 10334                                                         Antisemitism
## 10335                                                         Antisemitism
## 10336                                                         Antisemitism
## 10337                                                         Antisemitism
## 10338                                                         Antisemitism
## 10339                                                         Antisemitism
## 10340                                                         Antisemitism
## 10341                                                         Antisemitism
## 10342                                                         Antisemitism
## 10343                                                         Antisemitism
## 10344                                                         Antisemitism
## 10345                                                         Antisemitism
## 10346                                                         Antisemitism
## 10347                                                         Antisemitism
## 10348                                                         Antisemitism
## 10349                                                         Antisemitism
## 10350                                                         Antisemitism
## 10351                                                         Antisemitism
## 10352                                                         Antisemitism
## 10353                                                         Antisemitism
## 10354                                                         Antisemitism
## 10355                                                         Antisemitism
## 10356                                                         Antisemitism
## 10357                                                         Antisemitism
## 10358                                                         Antisemitism
## 10359                                                         Antisemitism
## 10360                                                         Antisemitism
## 10361                                                         Antisemitism
## 10362                                                         Antisemitism
## 10363                                                         Antisemitism
## 10364                                                         Antisemitism
## 10365                                                         Antisemitism
## 10366                                                         Antisemitism
## 10367                                                         Antisemitism
## 10368                                                         Antisemitism
## 10369                                                         Antisemitism
## 10370                                                         Antisemitism
## 10371                                                         Antisemitism
## 10372                                                         Antisemitism
## 10373                                                         Antisemitism
## 10374                                                         Antisemitism
## 10375                                                         Antisemitism
## 10376                                                         Antisemitism
## 10377                                                         Antisemitism
## 10378                                                         Antisemitism
## 10379                                                         Antisemitism
## 10380                                                         Antisemitism
## 10381                                                         Antisemitism
## 10382                                                         Antisemitism
## 10383                                                         Antisemitism
## 10384                                                         Antisemitism
## 10385                                                         Antisemitism
## 10386                                                         Antisemitism
## 10387                                                         Antisemitism
## 10388                                                         Antisemitism
## 10389                                                         Antisemitism
## 10390                                                         Antisemitism
## 10391                                                         Antisemitism
## 10392                                                         Antisemitism
## 10393                                                         Antisemitism
## 10394                                                         Antisemitism
## 10395                                                         Antisemitism
## 10396                                                         Antisemitism
## 10397                                                         Antisemitism
## 10398                                                         Antisemitism
## 10399                                                         Antisemitism
## 10400                                                         Antisemitism
## 10401                                                         Antisemitism
## 10402                                                         Antisemitism
## 10403                                                         Antisemitism
## 10404                                                         Antisemitism
## 10405                                                         Antisemitism
## 10406                                                         Antisemitism
## 10407                                                         Antisemitism
## 10408                                                         Antisemitism
## 10409                                                         Antisemitism
## 10410                                                         Antisemitism
## 10411                                                         Antisemitism
## 10412                                                         Antisemitism
## 10413                                                         Antisemitism
## 10414                                                         Antisemitism
## 10415                                                         Antisemitism
## 10416                                                         Antisemitism
## 10417                                                         Antisemitism
## 10418                                                         Antisemitism
## 10419                                                         Antisemitism
## 10420                                                         Antisemitism
## 10421                                                         Antisemitism
## 10422                                                         Antisemitism
## 10423                                                         Antisemitism
## 10424                                                         Antisemitism
## 10425                                                         Antisemitism
## 10426                                                         Antisemitism
## 10427                                                         Antisemitism
## 10428                                                         Antisemitism
## 10429                                                         Antisemitism
## 10430                                                         Antisemitism
## 10431                                                         Antisemitism
## 10432                                                         Antisemitism
## 10433                                                         Antisemitism
## 10434                                                         Antisemitism
## 10435                                                         Antisemitism
## 10436                                                         Antisemitism
## 10437                                                         Antisemitism
## 10438                                                         Antisemitism
## 10439                                                         Antisemitism
## 10440                                                         Antisemitism
## 10441                                                         Antisemitism
## 10442                                                         Antisemitism
## 10443                                                         Antisemitism
## 10444                                                         Antisemitism
## 10445                                                         Antisemitism
## 10446                                                         Antisemitism
## 10447                                                         Antisemitism
## 10448                                                         Antisemitism
## 10449                                                         Antisemitism
## 10450                                                         Antisemitism
## 10451                                                         Antisemitism
## 10452                                                         Antisemitism
## 10453                                                         Antisemitism
## 10454                                                         Antisemitism
## 10455                                                         Antisemitism
## 10456                                                         Antisemitism
## 10457                                                         Antisemitism
## 10458                                                         Antisemitism
## 10459                                                         Antisemitism
## 10460                                                         Antisemitism
## 10461                                                         Antisemitism
## 10462                                                         Antisemitism
## 10463                                                         Antisemitism
## 10464                                                         Antisemitism
## 10465                                                         Antisemitism
## 10466                                                         Antisemitism
## 10467                                                         Antisemitism
## 10468                                                         Antisemitism
## 10469                                                         Antisemitism
## 10470                                                         Antisemitism
## 10471                                                         Antisemitism
## 10472                                                         Antisemitism
## 10473                                                         Antisemitism
## 10474                                                         Antisemitism
## 10475                                                         Antisemitism
## 10476                                                         Antisemitism
## 10477                                                         Antisemitism
## 10478                                                         Antisemitism
## 10479                                                         Antisemitism
## 10480                                                         Antisemitism
## 10481                                                         Antisemitism
## 10482                                                         Antisemitism
## 10483                                                         Antisemitism
## 10484                                                         Antisemitism
## 10485                                                         Antisemitism
## 10486                                                         Antisemitism
## 10487                                                         Antisemitism
## 10488                                                         Antisemitism
## 10489                                                         Antisemitism
## 10490                                                         Antisemitism
## 10491                                                         Antisemitism
## 10492                                                         Antisemitism
## 10493                                                         Antisemitism
## 10494                                                         Antisemitism
## 10495                                                         Antisemitism
## 10496                                                         Antisemitism
## 10497                                                         Antisemitism
## 10498                                                         Antisemitism
## 10499                                                         Antisemitism
## 10500                                                         Antisemitism
## 10501                                                         Antisemitism
## 10502                                                         Antisemitism
## 10503                                                         Antisemitism
## 10504                                                         Antisemitism
## 10505                                                         Antisemitism
## 10506                                                         Antisemitism
## 10507                                                         Antisemitism
## 10508                                                         Antisemitism
## 10509                                                         Antisemitism
## 10510                                                         Antisemitism
## 10511                                                         Antisemitism
## 10512                                                         Antisemitism
## 10513                                                         Antisemitism
## 10514                                                         Antisemitism
## 10515                                                         Antisemitism
## 10516                                                         Antisemitism
## 10517                                                         Antisemitism
## 10518                                                         Antisemitism
## 10519                                                         Antisemitism
## 10520                                                         Antisemitism
## 10521                                                         Antisemitism
## 10522                                                         Antisemitism
## 10523                                                         Antisemitism
## 10524                                                         Antisemitism
## 10525                                                         Antisemitism
## 10526                                                         Antisemitism
## 10527                                                         Antisemitism
## 10528                                                         Antisemitism
## 10529                                                         Antisemitism
## 10530                                                         Antisemitism
## 10531                                                         Antisemitism
## 10532                                                         Antisemitism
## 10533                                                         Antisemitism
## 10534                                                         Antisemitism
## 10535                                                         Antisemitism
## 10536                                                         Antisemitism
## 10537                                                         Antisemitism
## 10538                                                         Antisemitism
## 10539                                                         Antisemitism
## 10540                                                         Antisemitism
## 10541                                                         Antisemitism
## 10542                                                         Antisemitism
## 10543                                                         Antisemitism
## 10544                                                         Antisemitism
## 10545                                                         Antisemitism
## 10546                                                         Antisemitism
## 10547                                                         Antisemitism
## 10548                                                         Antisemitism
## 10549                                                         Antisemitism
## 10550                                                         Antisemitism
## 10551                                                         Antisemitism
## 10552                                                         Antisemitism
## 10553                                                         Antisemitism
## 10554                                                         Antisemitism
## 10555                                                         Antisemitism
## 10556                                                         Antisemitism
## 10557                                                         Antisemitism
## 10558                                                         Antisemitism
## 10559                                                         Antisemitism
## 10560                                                         Antisemitism
## 10561                                                         Antisemitism
## 10562                                                         Antisemitism
## 10563                                                         Antisemitism
## 10564                                                         Antisemitism
## 10565                                                         Antisemitism
## 10566                                                         Antisemitism
## 10567                                                         Antisemitism
## 10568                                                         Antisemitism
## 10569                                                         Antisemitism
## 10570                                                         Antisemitism
## 10571                                                         Antisemitism
## 10572                                                         Antisemitism
## 10573                                                         Antisemitism
## 10574                                                         Antisemitism
## 10575                                                         Antisemitism
## 10576                                                         Antisemitism
## 10577                                                         Antisemitism
## 10578                                                         Antisemitism
## 10579                                                         Antisemitism
## 10580                                                         Antisemitism
## 10581                                                         Antisemitism
## 10582                                                         Antisemitism
## 10583                                                         Antisemitism
## 10584                                                         Antisemitism
## 10585                                                         Antisemitism
## 10586                                                         Antisemitism
## 10587                                                         Antisemitism
## 10588                                                         Antisemitism
## 10589                                                         Antisemitism
## 10590                                                         Antisemitism
## 10591                                                         Antisemitism
## 10592                                                         Antisemitism
## 10593                                                         Antisemitism
## 10594                                                         Antisemitism
## 10595                                                         Antisemitism
## 10596                                                         Antisemitism
## 10597                                                         Antisemitism
## 10598                                                         Antisemitism
## 10599                                                         Antisemitism
## 10600                                                         Antisemitism
## 10601                                                         Antisemitism
## 10602                                                         Antisemitism
## 10603                                                         Antisemitism
## 10604                                                         Antisemitism
## 10605                                                         Antisemitism
## 10606                                                         Antisemitism
## 10607                                                         Antisemitism
## 10608                                                         Antisemitism
## 10609                                                         Antisemitism
## 10610                                                         Antisemitism
## 10611                                                         Antisemitism
## 10612                                                         Antisemitism
## 10613                                                         Antisemitism
## 10614                                                         Antisemitism
## 10615                                                         Antisemitism
## 10616                                                         Antisemitism
## 10617                                                         Antisemitism
## 10618                                                         Antisemitism
## 10619                                                         Antisemitism
## 10620                                                         Antisemitism
## 10621                                                         Antisemitism
## 10622                                                         Antisemitism
## 10623                                                         Antisemitism
## 10624                                                         Antisemitism
## 10625                                                         Antisemitism
## 10626                                                         Antisemitism
## 10627                                                         Antisemitism
## 10628                                                         Antisemitism
## 10629                                                         Antisemitism
## 10630                                                         Antisemitism
## 10631                                                         Antisemitism
## 10632                                                         Antisemitism
## 10633                                                         Antisemitism
## 10634                                                         Antisemitism
## 10635                                                         Antisemitism
## 10636                                                         Antisemitism
## 10637                                                         Antisemitism
## 10638                                                         Antisemitism
## 10639                                                         Antisemitism
## 10640                                                         Antisemitism
## 10641                                                         Antisemitism
## 10642                                                         Antisemitism
## 10643                                                         Antisemitism
## 10644                                                         Antisemitism
## 10645                                                         Antisemitism
## 10646                                                         Antisemitism
## 10647                                                         Antisemitism
## 10648                                                         Antisemitism
## 10649                                                         Antisemitism
## 10650                                                         Antisemitism
## 10651                                                         Antisemitism
## 10652                                                         Antisemitism
## 10653                                                         Antisemitism
## 10654                                                         Antisemitism
## 10655                                                         Antisemitism
## 10656                                                         Antisemitism
## 10657                                                         Antisemitism
## 10658                                                         Antisemitism
## 10659                                                         Antisemitism
## 10660                                                         Antisemitism
## 10661                                                         Antisemitism
## 10662                                                         Antisemitism
## 10663                                                         Antisemitism
## 10664                                                         Antisemitism
## 10665                                                         Antisemitism
## 10666                                                         Antisemitism
## 10667                                                         Antisemitism
## 10668                                                         Antisemitism
## 10669                                                         Antisemitism
## 10670                                                         Antisemitism
## 10671                                                         Antisemitism
## 10672                                                         Antisemitism
## 10673                                                         Antisemitism
## 10674                                                         Antisemitism
## 10675                                                         Antisemitism
## 10676                                                         Antisemitism
## 10677                                                         Antisemitism
## 10678                                                         Antisemitism
## 10679                                                         Antisemitism
## 10680                                                         Antisemitism
## 10681                                                         Antisemitism
## 10682                                                         Antisemitism
## 10683                                                         Antisemitism
## 10684                                                         Antisemitism
## 10685                                                         Antisemitism
## 10686                                                         Antisemitism
## 10687                                                         Antisemitism
## 10688                                                         Antisemitism
## 10689                                                         Antisemitism
## 10690                                                         Antisemitism
## 10691                                                         Antisemitism
## 10692                                                         Antisemitism
## 10693                                                         Antisemitism
## 10694                                                         Antisemitism
## 10695                                                         Antisemitism
## 10696                                                         Antisemitism
## 10697                                                         Antisemitism
## 10698                                                         Antisemitism
## 10699                                                         Antisemitism
## 10700                                                         Antisemitism
## 10701                                                         Antisemitism
## 10702                                                         Antisemitism
## 10703                                                         Antisemitism
## 10704                                                         Antisemitism
## 10705                                                         Antisemitism
## 10706                                                         Antisemitism
## 10707                                                         Antisemitism
## 10708                                                         Antisemitism
## 10709                                                         Antisemitism
## 10710                                                         Antisemitism
## 10711                                                         Antisemitism
## 10712                                                         Antisemitism
## 10713                                                         Antisemitism
## 10714                                                         Antisemitism
## 10715                                                         Antisemitism
## 10716                                                         Antisemitism
## 10717                                                         Antisemitism
## 10718                                                         Antisemitism
## 10719                                                         Antisemitism
## 10720                                                         Antisemitism
## 10721                                                         Antisemitism
## 10722                                                         Antisemitism
## 10723                                                         Antisemitism
## 10724                                                         Antisemitism
## 10725                                                         Antisemitism
## 10726                                                         Antisemitism
## 10727                                                         Antisemitism
## 10728                                                         Antisemitism
## 10729                                                         Antisemitism
## 10730                                                         Antisemitism
## 10731                                                         Antisemitism
## 10732                                                         Antisemitism
## 10733                                                         Antisemitism
## 10734                                                         Antisemitism
## 10735                                                         Antisemitism
## 10736                                                         Antisemitism
## 10737                                                         Antisemitism
## 10738                                                         Antisemitism
## 10739                                                         Antisemitism
## 10740                                                         Antisemitism
## 10741                                                         Antisemitism
## 10742                                                         Antisemitism
## 10743                                                         Antisemitism
## 10744                                                         Antisemitism
## 10745                                                         Antisemitism
## 10746                                                         Antisemitism
## 10747                                                         Antisemitism
## 10748                                                         Antisemitism
## 10749                                                         Antisemitism
## 10750                                                         Antisemitism
## 10751                                                         Antisemitism
## 10752                                                         Antisemitism
## 10753                                                         Antisemitism
## 10754                                                         Antisemitism
## 10755                                                         Antisemitism
## 10756                                                         Antisemitism
## 10757                                                         Antisemitism
## 10758                                                         Antisemitism
## 10759                                                         Antisemitism
## 10760                                                         Antisemitism
## 10761                                                         Antisemitism
## 10762                                                         Antisemitism
## 10763                                                         Antisemitism
## 10764                                                         Antisemitism
## 10765                                                         Antisemitism
## 10766                                                         Antisemitism
## 10767                                                         Antisemitism
## 10768                                                         Antisemitism
## 10769                                                         Antisemitism
## 10770                                                         Antisemitism
## 10771                                                         Antisemitism
## 10772                                                         Antisemitism
## 10773                                                         Antisemitism
## 10774                                                         Antisemitism
## 10775                                                         Antisemitism
## 10776                                                         Antisemitism
## 10777                                                         Antisemitism
## 10778                                                         Antisemitism
## 10779                                                         Antisemitism
## 10780                                                         Antisemitism
## 10781                                                         Antisemitism
## 10782                                                         Antisemitism
## 10783                                                         Antisemitism
## 10784                                                         Antisemitism
## 10785                                                         Antisemitism
## 10786                                                         Antisemitism
## 10787                                                         Antisemitism
## 10788                                                         Antisemitism
## 10789                                                         Antisemitism
## 10790                                                         Antisemitism
## 10791                                                         Antisemitism
## 10792                                                         Antisemitism
## 10793                                                         Antisemitism
## 10794                                                         Antisemitism
## 10795                                                         Antisemitism
## 10796                                                         Antisemitism
## 10797                                                         Antisemitism
## 10798                                                         Antisemitism
## 10799                                                         Antisemitism
## 10800                                                         Antisemitism
## 10801                                                         Antisemitism
## 10802                                                         Antisemitism
## 10803                                                         Antisemitism
## 10804                                                         Antisemitism
## 10805                                                         Antisemitism
## 10806                                                         Antisemitism
## 10807                                                         Antisemitism
## 10808                                                         Antisemitism
## 10809                                                         Antisemitism
## 10810                                                         Antisemitism
## 10811                                                         Antisemitism
## 10812                                                         Antisemitism
## 10813                                                         Antisemitism
## 10814                                                         Antisemitism
## 10815                                                         Antisemitism
## 10816                                                         Antisemitism
## 10817                                                         Antisemitism
## 10818                                                         Antisemitism
## 10819                                                         Antisemitism
## 10820                                                         Antisemitism
## 10821                                                         Antisemitism
## 10822                                                         Antisemitism
## 10823                                                         Antisemitism
## 10824                                                         Antisemitism
## 10825                                                         Antisemitism
## 10826                                                         Antisemitism
## 10827                                                         Antisemitism
## 10828                                                         Antisemitism
## 10829                                                         Antisemitism
## 10830                                                         Antisemitism
## 10831                                                         Antisemitism
## 10832                                                         Antisemitism
## 10833                                                         Antisemitism
## 10834                                                         Antisemitism
## 10835                                                         Antisemitism
## 10836                                                         Antisemitism
## 10837                                                         Antisemitism
## 10838                                                         Antisemitism
## 10839                                                         Antisemitism
## 10840                                                         Antisemitism
## 10841                                                         Antisemitism
## 10842                                                         Antisemitism
## 10843                                                         Antisemitism
## 10844                                                         Antisemitism
## 10845                                                         Antisemitism
## 10846                                                         Antisemitism
## 10847                                                         Antisemitism
## 10848                                                         Antisemitism
## 10849                                                         Antisemitism
## 10850                                                         Antisemitism
## 10851                                                         Antisemitism
## 10852                                                         Antisemitism
## 10853                                                         Antisemitism
## 10854                                                         Antisemitism
## 10855                                                         Antisemitism
## 10856                                                         Antisemitism
## 10857                                                         Antisemitism
## 10858                                                         Antisemitism
## 10859                                                         Antisemitism
## 10860                                                         Antisemitism
## 10861                                                         Antisemitism
## 10862                                                         Antisemitism
## 10863                                                         Antisemitism
## 10864                                                         Antisemitism
## 10865                                                         Antisemitism
## 10866                                                         Antisemitism
## 10867                                                         Antisemitism
## 10868                                                         Antisemitism
## 10869                                                         Antisemitism
## 10870                                                         Antisemitism
## 10871                                                         Antisemitism
## 10872                                                         Antisemitism
## 10873                                                         Antisemitism
## 10874                                                         Antisemitism
## 10875                                                         Antisemitism
## 10876                                                         Antisemitism
## 10877                                                         Antisemitism
## 10878                                                         Antisemitism
## 10879                                                         Antisemitism
## 10880                                                         Antisemitism
## 10881                                                         Antisemitism
## 10882                                                         Antisemitism
## 10883                                                         Antisemitism
## 10884                                                         Antisemitism
## 10885                                                         Antisemitism
## 10886                                                         Antisemitism
## 10887                                                         Antisemitism
## 10888                                                         Antisemitism
## 10889                                                         Antisemitism
## 10890                                                         Antisemitism
## 10891                                                         Antisemitism
## 10892                                                         Antisemitism
## 10893                                                         Antisemitism
## 10894                                                         Antisemitism
## 10895                                                         Antisemitism
## 10896                                                         Antisemitism
## 10897                                                         Antisemitism
## 10898                                                         Antisemitism
## 10899                                                         Antisemitism
## 10900                                                         Antisemitism
## 10901                                                         Antisemitism
## 10902                                                         Antisemitism
## 10903                                                         Antisemitism
## 10904                                                         Antisemitism
## 10905                                                         Antisemitism
## 10906                                                         Antisemitism
## 10907                                                         Antisemitism
## 10908                                                         Antisemitism
## 10909                                                         Antisemitism
## 10910                                                         Antisemitism
## 10911                                                         Antisemitism
## 10912                                                         Antisemitism
## 10913                                                         Antisemitism
## 10914                                                         Antisemitism
## 10915                                                         Antisemitism
## 10916                                                         Antisemitism
## 10917                                                         Antisemitism
## 10918                                                         Antisemitism
## 10919                                                         Antisemitism
## 10920                                                         Antisemitism
## 10921                                                         Antisemitism
## 10922                                                         Antisemitism
## 10923                                                         Antisemitism
## 10924                                                         Antisemitism
## 10925                                                         Antisemitism
## 10926                                                         Antisemitism
## 10927                                                         Antisemitism
## 10928                                                         Antisemitism
## 10929                                                         Antisemitism
## 10930                                                         Antisemitism
## 10931                                                         Antisemitism
## 10932                                                         Antisemitism
## 10933                                                         Antisemitism
## 10934                                                         Antisemitism
## 10935                                                         Antisemitism
## 10936                                                         Antisemitism
## 10937                                                         Antisemitism
## 10938                                                         Antisemitism
## 10939                                                         Antisemitism
## 10940                                                         Antisemitism
## 10941                                                         Antisemitism
## 10942                                                         Antisemitism
## 10943                                                         Antisemitism
## 10944                                                         Antisemitism
## 10945                                                         Antisemitism
## 10946                                                         Antisemitism
## 10947                                                         Antisemitism
## 10948                                                         Antisemitism
## 10949                                                         Antisemitism
## 10950                                                         Antisemitism
## 10951                                                         Antisemitism
## 10952                                                         Antisemitism
## 10953                                                         Antisemitism
## 10954                                                         Antisemitism
## 10955                                                         Antisemitism
## 10956                                                         Antisemitism
## 10957                                                         Antisemitism
## 10958                                                         Antisemitism
## 10959                                                         Antisemitism
## 10960                                                         Antisemitism
## 10961                                                         Antisemitism
## 10962                                                         Antisemitism
## 10963                                                         Antisemitism
## 10964                                                         Antisemitism
## 10965                                                         Antisemitism
## 10966                                                         Antisemitism
## 10967                                                         Antisemitism
## 10968                                                         Antisemitism
## 10969                                                         Antisemitism
## 10970                                                         Antisemitism
## 10971                                                         Antisemitism
## 10972                                                         Antisemitism
## 10973                                                         Antisemitism
## 10974                                                         Antisemitism
## 10975                                                         Antisemitism
## 10976                                                         Antisemitism
## 10977                                                         Antisemitism
## 10978                                                         Antisemitism
## 10979                                                         Antisemitism
## 10980                                                         Antisemitism
## 10981                                                         Antisemitism
## 10982                                                         Antisemitism
## 10983                                                         Antisemitism
## 10984                                                         Antisemitism
## 10985                                                         Antisemitism
## 10986                                                         Antisemitism
## 10987                                                         Antisemitism
## 10988                                                         Antisemitism
## 10989                                                         Antisemitism
## 10990                                                         Antisemitism
## 10991                                                         Antisemitism
## 10992                                                         Antisemitism
## 10993                                                         Antisemitism
## 10994                                                         Antisemitism
## 10995                                                         Antisemitism
## 10996                                                         Antisemitism
## 10997                                                         Antisemitism
## 10998                                                         Antisemitism
## 10999                                                         Antisemitism
## 11000                                                         Antisemitism
## 11001                                                         Antisemitism
## 11002                                                         Antisemitism
## 11003                                                         Antisemitism
## 11004                                                         Antisemitism
## 11005                                                         Antisemitism
## 11006                                                         Antisemitism
## 11007                                                         Antisemitism
## 11008                                                         Antisemitism
## 11009                                                         Antisemitism
## 11010                                                         Antisemitism
## 11011                                                         Antisemitism
## 11012                                                         Antisemitism
## 11013                                                         Antisemitism
## 11014                                                         Antisemitism
## 11015                                                         Antisemitism
## 11016                                                         Antisemitism
## 11017                                                         Antisemitism
## 11018                                                         Antisemitism
## 11019                                                         Antisemitism
## 11020                                                         Antisemitism
## 11021                                                         Antisemitism
## 11022                                                         Antisemitism
## 11023                                                         Antisemitism
## 11024                                                         Antisemitism
## 11025                                                         Antisemitism
## 11026                                                         Antisemitism
## 11027                                                         Antisemitism
## 11028                                                         Antisemitism
## 11029                                                         Antisemitism
## 11030                                                         Antisemitism
## 11031                                                         Antisemitism
## 11032                                                         Antisemitism
## 11033                                                         Antisemitism
## 11034                                                         Antisemitism
## 11035                                                         Antisemitism
## 11036                                                         Antisemitism
## 11037                                                         Antisemitism
## 11038                                                         Antisemitism
## 11039                                                         Antisemitism
## 11040                                                         Antisemitism
## 11041                                                         Antisemitism
## 11042                                                         Antisemitism
## 11043                                                         Antisemitism
## 11044                                                         Antisemitism
## 11045                                                         Antisemitism
## 11046                                                         Antisemitism
## 11047                                                         Antisemitism
## 11048                                                         Antisemitism
## 11049                                                         Antisemitism
## 11050                                                         Antisemitism
## 11051                                                         Antisemitism
## 11052                                                         Antisemitism
## 11053                                                         Antisemitism
## 11054                                                         Antisemitism
## 11055                                                         Antisemitism
## 11056                                                         Antisemitism
## 11057                                                         Antisemitism
## 11058                                                         Antisemitism
## 11059                                                         Antisemitism
## 11060                                                         Antisemitism
## 11061                                                         Antisemitism
## 11062                                                         Antisemitism
## 11063                                                         Antisemitism
## 11064                                                         Antisemitism
## 11065                                                         Antisemitism
## 11066                                                         Antisemitism
## 11067                                                         Antisemitism
## 11068                                                         Antisemitism
## 11069                                                         Antisemitism
## 11070                                                         Antisemitism
## 11071                                                         Antisemitism
## 11072                                                         Antisemitism
## 11073                                                         Antisemitism
## 11074                                                         Antisemitism
## 11075                                                         Antisemitism
## 11076                                                         Antisemitism
## 11077                                                         Antisemitism
## 11078                                                         Antisemitism
## 11079                                                         Antisemitism
## 11080                                                         Antisemitism
## 11081                                                         Antisemitism
## 11082                                                         Antisemitism
## 11083                                                         Antisemitism
## 11084                                                         Antisemitism
## 11085                                                         Antisemitism
## 11086                                                         Antisemitism
## 11087                                                         Antisemitism
## 11088                                                         Antisemitism
## 11089                                                         Antisemitism
## 11090                                                         Antisemitism
## 11091                                                         Antisemitism
## 11092                                                         Antisemitism
## 11093                                                         Antisemitism
## 11094                                                         Antisemitism
## 11095                                                         Antisemitism
## 11096                                                         Antisemitism
## 11097                                                         Antisemitism
## 11098                                                         Antisemitism
## 11099                                                         Antisemitism
## 11100                                                         Antisemitism
## 11101                                                         Antisemitism
## 11102                                                         Antisemitism
## 11103                                                         Antisemitism
## 11104                                                         Antisemitism
## 11105                                                         Antisemitism
## 11106                                                         Antisemitism
## 11107                                                         Antisemitism
## 11108                                                         Antisemitism
## 11109                                                         Antisemitism
## 11110                                                         Antisemitism
## 11111                                                         Antisemitism
## 11112                                                         Antisemitism
## 11113                                                         Antisemitism
## 11114                                                         Antisemitism
## 11115                                                         Antisemitism
## 11116                                                         Antisemitism
## 11117                                                         Antisemitism
## 11118                                                         Antisemitism
## 11119                                                         Antisemitism
## 11120                                                         Antisemitism
## 11121                                                         Antisemitism
## 11122                                                         Antisemitism
## 11123                                                         Antisemitism
## 11124                                                         Antisemitism
## 11125                                                         Antisemitism
## 11126                                                         Antisemitism
## 11127                                                         Antisemitism
## 11128                                                         Antisemitism
## 11129                                                         Antisemitism
## 11130                                                         Antisemitism
## 11131                                                         Antisemitism
## 11132                                                         Antisemitism
## 11133                                                         Antisemitism
## 11134                                                         Antisemitism
## 11135                                                         Antisemitism
## 11136                                                         Antisemitism
## 11137                                                         Antisemitism
## 11138                                                         Antisemitism
## 11139                                                         Antisemitism
## 11140                                                         Antisemitism
## 11141                                                         Antisemitism
## 11142                                                         Antisemitism
## 11143                                                         Antisemitism
## 11144                                                         Antisemitism
## 11145                                                         Antisemitism
## 11146                                                         Antisemitism
## 11147                                                         Antisemitism
## 11148                                                         Antisemitism
## 11149                                                         Antisemitism
## 11150                                                         Antisemitism
## 11151                                                         Antisemitism
## 11152                                                         Antisemitism
## 11153                                                         Antisemitism
## 11154                                                         Antisemitism
## 11155                                                         Antisemitism
## 11156                                                         Antisemitism
## 11157                                                         Antisemitism
## 11158                                                         Antisemitism
## 11159                                                         Antisemitism
## 11160                                                         Antisemitism
## 11161                                                         Antisemitism
## 11162                                                         Antisemitism
## 11163                                                         Antisemitism
## 11164                                                         Antisemitism
## 11165                                                         Antisemitism
## 11166                                                         Antisemitism
## 11167                                                         Antisemitism
## 11168                                                         Antisemitism
## 11169                                                         Antisemitism
## 11170                                                         Antisemitism
## 11171                                                         Antisemitism
## 11172                                                         Antisemitism
## 11173                                                         Antisemitism
## 11174                                                         Antisemitism
## 11175                                                         Antisemitism
## 11176                                                         Antisemitism
## 11177                                                         Antisemitism
## 11178                                                         Antisemitism
## 11179                                                         Antisemitism
## 11180                                                         Antisemitism
## 11181                                                         Antisemitism
## 11182                                                         Antisemitism
## 11183                                                         Antisemitism
## 11184                                                         Antisemitism
## 11185                                                         Antisemitism
## 11186                                                         Antisemitism
## 11187                                                         Antisemitism
## 11188                                                         Antisemitism
## 11189                                                         Antisemitism
## 11190                                                         Antisemitism
## 11191                                                         Antisemitism
## 11192                                                         Antisemitism
## 11193                                                         Antisemitism
## 11194                                                         Antisemitism
## 11195                                                         Antisemitism
## 11196                                                         Antisemitism
## 11197                                                         Antisemitism
## 11198                                                         Antisemitism
## 11199                                                         Antisemitism
## 11200                                                         Antisemitism
## 11201                                                         Antisemitism
## 11202                                                         Antisemitism
## 11203                                                         Antisemitism
## 11204                                                         Antisemitism
## 11205                                                         Antisemitism
## 11206                                                         Antisemitism
## 11207                                                         Antisemitism
## 11208                                                         Antisemitism
## 11209                                                         Antisemitism
## 11210                                                         Antisemitism
## 11211                                                         Antisemitism
## 11212                                                         Antisemitism
## 11213                                                         Antisemitism
## 11214                                                         Antisemitism
## 11215                                                         Antisemitism
## 11216                                                         Antisemitism
## 11217                                                         Antisemitism
## 11218                                                         Antisemitism
## 11219                                                         Antisemitism
## 11220                                                         Antisemitism
## 11221                                                         Antisemitism
## 11222                                                         Antisemitism
## 11223                                                         Antisemitism
## 11224                                                         Antisemitism
## 11225                                                         Antisemitism
## 11226                                                         Antisemitism
## 11227                                                         Antisemitism
## 11228                                                         Antisemitism
## 11229                                                         Antisemitism
## 11230                                                         Antisemitism
## 11231                                                         Antisemitism
## 11232                                                         Antisemitism
## 11233                                                         Antisemitism
## 11234                                                         Antisemitism
## 11235                                                         Antisemitism
## 11236                                                         Antisemitism
## 11237                                                         Antisemitism
## 11238                                                         Antisemitism
## 11239                                                         Antisemitism
## 11240                                                         Antisemitism
## 11241                                                         Antisemitism
## 11242                                                         Antisemitism
## 11243                                                         Antisemitism
## 11244                                                         Antisemitism
## 11245                                                         Antisemitism
## 11246                                                         Antisemitism
## 11247                                                         Antisemitism
## 11248                                                         Antisemitism
## 11249                                                         Antisemitism
## 11250                                                         Antisemitism
## 11251                                                         Antisemitism
## 11252                                                         Antisemitism
## 11253                                                         Antisemitism
## 11254                                                         Antisemitism
## 11255                                                         Antisemitism
## 11256                                                         Antisemitism
## 11257                                                         Antisemitism
## 11258                                                         Antisemitism
## 11259                                                         Antisemitism
## 11260                                                         Antisemitism
## 11261                                                         Antisemitism
## 11262                                                         Antisemitism
## 11263                                                         Antisemitism
## 11264                                                         Antisemitism
## 11265                                                         Antisemitism
## 11266                                                         Antisemitism
## 11267                                                         Antisemitism
## 11268                                                         Antisemitism
## 11269                                                         Antisemitism
## 11270                                                         Antisemitism
## 11271                                                         Antisemitism
## 11272                                                         Antisemitism
## 11273                                                         Antisemitism
## 11274                                                         Antisemitism
## 11275                                                         Antisemitism
## 11276                                                         Antisemitism
## 11277                                                         Antisemitism
## 11278                                                         Antisemitism
## 11279                                                         Antisemitism
## 11280                                                         Antisemitism
## 11281                                                         Antisemitism
## 11282                                                         Antisemitism
## 11283                                                         Antisemitism
## 11284                                                         Antisemitism
## 11285                                                         Antisemitism
## 11286                                                         Antisemitism
## 11287                                                         Antisemitism
## 11288                                                         Antisemitism
## 11289                                                         Antisemitism
## 11290                                                         Antisemitism
## 11291                                                         Antisemitism
## 11292                                                         Antisemitism
## 11293                                                         Antisemitism
## 11294                                                         Antisemitism
## 11295                                                         Antisemitism
## 11296                                                         Antisemitism
## 11297                                                         Antisemitism
## 11298                                                         Antisemitism
## 11299                                                         Antisemitism
## 11300                                                         Antisemitism
## 11301                                                         Antisemitism
## 11302                                                         Antisemitism
## 11303                                                         Antisemitism
## 11304                                                         Antisemitism
## 11305                                                         Antisemitism
## 11306                                                         Antisemitism
## 11307                                                         Antisemitism
## 11308                                                         Antisemitism
## 11309                                                         Antisemitism
## 11310                                                         Antisemitism
## 11311                                                         Antisemitism
## 11312                                                         Antisemitism
## 11313                                                         Antisemitism
## 11314                                                         Antisemitism
## 11315                                                         Antisemitism
## 11316                                                         Antisemitism
## 11317                                                         Antisemitism
## 11318                                                         Antisemitism
## 11319                                                         Antisemitism
## 11320                                                         Antisemitism
## 11321                                                         Antisemitism
## 11322                                                         Antisemitism
## 11323                                                         Antisemitism
## 11324                                                         Antisemitism
## 11325                                                         Antisemitism
## 11326                                                         Antisemitism
## 11327                                                         Antisemitism
## 11328                                                         Antisemitism
## 11329                                                         Antisemitism
## 11330                                                         Antisemitism
## 11331                                                         Antisemitism
## 11332                                                         Antisemitism
## 11333                                                         Antisemitism
## 11334                                                         Antisemitism
## 11335                                                         Antisemitism
## 11336                                                         Antisemitism
## 11337                                                         Antisemitism
## 11338                                                         Antisemitism
## 11339                                                         Antisemitism
## 11340                                                         Antisemitism
## 11341                                                         Antisemitism
## 11342                                                         Antisemitism
## 11343                                                         Antisemitism
## 11344                                                         Antisemitism
## 11345                                                         Antisemitism
## 11346                                                         Antisemitism
## 11347                                                         Antisemitism
## 11348                                                         Antisemitism
## 11349                                                         Antisemitism
## 11350                                                         Antisemitism
## 11351                                                         Antisemitism
## 11352                                                         Antisemitism
## 11353                                                         Antisemitism
## 11354                                                         Antisemitism
## 11355                                                         Antisemitism
## 11356                                                         Antisemitism
## 11357                                                         Antisemitism
## 11358                                                         Antisemitism
## 11359                                                         Antisemitism
## 11360                                                         Antisemitism
## 11361                                                         Antisemitism
## 11362                                                         Antisemitism
## 11363                                                         Antisemitism
## 11364                                                         Antisemitism
## 11365                                                         Antisemitism
## 11366                                                         Antisemitism
## 11367                                                         Antisemitism
## 11368                                                         Antisemitism
## 11369                                                         Antisemitism
## 11370                                                         Antisemitism
## 11371                                                         Antisemitism
## 11372                                                         Antisemitism
## 11373                                                         Antisemitism
## 11374                                                         Antisemitism
## 11375                                                         Antisemitism
## 11376                                                         Antisemitism
## 11377                                                         Antisemitism
## 11378                                                         Antisemitism
## 11379                                                         Antisemitism
## 11380                                                         Antisemitism
## 11381                                                         Antisemitism
## 11382                                                         Antisemitism
## 11383                                                         Antisemitism
## 11384                                                         Antisemitism
## 11385                                                         Antisemitism
## 11386                                                         Antisemitism
## 11387                                                         Antisemitism
## 11388                                                         Antisemitism
## 11389                                                         Antisemitism
## 11390                                                         Antisemitism
## 11391                                                         Antisemitism
## 11392                                                         Antisemitism
## 11393                                                         Antisemitism
## 11394                                                         Antisemitism
## 11395                                                         Antisemitism
## 11396                                                         Antisemitism
## 11397                                                         Antisemitism
## 11398                                                         Antisemitism
## 11399                                                         Antisemitism
## 11400                                                         Antisemitism
## 11401                                                         Antisemitism
## 11402                                                         Antisemitism
## 11403                                                         Antisemitism
## 11404                                                         Antisemitism
## 11405                                                         Antisemitism
## 11406                                                         Antisemitism
## 11407                                                         Antisemitism
## 11408                                                         Antisemitism
## 11409                                                         Antisemitism
## 11410                                                         Antisemitism
## 11411                                                         Antisemitism
## 11412                                                         Antisemitism
## 11413                                                         Antisemitism
## 11414                                                         Antisemitism
## 11415                                                         Antisemitism
## 11416                                                         Antisemitism
## 11417                                                         Antisemitism
## 11418                                                         Antisemitism
## 11419                                                         Antisemitism
## 11420                                                         Antisemitism
## 11421                                                         Antisemitism
## 11422                                                         Antisemitism
## 11423                                                         Antisemitism
## 11424                                                         Antisemitism
## 11425                                                         Antisemitism
## 11426                                                         Antisemitism
## 11427                                                         Antisemitism
## 11428                                                         Antisemitism
## 11429                                                         Antisemitism
## 11430                                                         Antisemitism
## 11431                                                         Antisemitism
## 11432                                                         Antisemitism
## 11433                                                         Antisemitism
## 11434                                                         Antisemitism
## 11435                                                         Antisemitism
## 11436                                                         Antisemitism
## 11437                                                         Antisemitism
## 11438                                                         Antisemitism
## 11439                                                         Antisemitism
## 11440                                                         Antisemitism
## 11441                                                         Antisemitism
## 11442                                                         Antisemitism
## 11443                                                         Antisemitism
## 11444                                                         Antisemitism
## 11445                                                         Antisemitism
## 11446                                                         Antisemitism
## 11447                                                         Antisemitism
## 11448                                                         Antisemitism
## 11449                                                         Antisemitism
## 11450                                                         Antisemitism
## 11451                                                         Antisemitism
## 11452                                                         Antisemitism
## 11453                                                         Antisemitism
## 11454                                                         Antisemitism
## 11455                                                         Antisemitism
## 11456                                                         Antisemitism
## 11457                                                         Antisemitism
## 11458                                                         Antisemitism
## 11459                                                         Antisemitism
## 11460                                                         Antisemitism
## 11461                                                         Antisemitism
## 11462                                                         Antisemitism
## 11463                                                         Antisemitism
## 11464                                                         Antisemitism
## 11465                                                         Antisemitism
## 11466                                                         Antisemitism
## 11467                                                         Antisemitism
## 11468                                                         Antisemitism
## 11469                                                         Antisemitism
## 11470                                                         Antisemitism
## 11471                                                         Antisemitism
## 11472                                                         Antisemitism
## 11473                                                         Antisemitism
## 11474                                                         Antisemitism
## 11475                                                         Antisemitism
## 11476                                                         Antisemitism
## 11477                                                         Antisemitism
## 11478                                                         Antisemitism
## 11479                                                         Antisemitism
## 11480                                                         Antisemitism
## 11481                                                         Antisemitism
## 11482                                                         Antisemitism
## 11483                                                         Antisemitism
## 11484                                                         Antisemitism
## 11485                                                         Antisemitism
## 11486                                                         Antisemitism
## 11487                                                         Antisemitism
## 11488                                                         Antisemitism
## 11489                                                         Antisemitism
## 11490                                                         Antisemitism
## 11491                                                         Antisemitism
## 11492                                                         Antisemitism
## 11493                                                         Antisemitism
## 11494                                                         Antisemitism
## 11495                                                         Antisemitism
## 11496                                                         Antisemitism
## 11497                                                         Antisemitism
## 11498                                                         Antisemitism
## 11499                                                         Antisemitism
## 11500                                                         Antisemitism
## 11501                                                         Antisemitism
## 11502                                                         Antisemitism
## 11503                                                         Antisemitism
## 11504                                                         Antisemitism
## 11505                                                         Antisemitism
## 11506                                                         Antisemitism
## 11507                                                         Antisemitism
## 11508                                                         Antisemitism
## 11509                                                         Antisemitism
## 11510                                                         Antisemitism
## 11511                                                         Antisemitism
## 11512                                                         Antisemitism
## 11513                                                         Antisemitism
## 11514                                                         Antisemitism
## 11515                                                         Antisemitism
## 11516                                                         Antisemitism
## 11517                                                         Antisemitism
## 11518                                                         Antisemitism
## 11519                                                         Antisemitism
## 11520                                                         Antisemitism
## 11521                                                         Antisemitism
## 11522                                                         Antisemitism
## 11523                                                         Antisemitism
## 11524                                                         Antisemitism
## 11525                                                         Antisemitism
## 11526                                                         Antisemitism
## 11527                                                         Antisemitism
## 11528                                                         Antisemitism
## 11529                                                         Antisemitism
## 11530                                                         Antisemitism
## 11531                                                         Antisemitism
## 11532                                                         Antisemitism
## 11533                                                         Antisemitism
## 11534                                                         Antisemitism
## 11535                                                         Antisemitism
## 11536                                                         Antisemitism
## 11537                                                         Antisemitism
## 11538                                                         Antisemitism
## 11539                                                         Antisemitism
## 11540                                                         Antisemitism
## 11541                                                         Antisemitism
## 11542                                                         Antisemitism
## 11543                                                         Antisemitism
## 11544                                                         Antisemitism
## 11545                                                         Antisemitism
## 11546                                                         Antisemitism
## 11547                                                         Antisemitism
## 11548                                                         Antisemitism
## 11549                                                         Antisemitism
## 11550                                                         Antisemitism
## 11551                                                         Antisemitism
## 11552                                                         Antisemitism
## 11553                                                         Antisemitism
## 11554                                                         Antisemitism
## 11555                                                         Antisemitism
## 11556                                                         Antisemitism
## 11557                                                         Antisemitism
## 11558                                                         Antisemitism
## 11559                                                         Antisemitism
## 11560                                                         Antisemitism
## 11561                                                         Antisemitism
## 11562                                                         Antisemitism
## 11563                                                         Antisemitism
## 11564                                                         Antisemitism
## 11565                                                         Antisemitism
## 11566                                                         Antisemitism
## 11567                                                         Antisemitism
## 11568                                                         Antisemitism
## 11569                                                         Antisemitism
## 11570                                                         Antisemitism
## 11571                                                         Antisemitism
## 11572                                                         Antisemitism
## 11573                                                         Antisemitism
## 11574                                                         Antisemitism
## 11575                                                         Antisemitism
## 11576                                                         Antisemitism
## 11577                                                         Antisemitism
## 11578                                                         Antisemitism
## 11579                                                         Antisemitism
## 11580                                                         Antisemitism
## 11581                                                         Antisemitism
## 11582                                                         Antisemitism
## 11583                                                         Antisemitism
## 11584                                                         Antisemitism
## 11585                                                         Antisemitism
## 11586                                                         Antisemitism
## 11587                                                         Antisemitism
## 11588                                                         Antisemitism
## 11589                                                         Antisemitism
## 11590                                                         Antisemitism
## 11591                                                         Antisemitism
## 11592                                                         Antisemitism
## 11593                                                         Antisemitism
## 11594                                                         Antisemitism
## 11595                                                         Antisemitism
## 11596                                                         Antisemitism
## 11597                                                         Antisemitism
## 11598                                                         Antisemitism
## 11599                                                         Antisemitism
## 11600                                                         Antisemitism
## 11601                                                         Antisemitism
## 11602                                                         Antisemitism
## 11603                                                         Antisemitism
## 11604                                                         Antisemitism
## 11605                                                         Antisemitism
## 11606                                                         Antisemitism
## 11607                                                         Antisemitism
## 11608                                                         Antisemitism
## 11609                                                         Antisemitism
## 11610                                                         Antisemitism
## 11611                                                         Antisemitism
## 11612                                                         Antisemitism
## 11613                                                         Antisemitism
## 11614                                                         Antisemitism
## 11615                                                         Antisemitism
## 11616                                                         Antisemitism
## 11617                                                         Antisemitism
## 11618                                                         Antisemitism
## 11619                                                         Antisemitism
## 11620                                                         Antisemitism
## 11621                                                         Antisemitism
## 11622                                                         Antisemitism
## 11623                                                         Antisemitism
## 11624                                                         Antisemitism
## 11625                                                         Antisemitism
## 11626                                                         Antisemitism
## 11627                                                         Antisemitism
## 11628                                                         Antisemitism
## 11629                                                         Antisemitism
## 11630                                                         Antisemitism
## 11631                                                         Antisemitism
## 11632                                                         Antisemitism
## 11633                                                         Antisemitism
## 11634                                                         Antisemitism
## 11635                                                         Antisemitism
## 11636                                                         Antisemitism
## 11637                                                         Antisemitism
## 11638                                                         Antisemitism
## 11639                                                         Antisemitism
## 11640                                                         Antisemitism
## 11641                                                         Antisemitism
## 11642                                                         Antisemitism
## 11643                                                         Antisemitism
## 11644                                                         Antisemitism
## 11645                                                         Antisemitism
## 11646                                                         Antisemitism
## 11647                                                         Antisemitism
## 11648                                                         Antisemitism
## 11649                                                         Antisemitism
## 11650                                                         Antisemitism
## 11651                                                         Antisemitism
## 11652                                                         Antisemitism
## 11653                                                         Antisemitism
## 11654                                                         Antisemitism
## 11655                                                         Antisemitism
## 11656                                                         Antisemitism
## 11657                                                         Antisemitism
## 11658                                                         Antisemitism
## 11659                                                         Antisemitism
## 11660                                                         Antisemitism
## 11661                                                         Antisemitism
## 11662                                                         Antisemitism
## 11663                                                         Antisemitism
## 11664                                                         Antisemitism
## 11665                                                         Antisemitism
## 11666                                                         Antisemitism
## 11667                                                         Antisemitism
## 11668                                                         Antisemitism
## 11669                                                         Antisemitism
## 11670                                                         Antisemitism
## 11671                                                         Antisemitism
## 11672                                                         Antisemitism
## 11673                                                         Antisemitism
## 11674                                                         Antisemitism
## 11675                                                         Antisemitism
## 11676                                                         Antisemitism
## 11677                                                         Antisemitism
## 11678                                                         Antisemitism
## 11679                                                         Antisemitism
## 11680                                                         Antisemitism
## 11681                                                         Antisemitism
## 11682                                                         Antisemitism
## 11683                                                         Antisemitism
## 11684                                                         Antisemitism
## 11685                                                         Antisemitism
## 11686                                                         Antisemitism
## 11687                                                         Antisemitism
## 11688                                                         Antisemitism
## 11689                                                         Antisemitism
## 11690                                                         Antisemitism
## 11691                                                         Antisemitism
## 11692                                                         Antisemitism
## 11693                                                         Antisemitism
## 11694                                                         Antisemitism
## 11695                                                         Antisemitism
## 11696                                                         Antisemitism
## 11697                                                         Antisemitism
## 11698                                                         Antisemitism
## 11699                                                         Antisemitism
## 11700                                                         Antisemitism
## 11701                                                         Antisemitism
## 11702                                                         Antisemitism
## 11703                                                         Antisemitism
## 11704                                                         Antisemitism
## 11705                                                         Antisemitism
## 11706                                                         Antisemitism
## 11707                                                         Antisemitism
## 11708                                                         Antisemitism
## 11709                                                         Antisemitism
## 11710                                                         Antisemitism
## 11711                                                         Antisemitism
## 11712                                                         Antisemitism
## 11713                                                         Antisemitism
## 11714                                                         Antisemitism
## 11715                                                         Antisemitism
## 11716                                                         Antisemitism
## 11717                                                         Antisemitism
## 11718                                                         Antisemitism
## 11719                                                         Antisemitism
## 11720                                                         Antisemitism
## 11721                                                         Antisemitism
## 11722                                                         Antisemitism
## 11723                                                         Antisemitism
## 11724                                                         Antisemitism
## 11725                                                         Antisemitism
## 11726                                                         Antisemitism
## 11727                                                         Antisemitism
## 11728                                                         Antisemitism
## 11729                                                         Antisemitism
## 11730                                                         Antisemitism
## 11731                                                         Antisemitism
## 11732                                                         Antisemitism
## 11733                                                         Antisemitism
## 11734                                                         Antisemitism
## 11735                                                         Antisemitism
## 11736                                                         Antisemitism
## 11737                                                         Antisemitism
## 11738                                                         Antisemitism
## 11739                                                         Antisemitism
## 11740                                                         Antisemitism
## 11741                                                         Antisemitism
## 11742                                                         Antisemitism
## 11743                                                         Antisemitism
## 11744                                                         Antisemitism
## 11745                                                         Antisemitism
## 11746                                                         Antisemitism
## 11747                                                         Antisemitism
## 11748                                                         Antisemitism
## 11749                                                         Antisemitism
## 11750                                                         Antisemitism
## 11751                                                         Antisemitism
## 11752                                                         Antisemitism
## 11753                                                         Antisemitism
## 11754                                                         Antisemitism
## 11755                                                         Antisemitism
## 11756                                                         Antisemitism
## 11757                                                         Antisemitism
## 11758                                                         Antisemitism
## 11759                                                         Antisemitism
## 11760                                                         Antisemitism
## 11761                                                         Antisemitism
## 11762                                                         Antisemitism
## 11763                                                         Antisemitism
## 11764                                                         Antisemitism
## 11765                                                         Antisemitism
## 11766                                                         Antisemitism
## 11767                                                         Antisemitism
## 11768                                                         Antisemitism
## 11769                                                         Antisemitism
## 11770                                                         Antisemitism
## 11771                                                         Antisemitism
## 11772                                                         Antisemitism
## 11773                                                         Antisemitism
## 11774                                                         Antisemitism
## 11775                                                         Antisemitism
## 11776                                                         Antisemitism
## 11777                                                         Antisemitism
## 11778                                                         Antisemitism
## 11779                                                         Antisemitism
## 11780                                                         Antisemitism
## 11781                                                         Antisemitism
## 11782                                                         Antisemitism
## 11783                                                         Antisemitism
## 11784                                                         Antisemitism
## 11785                                                         Antisemitism
## 11786                                                         Antisemitism
## 11787                                                         Antisemitism
## 11788                                                         Antisemitism
## 11789                                                         Antisemitism
## 11790                                                         Antisemitism
## 11791                                                         Antisemitism
## 11792                                                         Antisemitism
## 11793                                                         Antisemitism
## 11794                                                         Antisemitism
## 11795                                                         Antisemitism
## 11796                                                         Antisemitism
## 11797                                                         Antisemitism
## 11798                                                         Antisemitism
## 11799                                                         Antisemitism
## 11800                                                         Antisemitism
## 11801                                                         Antisemitism
## 11802                                                         Antisemitism
## 11803                                                         Antisemitism
## 11804                                                         Antisemitism
## 11805                                                         Antisemitism
## 11806                                                         Antisemitism
## 11807                                                         Antisemitism
## 11808                                                         Antisemitism
## 11809                                                         Antisemitism
## 11810                                                         Antisemitism
## 11811                                                         Antisemitism
## 11812                                                         Antisemitism
## 11813                                                         Antisemitism
## 11814                                                         Antisemitism
## 11815                                                         Antisemitism
## 11816                                                         Antisemitism
## 11817                                                         Antisemitism
## 11818                                                         Antisemitism
## 11819                                                         Antisemitism
## 11820                                                         Antisemitism
## 11821                                                         Antisemitism
## 11822                                                         Antisemitism
## 11823                                                         Antisemitism
## 11824                                                         Antisemitism
## 11825                                                         Antisemitism
## 11826                                                         Antisemitism
## 11827                                                         Antisemitism
## 11828                                                         Antisemitism
## 11829                                                         Antisemitism
## 11830                                                         Antisemitism
## 11831                                                         Antisemitism
## 11832                                                         Antisemitism
## 11833                                                         Antisemitism
## 11834                                                         Antisemitism
## 11835                                                         Antisemitism
## 11836                                                         Antisemitism
## 11837                                                         Antisemitism
## 11838                                                         Antisemitism
## 11839                                                         Antisemitism
## 11840                                                         Antisemitism
## 11841                                                         Antisemitism
## 11842                                                         Antisemitism
## 11843                                                         Antisemitism
## 11844                                                         Antisemitism
## 11845                                                         Antisemitism
## 11846                                                         Antisemitism
## 11847                                                         Antisemitism
## 11848                                                         Antisemitism
## 11849                                                         Antisemitism
## 11850                                                         Antisemitism
## 11851                                                         Antisemitism
## 11852                                                         Antisemitism
## 11853                                                         Antisemitism
## 11854                                                         Antisemitism
## 11855                                                         Antisemitism
## 11856                                                         Antisemitism
## 11857                                                         Antisemitism
## 11858                                                         Antisemitism
## 11859                                                         Antisemitism
## 11860                                                         Antisemitism
## 11861                                                         Antisemitism
## 11862                                                         Antisemitism
## 11863                                                         Antisemitism
## 11864                                                         Antisemitism
## 11865                                                         Antisemitism
## 11866                                                         Antisemitism
## 11867                                                         Antisemitism
## 11868                                                         Antisemitism
## 11869                                                         Antisemitism
## 11870                                                         Antisemitism
## 11871                                                         Antisemitism
## 11872                                                         Antisemitism
## 11873                                                         Antisemitism
## 11874                                                         Antisemitism
## 11875                                                         Antisemitism
## 11876                                                         Antisemitism
## 11877                                                         Antisemitism
## 11878                                                         Antisemitism
## 11879                                                         Antisemitism
## 11880                                                         Antisemitism
## 11881                                                         Antisemitism
## 11882                                                         Antisemitism
## 11883                                                         Antisemitism
## 11884                                                         Antisemitism
## 11885                                                         Antisemitism
## 11886                                                         Antisemitism
## 11887                                                         Antisemitism
## 11888                                                         Antisemitism
## 11889                                                         Antisemitism
## 11890                                                         Antisemitism
## 11891                                                         Antisemitism
## 11892                                                         Antisemitism
## 11893                                                         Antisemitism
## 11894                                                         Antisemitism
## 11895                                                         Antisemitism
## 11896                                                         Antisemitism
## 11897                                                         Antisemitism
## 11898                                                         Antisemitism
## 11899                                                         Antisemitism
## 11900                                                         Antisemitism
## 11901                                                         Antisemitism
## 11902                                                         Antisemitism
## 11903                                                         Antisemitism
## 11904                                                         Antisemitism
## 11905                                                         Antisemitism
## 11906                                                         Antisemitism
## 11907                                                         Antisemitism
## 11908                                                         Antisemitism
## 11909                                                         Antisemitism
## 11910                                                         Antisemitism
## 11911                                                         Antisemitism
## 11912                                                         Antisemitism
## 11913                                                         Antisemitism
## 11914                                                         Antisemitism
## 11915                                                         Antisemitism
## 11916                                                         Antisemitism
## 11917                                                         Antisemitism
## 11918                                                         Antisemitism
## 11919                                                         Antisemitism
## 11920                                                         Antisemitism
## 11921                                                         Antisemitism
## 11922                                                         Antisemitism
## 11923                                                         Antisemitism
## 11924                                                         Antisemitism
## 11925                                                         Antisemitism
## 11926                                                         Antisemitism
## 11927                                                         Antisemitism
## 11928                                                         Antisemitism
## 11929                                                         Antisemitism
## 11930                                                         Antisemitism
## 11931                                                         Antisemitism
## 11932                                                         Antisemitism
## 11933                                                         Antisemitism
## 11934                                                         Antisemitism
## 11935                                                         Antisemitism
## 11936                                                         Antisemitism
## 11937                                                         Antisemitism
## 11938                                                         Antisemitism
## 11939                                                         Antisemitism
## 11940                                                         Antisemitism
## 11941                                                         Antisemitism
## 11942                                                         Antisemitism
## 11943                                                         Antisemitism
## 11944                                                         Antisemitism
## 11945                                                         Antisemitism
## 11946                                                         Antisemitism
## 11947                                                         Antisemitism
## 11948                                                         Antisemitism
## 11949                                                         Antisemitism
## 11950                                                         Antisemitism
## 11951                                                         Antisemitism
## 11952                                                         Antisemitism
## 11953                                                         Antisemitism
## 11954                                                         Antisemitism
## 11955                                                         Antisemitism
## 11956                                                         Antisemitism
## 11957                                                         Antisemitism
## 11958                                                         Antisemitism
## 11959                                                         Antisemitism
## 11960                                                         Antisemitism
## 11961                                                         Antisemitism
## 11962                                                         Antisemitism
## 11963                                                         Antisemitism
## 11964                                                         Antisemitism
## 11965                                                         Antisemitism
## 11966                                                         Antisemitism
## 11967                                                         Antisemitism
## 11968                                                         Antisemitism
## 11969                                                         Antisemitism
## 11970                                                         Antisemitism
## 11971                                                         Antisemitism
## 11972                                                         Antisemitism
## 11973                                                         Antisemitism
## 11974                                                         Antisemitism
## 11975                                                         Antisemitism
## 11976                                                         Antisemitism
## 11977                                                         Antisemitism
## 11978                                                         Antisemitism
## 11979                                                         Antisemitism
## 11980                                                         Antisemitism
## 11981                                                         Antisemitism
## 11982                                                         Antisemitism
## 11983                                                         Antisemitism
## 11984                                                         Antisemitism
## 11985                                                         Antisemitism
## 11986                                                         Antisemitism
## 11987                                                         Antisemitism
## 11988                                                         Antisemitism
## 11989                                                         Antisemitism
## 11990                                                         Antisemitism
## 11991                                                         Antisemitism
## 11992                                                         Antisemitism
## 11993                                                         Antisemitism
## 11994                                                         Antisemitism
## 11995                                                         Antisemitism
## 11996                                                         Antisemitism
## 11997                                                         Antisemitism
## 11998                                                         Antisemitism
## 11999                                                         Antisemitism
## 12000                                                         Antisemitism
## 12001                                                         Antisemitism
## 12002                                                         Antisemitism
## 12003                                                         Antisemitism
## 12004                                                         Antisemitism
## 12005                                                         Antisemitism
## 12006                                                         Antisemitism
## 12007                                                         Antisemitism
## 12008                                                         Antisemitism
## 12009                                                         Antisemitism
## 12010                                                         Antisemitism
## 12011                                                         Antisemitism
## 12012                                                         Antisemitism
## 12013                                                         Antisemitism
## 12014                                                         Antisemitism
## 12015                                                         Antisemitism
## 12016                                                         Antisemitism
## 12017                                                         Antisemitism
## 12018                                                         Antisemitism
## 12019                                                         Antisemitism
## 12020                                                         Antisemitism
## 12021                                                         Antisemitism
## 12022                                                         Antisemitism
## 12023                                                         Antisemitism
## 12024                                                         Antisemitism
## 12025                                                         Antisemitism
## 12026                                                         Antisemitism
## 12027                                                         Antisemitism
## 12028                                                         Antisemitism
## 12029                                                         Antisemitism
## 12030                                                         Antisemitism
## 12031                                                         Antisemitism
## 12032                                                         Antisemitism
## 12033                                                         Antisemitism
## 12034                                                         Antisemitism
## 12035                                                         Antisemitism
## 12036                                                         Antisemitism
## 12037                                                         Antisemitism
## 12038                                                         Antisemitism
## 12039                                                         Antisemitism
## 12040                                                         Antisemitism
## 12041                                                         Antisemitism
## 12042                                                         Antisemitism
## 12043                                                         Antisemitism
## 12044                                                         Antisemitism
## 12045                                                         Antisemitism
## 12046                                                         Antisemitism
## 12047                                                         Antisemitism
## 12048                                                         Antisemitism
## 12049                                                         Antisemitism
## 12050                                                         Antisemitism
## 12051                                                         Antisemitism
## 12052                                                         Antisemitism
## 12053                                                         Antisemitism
## 12054                                                         Antisemitism
## 12055                                                         Antisemitism
## 12056                                                         Antisemitism
## 12057                                                         Antisemitism
## 12058                                                         Antisemitism
## 12059                                                         Antisemitism
## 12060                                                         Antisemitism
## 12061                                                         Antisemitism
## 12062                                                         Antisemitism
## 12063                                                         Antisemitism
## 12064                                                         Antisemitism
## 12065                                                         Antisemitism
## 12066                                                         Antisemitism
## 12067                                                         Antisemitism
## 12068                                                         Antisemitism
## 12069                                                         Antisemitism
## 12070                                                         Antisemitism
## 12071                                                         Antisemitism
## 12072                                                         Antisemitism
## 12073                                                         Antisemitism
## 12074                                                         Antisemitism
## 12075                                                         Antisemitism
## 12076                                                         Antisemitism
## 12077                                                         Antisemitism
## 12078                                                         Antisemitism
## 12079                                                         Antisemitism
## 12080                                                         Antisemitism
## 12081                                                         Antisemitism
## 12082                                                         Antisemitism
## 12083                                                         Antisemitism
## 12084                                                         Antisemitism
## 12085                                                         Antisemitism
## 12086                                                         Antisemitism
## 12087                                                         Antisemitism
## 12088                                                         Antisemitism
## 12089                                                         Antisemitism
## 12090                                                         Antisemitism
## 12091                                                         Antisemitism
## 12092                                                         Antisemitism
## 12093                                                         Antisemitism
## 12094                                                         Antisemitism
## 12095                                                         Antisemitism
## 12096                                                         Antisemitism
## 12097                                                         Antisemitism
## 12098                                                         Antisemitism
## 12099                                                         Antisemitism
## 12100                                                         Antisemitism
## 12101                                                         Antisemitism
## 12102                                                         Antisemitism
## 12103                                                         Antisemitism
## 12104                                                         Antisemitism
## 12105                                                         Antisemitism
## 12106                                                         Antisemitism
## 12107                                                         Antisemitism
## 12108                                                         Antisemitism
## 12109                                                         Antisemitism
## 12110                                                         Antisemitism
## 12111                                                         Antisemitism
## 12112                                                         Antisemitism
## 12113                                                         Antisemitism
## 12114                                                         Antisemitism
## 12115                                                         Antisemitism
## 12116                                                         Antisemitism
## 12117                                                         Antisemitism
## 12118                                                         Antisemitism
## 12119                                                         Antisemitism
## 12120                                                         Antisemitism
## 12121                                                         Antisemitism
## 12122                                                         Antisemitism
## 12123                                                         Antisemitism
## 12124                                                         Antisemitism
## 12125                                                         Antisemitism
## 12126                                                         Antisemitism
## 12127                                                         Antisemitism
## 12128                                                         Antisemitism
## 12129                                                         Antisemitism
## 12130                                                         Antisemitism
## 12131                                                         Antisemitism
## 12132                                                         Antisemitism
## 12133                                                         Antisemitism
## 12134                                                         Antisemitism
## 12135                                                         Antisemitism
## 12136                                                         Antisemitism
## 12137                                                         Antisemitism
## 12138                                                         Antisemitism
## 12139                                                         Antisemitism
## 12140                                                         Antisemitism
## 12141                                                         Antisemitism
## 12142                                                         Antisemitism
## 12143                                                         Antisemitism
## 12144                                                         Antisemitism
## 12145                                                         Antisemitism
## 12146                                                         Antisemitism
## 12147                                                         Antisemitism
## 12148                                                         Antisemitism
## 12149                                                         Antisemitism
## 12150                                                         Antisemitism
## 12151                                                         Antisemitism
## 12152                                                         Antisemitism
## 12153                                                         Antisemitism
## 12154                                                         Antisemitism
## 12155                                                         Antisemitism
## 12156                                                         Antisemitism
## 12157                                                         Antisemitism
## 12158                                                         Antisemitism
## 12159                                                         Antisemitism
## 12160                                                         Antisemitism
## 12161                                                         Antisemitism
## 12162                                                         Antisemitism
## 12163                                                         Antisemitism
## 12164                                                         Antisemitism
## 12165                                                         Antisemitism
## 12166                                                         Antisemitism
## 12167                                                         Antisemitism
## 12168                                                         Antisemitism
## 12169                                                         Antisemitism
## 12170                                                         Antisemitism
## 12171                                                         Antisemitism
## 12172                                                         Antisemitism
## 12173                                                         Antisemitism
## 12174                                                         Antisemitism
## 12175                                                         Antisemitism
## 12176                                                         Antisemitism
## 12177                                                         Antisemitism
## 12178                                                         Antisemitism
## 12179                                                         Antisemitism
## 12180                                                         Antisemitism
## 12181                                                         Antisemitism
## 12182                                                         Antisemitism
## 12183                                                         Antisemitism
## 12184                                                         Antisemitism
## 12185                                                         Antisemitism
## 12186                                                         Antisemitism
## 12187                                                         Antisemitism
## 12188                                                         Antisemitism
## 12189                                                         Antisemitism
## 12190                                                         Antisemitism
## 12191                                                         Antisemitism
## 12192                                                         Antisemitism
## 12193                                                         Antisemitism
## 12194                                                         Antisemitism
## 12195                                                         Antisemitism
## 12196                                                         Antisemitism
## 12197                                                         Antisemitism
## 12198                                                         Antisemitism
## 12199                                                         Antisemitism
## 12200                                                         Antisemitism
## 12201                                                         Antisemitism
## 12202                                                         Antisemitism
## 12203                                                         Antisemitism
## 12204                                                         Antisemitism
## 12205                                                         Antisemitism
## 12206                                                         Antisemitism
## 12207                                                         Antisemitism
## 12208                                                         Antisemitism
## 12209                                                         Antisemitism
## 12210                                                         Antisemitism
## 12211                                                         Antisemitism
## 12212                                                         Antisemitism
## 12213                                                         Antisemitism
## 12214                                                         Antisemitism
## 12215                                                         Antisemitism
## 12216                                                         Antisemitism
## 12217                                                         Antisemitism
## 12218                                                         Antisemitism
## 12219                                                         Antisemitism
## 12220                                                         Antisemitism
## 12221                                                         Antisemitism
## 12222                                                         Antisemitism
## 12223                                                         Antisemitism
## 12224                                                         Antisemitism
## 12225                                                         Antisemitism
## 12226                                                         Antisemitism
## 12227                                                         Antisemitism
## 12228                                                         Antisemitism
## 12229                                                         Antisemitism
## 12230                                                         Antisemitism
## 12231                                                         Antisemitism
## 12232                                                         Antisemitism
## 12233                                                         Antisemitism
## 12234                                                         Antisemitism
## 12235                                                         Antisemitism
## 12236                                                         Antisemitism
## 12237                                                         Antisemitism
## 12238                                                         Antisemitism
## 12239                                                         Antisemitism
## 12240                                                         Antisemitism
## 12241                                                         Antisemitism
## 12242                                                         Antisemitism
## 12243                                                         Antisemitism
## 12244                                                         Antisemitism
## 12245                                                         Antisemitism
## 12246                                                         Antisemitism
## 12247                                                         Antisemitism
## 12248                                                         Antisemitism
## 12249                                                         Antisemitism
## 12250                                                         Antisemitism
## 12251                                                         Antisemitism
## 12252                                                         Antisemitism
## 12253                                                         Antisemitism
## 12254                                                         Antisemitism
## 12255                                                         Antisemitism
## 12256                                                         Antisemitism
## 12257                                                         Antisemitism
## 12258                                                         Antisemitism
## 12259                                                         Antisemitism
## 12260                                                         Antisemitism
## 12261                                                         Antisemitism
## 12262                                                         Antisemitism
## 12263                                                         Antisemitism
## 12264                                                         Antisemitism
## 12265                                                         Antisemitism
## 12266                                                         Antisemitism
## 12267                                                         Antisemitism
## 12268                                                         Antisemitism
## 12269                                                         Antisemitism
## 12270                                                         Antisemitism
## 12271                                                         Antisemitism
## 12272                                                         Antisemitism
## 12273                                                         Antisemitism
## 12274                                                         Antisemitism
## 12275                                                         Antisemitism
## 12276                                                         Antisemitism
## 12277                                                         Antisemitism
## 12278                                                         Antisemitism
## 12279                                                         Antisemitism
## 12280                                                         Antisemitism
## 12281                                                         Antisemitism
## 12282                                                         Antisemitism
## 12283                                                         Antisemitism
## 12284                                                         Antisemitism
## 12285                                                         Antisemitism
## 12286                                                         Antisemitism
## 12287                                                         Antisemitism
## 12288                                                         Antisemitism
## 12289                                                         Antisemitism
## 12290                                                         Antisemitism
## 12291                                                         Antisemitism
## 12292                                                         Antisemitism
## 12293                                                         Antisemitism
## 12294                                                         Antisemitism
## 12295                                                         Antisemitism
## 12296                                                         Antisemitism
## 12297                                                         Antisemitism
## 12298                                                         Antisemitism
## 12299                                                         Antisemitism
## 12300                                                         Antisemitism
## 12301                                                         Antisemitism
## 12302                                                         Antisemitism
## 12303                                                         Antisemitism
## 12304                                                         Antisemitism
## 12305                                                         Antisemitism
## 12306                                                         Antisemitism
## 12307                                                         Antisemitism
## 12308                                                         Antisemitism
## 12309                                                         Antisemitism
## 12310                                                         Antisemitism
## 12311                                                         Antisemitism
## 12312                                                         Antisemitism
## 12313                                                         Antisemitism
## 12314                                                         Antisemitism
## 12315                                                         Antisemitism
## 12316                                                         Antisemitism
## 12317                                                         Antisemitism
## 12318                                                         Antisemitism
## 12319                                                         Antisemitism
## 12320                                                         Antisemitism
## 12321                                                         Antisemitism
## 12322                                                         Antisemitism
## 12323                                                         Antisemitism
## 12324                                                         Antisemitism
## 12325                                                         Antisemitism
## 12326                                                         Antisemitism
## 12327                                                         Antisemitism
## 12328                                                         Antisemitism
## 12329                                                         Antisemitism
## 12330                                                         Antisemitism
## 12331                                                         Antisemitism
## 12332                                                         Antisemitism
## 12333                                                         Antisemitism
## 12334                                                         Antisemitism
## 12335                                                         Antisemitism
## 12336                                                         Antisemitism
## 12337                                                         Antisemitism
## 12338                                                         Antisemitism
## 12339                                                         Antisemitism
## 12340                                                         Antisemitism
## 12341                                                         Antisemitism
## 12342                                                         Antisemitism
## 12343                                                         Antisemitism
## 12344                                                         Antisemitism
## 12345                                                         Antisemitism
## 12346                                                         Antisemitism
## 12347                                                         Antisemitism
## 12348                                                         Antisemitism
## 12349                                                         Antisemitism
## 12350                                                         Antisemitism
## 12351                                                         Antisemitism
## 12352                                                         Antisemitism
## 12353                                                         Antisemitism
## 12354                                                         Antisemitism
## 12355                                                         Antisemitism
## 12356                                                         Antisemitism
## 12357                                                         Antisemitism
## 12358                                                         Antisemitism
## 12359                                                         Antisemitism
## 12360                                                         Antisemitism
## 12361                                                         Antisemitism
## 12362                                                         Antisemitism
## 12363                                                         Antisemitism
## 12364                                                         Antisemitism
## 12365                                                         Antisemitism
## 12366                                                         Antisemitism
## 12367                                                         Antisemitism
## 12368                                                         Antisemitism
## 12369                                                         Antisemitism
## 12370                                                         Antisemitism
## 12371                                                         Antisemitism
## 12372                                                         Antisemitism
## 12373                                                         Antisemitism
## 12374                                                         Antisemitism
## 12375                                                         Antisemitism
## 12376                                                         Antisemitism
## 12377                                                         Antisemitism
## 12378                                                         Antisemitism
## 12379                                                         Antisemitism
## 12380                                                         Antisemitism
## 12381                                                         Antisemitism
## 12382                                                         Antisemitism
## 12383                                                         Antisemitism
## 12384                                                         Antisemitism
## 12385                                                         Antisemitism
## 12386                                                         Antisemitism
## 12387                                                         Antisemitism
## 12388                                                         Antisemitism
## 12389                                                         Antisemitism
## 12390                                                         Antisemitism
## 12391                                                         Antisemitism
## 12392                                                         Antisemitism
## 12393                                                         Antisemitism
## 12394                                                         Antisemitism
## 12395                                                         Antisemitism
## 12396                                                         Antisemitism
## 12397                                                         Antisemitism
## 12398                                                         Antisemitism
## 12399                                                         Antisemitism
## 12400                                                         Antisemitism
## 12401                                                         Antisemitism
## 12402                                                         Antisemitism
## 12403                                                         Antisemitism
## 12404                                                         Antisemitism
## 12405                                                         Antisemitism
## 12406                                                         Antisemitism
## 12407                                                         Antisemitism
## 12408                                                         Antisemitism
## 12409                                                         Antisemitism
## 12410                                                         Antisemitism
## 12411                                                         Antisemitism
## 12412                                                         Antisemitism
## 12413                                                         Antisemitism
## 12414                                                         Antisemitism
## 12415                                                         Antisemitism
## 12416                                                         Antisemitism
## 12417                                                         Antisemitism
## 12418                                                         Antisemitism
## 12419                                                         Antisemitism
## 12420                                                         Antisemitism
## 12421                                                         Antisemitism
## 12422                                                         Antisemitism
## 12423                                                         Antisemitism
## 12424                                                         Antisemitism
## 12425                                                         Antisemitism
## 12426                                                         Antisemitism
## 12427                                                         Antisemitism
## 12428                                                         Antisemitism
## 12429                                                         Antisemitism
## 12430                                                         Antisemitism
## 12431                                                         Antisemitism
## 12432                                                         Antisemitism
## 12433                                                         Antisemitism
## 12434                                                         Antisemitism
## 12435                                                         Antisemitism
## 12436                                                         Antisemitism
## 12437                                                         Antisemitism
## 12438                                                         Antisemitism
## 12439                                                         Antisemitism
## 12440                                                         Antisemitism
## 12441                                                         Antisemitism
## 12442                                                         Antisemitism
## 12443                                                         Antisemitism
## 12444                                                         Antisemitism
## 12445                                                         Antisemitism
## 12446                                                         Antisemitism
## 12447                                                         Antisemitism
## 12448                                                         Antisemitism
## 12449                                                         Antisemitism
## 12450                                                         Antisemitism
## 12451                                                         Antisemitism
## 12452                                                         Antisemitism
## 12453                                                         Antisemitism
## 12454                                                         Antisemitism
## 12455                                                         Antisemitism
## 12456                                                         Antisemitism
## 12457                                                         Antisemitism
## 12458                                                         Antisemitism
## 12459                                                         Antisemitism
## 12460                                                         Antisemitism
## 12461                                                         Antisemitism
## 12462                                                         Antisemitism
## 12463                                                         Antisemitism
## 12464                                                         Antisemitism
## 12465                                                         Antisemitism
## 12466                                                         Antisemitism
## 12467                                                         Antisemitism
## 12468                                                         Antisemitism
## 12469                                                         Antisemitism
## 12470                                                         Antisemitism
## 12471                                                         Antisemitism
## 12472                                                         Antisemitism
## 12473                                                         Antisemitism
## 12474                                                         Antisemitism
## 12475                                                         Antisemitism
## 12476                                                         Antisemitism
## 12477                                                         Antisemitism
## 12478                                                         Antisemitism
## 12479                                                         Antisemitism
## 12480                                                         Antisemitism
## 12481                                                         Antisemitism
## 12482                                                         Antisemitism
## 12483                                                         Antisemitism
## 12484                                                         Antisemitism
## 12485                                                         Antisemitism
## 12486                                                         Antisemitism
## 12487                                                         Antisemitism
## 12488                                                         Antisemitism
## 12489                                                         Antisemitism
## 12490                                                         Antisemitism
## 12491                                                         Antisemitism
## 12492                                                         Antisemitism
## 12493                                                         Antisemitism
## 12494                                                         Antisemitism
## 12495                                                         Antisemitism
## 12496                                                         Antisemitism
## 12497                                                         Antisemitism
## 12498                                                         Antisemitism
## 12499                                                         Antisemitism
## 12500                                                         Antisemitism
## 12501                                                         Antisemitism
## 12502                                                         Antisemitism
## 12503                                                         Antisemitism
## 12504                                                         Antisemitism
## 12505                                                         Antisemitism
## 12506                                                         Antisemitism
## 12507                                                         Antisemitism
## 12508                                                         Antisemitism
## 12509                                                         Antisemitism
## 12510                                                         Antisemitism
## 12511                                                         Antisemitism
## 12512                                                         Antisemitism
## 12513                                                         Antisemitism
## 12514                                                         Antisemitism
## 12515                                                         Antisemitism
## 12516                                                         Antisemitism
## 12517                                                         Antisemitism
## 12518                                                         Antisemitism
## 12519                                                         Antisemitism
## 12520                                                         Antisemitism
## 12521                                                         Antisemitism
## 12522                                                         Antisemitism
## 12523                                                         Antisemitism
## 12524                                                         Antisemitism
## 12525                                                         Antisemitism
## 12526                                                         Antisemitism
## 12527                                                         Antisemitism
## 12528                                                         Antisemitism
## 12529                                                         Antisemitism
## 12530                                                         Antisemitism
## 12531                                                         Antisemitism
## 12532                                                         Antisemitism
## 12533                                                         Antisemitism
## 12534                                                         Antisemitism
## 12535                                                         Antisemitism
## 12536                                                         Antisemitism
## 12537                                                         Antisemitism
## 12538                                                         Antisemitism
## 12539                                                         Antisemitism
## 12540                                                         Antisemitism
## 12541                                                         Antisemitism
## 12542                                                         Antisemitism
## 12543                                                         Antisemitism
## 12544                                                         Antisemitism
## 12545                                                         Antisemitism
## 12546                                                         Antisemitism
## 12547                                                         Antisemitism
## 12548                                                         Antisemitism
## 12549                                                         Antisemitism
## 12550                                                         Antisemitism
## 12551                                                         Antisemitism
## 12552                                                         Antisemitism
## 12553                                                         Antisemitism
## 12554                                                         Antisemitism
## 12555                                                         Antisemitism
## 12556                                                         Antisemitism
## 12557                                                         Antisemitism
## 12558                                                         Antisemitism
## 12559                                                         Antisemitism
## 12560                                                         Antisemitism
## 12561                                                         Antisemitism
## 12562                                                         Antisemitism
## 12563                                                         Antisemitism
## 12564                                                         Antisemitism
## 12565                                                         Antisemitism
## 12566                                                         Antisemitism
## 12567                                                         Antisemitism
## 12568                                                         Antisemitism
## 12569                                                         Antisemitism
## 12570                                                         Antisemitism
## 12571                                                         Antisemitism
## 12572                                                         Antisemitism
## 12573                                                         Antisemitism
## 12574                                                         Antisemitism
## 12575                                                         Antisemitism
## 12576                                                         Antisemitism
## 12577                                                         Antisemitism
## 12578                                                         Antisemitism
## 12579                                                         Antisemitism
## 12580                                                         Antisemitism
## 12581                                                         Antisemitism
## 12582                                                         Antisemitism
## 12583                                                         Antisemitism
## 12584                                                         Antisemitism
## 12585                                                         Antisemitism
## 12586                                                         Antisemitism
## 12587                                                         Antisemitism
## 12588                                                         Antisemitism
## 12589                                                         Antisemitism
## 12590                                                         Antisemitism
## 12591                                                         Antisemitism
## 12592                                                         Antisemitism
## 12593                                                         Antisemitism
## 12594                                                         Antisemitism
## 12595                                                         Antisemitism
## 12596                                                         Antisemitism
## 12597                                                         Antisemitism
## 12598                                                         Antisemitism
## 12599                                                         Antisemitism
## 12600                                                         Antisemitism
## 12601                                                         Antisemitism
## 12602                                                         Antisemitism
## 12603                                                         Antisemitism
## 12604                                                         Antisemitism
## 12605                                                         Antisemitism
## 12606                                                         Antisemitism
## 12607                                                         Antisemitism
## 12608                                                         Antisemitism
## 12609                                                         Antisemitism
## 12610                                                         Antisemitism
## 12611                                                         Antisemitism
## 12612                                                         Antisemitism
## 12613                                                         Antisemitism
## 12614                                                         Antisemitism
## 12615                                                         Antisemitism
## 12616                                                         Antisemitism
## 12617                                                         Antisemitism
## 12618                                                         Antisemitism
## 12619                                                         Antisemitism
## 12620                                                         Antisemitism
## 12621                                                         Antisemitism
## 12622                                                         Antisemitism
## 12623                                                         Antisemitism
## 12624                                                         Antisemitism
## 12625                                                         Antisemitism
## 12626                                                         Antisemitism
## 12627                                                         Antisemitism
## 12628                                                         Antisemitism
## 12629                                                         Antisemitism
## 12630                                                         Antisemitism
## 12631                                                         Antisemitism
## 12632                                                         Antisemitism
## 12633                                                         Antisemitism
## 12634                                                         Antisemitism
## 12635                                                         Antisemitism
## 12636                                                         Antisemitism
## 12637                                                         Antisemitism
## 12638                                                         Antisemitism
## 12639                                                         Antisemitism
## 12640                                                         Antisemitism
## 12641                                                         Antisemitism
## 12642                                                         Antisemitism
## 12643                                                         Antisemitism
## 12644                                                         Antisemitism
## 12645                                                         Antisemitism
## 12646                                                         Antisemitism
## 12647                                                         Antisemitism
## 12648                                                         Antisemitism
## 12649                                                         Antisemitism
## 12650                                                         Antisemitism
## 12651                                                         Antisemitism
## 12652                                                         Antisemitism
## 12653                                                         Antisemitism
## 12654                                                         Antisemitism
## 12655                                                         Antisemitism
## 12656                                                         Antisemitism
## 12657                                                         Antisemitism
## 12658                                                         Antisemitism
## 12659                                                         Antisemitism
## 12660                                                         Antisemitism
## 12661                                                         Antisemitism
## 12662                                                         Antisemitism
## 12663                                                         Antisemitism
## 12664                                                         Antisemitism
## 12665                                                         Antisemitism
## 12666                                                         Antisemitism
## 12667                                                         Antisemitism
## 12668                                                         Antisemitism
## 12669                                                         Antisemitism
## 12670                                                         Antisemitism
## 12671                                                         Antisemitism
## 12672                                                         Antisemitism
## 12673                                                         Antisemitism
## 12674                                                         Antisemitism
## 12675                                                         Antisemitism
## 12676                                                         Antisemitism
## 12677                                                         Antisemitism
## 12678                                                         Antisemitism
## 12679                                                         Antisemitism
## 12680                                                         Antisemitism
## 12681                                                         Antisemitism
## 12682                                                         Antisemitism
## 12683                                                         Antisemitism
## 12684                                                         Antisemitism
## 12685                                                         Antisemitism
## 12686                                                         Antisemitism
## 12687                                                         Antisemitism
## 12688                                                         Antisemitism
## 12689                                                         Antisemitism
## 12690                                                         Antisemitism
## 12691                                                         Antisemitism
## 12692                                                         Antisemitism
## 12693                                                         Antisemitism
## 12694                                                         Antisemitism
## 12695                                                         Antisemitism
## 12696                                                         Antisemitism
## 12697                                                         Antisemitism
## 12698                                                         Antisemitism
## 12699                                                         Antisemitism
## 12700                                                         Antisemitism
## 12701                                                         Antisemitism
## 12702                                                         Antisemitism
## 12703                                                         Antisemitism
## 12704                                                         Antisemitism
## 12705                                                         Antisemitism
## 12706                                                         Antisemitism
## 12707                                                         Antisemitism
## 12708                                                         Antisemitism
## 12709                                                         Antisemitism
## 12710                                                         Antisemitism
## 12711                                                         Antisemitism
## 12712                                                         Antisemitism
## 12713                                                         Antisemitism
## 12714                                                         Antisemitism
## 12715                                                         Antisemitism
## 12716                                                         Antisemitism
## 12717                                                         Antisemitism
## 12718                                                         Antisemitism
## 12719                                                         Antisemitism
## 12720                                                         Antisemitism
## 12721                                                         Antisemitism
## 12722                                                         Antisemitism
## 12723                                                         Antisemitism
## 12724                                                         Antisemitism
## 12725                                                         Antisemitism
## 12726                                                         Antisemitism
## 12727                                                         Antisemitism
## 12728                                                         Antisemitism
## 12729                                                         Antisemitism
## 12730                                                         Antisemitism
## 12731                                                         Antisemitism
## 12732                                                         Antisemitism
## 12733                                                         Antisemitism
## 12734                                                         Antisemitism
## 12735                                                         Antisemitism
## 12736                                                         Antisemitism
## 12737                                                         Antisemitism
## 12738                                                         Antisemitism
## 12739                                                         Antisemitism
## 12740                                                         Antisemitism
## 12741                                                         Antisemitism
## 12742                                                         Antisemitism
## 12743                                                         Antisemitism
## 12744                                                         Antisemitism
## 12745                                                         Antisemitism
## 12746                                                         Antisemitism
## 12747                                                         Antisemitism
## 12748                                                         Antisemitism
## 12749                                                         Antisemitism
## 12750                                                         Antisemitism
## 12751                                                         Antisemitism
## 12752                                                         Antisemitism
## 12753                                                         Antisemitism
## 12754                                                         Antisemitism
## 12755                                                         Antisemitism
## 12756                                                         Antisemitism
## 12757                                                         Antisemitism
## 12758                                                         Antisemitism
## 12759                                                         Antisemitism
## 12760                                                         Antisemitism
## 12761                                                         Antisemitism
## 12762                                                         Antisemitism
## 12763                                                         Antisemitism
## 12764                                                         Antisemitism
## 12765                                                         Antisemitism
## 12766                                                         Antisemitism
## 12767                                                         Antisemitism
## 12768                                                         Antisemitism
## 12769                                                         Antisemitism
## 12770                                                         Antisemitism
## 12771                                                         Antisemitism
## 12772                                                         Antisemitism
## 12773                                                         Antisemitism
## 12774                                                         Antisemitism
## 12775                                                         Antisemitism
## 12776                                                         Antisemitism
## 12777                                                         Antisemitism
## 12778                                                         Antisemitism
## 12779                                                         Antisemitism
## 12780                                                         Antisemitism
## 12781                                                         Antisemitism
## 12782                                                         Antisemitism
## 12783                                                         Antisemitism
## 12784                                                         Antisemitism
## 12785                                                         Antisemitism
## 12786                                                         Antisemitism
## 12787                                                         Antisemitism
## 12788                                                         Antisemitism
## 12789                                                         Antisemitism
## 12790                                                         Antisemitism
## 12791                                                         Antisemitism
## 12792                                                         Antisemitism
## 12793                                                         Antisemitism
## 12794                                                         Antisemitism
## 12795                                                         Antisemitism
## 12796                                                         Antisemitism
## 12797                                                         Antisemitism
## 12798                                                         Antisemitism
## 12799                                                         Antisemitism
## 12800                                                         Antisemitism
## 12801                                                         Antisemitism
## 12802                                                         Antisemitism
## 12803                                                         Antisemitism
## 12804                                                         Antisemitism
## 12805                                                         Antisemitism
## 12806                                                         Antisemitism
## 12807                                                         Antisemitism
## 12808                                                         Antisemitism
## 12809                                                         Antisemitism
## 12810                                                         Antisemitism
## 12811                                                         Antisemitism
## 12812                                                         Antisemitism
## 12813                                                         Antisemitism
## 12814                                                         Antisemitism
## 12815                                                         Antisemitism
## 12816                                                         Antisemitism
## 12817                                                         Antisemitism
## 12818                                                         Antisemitism
## 12819                                                         Antisemitism
## 12820                                                         Antisemitism
## 12821                                                         Antisemitism
## 12822                                                         Antisemitism
## 12823                                                         Antisemitism
## 12824                                                         Antisemitism
## 12825                                                         Antisemitism
## 12826                                                         Antisemitism
## 12827                                                         Antisemitism
## 12828                                                         Antisemitism
## 12829                                                  Storrie,_California
## 12830                                                  Storrie,_California
## 12831                                                  Storrie,_California
## 12832                                                  Storrie,_California
## 12833                                                  Storrie,_California
## 12834                                                  Storrie,_California
## 12835                                                  Storrie,_California
## 12836                                                  Storrie,_California
## 12837                                                  Storrie,_California
## 12838                                                  Storrie,_California
## 12839                                                  Storrie,_California
## 12840                                                  Storrie,_California
## 12841                                                  Storrie,_California
## 12842                                                  Storrie,_California
## 12843                                                  Storrie,_California
## 12844                                                  Storrie,_California
## 12845                                                  Storrie,_California
## 12846                                                  Storrie,_California
## 12847                                                  Storrie,_California
## 12848                                                  Storrie,_California
## 12849                                                  Storrie,_California
## 12850                                                  Storrie,_California
## 12851                                                  Storrie,_California
## 12852                                                  Storrie,_California
## 12853                                                  Storrie,_California
## 12854                                                  Storrie,_California
## 12855                                                  Storrie,_California
## 12856                                                  Storrie,_California
## 12857                                           Cathedral_City,_California
## 12858                                           Cathedral_City,_California
## 12859                                           Cathedral_City,_California
## 12860                                           Cathedral_City,_California
## 12861                                           Cathedral_City,_California
## 12862                                           Cathedral_City,_California
## 12863                                           Cathedral_City,_California
## 12864                                           Cathedral_City,_California
## 12865                                           Cathedral_City,_California
## 12866                                           Cathedral_City,_California
## 12867                                           Cathedral_City,_California
## 12868                                           Cathedral_City,_California
## 12869                                           Cathedral_City,_California
## 12870                                           Cathedral_City,_California
## 12871                                           Cathedral_City,_California
## 12872                                           Cathedral_City,_California
## 12873                                           Cathedral_City,_California
## 12874                                           Cathedral_City,_California
## 12875                                           Cathedral_City,_California
## 12876                                           Cathedral_City,_California
## 12877                                           Cathedral_City,_California
## 12878                                           Cathedral_City,_California
## 12879                                           Cathedral_City,_California
## 12880                                           Cathedral_City,_California
## 12881                                           Cathedral_City,_California
## 12882                                           Cathedral_City,_California
## 12883                                           Cathedral_City,_California
## 12884                                           Cathedral_City,_California
## 12885                                           Cathedral_City,_California
## 12886                                           Cathedral_City,_California
## 12887                                           Cathedral_City,_California
## 12888                                           Cathedral_City,_California
## 12889                                           Cathedral_City,_California
## 12890                                           Cathedral_City,_California
## 12891                                           Cathedral_City,_California
## 12892                                           Cathedral_City,_California
## 12893                                           Cathedral_City,_California
## 12894                                           Cathedral_City,_California
## 12895                                           Cathedral_City,_California
## 12896                                           Cathedral_City,_California
## 12897                                           Cathedral_City,_California
## 12898                                           Cathedral_City,_California
## 12899                                           Cathedral_City,_California
## 12900                                           Cathedral_City,_California
## 12901                                           Cathedral_City,_California
## 12902                                           Cathedral_City,_California
## 12903                                           Cathedral_City,_California
## 12904                                           Cathedral_City,_California
## 12905                                           Cathedral_City,_California
## 12906                                           Cathedral_City,_California
## 12907                                           Cathedral_City,_California
## 12908                                           Cathedral_City,_California
## 12909                                           Cathedral_City,_California
## 12910                                           Cathedral_City,_California
## 12911                                           Cathedral_City,_California
## 12912                                           Cathedral_City,_California
## 12913                                           Cathedral_City,_California
## 12914                                           Cathedral_City,_California
## 12915                                           Cathedral_City,_California
## 12916                                           Cathedral_City,_California
## 12917                                           Cathedral_City,_California
## 12918                                           Cathedral_City,_California
## 12919                                           Cathedral_City,_California
## 12920                                           Cathedral_City,_California
## 12921                                           Cathedral_City,_California
## 12922                                           Cathedral_City,_California
## 12923                                           Cathedral_City,_California
## 12924                                           Cathedral_City,_California
## 12925                                           Cathedral_City,_California
## 12926                                           Cathedral_City,_California
## 12927                                           Cathedral_City,_California
## 12928                                           Cathedral_City,_California
## 12929                                           Cathedral_City,_California
## 12930                                                 Lakeview,_California
## 12931                                                 Lakeview,_California
## 12932                                                 Lakeview,_California
## 12933                                                 Lakeview,_California
## 12934                                                 Lakeview,_California
## 12935                                                 Lakeview,_California
## 12936                                                 Lakeview,_California
## 12937                                                 Lakeview,_California
## 12938                                                 Lakeview,_California
## 12939                                                 Lakeview,_California
## 12940                                                 Lakeview,_California
## 12941                                                 Lakeview,_California
## 12942                                                 Lakeview,_California
## 12943                                                 Lakeview,_California
## 12944                                                 Lakeview,_California
## 12945                                                 Lakeview,_California
## 12946                                                 Lakeview,_California
## 12947                                                 Lakeview,_California
## 12948                                                 Lakeview,_California
## 12949                                                 Lakeview,_California
## 12950                                                 Lakeview,_California
## 12951                                                 Lakeview,_California
## 12952                                                 Lakeview,_California
## 12953                                                 Lakeview,_California
## 12954                                                 Lakeview,_California
## 12955                                                 Lakeview,_California
## 12956                                                 Lakeview,_California
## 12957                                                 Lakeview,_California
## 12958                                                 Lakeview,_California
## 12959                                               Farmington,_California
## 12960                                               Farmington,_California
## 12961                                               Farmington,_California
## 12962                                               Farmington,_California
## 12963                                               Farmington,_California
## 12964                                               Farmington,_California
## 12965                                               Farmington,_California
## 12966                                               Farmington,_California
## 12967                                               Farmington,_California
## 12968                                               Farmington,_California
## 12969                                               Farmington,_California
## 12970                                               Farmington,_California
## 12971                                               Farmington,_California
## 12972                                               Farmington,_California
## 12973                                               Farmington,_California
## 12974                                               Farmington,_California
## 12975                                               Farmington,_California
## 12976                                               Farmington,_California
## 12977                                               Farmington,_California
## 12978                                               Farmington,_California
## 12979                                               Farmington,_California
## 12980                                               Farmington,_California
## 12981                                               Farmington,_California
## 12982                                               Farmington,_California
## 12983                                               Farmington,_California
## 12984                                               Farmington,_California
## 12985                                               Farmington,_California
## 12986                                               Farmington,_California
## 12987                                               Farmington,_California
## 12988                                               Farmington,_California
## 12989                                               Farmington,_California
## 12990                                               Corralitos,_California
## 12991                                               Corralitos,_California
## 12992                                               Corralitos,_California
## 12993                                               Corralitos,_California
## 12994                                               Corralitos,_California
## 12995                                               Corralitos,_California
## 12996                                               Corralitos,_California
## 12997                                               Corralitos,_California
## 12998                                               Corralitos,_California
## 12999                                               Corralitos,_California
## 13000                                               Corralitos,_California
## 13001                                               Corralitos,_California
## 13002                                               Corralitos,_California
## 13003                                               Corralitos,_California
## 13004                                               Corralitos,_California
## 13005                                               Corralitos,_California
## 13006                                               Corralitos,_California
## 13007                                               Corralitos,_California
## 13008                                               Corralitos,_California
## 13009                                               Corralitos,_California
## 13010                                               Corralitos,_California
## 13011                                               Corralitos,_California
## 13012                                               Corralitos,_California
## 13013                                               Corralitos,_California
## 13014                                               Corralitos,_California
## 13015                                                 Woodland,_California
## 13016                                                 Woodland,_California
## 13017                                                 Woodland,_California
## 13018                                                 Woodland,_California
## 13019                                                 Woodland,_California
## 13020                                                 Woodland,_California
## 13021                                                 Woodland,_California
## 13022                                                 Woodland,_California
## 13023                                                 Woodland,_California
## 13024                                                 Woodland,_California
## 13025                                                 Woodland,_California
## 13026                                                 Woodland,_California
## 13027                                                 Woodland,_California
## 13028                                                 Woodland,_California
## 13029                                                 Woodland,_California
## 13030                                                 Woodland,_California
## 13031                                                 Woodland,_California
## 13032                                                 Woodland,_California
## 13033                                                 Woodland,_California
## 13034                                                 Woodland,_California
## 13035                                                 Woodland,_California
## 13036                                                 Woodland,_California
## 13037                                                 Woodland,_California
## 13038                                                 Woodland,_California
## 13039                                                 Woodland,_California
## 13040                                                 Woodland,_California
## 13041                                                 Woodland,_California
## 13042                                                 Woodland,_California
## 13043                                                 Woodland,_California
## 13044                                                 Woodland,_California
## 13045                                                 Woodland,_California
## 13046                                                 Woodland,_California
## 13047                                                 Woodland,_California
## 13048                                                 Woodland,_California
## 13049                                                 Woodland,_California
## 13050                                                 Woodland,_California
## 13051                                                 Woodland,_California
## 13052                                                 Woodland,_California
## 13053                                                 Woodland,_California
## 13054                                                 Woodland,_California
## 13055                                                 Woodland,_California
## 13056                                                 Woodland,_California
## 13057                                                 Woodland,_California
## 13058                                                 Woodland,_California
## 13059                                                 Woodland,_California
## 13060                                                 Woodland,_California
## 13061                                                 Woodland,_California
## 13062                                                 Woodland,_California
## 13063                                                 Woodland,_California
## 13064                                                 Woodland,_California
## 13065                                                 Woodland,_California
## 13066                                                 Woodland,_California
## 13067                                                 Woodland,_California
## 13068                                                 Woodland,_California
## 13069                                                 Woodland,_California
## 13070                                                 Woodland,_California
## 13071                                                 Woodland,_California
## 13072                                                 Woodland,_California
## 13073                                                 Woodland,_California
## 13074                                                 Woodland,_California
## 13075                                                 Woodland,_California
## 13076                                                 Woodland,_California
## 13077                                                 Woodland,_California
## 13078                                                 Woodland,_California
## 13079                                                 Woodland,_California
## 13080                                                 Woodland,_California
## 13081                                                 Woodland,_California
## 13082                                                 Woodland,_California
## 13083                                                 Woodland,_California
## 13084                                                 Woodland,_California
## 13085                                                 Woodland,_California
## 13086                                                 Woodland,_California
## 13087                                                 Woodland,_California
## 13088                                                 Woodland,_California
## 13089                                                 Woodland,_California
## 13090                                                 Woodland,_California
## 13091                                                 Woodland,_California
## 13092                                                 Woodland,_California
## 13093                                                 Woodland,_California
## 13094                                                 Woodland,_California
## 13095                                                 Woodland,_California
## 13096                                                 Woodland,_California
## 13097                                                 Woodland,_California
## 13098                                                 Woodland,_California
## 13099                                                 Woodland,_California
## 13100                                                 Woodland,_California
## 13101                                                 Woodland,_California
## 13102                                                 Woodland,_California
## 13103                                                 Woodland,_California
## 13104                                                 Woodland,_California
## 13105                                                 Woodland,_California
## 13106                                                 Woodland,_California
## 13107                                                 Woodland,_California
## 13108                                                 Woodland,_California
## 13109                                                 Woodland,_California
## 13110                                                 Woodland,_California
## 13111                                                 Woodland,_California
## 13112                                                 Woodland,_California
## 13113                                                 Woodland,_California
## 13114                                                 Woodland,_California
## 13115                                                 Woodland,_California
## 13116                                                 Woodland,_California
## 13117                                                 Woodland,_California
## 13118                                                 Woodland,_California
## 13119                                                 Woodland,_California
## 13120                                                 Woodland,_California
## 13121                                                 Woodland,_California
## 13122                                                 Woodland,_California
## 13123                                                 Woodland,_California
## 13124                                                 Woodland,_California
## 13125                                                 Woodland,_California
## 13126                                                 Woodland,_California
## 13127                                                 Woodland,_California
## 13128                                                 Woodland,_California
## 13129                                                 Woodland,_California
## 13130                                                 Woodland,_California
## 13131                                                 Woodland,_California
## 13132                                                 Woodland,_California
## 13133                                                 Woodland,_California
## 13134                                                 Woodland,_California
## 13135                                                 Woodland,_California
## 13136                                                 Woodland,_California
## 13137                                                 Woodland,_California
## 13138                                                 Woodland,_California
## 13139                                                 Woodland,_California
## 13140                                                 Woodland,_California
## 13141                                                 Woodland,_California
## 13142                                                 Woodland,_California
## 13143                                                 Woodland,_California
## 13144                                                 Woodland,_California
## 13145                                                 Woodland,_California
## 13146                                                 Woodland,_California
## 13147                                                 Woodland,_California
## 13148                                                 Woodland,_California
## 13149                                                 Woodland,_California
## 13150                                                 Woodland,_California
## 13151                                                 Woodland,_California
## 13152                                               Alamosa_East,_Colorado
## 13153                                               Alamosa_East,_Colorado
## 13154                                               Alamosa_East,_Colorado
## 13155                                               Alamosa_East,_Colorado
## 13156                                               Alamosa_East,_Colorado
## 13157                                               Alamosa_East,_Colorado
## 13158                                               Alamosa_East,_Colorado
## 13159                                               Alamosa_East,_Colorado
## 13160                                               Alamosa_East,_Colorado
## 13161                                               Alamosa_East,_Colorado
## 13162                                               Alamosa_East,_Colorado
## 13163                                               Alamosa_East,_Colorado
## 13164                                               Alamosa_East,_Colorado
## 13165                                               Alamosa_East,_Colorado
## 13166                                               Alamosa_East,_Colorado
## 13167                                               Alamosa_East,_Colorado
## 13168                                               Alamosa_East,_Colorado
## 13169                                               Alamosa_East,_Colorado
## 13170                                               Alamosa_East,_Colorado
## 13171                                               Alamosa_East,_Colorado
## 13172                                               Alamosa_East,_Colorado
## 13173                                               Alamosa_East,_Colorado
## 13174                                               Alamosa_East,_Colorado
## 13175                                               Alamosa_East,_Colorado
## 13176                                               Alamosa_East,_Colorado
## 13177                                               Alamosa_East,_Colorado
## 13178                                               Alamosa_East,_Colorado
## 13179                                               Alamosa_East,_Colorado
## 13180                                               Alamosa_East,_Colorado
## 13181                                               Alamosa_East,_Colorado
## 13182                                               Alamosa_East,_Colorado
## 13183                                               Alamosa_East,_Colorado
## 13184                                               Alamosa_East,_Colorado
## 13185                                               Alamosa_East,_Colorado
## 13186                                               Alamosa_East,_Colorado
## 13187                                               Alamosa_East,_Colorado
## 13188                                                             February
## 13189                                                             February
## 13190                                                             February
## 13191                                                             February
## 13192                                                             February
## 13193                                                             February
## 13194                                                             February
## 13195                                                             February
## 13196                                                             February
## 13197                                                             February
## 13198                                                             February
## 13199                                                             February
## 13200                                                             February
## 13201                                                             February
## 13202                                                             February
## 13203                                                             February
## 13204                                                             February
## 13205                                                             February
## 13206                                                             February
## 13207                                                             February
## 13208                                                             February
## 13209                                                             February
## 13210                                                             February
## 13211                                                             February
## 13212                                                             February
## 13213                                                             February
## 13214                                                             February
## 13215                                                             February
## 13216                                                             February
## 13217                                                             February
## 13218                                                             February
## 13219                                                             February
## 13220                                                             February
## 13221                                                             February
## 13222                                                             February
## 13223                                                             February
## 13224                                                             February
## 13225                                                             February
## 13226                                                             February
## 13227                                                             February
## 13228                                                             February
## 13229                                                             February
## 13230                                                             February
## 13231                                                             February
## 13232                                                             February
## 13233                                                             February
## 13234                                                             February
## 13235                                                             February
## 13236                                                             February
## 13237                                                             February
## 13238                                                             February
## 13239                                                             February
## 13240                                                             February
## 13241                                                             February
## 13242                                                             February
## 13243                                                             February
## 13244                                                             February
## 13245                                                             February
## 13246                                                             February
## 13247                                                             February
## 13248                                                             February
## 13249                                                             February
## 13250                                                             February
## 13251                                                             February
## 13252                                                             February
## 13253                                                             February
## 13254                                                             February
## 13255                                                             February
## 13256                                                             February
## 13257                                                             February
## 13258                                                             February
## 13259                                                             February
## 13260                                                             February
## 13261                                                             February
## 13262                                                             February
## 13263                                                             February
## 13264                                                             February
## 13265                                                             February
## 13266                                                             February
## 13267                                                             February
## 13268                                                             February
## 13269                                                             February
## 13270                                                             February
## 13271                                                             February
## 13272                                                             February
## 13273                                                             February
## 13274                                                             February
## 13275                                                             February
## 13276                                                             February
## 13277                                                             February
## 13278                                                             February
## 13279                                                             February
## 13280                                                             February
## 13281                                                             February
## 13282                                                             February
## 13283                                                             February
## 13284                                                             February
## 13285                                                             February
## 13286                                                             February
## 13287                                                             February
## 13288                                                             February
## 13289                                                             February
## 13290                                                             February
## 13291                                                             February
## 13292                                                             February
## 13293                                                             February
## 13294                                                             February
## 13295                                                             February
## 13296                                                             February
## 13297                                                             February
## 13298                                                             February
## 13299                                                             February
## 13300                                                             February
## 13301                                                             February
## 13302                                                             February
## 13303                                                             February
## 13304                                                             February
## 13305                                                             February
## 13306                                                             February
## 13307                                                             February
## 13308                                                             February
## 13309                                                             February
## 13310                                                             February
## 13311                                                             February
## 13312                                                             February
## 13313                                                             February
## 13314                                                             February
## 13315                                                             February
## 13316                                                             February
## 13317                                                             February
## 13318                                                             February
## 13319                                                             February
## 13320                                                             February
## 13321                                                             February
## 13322                                                             February
## 13323                                                             February
## 13324                                                             February
## 13325                                                             February
## 13326                                                             February
## 13327                                                             February
## 13328                                                             February
## 13329                                                             February
## 13330                                                             February
## 13331                                                             February
## 13332                                                             February
## 13333                                                             February
## 13334                                                             February
## 13335                                                             February
## 13336                                                             February
## 13337                                                             February
## 13338                                                             February
## 13339                                                             February
## 13340                                                             February
## 13341                                                             February
## 13342                                                             February
## 13343                                                             February
## 13344                                                             February
## 13345                                                             February
## 13346                                                             February
## 13347                                                             February
## 13348                                                             February
## 13349                                                             February
## 13350                                                             February
## 13351                                                             February
## 13352                                                             February
## 13353                                                             February
## 13354                                                             February
## 13355                                                             February
## 13356                                                             February
## 13357                                                             February
## 13358                                                             February
## 13359                                                             February
## 13360                                                             February
## 13361                                                             February
## 13362                                                             February
## 13363                                                             February
## 13364                                                             February
## 13365                                                             February
## 13366                                                             February
## 13367                                                             February
## 13368                                                             February
## 13369                                                             February
## 13370                                                             February
## 13371                                                             February
## 13372                                                             February
## 13373                                                             February
## 13374                                                             February
## 13375                                                             February
## 13376                                                             February
## 13377                                                             February
## 13378                                                             February
## 13379                                                             February
## 13380                                                             February
## 13381                                                             February
## 13382                                                             February
## 13383                                                             February
## 13384                                                             February
## 13385                                                             February
## 13386                                                             February
## 13387                                                             February
## 13388                                                             February
## 13389                                                             February
## 13390                                                             February
## 13391                                                             February
## 13392                                                             February
## 13393                                                             February
## 13394                                                             February
## 13395                                                             February
## 13396                                                             February
## 13397                                                             February
## 13398                                                             February
## 13399                                                             February
## 13400                                                             February
## 13401                                                             February
## 13402                                                             February
## 13403                                                             February
## 13404                                                             February
## 13405                                                             February
## 13406                                                             February
## 13407                                                             February
## 13408                                                             February
## 13409                                                             February
## 13410                                                             February
## 13411                                                             February
## 13412                                                             February
## 13413                                                             February
## 13414                                                             February
## 13415                                                             February
## 13416                                                             February
## 13417                                                             February
## 13418                                                             February
## 13419                                                             February
## 13420                                                             February
## 13421                                                             February
## 13422                                                             February
## 13423                                                             February
## 13424                                                             February
## 13425                                                             February
## 13426                                                             February
## 13427                                                             February
## 13428                                                             February
## 13429                                                             February
## 13430                                                             February
## 13431                                                             February
## 13432                                                             February
## 13433                                                             February
## 13434                                                             February
## 13435                                                             February
## 13436                                                             February
## 13437                                                             February
## 13438                                                             February
## 13439                                                             February
## 13440                                                             February
## 13441                                                             February
## 13442                                                             February
## 13443                                                             February
## 13444                                                             February
## 13445                                                             February
## 13446                                                             February
## 13447                                                             February
## 13448                                                             February
## 13449                                                             February
## 13450                                                             February
## 13451                                                             February
## 13452                                                             February
## 13453                                                             February
## 13454                                                             February
## 13455                                                             February
## 13456                                                             February
## 13457                                                             February
## 13458                                                             February
## 13459                                                             February
## 13460                                                             February
## 13461                                                             February
## 13462                                                             February
## 13463                                                             February
## 13464                                                             February
## 13465                                                             February
## 13466                                                             February
## 13467                                                             February
## 13468                                                             February
## 13469                                                             February
## 13470                                                             February
## 13471                                                             February
## 13472                                                             February
## 13473                                                             February
## 13474                                                             February
## 13475                                                             February
## 13476                                                             February
## 13477                                                             February
## 13478                                                             February
## 13479                                                             February
## 13480                                                             February
## 13481                                                             February
## 13482                                                             February
## 13483                                                             February
## 13484                                                             February
## 13485                                                             February
## 13486                                                             February
## 13487                                                             February
## 13488                                                             February
## 13489                                                             February
## 13490                                                             February
## 13491                                                             February
## 13492                                                             February
## 13493                                                             February
## 13494                                                             February
## 13495                                                             February
## 13496                                                             February
## 13497                                                             February
## 13498                                                             February
## 13499                                                             February
## 13500                                                             February
## 13501                                                             February
## 13502                                                             February
## 13503                                                             February
## 13504                                                             February
## 13505                                                             February
## 13506                                                             February
## 13507                                                             February
## 13508                                                             February
## 13509                                                             February
## 13510                                                             February
## 13511                                                             February
## 13512                                                             February
## 13513                                                             February
## 13514                                                             February
## 13515                                                             February
## 13516                                                             February
## 13517                                                             February
## 13518                                                             February
## 13519                                                             February
## 13520                                                             February
## 13521                                                             February
## 13522                                                             February
## 13523                                                             February
## 13524                                                             February
## 13525                                                             February
## 13526                                                             February
## 13527                                                             February
## 13528                                                             February
## 13529                                                             February
## 13530                                                             February
## 13531                                                             February
## 13532                                                             February
## 13533                                                             February
## 13534                                                             February
## 13535                                                             February
## 13536                                                             February
## 13537                                                             February
## 13538                                                             February
## 13539                                                             February
## 13540                                                             February
## 13541                                                             February
## 13542                                                             February
## 13543                                                             February
## 13544                                                             February
## 13545                                                             February
## 13546                                                             February
## 13547                                                             February
## 13548                                                             February
## 13549                                                             February
## 13550                                                             February
## 13551                                                             February
## 13552                                                             February
## 13553                                                             February
## 13554                                                             February
## 13555                                                             February
## 13556                                                             February
## 13557                                                             February
## 13558                                                             February
## 13559                                                             February
## 13560                                                             February
## 13561                                                             February
## 13562                                                             February
## 13563                                                             February
## 13564                                                             February
## 13565                                                             February
## 13566                                                             February
## 13567                                                             February
## 13568                                                             February
## 13569                                                             February
## 13570                                                             February
## 13571                                                             February
## 13572                                                             February
## 13573                                                             February
## 13574                                                             February
## 13575                                                             February
## 13576                                                             February
## 13577                                                             February
## 13578                                                             February
## 13579                                                             February
## 13580                                                             February
## 13581                                                             February
## 13582                                                             February
## 13583                                                             February
## 13584                                                             February
## 13585                                                             February
## 13586                                                             February
## 13587                                                             February
## 13588                                                             February
## 13589                                                             February
## 13590                                                             February
## 13591                                                             February
## 13592                                                             February
## 13593                                                             February
## 13594                                                             February
## 13595                                                             February
## 13596                                                             February
## 13597                                                             February
## 13598                                                             February
## 13599                                                             February
## 13600                                                             February
## 13601                                                             February
## 13602                                                             February
## 13603                                                             February
## 13604                                                             February
## 13605                                                             February
## 13606                                                             February
## 13607                                                             February
## 13608                                                             February
## 13609                                                             February
## 13610                                                             February
## 13611                                                             February
## 13612                                                             February
## 13613                                                             February
## 13614                                                             February
## 13615                                                             February
## 13616                                                             February
## 13617                                                             February
## 13618                                                             February
## 13619                                                             February
## 13620                                                             February
## 13621                                                             February
## 13622                                                             February
## 13623                                                             February
## 13624                                                             February
## 13625                                                             February
## 13626                                                             February
## 13627                                                             February
## 13628                                                             February
## 13629                                                             February
## 13630                                                             February
## 13631                                                             February
## 13632                                                             February
## 13633                                                             February
## 13634                                                             February
## 13635                                                             February
## 13636                                                             February
## 13637                                                             February
## 13638                                                             February
## 13639                                                             February
## 13640                                                             February
## 13641                                                             February
## 13642                                                             February
## 13643                                                             February
## 13644                                                             February
## 13645                                                             February
## 13646                                                             February
## 13647                                                             February
## 13648                                                             February
## 13649                                                             February
## 13650                                                             February
## 13651                                                             February
## 13652                                                             February
## 13653                                                             February
## 13654                                                             February
## 13655                                                             February
## 13656                                                             February
## 13657                                                             February
## 13658                                                             February
## 13659                                                             February
## 13660                                                             February
## 13661                                                             February
## 13662                                                             February
## 13663                                                             February
## 13664                                                             February
## 13665                                                             February
## 13666                                                             February
## 13667                                                             February
## 13668                                                             February
## 13669                                                             February
## 13670                                                             February
## 13671                                                             February
## 13672                                                             February
## 13673                                                             February
## 13674                                                             February
## 13675                                                             February
## 13676                                                             February
## 13677                                                             February
## 13678                                                             February
## 13679                                                             February
## 13680                                                             February
## 13681                                                             February
## 13682                                                             February
## 13683                                                             February
## 13684                                                             February
## 13685                                                             February
## 13686                                                             February
## 13687                                                             February
## 13688                                                             February
## 13689                                                             February
## 13690                                                             February
## 13691                                                             February
## 13692                                                             February
## 13693                                                             February
## 13694                                                             February
## 13695                                                             February
## 13696                                                             February
## 13697                                                             February
## 13698                                                             February
## 13699                                                             February
## 13700                                                             February
## 13701                                                             February
## 13702                                                             February
## 13703                                                             February
## 13704                                                             February
## 13705                                                             February
## 13706                                                             February
## 13707                                                             February
## 13708                                                             February
## 13709                                                             February
## 13710                                                             February
## 13711                                                             February
## 13712                                                             February
## 13713                                                             February
## 13714                                                             February
## 13715                                                             February
## 13716                                                             February
## 13717                                                             February
## 13718                                                             February
## 13719                                                             February
## 13720                                                             February
## 13721                                                             February
## 13722                                                             February
## 13723                                                             February
## 13724                                                             February
## 13725                                                             February
## 13726                                                             February
## 13727                                                             February
## 13728                                                             February
## 13729                                                             February
## 13730                                                             February
## 13731                                                             February
## 13732                                                             February
## 13733                                                             February
## 13734                                                             February
## 13735                                                             February
## 13736                                                             February
## 13737                                                             February
## 13738                                                             February
## 13739                                                             February
## 13740                                                             February
## 13741                                                             February
## 13742                                                             February
## 13743                                                             February
## 13744                                                             February
## 13745                                                             February
## 13746                                                             February
## 13747                                                             February
## 13748                                                             February
## 13749                                                             February
## 13750                                                             February
## 13751                                                             February
## 13752                                                             February
## 13753                                                             February
## 13754                                                             February
## 13755                                                             February
## 13756                                                             February
## 13757                                                             February
## 13758                                                             February
## 13759                                                             February
## 13760                                                             February
## 13761                                                             February
## 13762                                                             February
## 13763                                                             February
## 13764                                                             February
## 13765                                                             February
## 13766                                                             February
## 13767                                                             February
## 13768                                                             February
## 13769                                                             February
## 13770                                                             February
## 13771                                                             February
## 13772                                                             February
## 13773                                                             February
## 13774                                                             February
## 13775                                                             February
## 13776                                                             February
## 13777                                                             February
## 13778                                                             February
## 13779                                                             February
## 13780                                                             February
## 13781                                                             February
## 13782                                                             February
## 13783                                                             February
## 13784                                                             February
## 13785                                                             February
## 13786                                                             February
## 13787                                                             February
## 13788                                                             February
## 13789                                                             February
## 13790                                                             February
## 13791                                                             February
## 13792                                                             February
## 13793                                                             February
## 13794                                                             February
## 13795                                                             February
## 13796                                                             February
## 13797                                                             February
## 13798                                                             February
## 13799                                                             February
## 13800                                                             February
## 13801                                                             February
## 13802                                                             February
## 13803                                                             February
## 13804                                                             February
## 13805                                                             February
## 13806                                                             February
## 13807                                                             February
## 13808                                                             February
## 13809                                                             February
## 13810                                                             February
## 13811                                                             February
## 13812                                                             February
## 13813                                                             February
## 13814                                                             February
## 13815                                                             February
## 13816                                                             February
## 13817                                                             February
## 13818                                                             February
## 13819                                                             February
## 13820                                                             February
## 13821                                                             February
## 13822                                                             February
## 13823                                                             February
## 13824                                                             February
## 13825                                                             February
## 13826                                                             February
## 13827                                                             February
## 13828                                                             February
## 13829                                                             February
## 13830                                                             February
## 13831                                                             February
## 13832                                                             February
## 13833                                                             February
## 13834                                                             February
## 13835                                                             February
## 13836                                                             February
## 13837                                                             February
## 13838                                                             February
## 13839                                                             February
## 13840                                                             February
## 13841                                                             February
## 13842                                                             February
## 13843                                                             February
## 13844                                                             February
## 13845                                                             February
## 13846                                                             February
## 13847                                                             February
## 13848                                                             February
## 13849                                                             February
## 13850                                                             February
## 13851                                                             February
## 13852                                                             February
## 13853                                                             February
## 13854                                                             February
## 13855                                                             February
## 13856                                                             February
## 13857                                                             February
## 13858                                                             February
## 13859                                                             February
## 13860                                                             February
## 13861                                                             February
## 13862                                                             February
## 13863                                                             February
## 13864                                                             February
## 13865                                                             February
## 13866                                                             February
## 13867                                                             February
## 13868                                                             February
## 13869                                                             February
## 13870                                                             February
## 13871                                                             February
## 13872                                                             February
## 13873                                                             February
## 13874                                                             February
## 13875                                                             February
## 13876                                                             February
## 13877                                                             February
## 13878                                                             February
## 13879                                                             February
## 13880                                                             February
## 13881                                                             February
## 13882                                                             February
## 13883                                                             February
## 13884                                                             February
## 13885                                                             February
## 13886                                                             February
## 13887                                                             February
## 13888                                                             February
## 13889                                                             February
## 13890                                                             February
## 13891                                                             February
## 13892                                                             February
## 13893                                                     Marble,_Colorado
## 13894                                                     Marble,_Colorado
## 13895                                                     Marble,_Colorado
## 13896                                                     Marble,_Colorado
## 13897                                                     Marble,_Colorado
## 13898                                                     Marble,_Colorado
## 13899                                                     Marble,_Colorado
## 13900                                                     Marble,_Colorado
## 13901                                                     Marble,_Colorado
## 13902                                                     Marble,_Colorado
## 13903                                                     Marble,_Colorado
## 13904                                                     Marble,_Colorado
## 13905                                                     Marble,_Colorado
## 13906                                                     Marble,_Colorado
## 13907                                                     Marble,_Colorado
## 13908                                                     Marble,_Colorado
## 13909                                                     Marble,_Colorado
## 13910                                                     Marble,_Colorado
## 13911                                                     Marble,_Colorado
## 13912                                                     Marble,_Colorado
## 13913                                                     Marble,_Colorado
## 13914                                                     Marble,_Colorado
## 13915                                                     Marble,_Colorado
## 13916                                                     Marble,_Colorado
## 13917                                                     Marble,_Colorado
## 13918                                                     Marble,_Colorado
## 13919                                                     Marble,_Colorado
## 13920                                                     Marble,_Colorado
## 13921                                                     Marble,_Colorado
## 13922                                                     Marble,_Colorado
## 13923                                                     Marble,_Colorado
## 13924                                                     Marble,_Colorado
## 13925                                                     Marble,_Colorado
## 13926                                                     Marble,_Colorado
## 13927                                                     Marble,_Colorado
## 13928                                                     Marble,_Colorado
## 13929                                                     Marble,_Colorado
## 13930                                                     Marble,_Colorado
## 13931                                                     Marble,_Colorado
## 13932                                                     Marble,_Colorado
## 13933                                                     Marble,_Colorado
## 13934                                                     Marble,_Colorado
## 13935                                                     Marble,_Colorado
## 13936                                                     Marble,_Colorado
## 13937                                                     Marble,_Colorado
## 13938                                                     Marble,_Colorado
## 13939                                                     Marble,_Colorado
## 13940                                                     Marble,_Colorado
## 13941                                                     Marble,_Colorado
## 13942                                                     Marble,_Colorado
## 13943                                                     Marble,_Colorado
## 13944                                                     Marble,_Colorado
## 13945                                                Free-software_licence
## 13946                                                Free-software_licence
## 13947                                                Free-software_licence
## 13948                                                Free-software_licence
## 13949                                                Free-software_licence
## 13950                                                Free-software_licence
## 13951                                                Free-software_licence
## 13952                                                Free-software_licence
## 13953                                                Free-software_licence
## 13954                                                Free-software_licence
## 13955                                                Free-software_licence
## 13956                                                Free-software_licence
## 13957                                                Free-software_licence
## 13958                                                Free-software_licence
## 13959                                                Free-software_licence
## 13960                                                Free-software_licence
## 13961                                                Free-software_licence
## 13962                                                Free-software_licence
## 13963                                                Free-software_licence
## 13964                                                Free-software_licence
## 13965                                                Free-software_licence
## 13966                                                Free-software_licence
## 13967                                                Free-software_licence
## 13968                                                Free-software_licence
## 13969                                                Free-software_licence
## 13970                                                Free-software_licence
## 13971                                                Free-software_licence
## 13972                                                Free-software_licence
## 13973                                                Free-software_licence
## 13974                                                Free-software_licence
## 13975                                                Free-software_licence
## 13976                                                Free-software_licence
## 13977                                                Free-software_licence
## 13978                                                Free-software_licence
## 13979                                                Free-software_licence
## 13980                                                Free-software_licence
## 13981                                                Free-software_licence
## 13982                                                Free-software_licence
## 13983                                                Free-software_licence
## 13984                                                Free-software_licence
## 13985                                                Free-software_licence
## 13986                                                Free-software_licence
## 13987                                                Free-software_licence
## 13988                                                Free-software_licence
## 13989                                                Free-software_licence
## 13990                                                Free-software_licence
## 13991                                                Free-software_licence
## 13992                                                Free-software_licence
## 13993                                                Free-software_licence
## 13994                                                Free-software_licence
## 13995                                                Free-software_licence
## 13996                                                Free-software_licence
## 13997                                                Free-software_licence
## 13998                                                Free-software_licence
## 13999                                                Free-software_licence
## 14000                                                Free-software_licence
## 14001                                                Free-software_licence
## 14002                                                Free-software_licence
## 14003                                                Free-software_licence
## 14004                                                Free-software_licence
## 14005                                                Free-software_licence
## 14006                                                Free-software_licence
## 14007                                                Free-software_licence
## 14008                                                Free-software_licence
## 14009                                                Free-software_licence
## 14010                                                Free-software_licence
## 14011                                                Free-software_licence
## 14012                                                Free-software_licence
## 14013                                                Free-software_licence
## 14014                                                Free-software_licence
## 14015                                                Free-software_licence
## 14016                                                Free-software_licence
## 14017                                                Free-software_licence
## 14018                                                Free-software_licence
## 14019                                                Free-software_licence
## 14020                                                Free-software_licence
## 14021                                                Free-software_licence
## 14022                                                Free-software_licence
## 14023                                                Free-software_licence
## 14024                                                Free-software_licence
## 14025                                                Free-software_licence
## 14026                                                Free-software_licence
## 14027                                                Free-software_licence
## 14028                                                Free-software_licence
## 14029                                                Free-software_licence
## 14030                                                Free-software_licence
## 14031                                                Free-software_licence
## 14032                                                Free-software_licence
## 14033                                                Free-software_licence
## 14034                                                Free-software_licence
## 14035                                                Free-software_licence
## 14036                                                Free-software_licence
## 14037                                                Free-software_licence
## 14038                                                Free-software_licence
## 14039                                                Free-software_licence
## 14040                                                Free-software_licence
## 14041                                                Free-software_licence
## 14042                                                Free-software_licence
## 14043                                                Free-software_licence
## 14044                                                Free-software_licence
## 14045                                                Free-software_licence
## 14046                                                Free-software_licence
## 14047                                                Free-software_licence
## 14048                                                Free-software_licence
## 14049                                                Free-software_licence
## 14050                                                Free-software_licence
## 14051                                                Free-software_licence
## 14052                                                Free-software_licence
## 14053                                                Free-software_licence
## 14054                                                Free-software_licence
## 14055                                                Free-software_licence
## 14056                                                Free-software_licence
## 14057                                                Free-software_licence
## 14058                                                Free-software_licence
## 14059                                                Free-software_licence
## 14060                                                Free-software_licence
## 14061                                                Free-software_licence
## 14062                                                Free-software_licence
## 14063                                                Free-software_licence
## 14064                                                Free-software_licence
## 14065                                                Free-software_licence
## 14066                                                Free-software_licence
## 14067                                                Free-software_licence
## 14068                                                Free-software_licence
## 14069                                                Free-software_licence
## 14070                                                Free-software_licence
## 14071                                                Free-software_licence
## 14072                                                Free-software_licence
## 14073                                                Free-software_licence
## 14074                                                Free-software_licence
## 14075                                                Free-software_licence
## 14076                                                Free-software_licence
## 14077                                                Free-software_licence
## 14078                                                Free-software_licence
## 14079                                                Free-software_licence
## 14080                                                Free-software_licence
## 14081                                                Free-software_licence
## 14082                                                Free-software_licence
## 14083                                                Free-software_licence
## 14084                                                Free-software_licence
## 14085                                                Free-software_licence
## 14086                                                Free-software_licence
## 14087                                                Free-software_licence
## 14088                                                Free-software_licence
## 14089                                                Free-software_licence
## 14090                                                Free-software_licence
## 14091                                                Free-software_licence
## 14092                                                Free-software_licence
## 14093                                                Free-software_licence
## 14094                                                Free-software_licence
## 14095                                                Free-software_licence
## 14096                                                Free-software_licence
## 14097                                                Free-software_licence
## 14098                                                Free-software_licence
## 14099                                                Free-software_licence
## 14100                                                Free-software_licence
## 14101                                                Free-software_licence
## 14102                                                Free-software_licence
## 14103                                                Free-software_licence
## 14104                                                Free-software_licence
## 14105                                                Free-software_licence
## 14106                                                Free-software_licence
## 14107                                                Free-software_licence
## 14108                                                Free-software_licence
## 14109                                                Free-software_licence
## 14110                                                Free-software_licence
## 14111                                                Free-software_licence
## 14112                                                Free-software_licence
## 14113                                                Free-software_licence
## 14114                                                Free-software_licence
## 14115                                                Free-software_licence
## 14116                                                Free-software_licence
## 14117                                                Free-software_licence
## 14118                                                Free-software_licence
## 14119                                                Free-software_licence
## 14120                                                Free-software_licence
## 14121                                                Free-software_licence
## 14122                                                Free-software_licence
## 14123                                                Free-software_licence
## 14124                                                Free-software_licence
## 14125                                                Free-software_licence
## 14126                                                Free-software_licence
## 14127                                                Free-software_licence
## 14128                                                Free-software_licence
## 14129                                                Free-software_licence
## 14130                                                Free-software_licence
## 14131                                                Free-software_licence
## 14132                                                Free-software_licence
## 14133                                                Free-software_licence
## 14134                                                Free-software_licence
## 14135                                                Free-software_licence
## 14136                                                Free-software_licence
## 14137                                                Free-software_licence
## 14138                                                Free-software_licence
## 14139                                                Free-software_licence
## 14140                                                Free-software_licence
## 14141                                                Free-software_licence
## 14142                                                Free-software_licence
## 14143                                                Free-software_licence
## 14144                                                Free-software_licence
## 14145                                                Free-software_licence
## 14146                                                Free-software_licence
## 14147                                                Free-software_licence
## 14148                                                Free-software_licence
## 14149                                                Free-software_licence
## 14150                                                Free-software_licence
## 14151                                                Free-software_licence
## 14152                                                Free-software_licence
## 14153                                                Free-software_licence
## 14154                                                Free-software_licence
## 14155                                                Free-software_licence
## 14156                                                Free-software_licence
## 14157                                                Free-software_licence
## 14158                                                Free-software_licence
## 14159                                                Free-software_licence
## 14160                                                Free-software_licence
## 14161                                                Free-software_licence
## 14162                                                Free-software_licence
## 14163                                                Free-software_licence
## 14164                                                Free-software_licence
## 14165                                                Free-software_licence
## 14166                                                Free-software_licence
## 14167                                                Free-software_licence
## 14168                                                Free-software_licence
## 14169                                                Free-software_licence
## 14170                                                Free-software_licence
## 14171                                                Free-software_licence
## 14172                                                Free-software_licence
## 14173                                                Free-software_licence
## 14174                                                Free-software_licence
## 14175                                                Free-software_licence
## 14176                                                Free-software_licence
## 14177                                                Free-software_licence
## 14178                                                Free-software_licence
## 14179                                                Free-software_licence
## 14180                                                Free-software_licence
## 14181                                                Free-software_licence
## 14182                                                Free-software_licence
## 14183                                                Free-software_licence
## 14184                                                Free-software_licence
## 14185                                                Free-software_licence
## 14186                                                Free-software_licence
## 14187                                                Free-software_licence
## 14188                                                Free-software_licence
## 14189                                                Free-software_licence
## 14190                                                Free-software_licence
## 14191                                                Free-software_licence
## 14192                                                Free-software_licence
## 14193                                                Free-software_licence
## 14194                                                Free-software_licence
## 14195                                                Free-software_licence
## 14196                                                Free-software_licence
## 14197                                                Free-software_licence
## 14198                                                Free-software_licence
## 14199                                                Free-software_licence
## 14200                                                Free-software_licence
## 14201                                                Free-software_licence
## 14202                                                Free-software_licence
## 14203                                                Free-software_licence
## 14204                                                Free-software_licence
## 14205                                                Free-software_licence
## 14206                                                Free-software_licence
## 14207                                                Free-software_licence
## 14208                                                Free-software_licence
## 14209                                                Free-software_licence
## 14210                                                Free-software_licence
## 14211                                                Free-software_licence
## 14212                                                Free-software_licence
## 14213                                                Free-software_licence
## 14214                                                Free-software_licence
## 14215                                                Free-software_licence
## 14216                                                Free-software_licence
## 14217                                                Free-software_licence
## 14218                                                Free-software_licence
## 14219                                                Free-software_licence
## 14220                                                Free-software_licence
## 14221                                                Free-software_licence
## 14222                                                Free-software_licence
## 14223                                                      Viola,_Delaware
## 14224                                                      Viola,_Delaware
## 14225                                                      Viola,_Delaware
## 14226                                                      Viola,_Delaware
## 14227                                                      Viola,_Delaware
## 14228                                                      Viola,_Delaware
## 14229                                                      Viola,_Delaware
## 14230                                                      Viola,_Delaware
## 14231                                                      Viola,_Delaware
## 14232                                                      Viola,_Delaware
## 14233                                                      Viola,_Delaware
## 14234                                                      Viola,_Delaware
## 14235                                                      Viola,_Delaware
## 14236                                                      Viola,_Delaware
## 14237                                                      Viola,_Delaware
## 14238                                                      Viola,_Delaware
## 14239                                                      Viola,_Delaware
## 14240                                                      Viola,_Delaware
## 14241                                                      Viola,_Delaware
## 14242                                                      Viola,_Delaware
## 14243                                                      Viola,_Delaware
## 14244                                                      Viola,_Delaware
## 14245                                                      Viola,_Delaware
## 14246                                                      Viola,_Delaware
## 14247                                                      Viola,_Delaware
## 14248                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14249                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14250                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14251                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14252                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14253                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14254                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14255                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14256                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14257                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14258                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14259                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14260                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14261                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14262                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14263                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14264                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14265                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14266                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14267                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14268                              Matlacha_Isles-Matlacha_Shores,_Florida
## 14269                                              St._James_City,_Florida
## 14270                                              St._James_City,_Florida
## 14271                                              St._James_City,_Florida
## 14272                                              St._James_City,_Florida
## 14273                                              St._James_City,_Florida
## 14274                                              St._James_City,_Florida
## 14275                                              St._James_City,_Florida
## 14276                                              St._James_City,_Florida
## 14277                                              St._James_City,_Florida
## 14278                                              St._James_City,_Florida
## 14279                                              St._James_City,_Florida
## 14280                                              St._James_City,_Florida
## 14281                                              St._James_City,_Florida
## 14282                                              St._James_City,_Florida
## 14283                                              St._James_City,_Florida
## 14284                                              St._James_City,_Florida
## 14285                                              St._James_City,_Florida
## 14286                                              St._James_City,_Florida
## 14287                                              St._James_City,_Florida
## 14288                                                  Sweetwater,_Florida
## 14289                                                  Sweetwater,_Florida
## 14290                                                  Sweetwater,_Florida
## 14291                                                  Sweetwater,_Florida
## 14292                                                  Sweetwater,_Florida
## 14293                                                  Sweetwater,_Florida
## 14294                                                  Sweetwater,_Florida
## 14295                                                  Sweetwater,_Florida
## 14296                                                  Sweetwater,_Florida
## 14297                                                  Sweetwater,_Florida
## 14298                                                  Sweetwater,_Florida
## 14299                                                  Sweetwater,_Florida
## 14300                                                  Sweetwater,_Florida
## 14301                                                  Sweetwater,_Florida
## 14302                                                  Sweetwater,_Florida
## 14303                                                  Sweetwater,_Florida
## 14304                                                  Sweetwater,_Florida
## 14305                                                  Sweetwater,_Florida
## 14306                                                  Sweetwater,_Florida
## 14307                                                  Sweetwater,_Florida
## 14308                                                  Sweetwater,_Florida
## 14309                                                  Sweetwater,_Florida
## 14310                                                  Sweetwater,_Florida
## 14311                                                  Sweetwater,_Florida
## 14312                                                  Sweetwater,_Florida
## 14313                                                  Sweetwater,_Florida
## 14314                                                  Sweetwater,_Florida
## 14315                                                  Sweetwater,_Florida
## 14316                                                  Sweetwater,_Florida
## 14317                                                  Sweetwater,_Florida
## 14318                                                  Sweetwater,_Florida
## 14319                                                  Sweetwater,_Florida
## 14320                                                  Sweetwater,_Florida
## 14321                                                  Sweetwater,_Florida
## 14322                                                  Sweetwater,_Florida
## 14323                                                  Sweetwater,_Florida
## 14324                                                  Sweetwater,_Florida
## 14325                                                  Sweetwater,_Florida
## 14326                                                  Sweetwater,_Florida
## 14327                                                  Sweetwater,_Florida
## 14328                                                  Sweetwater,_Florida
## 14329                                                  Sweetwater,_Florida
## 14330                                                  Sweetwater,_Florida
## 14331                                                  Sweetwater,_Florida
## 14332                                                  Sweetwater,_Florida
## 14333                                                  Sweetwater,_Florida
## 14334                                                  Sweetwater,_Florida
## 14335                                                  Sweetwater,_Florida
## 14336                                                  Sweetwater,_Florida
## 14337                                                  Sweetwater,_Florida
## 14338                                                  Sweetwater,_Florida
## 14339                                                  Sweetwater,_Florida
## 14340                                                  Sweetwater,_Florida
## 14341                                                  Sweetwater,_Florida
## 14342                                                  Sweetwater,_Florida
## 14343                                                  Sweetwater,_Florida
## 14344                                                  Sweetwater,_Florida
## 14345                                                  Sweetwater,_Florida
## 14346                                                  Sweetwater,_Florida
## 14347                                                  Sweetwater,_Florida
## 14348                                                  Sweetwater,_Florida
## 14349                                                  Sweetwater,_Florida
## 14350                                                  Sweetwater,_Florida
## 14351                                                  Sweetwater,_Florida
## 14352                                                  Sweetwater,_Florida
## 14353                                                  Sweetwater,_Florida
## 14354                                                  Sweetwater,_Florida
## 14355                                                  Sweetwater,_Florida
## 14356                                                  Sweetwater,_Florida
## 14357                                                  Sweetwater,_Florida
## 14358                                                  Sweetwater,_Florida
## 14359                                                  Sweetwater,_Florida
## 14360                                                  Sweetwater,_Florida
## 14361                                                  Sweetwater,_Florida
## 14362                                                  Sweetwater,_Florida
## 14363                                                  Sweetwater,_Florida
## 14364                                                  Sweetwater,_Florida
## 14365                                                  Sweetwater,_Florida
## 14366                                                  Sweetwater,_Florida
## 14367                                                  Sweetwater,_Florida
## 14368                                                  Sweetwater,_Florida
## 14369                                                  Sweetwater,_Florida
## 14370                                                  Sweetwater,_Florida
## 14371                                                  Sweetwater,_Florida
## 14372                                                  Sweetwater,_Florida
## 14373                                                  Sweetwater,_Florida
## 14374                                                  Sweetwater,_Florida
## 14375                                                  Sweetwater,_Florida
## 14376                                                  Sweetwater,_Florida
## 14377                                                  Sweetwater,_Florida
## 14378                                                  Sweetwater,_Florida
## 14379                                                  Sweetwater,_Florida
## 14380                                                  Sweetwater,_Florida
## 14381                                                  Sweetwater,_Florida
## 14382                                                  Sweetwater,_Florida
## 14383                                                  Sweetwater,_Florida
## 14384                                                  Sweetwater,_Florida
## 14385                                                  Sweetwater,_Florida
## 14386                                                  Sweetwater,_Florida
## 14387                                                  Sweetwater,_Florida
## 14388                                                  Sweetwater,_Florida
## 14389                                                  Sweetwater,_Florida
## 14390                                                  Sweetwater,_Florida
## 14391                                                  Sweetwater,_Florida
## 14392                                                  Sweetwater,_Florida
## 14393                                                  Sweetwater,_Florida
## 14394                                                  Sweetwater,_Florida
## 14395                                                  Sweetwater,_Florida
## 14396                                                  Sweetwater,_Florida
## 14397                                                  Sweetwater,_Florida
## 14398                                                  Sweetwater,_Florida
## 14399                                                  Sweetwater,_Florida
## 14400                                                  Sweetwater,_Florida
## 14401                                                  Sweetwater,_Florida
## 14402                                                  Sweetwater,_Florida
## 14403                                                  Sweetwater,_Florida
## 14404                                                  Sweetwater,_Florida
## 14405                                                  Sweetwater,_Florida
## 14406                                                  Sweetwater,_Florida
## 14407                                                  Sweetwater,_Florida
## 14408                                            Key_Colony_Beach,_Florida
## 14409                                            Key_Colony_Beach,_Florida
## 14410                                            Key_Colony_Beach,_Florida
## 14411                                            Key_Colony_Beach,_Florida
## 14412                                            Key_Colony_Beach,_Florida
## 14413                                            Key_Colony_Beach,_Florida
## 14414                                            Key_Colony_Beach,_Florida
## 14415                                            Key_Colony_Beach,_Florida
## 14416                                            Key_Colony_Beach,_Florida
## 14417                                            Key_Colony_Beach,_Florida
## 14418                                            Key_Colony_Beach,_Florida
## 14419                                            Key_Colony_Beach,_Florida
## 14420                                            Key_Colony_Beach,_Florida
## 14421                                            Key_Colony_Beach,_Florida
## 14422                                            Key_Colony_Beach,_Florida
## 14423                                            Key_Colony_Beach,_Florida
## 14424                                            Key_Colony_Beach,_Florida
## 14425                                            Key_Colony_Beach,_Florida
## 14426                                            Key_Colony_Beach,_Florida
## 14427                                            Key_Colony_Beach,_Florida
## 14428                                            Key_Colony_Beach,_Florida
## 14429                                            Key_Colony_Beach,_Florida
## 14430                                            Key_Colony_Beach,_Florida
## 14431                                            Key_Colony_Beach,_Florida
## 14432                                            Key_Colony_Beach,_Florida
## 14433                                            Key_Colony_Beach,_Florida
## 14434                                            Key_Colony_Beach,_Florida
## 14435                                            Key_Colony_Beach,_Florida
## 14436                                            Key_Colony_Beach,_Florida
## 14437                                            Key_Colony_Beach,_Florida
## 14438                                            Key_Colony_Beach,_Florida
## 14439                                            Key_Colony_Beach,_Florida
## 14440                                            Key_Colony_Beach,_Florida
## 14441                                            Key_Colony_Beach,_Florida
## 14442                                            Key_Colony_Beach,_Florida
## 14443                                                      Inwood,_Florida
## 14444                                                      Inwood,_Florida
## 14445                                                      Inwood,_Florida
## 14446                                                      Inwood,_Florida
## 14447                                                      Inwood,_Florida
## 14448                                                      Inwood,_Florida
## 14449                                                      Inwood,_Florida
## 14450                                                      Inwood,_Florida
## 14451                                                      Inwood,_Florida
## 14452                                                      Inwood,_Florida
## 14453                                                      Inwood,_Florida
## 14454                                                      Inwood,_Florida
## 14455                                                      Inwood,_Florida
## 14456                                                      Inwood,_Florida
## 14457                                                      Inwood,_Florida
## 14458                                                      Inwood,_Florida
## 14459                                                      Inwood,_Florida
## 14460                                                      Inwood,_Florida
## 14461                                                      Inwood,_Florida
## 14462                                                      Inwood,_Florida
## 14463                                                      Inwood,_Florida
## 14464                                              Crescent_Beach,_Florida
## 14465                                              Crescent_Beach,_Florida
## 14466                                              Crescent_Beach,_Florida
## 14467                                              Crescent_Beach,_Florida
## 14468                                              Crescent_Beach,_Florida
## 14469                                              Crescent_Beach,_Florida
## 14470                                              Crescent_Beach,_Florida
## 14471                                              Crescent_Beach,_Florida
## 14472                                              Crescent_Beach,_Florida
## 14473                                              Crescent_Beach,_Florida
## 14474                                              Crescent_Beach,_Florida
## 14475                                              Crescent_Beach,_Florida
## 14476                                              Crescent_Beach,_Florida
## 14477                                              Crescent_Beach,_Florida
## 14478                                              Crescent_Beach,_Florida
## 14479                                              Crescent_Beach,_Florida
## 14480                                              Crescent_Beach,_Florida
## 14481                                              Crescent_Beach,_Florida
## 14482                                              Crescent_Beach,_Florida
## 14483                                              Crescent_Beach,_Florida
## 14484                                              Crescent_Beach,_Florida
## 14485                                              Crescent_Beach,_Florida
## 14486                                              Crescent_Beach,_Florida
## 14487                                              Crescent_Beach,_Florida
## 14488                                              Crescent_Beach,_Florida
## 14489                                              Crescent_Beach,_Florida
## 14490                                              Crescent_Beach,_Florida
## 14491                                              Crescent_Beach,_Florida
## 14492                                              Crescent_Beach,_Florida
## 14493                                                    Live_Oak,_Florida
## 14494                                                    Live_Oak,_Florida
## 14495                                                    Live_Oak,_Florida
## 14496                                                    Live_Oak,_Florida
## 14497                                                    Live_Oak,_Florida
## 14498                                                    Live_Oak,_Florida
## 14499                                                    Live_Oak,_Florida
## 14500                                                    Live_Oak,_Florida
## 14501                                                    Live_Oak,_Florida
## 14502                                                    Live_Oak,_Florida
## 14503                                                    Live_Oak,_Florida
## 14504                                                    Live_Oak,_Florida
## 14505                                                    Live_Oak,_Florida
## 14506                                                    Live_Oak,_Florida
## 14507                                                    Live_Oak,_Florida
## 14508                                                    Live_Oak,_Florida
## 14509                                                    Live_Oak,_Florida
## 14510                                                    Live_Oak,_Florida
## 14511                                                    Live_Oak,_Florida
## 14512                                                    Live_Oak,_Florida
## 14513                                                    Live_Oak,_Florida
## 14514                                                    Live_Oak,_Florida
## 14515                                                    Live_Oak,_Florida
## 14516                                                    Live_Oak,_Florida
## 14517                                                    Live_Oak,_Florida
## 14518                                                    Live_Oak,_Florida
## 14519                                                    Live_Oak,_Florida
## 14520                                                    Live_Oak,_Florida
## 14521                                                    Live_Oak,_Florida
## 14522                                                    Live_Oak,_Florida
## 14523                                                    Live_Oak,_Florida
## 14524                                                    Live_Oak,_Florida
## 14525                                                    Live_Oak,_Florida
## 14526                                                    Live_Oak,_Florida
## 14527                                                    Live_Oak,_Florida
## 14528                                                    Live_Oak,_Florida
## 14529                                                    Live_Oak,_Florida
## 14530                                                    Live_Oak,_Florida
## 14531                                                    Live_Oak,_Florida
## 14532                                                    Live_Oak,_Florida
## 14533                                                    Live_Oak,_Florida
## 14534                                                    Live_Oak,_Florida
## 14535                                                    Live_Oak,_Florida
## 14536                                                    Live_Oak,_Florida
## 14537                                                    Live_Oak,_Florida
## 14538                                                    Live_Oak,_Florida
## 14539                                                    Live_Oak,_Florida
## 14540                                                    Live_Oak,_Florida
## 14541                                                    Live_Oak,_Florida
## 14542                                                    Live_Oak,_Florida
## 14543                                                    Live_Oak,_Florida
## 14544                                                   Sopchoppy,_Florida
## 14545                                                   Sopchoppy,_Florida
## 14546                                                   Sopchoppy,_Florida
## 14547                                                   Sopchoppy,_Florida
## 14548                                                   Sopchoppy,_Florida
## 14549                                                   Sopchoppy,_Florida
## 14550                                                   Sopchoppy,_Florida
## 14551                                                   Sopchoppy,_Florida
## 14552                                                   Sopchoppy,_Florida
## 14553                                                   Sopchoppy,_Florida
## 14554                                                   Sopchoppy,_Florida
## 14555                                                   Sopchoppy,_Florida
## 14556                                                   Sopchoppy,_Florida
## 14557                                                   Sopchoppy,_Florida
## 14558                                                   Sopchoppy,_Florida
## 14559                                                   Sopchoppy,_Florida
## 14560                                                   Sopchoppy,_Florida
## 14561                                                   Sopchoppy,_Florida
## 14562                                                   Sopchoppy,_Florida
## 14563                                                   Sopchoppy,_Florida
## 14564                                                   Sopchoppy,_Florida
## 14565                                                   Sopchoppy,_Florida
## 14566                                                   Sopchoppy,_Florida
## 14567                                                   Sopchoppy,_Florida
## 14568                                                   Sopchoppy,_Florida
## 14569                                                   Sopchoppy,_Florida
## 14570                                                   Sopchoppy,_Florida
## 14571                                                   Sopchoppy,_Florida
## 14572                                                   Sopchoppy,_Florida
## 14573                                                   Sopchoppy,_Florida
## 14574                                                   Sopchoppy,_Florida
## 14575                                                   Sopchoppy,_Florida
## 14576                                                   Sopchoppy,_Florida
## 14577                                                   Sopchoppy,_Florida
## 14578                                                   Sopchoppy,_Florida
## 14579                                                   Sopchoppy,_Florida
## 14580                                                   Sopchoppy,_Florida
## 14581                                                   Sopchoppy,_Florida
## 14582                                                   Sopchoppy,_Florida
## 14583                                                      Conley,_Georgia
## 14584                                                      Conley,_Georgia
## 14585                                                      Conley,_Georgia
## 14586                                                      Conley,_Georgia
## 14587                                                      Conley,_Georgia
## 14588                                                      Conley,_Georgia
## 14589                                                      Conley,_Georgia
## 14590                                                      Conley,_Georgia
## 14591                                                      Conley,_Georgia
## 14592                                                      Conley,_Georgia
## 14593                                                      Conley,_Georgia
## 14594                                                      Conley,_Georgia
## 14595                                                      Conley,_Georgia
## 14596                                                      Conley,_Georgia
## 14597                                                      Conley,_Georgia
## 14598                                                      Conley,_Georgia
## 14599                                                      Conley,_Georgia
## 14600                                                      Conley,_Georgia
## 14601                                                      Conley,_Georgia
## 14602                                                      Conley,_Georgia
## 14603                                                      Conley,_Georgia
## 14604                                                      Conley,_Georgia
## 14605                                                      Conley,_Georgia
## 14606                                                           Fred_Hoyle
## 14607                                                           Fred_Hoyle
## 14608                                                           Fred_Hoyle
## 14609                                                           Fred_Hoyle
## 14610                                                           Fred_Hoyle
## 14611                                                           Fred_Hoyle
## 14612                                                           Fred_Hoyle
## 14613                                                           Fred_Hoyle
## 14614                                                           Fred_Hoyle
## 14615                                                           Fred_Hoyle
## 14616                                                           Fred_Hoyle
## 14617                                                           Fred_Hoyle
## 14618                                                           Fred_Hoyle
## 14619                                                           Fred_Hoyle
## 14620                                                           Fred_Hoyle
## 14621                                                           Fred_Hoyle
## 14622                                                           Fred_Hoyle
## 14623                                                           Fred_Hoyle
## 14624                                                           Fred_Hoyle
## 14625                                                           Fred_Hoyle
## 14626                                                           Fred_Hoyle
## 14627                                                           Fred_Hoyle
## 14628                                                           Fred_Hoyle
## 14629                                                           Fred_Hoyle
## 14630                                                           Fred_Hoyle
## 14631                                                           Fred_Hoyle
## 14632                                                           Fred_Hoyle
## 14633                                                           Fred_Hoyle
## 14634                                                           Fred_Hoyle
## 14635                                                           Fred_Hoyle
## 14636                                                           Fred_Hoyle
## 14637                                                           Fred_Hoyle
## 14638                                                           Fred_Hoyle
## 14639                                                           Fred_Hoyle
## 14640                                                           Fred_Hoyle
## 14641                                                           Fred_Hoyle
## 14642                                                           Fred_Hoyle
## 14643                                                           Fred_Hoyle
## 14644                                                           Fred_Hoyle
## 14645                                                           Fred_Hoyle
## 14646                                                           Fred_Hoyle
## 14647                                                           Fred_Hoyle
## 14648                                                           Fred_Hoyle
## 14649                                                           Fred_Hoyle
## 14650                                                           Fred_Hoyle
## 14651                                                           Fred_Hoyle
## 14652                                                           Fred_Hoyle
## 14653                                                           Fred_Hoyle
## 14654                                                           Fred_Hoyle
## 14655                                                           Fred_Hoyle
## 14656                                                           Fred_Hoyle
## 14657                                                           Fred_Hoyle
## 14658                                                           Fred_Hoyle
## 14659                                                           Fred_Hoyle
## 14660                                                           Fred_Hoyle
## 14661                                                           Fred_Hoyle
## 14662                                                           Fred_Hoyle
## 14663                                                           Fred_Hoyle
## 14664                                                           Fred_Hoyle
## 14665                                                           Fred_Hoyle
## 14666                                                           Fred_Hoyle
## 14667                                                           Fred_Hoyle
## 14668                                                           Fred_Hoyle
## 14669                                                           Fred_Hoyle
## 14670                                                           Fred_Hoyle
## 14671                                                           Fred_Hoyle
## 14672                                                           Fred_Hoyle
## 14673                                                           Fred_Hoyle
## 14674                                                           Fred_Hoyle
## 14675                                                           Fred_Hoyle
## 14676                                                           Fred_Hoyle
## 14677                                                           Fred_Hoyle
## 14678                                                           Fred_Hoyle
## 14679                                                           Fred_Hoyle
## 14680                                                           Fred_Hoyle
## 14681                                                           Fred_Hoyle
## 14682                                                           Fred_Hoyle
## 14683                                                           Fred_Hoyle
## 14684                                                           Fred_Hoyle
## 14685                                                           Fred_Hoyle
## 14686                                                           Fred_Hoyle
## 14687                                                           Fred_Hoyle
## 14688                                                           Fred_Hoyle
## 14689                                                           Fred_Hoyle
## 14690                                                           Fred_Hoyle
## 14691                                                           Fred_Hoyle
## 14692                                                           Fred_Hoyle
## 14693                                                           Fred_Hoyle
## 14694                                                           Fred_Hoyle
## 14695                                                           Fred_Hoyle
## 14696                                                           Fred_Hoyle
## 14697                                                           Fred_Hoyle
## 14698                                                           Fred_Hoyle
## 14699                                                           Fred_Hoyle
## 14700                                                           Fred_Hoyle
## 14701                                                           Fred_Hoyle
## 14702                                                           Fred_Hoyle
## 14703                                                           Fred_Hoyle
## 14704                                                           Fred_Hoyle
## 14705                                                           Fred_Hoyle
## 14706                                                           Fred_Hoyle
## 14707                                                           Fred_Hoyle
## 14708                                                           Fred_Hoyle
## 14709                                                           Fred_Hoyle
## 14710                                                           Fred_Hoyle
## 14711                                                           Fred_Hoyle
## 14712                                                           Fred_Hoyle
## 14713                                                           Fred_Hoyle
## 14714                                                           Fred_Hoyle
## 14715                                                           Fred_Hoyle
## 14716                                                           Fred_Hoyle
## 14717                                                           Fred_Hoyle
## 14718                                                           Fred_Hoyle
## 14719                                                           Fred_Hoyle
## 14720                                                           Fred_Hoyle
## 14721                                                           Fred_Hoyle
## 14722                                                           Fred_Hoyle
## 14723                                                           Fred_Hoyle
## 14724                                                           Fred_Hoyle
## 14725                                                           Fred_Hoyle
## 14726                                                           Fred_Hoyle
## 14727                                                           Fred_Hoyle
## 14728                                                           Fred_Hoyle
## 14729                                                           Fred_Hoyle
## 14730                                                           Fred_Hoyle
## 14731                                                           Fred_Hoyle
## 14732                                                           Fred_Hoyle
## 14733                                                           Fred_Hoyle
## 14734                                                           Fred_Hoyle
## 14735                                                           Fred_Hoyle
## 14736                                                           Fred_Hoyle
## 14737                                                           Fred_Hoyle
## 14738                                                           Fred_Hoyle
## 14739                                                           Fred_Hoyle
## 14740                                                           Fred_Hoyle
## 14741                                                           Fred_Hoyle
## 14742                                                           Fred_Hoyle
## 14743                                                           Fred_Hoyle
## 14744                                                           Fred_Hoyle
## 14745                                                           Fred_Hoyle
## 14746                                                           Fred_Hoyle
## 14747                                                           Fred_Hoyle
## 14748                                                           Fred_Hoyle
## 14749                                                           Fred_Hoyle
## 14750                                                           Fred_Hoyle
## 14751                                                           Fred_Hoyle
## 14752                                                           Fred_Hoyle
## 14753                                                           Fred_Hoyle
## 14754                                                           Fred_Hoyle
## 14755                                                           Fred_Hoyle
## 14756                                                           Fred_Hoyle
## 14757                                                           Fred_Hoyle
## 14758                                                           Fred_Hoyle
## 14759                                                           Fred_Hoyle
## 14760                                                           Fred_Hoyle
## 14761                                                           Fred_Hoyle
## 14762                                                           Fred_Hoyle
## 14763                                                           Fred_Hoyle
## 14764                                                           Fred_Hoyle
## 14765                                                           Fred_Hoyle
## 14766                                                           Fred_Hoyle
## 14767                                                           Fred_Hoyle
## 14768                                                           Fred_Hoyle
## 14769                                                           Fred_Hoyle
## 14770                                                           Fred_Hoyle
## 14771                                                           Fred_Hoyle
## 14772                                                           Fred_Hoyle
## 14773                                                           Fred_Hoyle
## 14774                                                           Fred_Hoyle
## 14775                                                           Fred_Hoyle
## 14776                                                           Fred_Hoyle
## 14777                                                           Fred_Hoyle
## 14778                                                           Fred_Hoyle
## 14779                                                           Fred_Hoyle
## 14780                                                           Fred_Hoyle
## 14781                                                           Fred_Hoyle
## 14782                                                           Fred_Hoyle
## 14783                                                           Fred_Hoyle
## 14784                                                           Fred_Hoyle
## 14785                                                           Fred_Hoyle
## 14786                                                           Fred_Hoyle
## 14787                                                           Fred_Hoyle
## 14788                                                           Fred_Hoyle
## 14789                                                           Fred_Hoyle
## 14790                                                           Fred_Hoyle
## 14791                                                           Fred_Hoyle
## 14792                                                           Fred_Hoyle
## 14793                                                           Fred_Hoyle
## 14794                                                           Fred_Hoyle
## 14795                                                           Fred_Hoyle
## 14796                                                           Fred_Hoyle
## 14797                                                           Fred_Hoyle
## 14798                                                           Fred_Hoyle
## 14799                                                           Fred_Hoyle
## 14800                                                           Fred_Hoyle
## 14801                                                           Fred_Hoyle
## 14802                                                           Fred_Hoyle
## 14803                                                           Fred_Hoyle
## 14804                                                           Fred_Hoyle
## 14805                                                           Fred_Hoyle
## 14806                                                           Fred_Hoyle
## 14807                                                           Fred_Hoyle
## 14808                                                           Fred_Hoyle
## 14809                                                           Fred_Hoyle
## 14810                                                           Fred_Hoyle
## 14811                                                           Fred_Hoyle
## 14812                                                           Fred_Hoyle
## 14813                                                           Fred_Hoyle
## 14814                                                           Fred_Hoyle
## 14815                                                           Fred_Hoyle
## 14816                                                           Fred_Hoyle
## 14817                                                           Fred_Hoyle
## 14818                                                           Fred_Hoyle
## 14819                                                           Fred_Hoyle
## 14820                                                           Fred_Hoyle
## 14821                                                           Fred_Hoyle
## 14822                                                           Fred_Hoyle
## 14823                                                           Fred_Hoyle
## 14824                                                           Fred_Hoyle
## 14825                                                           Fred_Hoyle
## 14826                                                           Fred_Hoyle
## 14827                                                           Fred_Hoyle
## 14828                                                           Fred_Hoyle
## 14829                                                           Fred_Hoyle
## 14830                                                           Fred_Hoyle
## 14831                                                           Fred_Hoyle
## 14832                                                           Fred_Hoyle
## 14833                                                           Fred_Hoyle
## 14834                                                           Fred_Hoyle
## 14835                                                           Fred_Hoyle
## 14836                                                           Fred_Hoyle
## 14837                                                           Fred_Hoyle
## 14838                                                           Fred_Hoyle
## 14839                                                           Fred_Hoyle
## 14840                                                           Fred_Hoyle
## 14841                                                           Fred_Hoyle
## 14842                                                           Fred_Hoyle
## 14843                                                           Fred_Hoyle
## 14844                                                           Fred_Hoyle
## 14845                                                           Fred_Hoyle
## 14846                                                           Fred_Hoyle
## 14847                                                           Fred_Hoyle
## 14848                                                           Fred_Hoyle
## 14849                                                           Fred_Hoyle
## 14850                                                           Fred_Hoyle
## 14851                                                           Fred_Hoyle
## 14852                                                           Fred_Hoyle
## 14853                                                           Fred_Hoyle
## 14854                                                           Fred_Hoyle
## 14855                                                           Fred_Hoyle
## 14856                                                           Fred_Hoyle
## 14857                                                           Fred_Hoyle
## 14858                                                           Fred_Hoyle
## 14859                                                           Fred_Hoyle
## 14860                                                           Fred_Hoyle
## 14861                                                           Fred_Hoyle
## 14862                                                           Fred_Hoyle
## 14863                                                           Fred_Hoyle
## 14864                                                           Fred_Hoyle
## 14865                                                           Fred_Hoyle
## 14866                                                           Fred_Hoyle
## 14867                                                           Fred_Hoyle
## 14868                                                           Fred_Hoyle
## 14869                                                           Fred_Hoyle
## 14870                                                           Fred_Hoyle
## 14871                                                           Fred_Hoyle
## 14872                                                           Fred_Hoyle
## 14873                                                           Fred_Hoyle
## 14874                                                           Fred_Hoyle
## 14875                                                           Fred_Hoyle
## 14876                                                           Fred_Hoyle
## 14877                                                           Fred_Hoyle
## 14878                                                           Fred_Hoyle
## 14879                                                           Fred_Hoyle
## 14880                                                           Fred_Hoyle
## 14881                                                           Fred_Hoyle
## 14882                                                           Fred_Hoyle
## 14883                                                           Fred_Hoyle
## 14884                                                           Fred_Hoyle
## 14885                                                           Fred_Hoyle
## 14886                                                           Fred_Hoyle
## 14887                                                           Fred_Hoyle
## 14888                                                           Fred_Hoyle
## 14889                                                           Fred_Hoyle
## 14890                                                           Fred_Hoyle
## 14891                                                           Fred_Hoyle
## 14892                                                           Fred_Hoyle
## 14893                                                           Fred_Hoyle
## 14894                                                           Fred_Hoyle
## 14895                                                           Fred_Hoyle
## 14896                                                           Fred_Hoyle
## 14897                                                           Fred_Hoyle
## 14898                                                           Fred_Hoyle
## 14899                                                           Fred_Hoyle
## 14900                                                           Fred_Hoyle
## 14901                                                           Fred_Hoyle
## 14902                                                           Fred_Hoyle
## 14903                                                           Fred_Hoyle
## 14904                                                           Fred_Hoyle
## 14905                                                           Fred_Hoyle
## 14906                                                           Fred_Hoyle
## 14907                                                           Fred_Hoyle
## 14908                                                           Fred_Hoyle
## 14909                                                           Fred_Hoyle
## 14910                                                           Fred_Hoyle
## 14911                                                           Fred_Hoyle
## 14912                                                           Fred_Hoyle
## 14913                                                           Fred_Hoyle
## 14914                                                           Fred_Hoyle
## 14915                                                           Fred_Hoyle
## 14916                                                           Fred_Hoyle
## 14917                                                           Fred_Hoyle
## 14918                                                           Fred_Hoyle
## 14919                                                           Fred_Hoyle
## 14920                                                           Fred_Hoyle
## 14921                                                           Fred_Hoyle
## 14922                                                           Fred_Hoyle
## 14923                                                           Fred_Hoyle
## 14924                                                           Fred_Hoyle
## 14925                                                           Fred_Hoyle
## 14926                                                           Fred_Hoyle
## 14927                                                           Fred_Hoyle
## 14928                                                           Fred_Hoyle
## 14929                                                           Fred_Hoyle
## 14930                                                           Fred_Hoyle
## 14931                                                           Fred_Hoyle
## 14932                                                           Fred_Hoyle
## 14933                                                           Fred_Hoyle
## 14934                                                           Fred_Hoyle
## 14935                                                           Fred_Hoyle
## 14936                                                           Fred_Hoyle
## 14937                                                           Fred_Hoyle
## 14938                                                           Fred_Hoyle
## 14939                                                           Fred_Hoyle
## 14940                                                           Fred_Hoyle
## 14941                                                      Newnan,_Georgia
## 14942                                                      Newnan,_Georgia
## 14943                                                      Newnan,_Georgia
## 14944                                                      Newnan,_Georgia
## 14945                                                      Newnan,_Georgia
## 14946                                                      Newnan,_Georgia
## 14947                                                      Newnan,_Georgia
## 14948                                                      Newnan,_Georgia
## 14949                                                      Newnan,_Georgia
## 14950                                                      Newnan,_Georgia
## 14951                                                      Newnan,_Georgia
## 14952                                                      Newnan,_Georgia
## 14953                                                      Newnan,_Georgia
## 14954                                                      Newnan,_Georgia
## 14955                                                      Newnan,_Georgia
## 14956                                                      Newnan,_Georgia
## 14957                                                      Newnan,_Georgia
## 14958                                                      Newnan,_Georgia
## 14959                                                      Newnan,_Georgia
## 14960                                                      Newnan,_Georgia
## 14961                                                      Newnan,_Georgia
## 14962                                                      Newnan,_Georgia
## 14963                                                      Newnan,_Georgia
## 14964                                                      Newnan,_Georgia
## 14965                                                      Newnan,_Georgia
## 14966                                                      Newnan,_Georgia
## 14967                                                      Newnan,_Georgia
## 14968                                                      Newnan,_Georgia
## 14969                                                      Newnan,_Georgia
## 14970                                                      Newnan,_Georgia
## 14971                                                      Newnan,_Georgia
## 14972                                                      Newnan,_Georgia
## 14973                                                      Newnan,_Georgia
## 14974                                                      Newnan,_Georgia
## 14975                                                      Newnan,_Georgia
## 14976                                                      Newnan,_Georgia
## 14977                                                      Newnan,_Georgia
## 14978                                                      Newnan,_Georgia
## 14979                                                      Newnan,_Georgia
## 14980                                                      Newnan,_Georgia
## 14981                                                      Newnan,_Georgia
## 14982                                                      Newnan,_Georgia
## 14983                                                      Newnan,_Georgia
## 14984                                                      Newnan,_Georgia
## 14985                                                      Newnan,_Georgia
## 14986                                                      Newnan,_Georgia
## 14987                                                      Newnan,_Georgia
## 14988                                                      Newnan,_Georgia
## 14989                                                      Newnan,_Georgia
## 14990                                                      Newnan,_Georgia
## 14991                                                      Newnan,_Georgia
## 14992                                                      Newnan,_Georgia
## 14993                                                      Newnan,_Georgia
## 14994                                                      Newnan,_Georgia
## 14995                                                      Newnan,_Georgia
## 14996                                                      Newnan,_Georgia
## 14997                                                      Newnan,_Georgia
## 14998                                                      Newnan,_Georgia
## 14999                                                      Newnan,_Georgia
## 15000                                                      Newnan,_Georgia
## 15001                                                      Newnan,_Georgia
## 15002                                                      Newnan,_Georgia
## 15003                                                      Newnan,_Georgia
## 15004                                                      Newnan,_Georgia
## 15005                                                      Newnan,_Georgia
## 15006                                                      Newnan,_Georgia
## 15007                                                      Newnan,_Georgia
## 15008                                                      Newnan,_Georgia
## 15009                                                      Newnan,_Georgia
## 15010                                                      Newnan,_Georgia
## 15011                                                      Newnan,_Georgia
## 15012                                                      Newnan,_Georgia
## 15013                                                      Newnan,_Georgia
## 15014                                                      Newnan,_Georgia
## 15015                                                      Newnan,_Georgia
## 15016                                                      Newnan,_Georgia
## 15017                                                      Newnan,_Georgia
## 15018                                                      Newnan,_Georgia
## 15019                                                      Newnan,_Georgia
## 15020                                                      Newnan,_Georgia
## 15021                                                      Newnan,_Georgia
## 15022                                                      Newnan,_Georgia
## 15023                                                      Newnan,_Georgia
## 15024                                                      Newnan,_Georgia
## 15025                                                      Newnan,_Georgia
## 15026                                                      Newnan,_Georgia
## 15027                                                      Newnan,_Georgia
## 15028                                                      Newnan,_Georgia
## 15029                                                      Newnan,_Georgia
## 15030                                                      Newnan,_Georgia
## 15031                                                      Newnan,_Georgia
## 15032                                                      Newnan,_Georgia
## 15033                                                      Newnan,_Georgia
## 15034                                                      Newnan,_Georgia
## 15035                                                      Newnan,_Georgia
## 15036                                                      Newnan,_Georgia
## 15037                                                      Newnan,_Georgia
## 15038                                                      Newnan,_Georgia
## 15039                                                      Newnan,_Georgia
## 15040                                                      Newnan,_Georgia
## 15041                                                      Newnan,_Georgia
## 15042                                                      Newnan,_Georgia
## 15043                                                      Newnan,_Georgia
## 15044                                                      Newnan,_Georgia
## 15045                                                      Newnan,_Georgia
## 15046                                                      Newnan,_Georgia
## 15047                                                      Newnan,_Georgia
## 15048                                                      Newnan,_Georgia
## 15049                                                      Newnan,_Georgia
## 15050                                                      Newnan,_Georgia
## 15051                                                      Newnan,_Georgia
## 15052                                                      Newnan,_Georgia
## 15053                                                      Newnan,_Georgia
## 15054                                                      Newnan,_Georgia
## 15055                                                      Newnan,_Georgia
## 15056                                                      Newnan,_Georgia
## 15057                                                      Newnan,_Georgia
## 15058                                                      Newnan,_Georgia
## 15059                                                      Newnan,_Georgia
## 15060                                                      Newnan,_Georgia
## 15061                                                      Newnan,_Georgia
## 15062                                                      Newnan,_Georgia
## 15063                                                      Newnan,_Georgia
## 15064                                                      Newnan,_Georgia
## 15065                                                      Newnan,_Georgia
## 15066                                                      Newnan,_Georgia
## 15067                                                      Newnan,_Georgia
## 15068                                                      Newnan,_Georgia
## 15069                                                      Newnan,_Georgia
## 15070                                                      Newnan,_Georgia
## 15071                                                      Newnan,_Georgia
## 15072                                                      Newnan,_Georgia
## 15073                                                      Newnan,_Georgia
## 15074                                                      Newnan,_Georgia
## 15075                                                      Newnan,_Georgia
## 15076                                                      Newnan,_Georgia
## 15077                                                      Newnan,_Georgia
## 15078                                                      Newnan,_Georgia
## 15079                                                      Newnan,_Georgia
## 15080                                                      Newnan,_Georgia
## 15081                                                      Newnan,_Georgia
## 15082                                                      Newnan,_Georgia
## 15083                                                      Newnan,_Georgia
## 15084                                                      Newnan,_Georgia
## 15085                                                      Newnan,_Georgia
## 15086                                                      Newnan,_Georgia
## 15087                                                      Newnan,_Georgia
## 15088                                                      Newnan,_Georgia
## 15089                                                      Newnan,_Georgia
## 15090                                                      Newnan,_Georgia
## 15091                                                      Newnan,_Georgia
## 15092                                                      Newnan,_Georgia
## 15093                                                      Newnan,_Georgia
## 15094                                                      Newnan,_Georgia
## 15095                                                      Newnan,_Georgia
## 15096                                                      Newnan,_Georgia
## 15097                                                      Newnan,_Georgia
## 15098                                                      Newnan,_Georgia
## 15099                                                      Newnan,_Georgia
## 15100                                                      Newnan,_Georgia
## 15101                                                      Newnan,_Georgia
## 15102                                                      Newnan,_Georgia
## 15103                                                      Newnan,_Georgia
## 15104                                                      Newnan,_Georgia
## 15105                                                      Newnan,_Georgia
## 15106                                                      Newnan,_Georgia
## 15107                                                      Newnan,_Georgia
## 15108                                                      Newnan,_Georgia
## 15109                                                      Newnan,_Georgia
## 15110                                                      Newnan,_Georgia
## 15111                                                      Newnan,_Georgia
## 15112                                                      Newnan,_Georgia
## 15113                                                      Newnan,_Georgia
## 15114                                                 McCaysville,_Georgia
## 15115                                                 McCaysville,_Georgia
## 15116                                                 McCaysville,_Georgia
## 15117                                                 McCaysville,_Georgia
## 15118                                                 McCaysville,_Georgia
## 15119                                                 McCaysville,_Georgia
## 15120                                                 McCaysville,_Georgia
## 15121                                                 McCaysville,_Georgia
## 15122                                                 McCaysville,_Georgia
## 15123                                                 McCaysville,_Georgia
## 15124                                                 McCaysville,_Georgia
## 15125                                                 McCaysville,_Georgia
## 15126                                                 McCaysville,_Georgia
## 15127                                                 McCaysville,_Georgia
## 15128                                                 McCaysville,_Georgia
## 15129                                                 McCaysville,_Georgia
## 15130                                                 McCaysville,_Georgia
## 15131                                                 McCaysville,_Georgia
## 15132                                                 McCaysville,_Georgia
## 15133                                                 McCaysville,_Georgia
## 15134                                                 McCaysville,_Georgia
## 15135                                                 McCaysville,_Georgia
## 15136                                                 McCaysville,_Georgia
## 15137                                                 McCaysville,_Georgia
## 15138                                                 McCaysville,_Georgia
## 15139                                                 McCaysville,_Georgia
## 15140                                                 McCaysville,_Georgia
## 15141                                                 McCaysville,_Georgia
## 15142                                                 McCaysville,_Georgia
## 15143                                                 McCaysville,_Georgia
## 15144                                                  Sugar_Hill,_Georgia
## 15145                                                  Sugar_Hill,_Georgia
## 15146                                                  Sugar_Hill,_Georgia
## 15147                                                  Sugar_Hill,_Georgia
## 15148                                                  Sugar_Hill,_Georgia
## 15149                                                  Sugar_Hill,_Georgia
## 15150                                                  Sugar_Hill,_Georgia
## 15151                                                  Sugar_Hill,_Georgia
## 15152                                                  Sugar_Hill,_Georgia
## 15153                                                  Sugar_Hill,_Georgia
## 15154                                                  Sugar_Hill,_Georgia
## 15155                                                  Sugar_Hill,_Georgia
## 15156                                                  Sugar_Hill,_Georgia
## 15157                                                  Sugar_Hill,_Georgia
## 15158                                                  Sugar_Hill,_Georgia
## 15159                                                  Sugar_Hill,_Georgia
## 15160                                                  Sugar_Hill,_Georgia
## 15161                                                  Sugar_Hill,_Georgia
## 15162                                                  Sugar_Hill,_Georgia
## 15163                                                  Sugar_Hill,_Georgia
## 15164                                                  Sugar_Hill,_Georgia
## 15165                                                  Sugar_Hill,_Georgia
## 15166                                                  Sugar_Hill,_Georgia
## 15167                                                  Sugar_Hill,_Georgia
## 15168                                                  Sugar_Hill,_Georgia
## 15169                                                  Sugar_Hill,_Georgia
## 15170                                                  Sugar_Hill,_Georgia
## 15171                                                  Sugar_Hill,_Georgia
## 15172                                                  Sugar_Hill,_Georgia
## 15173                                                  Sugar_Hill,_Georgia
## 15174                                                  Sugar_Hill,_Georgia
## 15175                                                  Sugar_Hill,_Georgia
## 15176                                                  Sugar_Hill,_Georgia
## 15177                                                  Sugar_Hill,_Georgia
## 15178                                                  Sugar_Hill,_Georgia
## 15179                                                    Sycamore,_Georgia
## 15180                                                    Sycamore,_Georgia
## 15181                                                    Sycamore,_Georgia
## 15182                                                    Sycamore,_Georgia
## 15183                                                    Sycamore,_Georgia
## 15184                                                    Sycamore,_Georgia
## 15185                                                    Sycamore,_Georgia
## 15186                                                    Sycamore,_Georgia
## 15187                                                    Sycamore,_Georgia
## 15188                                                    Sycamore,_Georgia
## 15189                                                    Sycamore,_Georgia
## 15190                                                    Sycamore,_Georgia
## 15191                                                    Sycamore,_Georgia
## 15192                                                    Sycamore,_Georgia
## 15193                                                    Sycamore,_Georgia
## 15194                                                    Sycamore,_Georgia
## 15195                                                    Sycamore,_Georgia
## 15196                                                    Sycamore,_Georgia
## 15197                                                    Sycamore,_Georgia
## 15198                                                    Sycamore,_Georgia
## 15199                                                    Sycamore,_Georgia
## 15200                                                    Sycamore,_Georgia
## 15201                                                    Sycamore,_Georgia
## 15202                                                    Sycamore,_Georgia
## 15203                                                    Sycamore,_Georgia
## 15204                                                    Sycamore,_Georgia
## 15205                                                    Sycamore,_Georgia
## 15206                                                    Sycamore,_Georgia
## 15207                                                        Driggs,_Idaho
## 15208                                                        Driggs,_Idaho
## 15209                                                        Driggs,_Idaho
## 15210                                                        Driggs,_Idaho
## 15211                                                        Driggs,_Idaho
## 15212                                                        Driggs,_Idaho
## 15213                                                        Driggs,_Idaho
## 15214                                                        Driggs,_Idaho
## 15215                                                        Driggs,_Idaho
## 15216                                                        Driggs,_Idaho
## 15217                                                        Driggs,_Idaho
## 15218                                                        Driggs,_Idaho
## 15219                                                        Driggs,_Idaho
## 15220                                                        Driggs,_Idaho
## 15221                                                        Driggs,_Idaho
## 15222                                                        Driggs,_Idaho
## 15223                                                        Driggs,_Idaho
## 15224                                                        Driggs,_Idaho
## 15225                                                        Driggs,_Idaho
## 15226                                                        Driggs,_Idaho
## 15227                                                        Driggs,_Idaho
## 15228                                                        Driggs,_Idaho
## 15229                                                        Driggs,_Idaho
## 15230                                                        Driggs,_Idaho
## 15231                                                        Driggs,_Idaho
## 15232                                                        Driggs,_Idaho
## 15233                                                        Driggs,_Idaho
## 15234                                                        Driggs,_Idaho
## 15235                                                        Driggs,_Idaho
## 15236                                                        Driggs,_Idaho
## 15237                                                        Driggs,_Idaho
## 15238                                                        Driggs,_Idaho
## 15239                                                        Driggs,_Idaho
## 15240                                                        Driggs,_Idaho
## 15241                                                        Driggs,_Idaho
## 15242                                                        Driggs,_Idaho
## 15243                                                        Driggs,_Idaho
## 15244                                                        Driggs,_Idaho
## 15245                                                        Driggs,_Idaho
## 15246                                                        Driggs,_Idaho
## 15247                                                        Driggs,_Idaho
## 15248                                                        Driggs,_Idaho
## 15249                                                        Driggs,_Idaho
## 15250                                                        Driggs,_Idaho
## 15251                                                        Driggs,_Idaho
## 15252                                                        Driggs,_Idaho
## 15253                                                        Driggs,_Idaho
## 15254                                                        Driggs,_Idaho
## 15255                                                        Driggs,_Idaho
## 15256                                                        Driggs,_Idaho
## 15257                                                        Driggs,_Idaho
## 15258                                                        Driggs,_Idaho
## 15259                                                        Driggs,_Idaho
## 15260                                                        Driggs,_Idaho
## 15261                                                        Driggs,_Idaho
## 15262                                                        Driggs,_Idaho
## 15263                                                        Driggs,_Idaho
## 15264                                                        Driggs,_Idaho
## 15265                                                        Driggs,_Idaho
## 15266                                                        Driggs,_Idaho
## 15267                                                        Driggs,_Idaho
## 15268                                                        Driggs,_Idaho
## 15269                                                        Driggs,_Idaho
## 15270                                                        Driggs,_Idaho
## 15271                                                        Driggs,_Idaho
## 15272                                                    Ashland,_Illinois
## 15273                                                    Ashland,_Illinois
## 15274                                                    Ashland,_Illinois
## 15275                                                    Ashland,_Illinois
## 15276                                                    Ashland,_Illinois
## 15277                                                    Ashland,_Illinois
## 15278                                                    Ashland,_Illinois
## 15279                                                    Ashland,_Illinois
## 15280                                                    Ashland,_Illinois
## 15281                                                    Ashland,_Illinois
## 15282                                                    Ashland,_Illinois
## 15283                                                    Ashland,_Illinois
## 15284                                                    Ashland,_Illinois
## 15285                                                    Ashland,_Illinois
## 15286                                                    Ashland,_Illinois
## 15287                                                    Ashland,_Illinois
## 15288                                                    Ashland,_Illinois
## 15289                                                    Ashland,_Illinois
## 15290                                                    Ashland,_Illinois
## 15291                                                    Ashland,_Illinois
## 15292                                                    Ashland,_Illinois
## 15293                                                    Ashland,_Illinois
## 15294                                                    Ashland,_Illinois
## 15295                                                    Ashland,_Illinois
## 15296                                                    Ashland,_Illinois
## 15297                                                    Ashland,_Illinois
## 15298                                                    Ashland,_Illinois
## 15299                                                    Ashland,_Illinois
## 15300                                                         Finger_Lakes
## 15301                                                         Finger_Lakes
## 15302                                                         Finger_Lakes
## 15303                                                         Finger_Lakes
## 15304                                                         Finger_Lakes
## 15305                                                         Finger_Lakes
## 15306                                                         Finger_Lakes
## 15307                                                         Finger_Lakes
## 15308                                                         Finger_Lakes
## 15309                                                         Finger_Lakes
## 15310                                                         Finger_Lakes
## 15311                                                         Finger_Lakes
## 15312                                                         Finger_Lakes
## 15313                                                         Finger_Lakes
## 15314                                                         Finger_Lakes
## 15315                                                         Finger_Lakes
## 15316                                                         Finger_Lakes
## 15317                                                         Finger_Lakes
## 15318                                                         Finger_Lakes
## 15319                                                         Finger_Lakes
## 15320                                                         Finger_Lakes
## 15321                                                         Finger_Lakes
## 15322                                                         Finger_Lakes
## 15323                                                         Finger_Lakes
## 15324                                                         Finger_Lakes
## 15325                                                         Finger_Lakes
## 15326                                                         Finger_Lakes
## 15327                                                         Finger_Lakes
## 15328                                                         Finger_Lakes
## 15329                                                         Finger_Lakes
## 15330                                                         Finger_Lakes
## 15331                                                         Finger_Lakes
## 15332                                                         Finger_Lakes
## 15333                                                         Finger_Lakes
## 15334                                                         Finger_Lakes
## 15335                                                         Finger_Lakes
## 15336                                                         Finger_Lakes
## 15337                                                         Finger_Lakes
## 15338                                                         Finger_Lakes
## 15339                                                         Finger_Lakes
## 15340                                                         Finger_Lakes
## 15341                                                         Finger_Lakes
## 15342                                                         Finger_Lakes
## 15343                                                         Finger_Lakes
## 15344                                                         Finger_Lakes
## 15345                                                         Finger_Lakes
## 15346                                                         Finger_Lakes
## 15347                                                         Finger_Lakes
## 15348                                                         Finger_Lakes
## 15349                                                         Finger_Lakes
## 15350                                                         Finger_Lakes
## 15351                                                         Finger_Lakes
## 15352                                                         Finger_Lakes
## 15353                                                         Finger_Lakes
## 15354                                                         Finger_Lakes
## 15355                                                         Finger_Lakes
## 15356                                                         Finger_Lakes
## 15357                                                         Finger_Lakes
## 15358                                                         Finger_Lakes
## 15359                                                         Finger_Lakes
## 15360                                                         Finger_Lakes
## 15361                                                         Finger_Lakes
## 15362                                                         Finger_Lakes
## 15363                                                         Finger_Lakes
## 15364                                                         Finger_Lakes
## 15365                                                         Finger_Lakes
## 15366                                                         Finger_Lakes
## 15367                                                         Finger_Lakes
## 15368                                                         Finger_Lakes
## 15369                                                         Finger_Lakes
## 15370                                                         Finger_Lakes
## 15371                                                         Finger_Lakes
## 15372                                                         Finger_Lakes
## 15373                                                         Finger_Lakes
## 15374                                                         Finger_Lakes
## 15375                                                         Finger_Lakes
## 15376                                                         Finger_Lakes
## 15377                                                         Finger_Lakes
## 15378                                                         Finger_Lakes
## 15379                                                         Finger_Lakes
## 15380                                                         Finger_Lakes
## 15381                                                         Finger_Lakes
## 15382                                                         Finger_Lakes
## 15383                                                         Finger_Lakes
## 15384                                                         Finger_Lakes
## 15385                                                         Finger_Lakes
## 15386                                                         Finger_Lakes
## 15387                                                         Finger_Lakes
## 15388                                                         Finger_Lakes
## 15389                                                         Finger_Lakes
## 15390                                                         Finger_Lakes
## 15391                                                         Finger_Lakes
## 15392                                                         Finger_Lakes
## 15393                                                         Finger_Lakes
## 15394                                                         Finger_Lakes
## 15395                                                         Finger_Lakes
## 15396                                                         Finger_Lakes
## 15397                                                         Finger_Lakes
## 15398                                                         Finger_Lakes
## 15399                                                         Finger_Lakes
## 15400                                                         Finger_Lakes
## 15401                                                         Finger_Lakes
## 15402                                                         Finger_Lakes
## 15403                                                         Finger_Lakes
## 15404                                                         Finger_Lakes
## 15405                                                         Finger_Lakes
## 15406                                                         Finger_Lakes
## 15407                                                         Finger_Lakes
## 15408                                                         Finger_Lakes
## 15409                                                         Finger_Lakes
## 15410                                                         Finger_Lakes
## 15411                                                         Finger_Lakes
## 15412                                                         Finger_Lakes
## 15413                                                         Finger_Lakes
## 15414                                                         Finger_Lakes
## 15415                                                         Finger_Lakes
## 15416                                                         Finger_Lakes
## 15417                                                         Finger_Lakes
## 15418                                                         Finger_Lakes
## 15419                                                         Finger_Lakes
## 15420                                                         Finger_Lakes
## 15421                                                         Finger_Lakes
## 15422                                                         Finger_Lakes
## 15423                                                         Finger_Lakes
## 15424                                                         Finger_Lakes
## 15425                                                         Finger_Lakes
## 15426                                                         Finger_Lakes
## 15427                                                         Finger_Lakes
## 15428                                                         Finger_Lakes
## 15429                                                         Finger_Lakes
## 15430                                                         Finger_Lakes
## 15431                                                         Finger_Lakes
## 15432                                                         Finger_Lakes
## 15433                                                         Finger_Lakes
## 15434                                                         Finger_Lakes
## 15435                                                         Finger_Lakes
## 15436                                                         Finger_Lakes
## 15437                                                         Finger_Lakes
## 15438                                                         Finger_Lakes
## 15439                                                         Finger_Lakes
## 15440                                                         Finger_Lakes
## 15441                                                         Finger_Lakes
## 15442                                                         Finger_Lakes
## 15443                                                         Finger_Lakes
## 15444                                                         Finger_Lakes
## 15445                                                         Finger_Lakes
## 15446                                                         Finger_Lakes
## 15447                                                         Finger_Lakes
## 15448                                                         Finger_Lakes
## 15449                                                         Finger_Lakes
## 15450                                                         Finger_Lakes
## 15451                                                         Finger_Lakes
## 15452                                                         Finger_Lakes
## 15453                                                         Finger_Lakes
## 15454                                                         Finger_Lakes
## 15455                                                         Finger_Lakes
## 15456                                                         Finger_Lakes
## 15457                                                         Finger_Lakes
## 15458                                                         Finger_Lakes
## 15459                                                         Finger_Lakes
## 15460                                                         Finger_Lakes
## 15461                                                         Finger_Lakes
## 15462                                                         Finger_Lakes
## 15463                                                         Finger_Lakes
## 15464                                                         Finger_Lakes
## 15465                                                         Finger_Lakes
## 15466                                                         Finger_Lakes
## 15467                                                         Finger_Lakes
## 15468                                                         Finger_Lakes
## 15469                                                         Finger_Lakes
## 15470                                                         Finger_Lakes
## 15471                                                         Finger_Lakes
## 15472                                                         Finger_Lakes
## 15473                                                         Finger_Lakes
## 15474                                                         Finger_Lakes
## 15475                                                         Finger_Lakes
## 15476                                                         Finger_Lakes
## 15477                                                         Finger_Lakes
## 15478                                                         Finger_Lakes
## 15479                                                         Finger_Lakes
## 15480                                                         Finger_Lakes
## 15481                                                         Finger_Lakes
## 15482                                                         Finger_Lakes
## 15483                                                         Finger_Lakes
## 15484                                                         Finger_Lakes
## 15485                                                         Finger_Lakes
## 15486                                                         Finger_Lakes
## 15487                                                         Finger_Lakes
## 15488                                                         Finger_Lakes
## 15489                                                         Finger_Lakes
## 15490                                                         Finger_Lakes
## 15491                                                         Finger_Lakes
## 15492                                                         Finger_Lakes
## 15493                                                         Finger_Lakes
## 15494                                                         Finger_Lakes
## 15495                                                         Finger_Lakes
## 15496                                                         Finger_Lakes
## 15497                                                         Finger_Lakes
## 15498                                                         Finger_Lakes
## 15499                                                         Finger_Lakes
## 15500                                                         Finger_Lakes
## 15501                                                         Finger_Lakes
## 15502                                                         Finger_Lakes
## 15503                                                         Finger_Lakes
## 15504                                                         Finger_Lakes
## 15505                                                         Finger_Lakes
## 15506                                                         Finger_Lakes
## 15507                                                         Finger_Lakes
## 15508                                                         Finger_Lakes
## 15509                                                         Finger_Lakes
## 15510                                                         Finger_Lakes
## 15511                                                         Finger_Lakes
## 15512                                                         Finger_Lakes
## 15513                                                         Finger_Lakes
## 15514                                                         Finger_Lakes
## 15515                                                         Finger_Lakes
## 15516                                                         Finger_Lakes
## 15517                                                         Finger_Lakes
## 15518                                                         Finger_Lakes
## 15519                                                         Finger_Lakes
## 15520                                                         Finger_Lakes
## 15521                                                         Finger_Lakes
## 15522                                                         Finger_Lakes
## 15523                                                         Finger_Lakes
## 15524                                                         Finger_Lakes
## 15525                                                         Finger_Lakes
## 15526                                                         Finger_Lakes
## 15527                                                         Finger_Lakes
## 15528                                                         Finger_Lakes
## 15529                                                         Finger_Lakes
## 15530                                                         Finger_Lakes
## 15531                                                         Finger_Lakes
## 15532                                                         Finger_Lakes
## 15533                                                         Finger_Lakes
## 15534                                                         Finger_Lakes
## 15535                                                         Finger_Lakes
## 15536                                                         Finger_Lakes
## 15537                                                         Finger_Lakes
## 15538                                                         Finger_Lakes
## 15539                                                         Finger_Lakes
## 15540                                                         Finger_Lakes
## 15541                                                         Finger_Lakes
## 15542                                                         Finger_Lakes
## 15543                                                         Finger_Lakes
## 15544                                                         Finger_Lakes
## 15545                                                         Finger_Lakes
## 15546                                                         Finger_Lakes
## 15547                                                         Finger_Lakes
## 15548                                                         Finger_Lakes
## 15549                                                         Finger_Lakes
## 15550                                                         Finger_Lakes
## 15551                                                         Finger_Lakes
## 15552                                                         Finger_Lakes
## 15553                                                         Finger_Lakes
## 15554                                                         Finger_Lakes
## 15555                                                         Finger_Lakes
## 15556                                                         Finger_Lakes
## 15557                                                         Finger_Lakes
## 15558                                                         Finger_Lakes
## 15559                                                         Finger_Lakes
## 15560                                                         Finger_Lakes
## 15561                                                         Finger_Lakes
## 15562                                                         Finger_Lakes
## 15563                                                         Finger_Lakes
## 15564                                                         Finger_Lakes
## 15565                                                         Finger_Lakes
## 15566                                                         Finger_Lakes
## 15567                                                         Finger_Lakes
## 15568                                                         Finger_Lakes
## 15569                                                         Finger_Lakes
## 15570                                                         Finger_Lakes
## 15571                                                         Finger_Lakes
## 15572                                                         Finger_Lakes
## 15573                                                         Finger_Lakes
## 15574                                                         Finger_Lakes
## 15575                                                         Finger_Lakes
## 15576                                                         Finger_Lakes
## 15577                                                         Finger_Lakes
## 15578                                                         Finger_Lakes
## 15579                                                         Finger_Lakes
## 15580                                                         Finger_Lakes
## 15581                                                         Finger_Lakes
## 15582                                                         Finger_Lakes
## 15583                                                         Finger_Lakes
## 15584                                                         Finger_Lakes
## 15585                                                         Finger_Lakes
## 15586                                                         Finger_Lakes
## 15587                                                         Finger_Lakes
## 15588                                                         Finger_Lakes
## 15589                                                         Finger_Lakes
## 15590                                                         Finger_Lakes
## 15591                                                         Finger_Lakes
## 15592                                                         Finger_Lakes
## 15593                                                         Finger_Lakes
## 15594                                                         Finger_Lakes
## 15595                                                         Finger_Lakes
## 15596                                                         Finger_Lakes
## 15597                                                         Finger_Lakes
## 15598                                                         Finger_Lakes
## 15599                                                         Finger_Lakes
## 15600                                                         Finger_Lakes
## 15601                                                         Finger_Lakes
## 15602                                                         Finger_Lakes
## 15603                                                         Finger_Lakes
## 15604                                                         Finger_Lakes
## 15605                                                         Finger_Lakes
## 15606                                                         Finger_Lakes
## 15607                                                         Finger_Lakes
## 15608                                                         Finger_Lakes
## 15609                                                         Finger_Lakes
## 15610                                                         Finger_Lakes
## 15611                                                         Finger_Lakes
## 15612                                                         Finger_Lakes
## 15613                                                         Finger_Lakes
## 15614                                                         Finger_Lakes
## 15615                                                         Finger_Lakes
## 15616                                                         Finger_Lakes
## 15617                                                         Finger_Lakes
## 15618                                                         Finger_Lakes
## 15619                                                         Finger_Lakes
## 15620                                                     Harvey,_Illinois
## 15621                                                     Harvey,_Illinois
## 15622                                                     Harvey,_Illinois
## 15623                                                     Harvey,_Illinois
## 15624                                                     Harvey,_Illinois
## 15625                                                     Harvey,_Illinois
## 15626                                                     Harvey,_Illinois
## 15627                                                     Harvey,_Illinois
## 15628                                                     Harvey,_Illinois
## 15629                                                     Harvey,_Illinois
## 15630                                                     Harvey,_Illinois
## 15631                                                     Harvey,_Illinois
## 15632                                                     Harvey,_Illinois
## 15633                                                     Harvey,_Illinois
## 15634                                                     Harvey,_Illinois
## 15635                                                     Harvey,_Illinois
## 15636                                                     Harvey,_Illinois
## 15637                                                     Harvey,_Illinois
## 15638                                                     Harvey,_Illinois
## 15639                                                     Harvey,_Illinois
## 15640                                                     Harvey,_Illinois
## 15641                                                     Harvey,_Illinois
## 15642                                                     Harvey,_Illinois
## 15643                                                     Harvey,_Illinois
## 15644                                                     Harvey,_Illinois
## 15645                                                     Harvey,_Illinois
## 15646                                                     Harvey,_Illinois
## 15647                                                     Harvey,_Illinois
## 15648                                                     Harvey,_Illinois
## 15649                                                     Harvey,_Illinois
## 15650                                                     Harvey,_Illinois
## 15651                                                     Harvey,_Illinois
## 15652                                                     Harvey,_Illinois
## 15653                                                     Harvey,_Illinois
## 15654                                                     Harvey,_Illinois
## 15655                                                     Harvey,_Illinois
## 15656                                                     Harvey,_Illinois
## 15657                                                     Harvey,_Illinois
## 15658                                                     Harvey,_Illinois
## 15659                                                     Harvey,_Illinois
## 15660                                                     Harvey,_Illinois
## 15661                                                     Harvey,_Illinois
## 15662                                                     Harvey,_Illinois
## 15663                                                     Harvey,_Illinois
## 15664                                                     Harvey,_Illinois
## 15665                                                     Harvey,_Illinois
## 15666                                                     Harvey,_Illinois
## 15667                                                     Harvey,_Illinois
## 15668                                                     Harvey,_Illinois
## 15669                                                     Harvey,_Illinois
## 15670                                                     Harvey,_Illinois
## 15671                                                     Harvey,_Illinois
## 15672                                                     Harvey,_Illinois
## 15673                                                     Harvey,_Illinois
## 15674                                                     Harvey,_Illinois
## 15675                                                     Harvey,_Illinois
## 15676                                                     Harvey,_Illinois
## 15677                                                     Harvey,_Illinois
## 15678                                                     Harvey,_Illinois
## 15679                                                     Harvey,_Illinois
## 15680                                                     Harvey,_Illinois
## 15681                                                     Harvey,_Illinois
## 15682                                                     Harvey,_Illinois
## 15683                                                     Harvey,_Illinois
## 15684                                                     Harvey,_Illinois
## 15685                                                     Harvey,_Illinois
## 15686                                                     Harvey,_Illinois
## 15687                                                     Harvey,_Illinois
## 15688                                                     Harvey,_Illinois
## 15689                                                     Harvey,_Illinois
## 15690                                                     Harvey,_Illinois
## 15691                                                     Harvey,_Illinois
## 15692                                                     Harvey,_Illinois
## 15693                                                     Harvey,_Illinois
## 15694                                                     Harvey,_Illinois
## 15695                                                     Harvey,_Illinois
## 15696                                                     Harvey,_Illinois
## 15697                                                     Harvey,_Illinois
## 15698                                                     Harvey,_Illinois
## 15699                                                     Harvey,_Illinois
## 15700                                                     Harvey,_Illinois
## 15701                                                     Harvey,_Illinois
## 15702                                                     Harvey,_Illinois
## 15703                                                     Harvey,_Illinois
## 15704                                                     Harvey,_Illinois
## 15705                                                     Harvey,_Illinois
## 15706                                                     Harvey,_Illinois
## 15707                                                     Harvey,_Illinois
## 15708                                                     Harvey,_Illinois
## 15709                                                     Harvey,_Illinois
## 15710                                                     Harvey,_Illinois
## 15711                                                     Harvey,_Illinois
## 15712                                                     Harvey,_Illinois
## 15713                                                     Harvey,_Illinois
## 15714                                                     Harvey,_Illinois
## 15715                                                     Harvey,_Illinois
## 15716                                                     Harvey,_Illinois
## 15717                                                     Harvey,_Illinois
## 15718                                                     Harvey,_Illinois
## 15719                                                     Harvey,_Illinois
## 15720                                                     Harvey,_Illinois
## 15721                                                     Harvey,_Illinois
## 15722                                                     Harvey,_Illinois
## 15723                                                     Harvey,_Illinois
## 15724                                                     Harvey,_Illinois
## 15725                                                     Harvey,_Illinois
## 15726                                                     Harvey,_Illinois
## 15727                                                     Harvey,_Illinois
## 15728                                                     Harvey,_Illinois
## 15729                                                     Harvey,_Illinois
## 15730                                                     Harvey,_Illinois
## 15731                                                     Harvey,_Illinois
## 15732                                                     Harvey,_Illinois
## 15733                                                     Harvey,_Illinois
## 15734                                                     Harvey,_Illinois
## 15735                                                     Harvey,_Illinois
## 15736                                                     Harvey,_Illinois
## 15737                                                     Harvey,_Illinois
## 15738                                                     Harvey,_Illinois
## 15739                                                     Harvey,_Illinois
## 15740                                                     Harvey,_Illinois
## 15741                                                     Harvey,_Illinois
## 15742                                                     Harvey,_Illinois
## 15743                                                     Harvey,_Illinois
## 15744                                                     Harvey,_Illinois
## 15745                                                     Harvey,_Illinois
## 15746                                                     Harvey,_Illinois
## 15747                                                     Harvey,_Illinois
## 15748                                                     Harvey,_Illinois
## 15749                                                     Harvey,_Illinois
## 15750                                                     Harvey,_Illinois
## 15751                                                     Harvey,_Illinois
## 15752                                                     Harvey,_Illinois
## 15753                                                     Harvey,_Illinois
## 15754                                                     Harvey,_Illinois
## 15755                                                     Harvey,_Illinois
## 15756                                                     Harvey,_Illinois
## 15757                                                     Harvey,_Illinois
## 15758                                                     Harvey,_Illinois
## 15759                                                     Harvey,_Illinois
## 15760                                           Indian_Head_Park,_Illinois
## 15761                                           Indian_Head_Park,_Illinois
## 15762                                           Indian_Head_Park,_Illinois
## 15763                                           Indian_Head_Park,_Illinois
## 15764                                           Indian_Head_Park,_Illinois
## 15765                                           Indian_Head_Park,_Illinois
## 15766                                           Indian_Head_Park,_Illinois
## 15767                                           Indian_Head_Park,_Illinois
## 15768                                           Indian_Head_Park,_Illinois
## 15769                                           Indian_Head_Park,_Illinois
## 15770                                           Indian_Head_Park,_Illinois
## 15771                                           Indian_Head_Park,_Illinois
## 15772                                           Indian_Head_Park,_Illinois
## 15773                                           Indian_Head_Park,_Illinois
## 15774                                           Indian_Head_Park,_Illinois
## 15775                                           Indian_Head_Park,_Illinois
## 15776                                           Indian_Head_Park,_Illinois
## 15777                                           Indian_Head_Park,_Illinois
## 15778                                           Indian_Head_Park,_Illinois
## 15779                                           Indian_Head_Park,_Illinois
## 15780                                           Indian_Head_Park,_Illinois
## 15781                                           Indian_Head_Park,_Illinois
## 15782                                           Indian_Head_Park,_Illinois
## 15783                                           Indian_Head_Park,_Illinois
## 15784                                           Indian_Head_Park,_Illinois
## 15785                                           Indian_Head_Park,_Illinois
## 15786                                           Indian_Head_Park,_Illinois
## 15787                                           Indian_Head_Park,_Illinois
## 15788                                           Indian_Head_Park,_Illinois
## 15789                                           Indian_Head_Park,_Illinois
## 15790                                           Indian_Head_Park,_Illinois
## 15791                                           Indian_Head_Park,_Illinois
## 15792                                           Indian_Head_Park,_Illinois
## 15793                                           Indian_Head_Park,_Illinois
## 15794                                           Indian_Head_Park,_Illinois
## 15795                                           Indian_Head_Park,_Illinois
## 15796                                           Indian_Head_Park,_Illinois
## 15797                                           Indian_Head_Park,_Illinois
## 15798                                           Indian_Head_Park,_Illinois
## 15799                                           Indian_Head_Park,_Illinois
## 15800                                           Indian_Head_Park,_Illinois
## 15801                                           Indian_Head_Park,_Illinois
## 15802                                           Indian_Head_Park,_Illinois
## 15803                                           Indian_Head_Park,_Illinois
## 15804                                                 Palos_Park,_Illinois
## 15805                                                 Palos_Park,_Illinois
## 15806                                                 Palos_Park,_Illinois
## 15807                                                 Palos_Park,_Illinois
## 15808                                                 Palos_Park,_Illinois
## 15809                                                 Palos_Park,_Illinois
## 15810                                                 Palos_Park,_Illinois
## 15811                                                 Palos_Park,_Illinois
## 15812                                                 Palos_Park,_Illinois
## 15813                                                 Palos_Park,_Illinois
## 15814                                                 Palos_Park,_Illinois
## 15815                                                 Palos_Park,_Illinois
## 15816                                                 Palos_Park,_Illinois
## 15817                                                 Palos_Park,_Illinois
## 15818                                                 Palos_Park,_Illinois
## 15819                                                 Palos_Park,_Illinois
## 15820                                                 Palos_Park,_Illinois
## 15821                                                 Palos_Park,_Illinois
## 15822                                                 Palos_Park,_Illinois
## 15823                                                 Palos_Park,_Illinois
## 15824                                                 Palos_Park,_Illinois
## 15825                                                 Palos_Park,_Illinois
## 15826                                                 Palos_Park,_Illinois
## 15827                                                 Palos_Park,_Illinois
## 15828                                                 Palos_Park,_Illinois
## 15829                                                 Palos_Park,_Illinois
## 15830                                                 Palos_Park,_Illinois
## 15831                                                 Palos_Park,_Illinois
## 15832                                                 Palos_Park,_Illinois
## 15833                                                 Palos_Park,_Illinois
## 15834                                                 Palos_Park,_Illinois
## 15835                                                 Palos_Park,_Illinois
## 15836                                                 Palos_Park,_Illinois
## 15837                                                 Palos_Park,_Illinois
## 15838                                                 Palos_Park,_Illinois
## 15839                                                 Palos_Park,_Illinois
## 15840                                                 Palos_Park,_Illinois
## 15841                                                 Palos_Park,_Illinois
## 15842                                                 Palos_Park,_Illinois
## 15843                                                 Palos_Park,_Illinois
## 15844                                                 Palos_Park,_Illinois
## 15845                                                 Palos_Park,_Illinois
## 15846                                                             Pyroxene
## 15847                                                             Pyroxene
## 15848                                                             Pyroxene
## 15849                                                             Pyroxene
## 15850                                                             Pyroxene
## 15851                                                             Pyroxene
## 15852                                                             Pyroxene
## 15853                                                             Pyroxene
## 15854                                                             Pyroxene
## 15855                                                             Pyroxene
## 15856                                                             Pyroxene
## 15857                                                             Pyroxene
## 15858                                                             Pyroxene
## 15859                                                             Pyroxene
## 15860                                                             Pyroxene
## 15861                                                             Pyroxene
## 15862                                                             Pyroxene
## 15863                                                             Pyroxene
## 15864                                                             Pyroxene
## 15865                                                             Pyroxene
## 15866                                                             Pyroxene
## 15867                                                             Pyroxene
## 15868                                                             Pyroxene
## 15869                                                             Pyroxene
## 15870                                                             Pyroxene
## 15871                                                             Pyroxene
## 15872                                                             Pyroxene
## 15873                                                             Pyroxene
## 15874                                                             Pyroxene
## 15875                                                             Pyroxene
## 15876                                                             Pyroxene
## 15877                                                             Pyroxene
## 15878                                                             Pyroxene
## 15879                                                             Pyroxene
## 15880                                                             Pyroxene
## 15881                                                             Pyroxene
## 15882                                                             Pyroxene
## 15883                                                             Pyroxene
## 15884                                                             Pyroxene
## 15885                                                             Pyroxene
## 15886                                                             Pyroxene
## 15887                                                             Pyroxene
## 15888                                                             Pyroxene
## 15889                                                             Pyroxene
## 15890                                                             Pyroxene
## 15891                                                             Pyroxene
## 15892                                                             Pyroxene
## 15893                                                             Pyroxene
## 15894                                                             Pyroxene
## 15895                                                             Pyroxene
## 15896                                                             Pyroxene
## 15897                                                             Pyroxene
## 15898                                                             Pyroxene
## 15899                                                             Pyroxene
## 15900                                                             Pyroxene
## 15901                                                             Pyroxene
## 15902                                                             Pyroxene
## 15903                                                             Pyroxene
## 15904                                                             Pyroxene
## 15905                                                             Pyroxene
## 15906                                                             Pyroxene
## 15907                                                             Pyroxene
## 15908                                                             Pyroxene
## 15909                                                             Pyroxene
## 15910                                                             Pyroxene
## 15911                                                             Pyroxene
## 15912                                                             Pyroxene
## 15913                                                             Pyroxene
## 15914                                                             Pyroxene
## 15915                                                             Pyroxene
## 15916                                                             Pyroxene
## 15917                                                             Pyroxene
## 15918                                                             Pyroxene
## 15919                                                             Pyroxene
## 15920                                                             Pyroxene
## 15921                                                             Pyroxene
## 15922                                                             Pyroxene
## 15923                                                             Pyroxene
## 15924                                                             Pyroxene
## 15925                                                             Pyroxene
## 15926                                                             Pyroxene
## 15927                                                             Pyroxene
## 15928                                                             Pyroxene
## 15929                                                             Pyroxene
## 15930                                                             Pyroxene
## 15931                                                             Pyroxene
## 15932                                                             Pyroxene
## 15933                                                             Pyroxene
## 15934                                                             Pyroxene
## 15935                                                             Pyroxene
## 15936                                                             Pyroxene
## 15937                                                             Pyroxene
## 15938                                                             Pyroxene
## 15939                                                             Pyroxene
## 15940                                                             Pyroxene
## 15941                                                             Pyroxene
## 15942                                                             Pyroxene
## 15943                                                             Pyroxene
## 15944                                                      Lomax,_Illinois
## 15945                                                      Lomax,_Illinois
## 15946                                                      Lomax,_Illinois
## 15947                                                      Lomax,_Illinois
## 15948                                                      Lomax,_Illinois
## 15949                                                      Lomax,_Illinois
## 15950                                                      Lomax,_Illinois
## 15951                                                      Lomax,_Illinois
## 15952                                                      Lomax,_Illinois
## 15953                                                      Lomax,_Illinois
## 15954                                                      Lomax,_Illinois
## 15955                                                      Lomax,_Illinois
## 15956                                                      Lomax,_Illinois
## 15957                                                      Lomax,_Illinois
## 15958                                                      Lomax,_Illinois
## 15959                                                      Lomax,_Illinois
## 15960                                                      Lomax,_Illinois
## 15961                                                      Lomax,_Illinois
## 15962                                                   St._Anne,_Illinois
## 15963                                                   St._Anne,_Illinois
## 15964                                                   St._Anne,_Illinois
## 15965                                                   St._Anne,_Illinois
## 15966                                                   St._Anne,_Illinois
## 15967                                                   St._Anne,_Illinois
## 15968                                                   St._Anne,_Illinois
## 15969                                                   St._Anne,_Illinois
## 15970                                                   St._Anne,_Illinois
## 15971                                                   St._Anne,_Illinois
## 15972                                                   St._Anne,_Illinois
## 15973                                                   St._Anne,_Illinois
## 15974                                                   St._Anne,_Illinois
## 15975                                                   St._Anne,_Illinois
## 15976                                                   St._Anne,_Illinois
## 15977                                                   St._Anne,_Illinois
## 15978                                                   St._Anne,_Illinois
## 15979                                                   St._Anne,_Illinois
## 15980                                                   St._Anne,_Illinois
## 15981                                                Cedar_Point,_Illinois
## 15982                                                Cedar_Point,_Illinois
## 15983                                                Cedar_Point,_Illinois
## 15984                                                Cedar_Point,_Illinois
## 15985                                                Cedar_Point,_Illinois
## 15986                                                Cedar_Point,_Illinois
## 15987                                                Cedar_Point,_Illinois
## 15988                                                Cedar_Point,_Illinois
## 15989                                                Cedar_Point,_Illinois
## 15990                                                Cedar_Point,_Illinois
## 15991                                                Cedar_Point,_Illinois
## 15992                                                Cedar_Point,_Illinois
## 15993                                                Cedar_Point,_Illinois
## 15994                                                Cedar_Point,_Illinois
## 15995                                                Cedar_Point,_Illinois
## 15996                                                Cedar_Point,_Illinois
## 15997                                                Cedar_Point,_Illinois
## 15998                                                Cedar_Point,_Illinois
## 15999                                                Cedar_Point,_Illinois
## 16000                                                Cedar_Point,_Illinois
## 16001                                                Cedar_Point,_Illinois
## 16002                                                Cedar_Point,_Illinois
## 16003                                                Cedar_Point,_Illinois
## 16004                                                Cedar_Point,_Illinois
## 16005                                                Cedar_Point,_Illinois
## 16006                                                Cedar_Point,_Illinois
## 16007                                                Cedar_Point,_Illinois
## 16008                                                Cedar_Point,_Illinois
## 16009                                                Cedar_Point,_Illinois
## 16010                                                Cedar_Point,_Illinois
## 16011                                                Cedar_Point,_Illinois
## 16012                                                Cedar_Point,_Illinois
## 16013                                                       Dana,_Illinois
## 16014                                                       Dana,_Illinois
## 16015                                                       Dana,_Illinois
## 16016                                                       Dana,_Illinois
## 16017                                                       Dana,_Illinois
## 16018                                                       Dana,_Illinois
## 16019                                                       Dana,_Illinois
## 16020                                                       Dana,_Illinois
## 16021                                                       Dana,_Illinois
## 16022                                                       Dana,_Illinois
## 16023                                                       Dana,_Illinois
## 16024                                                       Dana,_Illinois
## 16025                                                       Dana,_Illinois
## 16026                                                       Dana,_Illinois
## 16027                                                       Dana,_Illinois
## 16028                                                       Dana,_Illinois
## 16029                                                       Dana,_Illinois
## 16030                                                       Dana,_Illinois
## 16031                                                       Dana,_Illinois
## 16032                                                     Irving,_Illinois
## 16033                                                     Irving,_Illinois
## 16034                                                     Irving,_Illinois
## 16035                                                     Irving,_Illinois
## 16036                                                     Irving,_Illinois
## 16037                                                     Irving,_Illinois
## 16038                                                     Irving,_Illinois
## 16039                                                     Irving,_Illinois
## 16040                                                     Irving,_Illinois
## 16041                                                     Irving,_Illinois
## 16042                                                     Irving,_Illinois
## 16043                                                     Irving,_Illinois
## 16044                                                     Irving,_Illinois
## 16045                                                     Irving,_Illinois
## 16046                                                     Irving,_Illinois
## 16047                                                     Irving,_Illinois
## 16048                                                     Irving,_Illinois
## 16049                                                     Irving,_Illinois
## 16050                                                Dalton_City,_Illinois
## 16051                                                Dalton_City,_Illinois
## 16052                                                Dalton_City,_Illinois
## 16053                                                Dalton_City,_Illinois
## 16054                                                Dalton_City,_Illinois
## 16055                                                Dalton_City,_Illinois
## 16056                                                Dalton_City,_Illinois
## 16057                                                Dalton_City,_Illinois
## 16058                                                Dalton_City,_Illinois
## 16059                                                Dalton_City,_Illinois
## 16060                                                Dalton_City,_Illinois
## 16061                                                Dalton_City,_Illinois
## 16062                                                Dalton_City,_Illinois
## 16063                                                Dalton_City,_Illinois
## 16064                                                Dalton_City,_Illinois
## 16065                                                Dalton_City,_Illinois
## 16066                                                Dalton_City,_Illinois
## 16067                                                Dalton_City,_Illinois
## 16068                                                Dalton_City,_Illinois
## 16069                                                Dalton_City,_Illinois
## 16070                                                Dalton_City,_Illinois
## 16071                                                Dalton_City,_Illinois
## 16072                                                Dalton_City,_Illinois
## 16073                                                Dalton_City,_Illinois
## 16074                                                Dalton_City,_Illinois
## 16075                                                Dalton_City,_Illinois
## 16076                                              Pleasant_Hill,_Illinois
## 16077                                              Pleasant_Hill,_Illinois
## 16078                                              Pleasant_Hill,_Illinois
## 16079                                              Pleasant_Hill,_Illinois
## 16080                                              Pleasant_Hill,_Illinois
## 16081                                              Pleasant_Hill,_Illinois
## 16082                                              Pleasant_Hill,_Illinois
## 16083                                              Pleasant_Hill,_Illinois
## 16084                                              Pleasant_Hill,_Illinois
## 16085                                              Pleasant_Hill,_Illinois
## 16086                                              Pleasant_Hill,_Illinois
## 16087                                              Pleasant_Hill,_Illinois
## 16088                                              Pleasant_Hill,_Illinois
## 16089                                              Pleasant_Hill,_Illinois
## 16090                                              Pleasant_Hill,_Illinois
## 16091                                              Pleasant_Hill,_Illinois
## 16092                                              Pleasant_Hill,_Illinois
## 16093                                              Pleasant_Hill,_Illinois
## 16094                                              Pleasant_Hill,_Illinois
## 16095                                              Pleasant_Hill,_Illinois
## 16096                                                    Buffalo,_Illinois
## 16097                                                    Buffalo,_Illinois
## 16098                                                    Buffalo,_Illinois
## 16099                                                    Buffalo,_Illinois
## 16100                                                    Buffalo,_Illinois
## 16101                                                    Buffalo,_Illinois
## 16102                                                    Buffalo,_Illinois
## 16103                                                    Buffalo,_Illinois
## 16104                                                    Buffalo,_Illinois
## 16105                                                    Buffalo,_Illinois
## 16106                                                    Buffalo,_Illinois
## 16107                                                    Buffalo,_Illinois
## 16108                                                    Buffalo,_Illinois
## 16109                                                    Buffalo,_Illinois
## 16110                                                    Buffalo,_Illinois
## 16111                                                    Buffalo,_Illinois
## 16112                                                    Buffalo,_Illinois
## 16113                                                    Buffalo,_Illinois
## 16114                                                    Buffalo,_Illinois
## 16115                                                    Buffalo,_Illinois
## 16116                                                    Buffalo,_Illinois
## 16117                                                    Buffalo,_Illinois
## 16118                                                    Buffalo,_Illinois
## 16119                                                    Buffalo,_Illinois
## 16120                                                    Buffalo,_Illinois
## 16121                                                       Flora,_Indiana
## 16122                                                       Flora,_Indiana
## 16123                                                       Flora,_Indiana
## 16124                                                       Flora,_Indiana
## 16125                                                       Flora,_Indiana
## 16126                                                       Flora,_Indiana
## 16127                                                       Flora,_Indiana
## 16128                                                       Flora,_Indiana
## 16129                                                       Flora,_Indiana
## 16130                                                       Flora,_Indiana
## 16131                                                       Flora,_Indiana
## 16132                                                       Flora,_Indiana
## 16133                                                       Flora,_Indiana
## 16134                                                       Flora,_Indiana
## 16135                                                       Flora,_Indiana
## 16136                                                       Flora,_Indiana
## 16137                                                       Flora,_Indiana
## 16138                                                       Flora,_Indiana
## 16139                                                       Flora,_Indiana
## 16140                                                       Flora,_Indiana
## 16141                                                       Flora,_Indiana
## 16142                                                       Flora,_Indiana
## 16143                                                       Flora,_Indiana
## 16144                                                       Flora,_Indiana
## 16145                                                       Flora,_Indiana
## 16146                                                       Flora,_Indiana
## 16147                                                       Flora,_Indiana
## 16148                                                      Patoka,_Indiana
## 16149                                                      Patoka,_Indiana
## 16150                                                      Patoka,_Indiana
## 16151                                                      Patoka,_Indiana
## 16152                                                      Patoka,_Indiana
## 16153                                                      Patoka,_Indiana
## 16154                                                      Patoka,_Indiana
## 16155                                                      Patoka,_Indiana
## 16156                                                      Patoka,_Indiana
## 16157                                                      Patoka,_Indiana
## 16158                                                      Patoka,_Indiana
## 16159                                                      Patoka,_Indiana
## 16160                                                      Patoka,_Indiana
## 16161                                                      Patoka,_Indiana
## 16162                                                      Patoka,_Indiana
## 16163                                                      Patoka,_Indiana
## 16164                                                      Patoka,_Indiana
## 16165                                                      Patoka,_Indiana
## 16166                                                      Patoka,_Indiana
## 16167                                                      Patoka,_Indiana
## 16168                                                      Patoka,_Indiana
## 16169                                                   Jonesboro,_Indiana
## 16170                                                   Jonesboro,_Indiana
## 16171                                                   Jonesboro,_Indiana
## 16172                                                   Jonesboro,_Indiana
## 16173                                                   Jonesboro,_Indiana
## 16174                                                   Jonesboro,_Indiana
## 16175                                                   Jonesboro,_Indiana
## 16176                                                   Jonesboro,_Indiana
## 16177                                                   Jonesboro,_Indiana
## 16178                                                   Jonesboro,_Indiana
## 16179                                                   Jonesboro,_Indiana
## 16180                                                   Jonesboro,_Indiana
## 16181                                                   Jonesboro,_Indiana
## 16182                                                   Jonesboro,_Indiana
## 16183                                                   Jonesboro,_Indiana
## 16184                                                   Jonesboro,_Indiana
## 16185                                                   Jonesboro,_Indiana
## 16186                                                   Jonesboro,_Indiana
## 16187                                                   Jonesboro,_Indiana
## 16188                                                   Jonesboro,_Indiana
## 16189                                                   Jonesboro,_Indiana
## 16190                                                   Jonesboro,_Indiana
## 16191                                                   Jonesboro,_Indiana
## 16192                                                   Jonesboro,_Indiana
## 16193                                                   Jonesboro,_Indiana
## 16194                                                   Jonesboro,_Indiana
## 16195                                                   Jonesboro,_Indiana
## 16196                                                   Jonesboro,_Indiana
## 16197                                                   Jonesboro,_Indiana
## 16198                                                      Hobart,_Indiana
## 16199                                                      Hobart,_Indiana
## 16200                                                      Hobart,_Indiana
## 16201                                                      Hobart,_Indiana
## 16202                                                      Hobart,_Indiana
## 16203                                                      Hobart,_Indiana
## 16204                                                      Hobart,_Indiana
## 16205                                                      Hobart,_Indiana
## 16206                                                      Hobart,_Indiana
## 16207                                                      Hobart,_Indiana
## 16208                                                      Hobart,_Indiana
## 16209                                                      Hobart,_Indiana
## 16210                                                      Hobart,_Indiana
## 16211                                                      Hobart,_Indiana
## 16212                                                      Hobart,_Indiana
## 16213                                                      Hobart,_Indiana
## 16214                                                      Hobart,_Indiana
## 16215                                                      Hobart,_Indiana
## 16216                                                      Hobart,_Indiana
## 16217                                                      Hobart,_Indiana
## 16218                                                      Hobart,_Indiana
## 16219                                                      Hobart,_Indiana
## 16220                                                      Hobart,_Indiana
## 16221                                                      Hobart,_Indiana
## 16222                                                      Hobart,_Indiana
## 16223                                                      Hobart,_Indiana
## 16224                                                      Hobart,_Indiana
## 16225                                                      Hobart,_Indiana
## 16226                                                      Hobart,_Indiana
## 16227                                                      Hobart,_Indiana
## 16228                                                      Hobart,_Indiana
## 16229                                                      Hobart,_Indiana
## 16230                                                      Hobart,_Indiana
## 16231                                                      Hobart,_Indiana
## 16232                                                      Hobart,_Indiana
## 16233                                                      Hobart,_Indiana
## 16234                                                      Hobart,_Indiana
## 16235                                                      Hobart,_Indiana
## 16236                                                      Hobart,_Indiana
## 16237                                                      Hobart,_Indiana
## 16238                                                      Hobart,_Indiana
## 16239                                                      Hobart,_Indiana
## 16240                                                      Hobart,_Indiana
## 16241                                                      Hobart,_Indiana
## 16242                                                      Hobart,_Indiana
## 16243                                                      Hobart,_Indiana
## 16244                                                      Hobart,_Indiana
## 16245                                                      Hobart,_Indiana
## 16246                                                      Hobart,_Indiana
## 16247                                                      Hobart,_Indiana
## 16248                                                      Hobart,_Indiana
## 16249                                                      Hobart,_Indiana
## 16250                                                      Hobart,_Indiana
## 16251                                                      Hobart,_Indiana
## 16252                                                      Hobart,_Indiana
## 16253                                                      Hobart,_Indiana
## 16254                                                      Hobart,_Indiana
## 16255                                                      Hobart,_Indiana
## 16256                                                      Hobart,_Indiana
## 16257                                                      Hobart,_Indiana
## 16258                                                      Hobart,_Indiana
## 16259                                                      Hobart,_Indiana
## 16260                                                      Hobart,_Indiana
## 16261                                                      Hobart,_Indiana
## 16262                                                      Hobart,_Indiana
## 16263                                                      Hobart,_Indiana
## 16264                                                      Hobart,_Indiana
## 16265                                                      Hobart,_Indiana
## 16266                                                      Hobart,_Indiana
## 16267                                                      Hobart,_Indiana
## 16268                                                      Hobart,_Indiana
## 16269                                                      Hobart,_Indiana
## 16270                                                      Hobart,_Indiana
## 16271                                                      Hobart,_Indiana
## 16272                                                      Hobart,_Indiana
## 16273                                                      Hobart,_Indiana
## 16274                                                      Hobart,_Indiana
## 16275                                                      Hobart,_Indiana
## 16276                                                      Hobart,_Indiana
## 16277                                                      Hobart,_Indiana
## 16278                                                      Hobart,_Indiana
## 16279                                                      Hobart,_Indiana
## 16280                                                      Hobart,_Indiana
## 16281                                                      Hobart,_Indiana
## 16282                                                      Hobart,_Indiana
## 16283                                                      Hobart,_Indiana
## 16284                                                      Hobart,_Indiana
## 16285                                                      Hobart,_Indiana
## 16286                                                      Hobart,_Indiana
## 16287                                                      Hobart,_Indiana
## 16288                                                      Hobart,_Indiana
## 16289                                                      Hobart,_Indiana
## 16290                                                      Hobart,_Indiana
## 16291                                                      Hobart,_Indiana
## 16292                                                      Hobart,_Indiana
## 16293                                                      Hobart,_Indiana
## 16294                                                      Hobart,_Indiana
## 16295                                                      Hobart,_Indiana
## 16296                                                      Hobart,_Indiana
## 16297                                                      Hobart,_Indiana
## 16298                                                      Hobart,_Indiana
## 16299                                                      Hobart,_Indiana
## 16300                                                      Hobart,_Indiana
## 16301                                                      Hobart,_Indiana
## 16302                                                      Hobart,_Indiana
## 16303                                                      Hobart,_Indiana
## 16304                                                      Hobart,_Indiana
## 16305                                                      Hobart,_Indiana
## 16306                                                      Hobart,_Indiana
## 16307                                                      Hobart,_Indiana
## 16308                                                      Hobart,_Indiana
## 16309                                                      Hobart,_Indiana
## 16310                                                      Hobart,_Indiana
## 16311                                                      Hobart,_Indiana
## 16312                                                      Hobart,_Indiana
## 16313                                                      Hobart,_Indiana
## 16314                                                      Hobart,_Indiana
## 16315                                                      Hobart,_Indiana
## 16316                                                      Hobart,_Indiana
## 16317                                                      Hobart,_Indiana
## 16318                                                      Hobart,_Indiana
## 16319                                                      Hobart,_Indiana
## 16320                                                      Hobart,_Indiana
## 16321                                                      Hobart,_Indiana
## 16322                                                      Hobart,_Indiana
## 16323                                                      Hobart,_Indiana
## 16324                                                      Hobart,_Indiana
## 16325                                                      Hobart,_Indiana
## 16326                                                      Hobart,_Indiana
## 16327                                                      Hobart,_Indiana
## 16328                                                      Hobart,_Indiana
## 16329                                                      Hobart,_Indiana
## 16330                                                      Hobart,_Indiana
## 16331                                                      Hobart,_Indiana
## 16332                                                      Hobart,_Indiana
## 16333                                                      Hobart,_Indiana
## 16334                                                      Hobart,_Indiana
## 16335                                                      Hobart,_Indiana
## 16336                                                      Hobart,_Indiana
## 16337                                                      Hobart,_Indiana
## 16338                                                      Hobart,_Indiana
## 16339                                                      Hobart,_Indiana
## 16340                                                      Hobart,_Indiana
## 16341                                                      Hobart,_Indiana
## 16342                                                      Hobart,_Indiana
## 16343                                                      Hobart,_Indiana
## 16344                                                      Hobart,_Indiana
## 16345                                                      Hobart,_Indiana
## 16346                                                      Hobart,_Indiana
## 16347                                                      Hobart,_Indiana
## 16348                                                      Hobart,_Indiana
## 16349                                                      Hobart,_Indiana
## 16350                                                      Hobart,_Indiana
## 16351                                                      Hobart,_Indiana
## 16352                                                      Hobart,_Indiana
## 16353                                                      Hobart,_Indiana
## 16354                                                      Hobart,_Indiana
## 16355                                                      Hobart,_Indiana
## 16356                                                      Hobart,_Indiana
## 16357                                                      Hobart,_Indiana
## 16358                                                      Hobart,_Indiana
## 16359                                                      Hobart,_Indiana
## 16360                                                      Hobart,_Indiana
## 16361                                                      Hobart,_Indiana
## 16362                                                      Hobart,_Indiana
## 16363                                                      Hobart,_Indiana
## 16364                                                      Hobart,_Indiana
## 16365                                                      Hobart,_Indiana
## 16366                                                      Hobart,_Indiana
## 16367                                                      Hobart,_Indiana
## 16368                                                      Hobart,_Indiana
## 16369                                                      Hobart,_Indiana
## 16370                                                      Hobart,_Indiana
## 16371                                                      Hobart,_Indiana
## 16372                                                      Hobart,_Indiana
## 16373                                                      Hobart,_Indiana
## 16374                                                      Hobart,_Indiana
## 16375                                                      Hobart,_Indiana
## 16376                                                      Hobart,_Indiana
## 16377                                                      Hobart,_Indiana
## 16378                                                      Hobart,_Indiana
## 16379                                                      Hobart,_Indiana
## 16380                                                      Hobart,_Indiana
## 16381                                                      Hobart,_Indiana
## 16382                                                      Hobart,_Indiana
## 16383                                                      Hobart,_Indiana
## 16384                                                      Hobart,_Indiana
## 16385                                                      Hobart,_Indiana
## 16386                                                      Hobart,_Indiana
## 16387                                                      Hobart,_Indiana
## 16388                                                      Hobart,_Indiana
## 16389                                                      Hobart,_Indiana
## 16390                                                      Hobart,_Indiana
## 16391                                                      Hobart,_Indiana
## 16392                                                      Hobart,_Indiana
## 16393                                                      Hobart,_Indiana
## 16394                                                      Hobart,_Indiana
## 16395                                                 Stinesville,_Indiana
## 16396                                                 Stinesville,_Indiana
## 16397                                                 Stinesville,_Indiana
## 16398                                                 Stinesville,_Indiana
## 16399                                                 Stinesville,_Indiana
## 16400                                                 Stinesville,_Indiana
## 16401                                                 Stinesville,_Indiana
## 16402                                                 Stinesville,_Indiana
## 16403                                                 Stinesville,_Indiana
## 16404                                                 Stinesville,_Indiana
## 16405                                                 Stinesville,_Indiana
## 16406                                                 Stinesville,_Indiana
## 16407                                                 Stinesville,_Indiana
## 16408                                                 Stinesville,_Indiana
## 16409                                                 Stinesville,_Indiana
## 16410                                                 Stinesville,_Indiana
## 16411                                                 Stinesville,_Indiana
## 16412                                                 Stinesville,_Indiana
## 16413                                                 Stinesville,_Indiana
## 16414                                                 Stinesville,_Indiana
## 16415                                                 Stinesville,_Indiana
## 16416                                                 Stinesville,_Indiana
## 16417                                                 Stinesville,_Indiana
## 16418                                                 Stinesville,_Indiana
## 16419                                                 Stinesville,_Indiana
## 16420                                                 Stinesville,_Indiana
## 16421                                                 Stinesville,_Indiana
## 16422                                                  Valparaiso,_Indiana
## 16423                                                  Valparaiso,_Indiana
## 16424                                                  Valparaiso,_Indiana
## 16425                                                  Valparaiso,_Indiana
## 16426                                                  Valparaiso,_Indiana
## 16427                                                  Valparaiso,_Indiana
## 16428                                                  Valparaiso,_Indiana
## 16429                                                  Valparaiso,_Indiana
## 16430                                                  Valparaiso,_Indiana
## 16431                                                  Valparaiso,_Indiana
## 16432                                                  Valparaiso,_Indiana
## 16433                                                  Valparaiso,_Indiana
## 16434                                                  Valparaiso,_Indiana
## 16435                                                  Valparaiso,_Indiana
## 16436                                                  Valparaiso,_Indiana
## 16437                                                  Valparaiso,_Indiana
## 16438                                                  Valparaiso,_Indiana
## 16439                                                  Valparaiso,_Indiana
## 16440                                                  Valparaiso,_Indiana
## 16441                                                  Valparaiso,_Indiana
## 16442                                                  Valparaiso,_Indiana
## 16443                                                  Valparaiso,_Indiana
## 16444                                                  Valparaiso,_Indiana
## 16445                                                  Valparaiso,_Indiana
## 16446                                                  Valparaiso,_Indiana
## 16447                                                  Valparaiso,_Indiana
## 16448                                                  Valparaiso,_Indiana
## 16449                                                  Valparaiso,_Indiana
## 16450                                                  Valparaiso,_Indiana
## 16451                                                  Valparaiso,_Indiana
## 16452                                                  Valparaiso,_Indiana
## 16453                                                  Valparaiso,_Indiana
## 16454                                                  Valparaiso,_Indiana
## 16455                                                  Valparaiso,_Indiana
## 16456                                                  Valparaiso,_Indiana
## 16457                                                  Valparaiso,_Indiana
## 16458                                                  Valparaiso,_Indiana
## 16459                                                  Valparaiso,_Indiana
## 16460                                                  Valparaiso,_Indiana
## 16461                                                  Valparaiso,_Indiana
## 16462                                                  Valparaiso,_Indiana
## 16463                                                  Valparaiso,_Indiana
## 16464                                                  Valparaiso,_Indiana
## 16465                                                  Valparaiso,_Indiana
## 16466                                                  Valparaiso,_Indiana
## 16467                                                  Valparaiso,_Indiana
## 16468                                                  Valparaiso,_Indiana
## 16469                                                  Valparaiso,_Indiana
## 16470                                                  Valparaiso,_Indiana
## 16471                                                  Valparaiso,_Indiana
## 16472                                                  Valparaiso,_Indiana
## 16473                                                  Valparaiso,_Indiana
## 16474                                                  Valparaiso,_Indiana
## 16475                                                  Valparaiso,_Indiana
## 16476                                                  Valparaiso,_Indiana
## 16477                                                  Valparaiso,_Indiana
## 16478                                                  Valparaiso,_Indiana
## 16479                                                  Valparaiso,_Indiana
## 16480                                                  Valparaiso,_Indiana
## 16481                                                  Valparaiso,_Indiana
## 16482                                                  Valparaiso,_Indiana
## 16483                                                  Valparaiso,_Indiana
## 16484                                                  Valparaiso,_Indiana
## 16485                                                  Valparaiso,_Indiana
## 16486                                                  Valparaiso,_Indiana
## 16487                                                  Valparaiso,_Indiana
## 16488                                                  Valparaiso,_Indiana
## 16489                                                  Valparaiso,_Indiana
## 16490                                                  Valparaiso,_Indiana
## 16491                                                  Valparaiso,_Indiana
## 16492                                                  Valparaiso,_Indiana
## 16493                                                  Valparaiso,_Indiana
## 16494                                                  Valparaiso,_Indiana
## 16495                                                  Valparaiso,_Indiana
## 16496                                                  Valparaiso,_Indiana
## 16497                                                  Valparaiso,_Indiana
## 16498                                                  Valparaiso,_Indiana
## 16499                                                  Valparaiso,_Indiana
## 16500                                                  Valparaiso,_Indiana
## 16501                                                  Valparaiso,_Indiana
## 16502                                                  Valparaiso,_Indiana
## 16503                                                  Valparaiso,_Indiana
## 16504                                                  Valparaiso,_Indiana
## 16505                                                  Valparaiso,_Indiana
## 16506                                                  Valparaiso,_Indiana
## 16507                                                  Valparaiso,_Indiana
## 16508                                                  Valparaiso,_Indiana
## 16509                                                  Valparaiso,_Indiana
## 16510                                                  Valparaiso,_Indiana
## 16511                                                  Valparaiso,_Indiana
## 16512                                                  Valparaiso,_Indiana
## 16513                                                  Valparaiso,_Indiana
## 16514                                                  Valparaiso,_Indiana
## 16515                                                  Valparaiso,_Indiana
## 16516                                                  Valparaiso,_Indiana
## 16517                                                  Valparaiso,_Indiana
## 16518                                                  Valparaiso,_Indiana
## 16519                                                  Valparaiso,_Indiana
## 16520                                                  Valparaiso,_Indiana
## 16521                                                  Valparaiso,_Indiana
## 16522                                                  Valparaiso,_Indiana
## 16523                                                  Valparaiso,_Indiana
## 16524                                                  Valparaiso,_Indiana
## 16525                                                  Valparaiso,_Indiana
## 16526                                                  Valparaiso,_Indiana
## 16527                                                  Valparaiso,_Indiana
## 16528                                                  Valparaiso,_Indiana
## 16529                                                  Valparaiso,_Indiana
## 16530                                                  Valparaiso,_Indiana
## 16531                                                  Valparaiso,_Indiana
## 16532                                                  Valparaiso,_Indiana
## 16533                                                  Valparaiso,_Indiana
## 16534                                                  Valparaiso,_Indiana
## 16535                                                  Valparaiso,_Indiana
## 16536                                                  Valparaiso,_Indiana
## 16537                                                  Valparaiso,_Indiana
## 16538                                                  Valparaiso,_Indiana
## 16539                                                  Valparaiso,_Indiana
## 16540                                                  Valparaiso,_Indiana
## 16541                                                  Valparaiso,_Indiana
## 16542                                                  Valparaiso,_Indiana
## 16543                                                  Valparaiso,_Indiana
## 16544                                                  Valparaiso,_Indiana
## 16545                                                  Valparaiso,_Indiana
## 16546                                                  Valparaiso,_Indiana
## 16547                                                  Valparaiso,_Indiana
## 16548                                                  Valparaiso,_Indiana
## 16549                                                  Valparaiso,_Indiana
## 16550                                                  Valparaiso,_Indiana
## 16551                                                  Valparaiso,_Indiana
## 16552                                                  Valparaiso,_Indiana
## 16553                                                  Valparaiso,_Indiana
## 16554                                                  Valparaiso,_Indiana
## 16555                                                  Valparaiso,_Indiana
## 16556                                                  Valparaiso,_Indiana
## 16557                                                  Valparaiso,_Indiana
## 16558                                                  Valparaiso,_Indiana
## 16559                                                  Valparaiso,_Indiana
## 16560                                                  Valparaiso,_Indiana
## 16561                                                  Valparaiso,_Indiana
## 16562                                                  Valparaiso,_Indiana
## 16563                                                  Valparaiso,_Indiana
## 16564                                                  Valparaiso,_Indiana
## 16565                                                  Valparaiso,_Indiana
## 16566                                                  Valparaiso,_Indiana
## 16567                                                  Valparaiso,_Indiana
## 16568                                                  Valparaiso,_Indiana
## 16569                                                  Valparaiso,_Indiana
## 16570                                                  Valparaiso,_Indiana
## 16571                                                  Valparaiso,_Indiana
## 16572                                                  Valparaiso,_Indiana
## 16573                                                  Valparaiso,_Indiana
## 16574                                                  Valparaiso,_Indiana
## 16575                                                  Valparaiso,_Indiana
## 16576                                                  Valparaiso,_Indiana
## 16577                                                  Valparaiso,_Indiana
## 16578                                                  Valparaiso,_Indiana
## 16579                                                  Valparaiso,_Indiana
## 16580                                                  Valparaiso,_Indiana
## 16581                                                  Valparaiso,_Indiana
## 16582                                                  Valparaiso,_Indiana
## 16583                                                  Valparaiso,_Indiana
## 16584                                                  Valparaiso,_Indiana
## 16585                                                  Valparaiso,_Indiana
## 16586                                                  Valparaiso,_Indiana
## 16587                                                  Valparaiso,_Indiana
## 16588                                                  Valparaiso,_Indiana
## 16589                                                  Valparaiso,_Indiana
## 16590                                                  Valparaiso,_Indiana
## 16591                                                  Valparaiso,_Indiana
## 16592                                                  Valparaiso,_Indiana
## 16593                                                  Valparaiso,_Indiana
## 16594                                                  Valparaiso,_Indiana
## 16595                                                  Valparaiso,_Indiana
## 16596                                                  Valparaiso,_Indiana
## 16597                                                  Valparaiso,_Indiana
## 16598                                                  Valparaiso,_Indiana
## 16599                                                  Valparaiso,_Indiana
## 16600                                                  Valparaiso,_Indiana
## 16601                                                  Valparaiso,_Indiana
## 16602                                                  Valparaiso,_Indiana
## 16603                                                  Valparaiso,_Indiana
## 16604                                                  Valparaiso,_Indiana
## 16605                                                  Valparaiso,_Indiana
## 16606                                                  Valparaiso,_Indiana
## 16607                                                  Valparaiso,_Indiana
## 16608                                                  Valparaiso,_Indiana
## 16609                                                  Valparaiso,_Indiana
## 16610                                                  Valparaiso,_Indiana
## 16611                                                  Valparaiso,_Indiana
## 16612                                                  Valparaiso,_Indiana
## 16613                                                  Valparaiso,_Indiana
## 16614                                                  Valparaiso,_Indiana
## 16615                                                  Valparaiso,_Indiana
## 16616                                                  Valparaiso,_Indiana
## 16617                                                  Valparaiso,_Indiana
## 16618                                                  Valparaiso,_Indiana
## 16619                                                  Valparaiso,_Indiana
## 16620                                                  Valparaiso,_Indiana
## 16621                                                  Valparaiso,_Indiana
## 16622                                                  Valparaiso,_Indiana
## 16623                                                  Valparaiso,_Indiana
## 16624                                                  Valparaiso,_Indiana
## 16625                                                  Valparaiso,_Indiana
## 16626                                                  Valparaiso,_Indiana
## 16627                                                  Valparaiso,_Indiana
## 16628                                                  Valparaiso,_Indiana
## 16629                                                  Valparaiso,_Indiana
## 16630                                                  Valparaiso,_Indiana
## 16631                                                  Valparaiso,_Indiana
## 16632                                                  Valparaiso,_Indiana
## 16633                                                  Valparaiso,_Indiana
## 16634                                                  Valparaiso,_Indiana
## 16635                                                  Valparaiso,_Indiana
## 16636                                                  Valparaiso,_Indiana
## 16637                                                  Valparaiso,_Indiana
## 16638                                                  Valparaiso,_Indiana
## 16639                                                  Valparaiso,_Indiana
## 16640                                                  Valparaiso,_Indiana
## 16641                                                  Valparaiso,_Indiana
## 16642                                                  Valparaiso,_Indiana
## 16643                                                  Valparaiso,_Indiana
## 16644                                                  Valparaiso,_Indiana
## 16645                                                  Valparaiso,_Indiana
## 16646                                                  Valparaiso,_Indiana
## 16647                                                  Valparaiso,_Indiana
## 16648                                                  Valparaiso,_Indiana
## 16649                                                  Valparaiso,_Indiana
## 16650                                                  Valparaiso,_Indiana
## 16651                                                  Valparaiso,_Indiana
## 16652                                                  Valparaiso,_Indiana
## 16653                                                  Valparaiso,_Indiana
## 16654                                                  Valparaiso,_Indiana
## 16655                                                  Valparaiso,_Indiana
## 16656                                                  Valparaiso,_Indiana
## 16657                                                  Valparaiso,_Indiana
## 16658                                                  Valparaiso,_Indiana
## 16659                                                  Valparaiso,_Indiana
## 16660                                                  Valparaiso,_Indiana
## 16661                                                  Valparaiso,_Indiana
## 16662                                                  Valparaiso,_Indiana
## 16663                                                  Valparaiso,_Indiana
## 16664                                                  Valparaiso,_Indiana
## 16665                                                  Valparaiso,_Indiana
## 16666                                                  Valparaiso,_Indiana
## 16667                                                 Sharpsville,_Indiana
## 16668                                                 Sharpsville,_Indiana
## 16669                                                 Sharpsville,_Indiana
## 16670                                                 Sharpsville,_Indiana
## 16671                                                 Sharpsville,_Indiana
## 16672                                                 Sharpsville,_Indiana
## 16673                                                 Sharpsville,_Indiana
## 16674                                                 Sharpsville,_Indiana
## 16675                                                 Sharpsville,_Indiana
## 16676                                                 Sharpsville,_Indiana
## 16677                                                 Sharpsville,_Indiana
## 16678                                                 Sharpsville,_Indiana
## 16679                                                 Sharpsville,_Indiana
## 16680                                                 Sharpsville,_Indiana
## 16681                                                 Sharpsville,_Indiana
## 16682                                                 Sharpsville,_Indiana
## 16683                                                 Sharpsville,_Indiana
## 16684                                                 Sharpsville,_Indiana
## 16685                                                 Sharpsville,_Indiana
## 16686                                                 Sharpsville,_Indiana
## 16687                                                 Sharpsville,_Indiana
## 16688                                                 Sharpsville,_Indiana
## 16689                                                 Sharpsville,_Indiana
## 16690                                                 Sharpsville,_Indiana
## 16691                                                 Sharpsville,_Indiana
## 16692                                                 Sharpsville,_Indiana
## 16693                                                 Sharpsville,_Indiana
## 16694                                                 Sharpsville,_Indiana
## 16695                                                 Sharpsville,_Indiana
## 16696                                                 Sharpsville,_Indiana
## 16697                                                 Sharpsville,_Indiana
## 16698                                                 Sharpsville,_Indiana
## 16699                                                 Sharpsville,_Indiana
## 16700                                                 Sharpsville,_Indiana
## 16701                                                 Sharpsville,_Indiana
## 16702                                                 Sharpsville,_Indiana
## 16703                                                 Sharpsville,_Indiana
## 16704                                                 Sharpsville,_Indiana
## 16705                                                 Sharpsville,_Indiana
## 16706                                                 Sharpsville,_Indiana
## 16707                                                 Sharpsville,_Indiana
## 16708                                                 Sharpsville,_Indiana
## 16709                                                 Sharpsville,_Indiana
## 16710                                                 Sharpsville,_Indiana
## 16711                                                 Sharpsville,_Indiana
## 16712                                                 Sharpsville,_Indiana
## 16713                                                 Sharpsville,_Indiana
## 16714                                                 Sharpsville,_Indiana
## 16715                                                 Sharpsville,_Indiana
## 16716                                                 Sharpsville,_Indiana
## 16717                                                 Sharpsville,_Indiana
## 16718                                                 Sharpsville,_Indiana
## 16719                                                 Sharpsville,_Indiana
## 16720                                                 Sharpsville,_Indiana
## 16721                                                 Sharpsville,_Indiana
## 16722                                                 Sharpsville,_Indiana
## 16723                                               Campbellsburg,_Indiana
## 16724                                               Campbellsburg,_Indiana
## 16725                                               Campbellsburg,_Indiana
## 16726                                               Campbellsburg,_Indiana
## 16727                                               Campbellsburg,_Indiana
## 16728                                               Campbellsburg,_Indiana
## 16729                                               Campbellsburg,_Indiana
## 16730                                               Campbellsburg,_Indiana
## 16731                                               Campbellsburg,_Indiana
## 16732                                               Campbellsburg,_Indiana
## 16733                                               Campbellsburg,_Indiana
## 16734                                               Campbellsburg,_Indiana
## 16735                                               Campbellsburg,_Indiana
## 16736                                               Campbellsburg,_Indiana
## 16737                                               Campbellsburg,_Indiana
## 16738                                               Campbellsburg,_Indiana
## 16739                                               Campbellsburg,_Indiana
## 16740                                               Campbellsburg,_Indiana
## 16741                                               Campbellsburg,_Indiana
## 16742                                               Campbellsburg,_Indiana
## 16743                                               Campbellsburg,_Indiana
## 16744                                               Campbellsburg,_Indiana
## 16745                                               Campbellsburg,_Indiana
## 16746                                               Campbellsburg,_Indiana
## 16747                                               Campbellsburg,_Indiana
## 16748                                               Campbellsburg,_Indiana
## 16749                                               Campbellsburg,_Indiana
## 16750                                               Campbellsburg,_Indiana
## 16751                                               Campbellsburg,_Indiana
## 16752                                     Frontline_(Australian_TV_series)
## 16753                                     Frontline_(Australian_TV_series)
## 16754                                     Frontline_(Australian_TV_series)
## 16755                                     Frontline_(Australian_TV_series)
## 16756                                     Frontline_(Australian_TV_series)
## 16757                                     Frontline_(Australian_TV_series)
## 16758                                     Frontline_(Australian_TV_series)
## 16759                                     Frontline_(Australian_TV_series)
## 16760                                     Frontline_(Australian_TV_series)
## 16761                                     Frontline_(Australian_TV_series)
## 16762                                     Frontline_(Australian_TV_series)
## 16763                                     Frontline_(Australian_TV_series)
## 16764                                     Frontline_(Australian_TV_series)
## 16765                                     Frontline_(Australian_TV_series)
## 16766                                     Frontline_(Australian_TV_series)
## 16767                                     Frontline_(Australian_TV_series)
## 16768                                     Frontline_(Australian_TV_series)
## 16769                                     Frontline_(Australian_TV_series)
## 16770                                     Frontline_(Australian_TV_series)
## 16771                                     Frontline_(Australian_TV_series)
## 16772                                     Frontline_(Australian_TV_series)
## 16773                                     Frontline_(Australian_TV_series)
## 16774                                     Frontline_(Australian_TV_series)
## 16775                                     Frontline_(Australian_TV_series)
## 16776                                     Frontline_(Australian_TV_series)
## 16777                                     Frontline_(Australian_TV_series)
## 16778                                     Frontline_(Australian_TV_series)
## 16779                                     Frontline_(Australian_TV_series)
## 16780                                     Frontline_(Australian_TV_series)
## 16781                                     Frontline_(Australian_TV_series)
## 16782                                     Frontline_(Australian_TV_series)
## 16783                                     Frontline_(Australian_TV_series)
## 16784                                     Frontline_(Australian_TV_series)
## 16785                                     Frontline_(Australian_TV_series)
## 16786                                     Frontline_(Australian_TV_series)
## 16787                                     Frontline_(Australian_TV_series)
## 16788                                     Frontline_(Australian_TV_series)
## 16789                                     Frontline_(Australian_TV_series)
## 16790                                     Frontline_(Australian_TV_series)
## 16791                                     Frontline_(Australian_TV_series)
## 16792                                     Frontline_(Australian_TV_series)
## 16793                                     Frontline_(Australian_TV_series)
## 16794                                     Frontline_(Australian_TV_series)
## 16795                                     Frontline_(Australian_TV_series)
## 16796                                     Frontline_(Australian_TV_series)
## 16797                                     Frontline_(Australian_TV_series)
## 16798                                     Frontline_(Australian_TV_series)
## 16799                                     Frontline_(Australian_TV_series)
## 16800                                     Frontline_(Australian_TV_series)
## 16801                                     Frontline_(Australian_TV_series)
## 16802                                     Frontline_(Australian_TV_series)
## 16803                                     Frontline_(Australian_TV_series)
## 16804                                     Frontline_(Australian_TV_series)
## 16805                                     Frontline_(Australian_TV_series)
## 16806                                     Frontline_(Australian_TV_series)
## 16807                                     Frontline_(Australian_TV_series)
## 16808                                     Frontline_(Australian_TV_series)
## 16809                                     Frontline_(Australian_TV_series)
## 16810                                     Frontline_(Australian_TV_series)
## 16811                                     Frontline_(Australian_TV_series)
## 16812                                     Frontline_(Australian_TV_series)
## 16813                                     Frontline_(Australian_TV_series)
## 16814                                     Frontline_(Australian_TV_series)
## 16815                                     Frontline_(Australian_TV_series)
## 16816                                     Frontline_(Australian_TV_series)
## 16817                                     Frontline_(Australian_TV_series)
## 16818                                     Frontline_(Australian_TV_series)
## 16819                                     Frontline_(Australian_TV_series)
## 16820                                     Frontline_(Australian_TV_series)
## 16821                                     Frontline_(Australian_TV_series)
## 16822                                     Frontline_(Australian_TV_series)
## 16823                                     Frontline_(Australian_TV_series)
## 16824                                     Frontline_(Australian_TV_series)
## 16825                                     Frontline_(Australian_TV_series)
## 16826                                     Frontline_(Australian_TV_series)
## 16827                                     Frontline_(Australian_TV_series)
## 16828                                     Frontline_(Australian_TV_series)
## 16829                                     Frontline_(Australian_TV_series)
## 16830                                     Frontline_(Australian_TV_series)
## 16831                                     Frontline_(Australian_TV_series)
## 16832                                     Frontline_(Australian_TV_series)
## 16833                                     Frontline_(Australian_TV_series)
## 16834                                     Frontline_(Australian_TV_series)
## 16835                                     Frontline_(Australian_TV_series)
## 16836                                     Frontline_(Australian_TV_series)
## 16837                                     Frontline_(Australian_TV_series)
## 16838                                     Frontline_(Australian_TV_series)
## 16839                                     Frontline_(Australian_TV_series)
## 16840                                     Frontline_(Australian_TV_series)
## 16841                                     Frontline_(Australian_TV_series)
## 16842                                     Frontline_(Australian_TV_series)
## 16843                                     Frontline_(Australian_TV_series)
## 16844                                     Frontline_(Australian_TV_series)
## 16845                                     Frontline_(Australian_TV_series)
## 16846                                     Frontline_(Australian_TV_series)
## 16847                                     Frontline_(Australian_TV_series)
## 16848                                     Frontline_(Australian_TV_series)
## 16849                                     Frontline_(Australian_TV_series)
## 16850                                     Frontline_(Australian_TV_series)
## 16851                                     Frontline_(Australian_TV_series)
## 16852                                     Frontline_(Australian_TV_series)
## 16853                                     Frontline_(Australian_TV_series)
## 16854                                     Frontline_(Australian_TV_series)
## 16855                                     Frontline_(Australian_TV_series)
## 16856                                     Frontline_(Australian_TV_series)
## 16857                                     Frontline_(Australian_TV_series)
## 16858                                     Frontline_(Australian_TV_series)
## 16859                                     Frontline_(Australian_TV_series)
## 16860                                     Frontline_(Australian_TV_series)
## 16861                                     Frontline_(Australian_TV_series)
## 16862                                     Frontline_(Australian_TV_series)
## 16863                                     Frontline_(Australian_TV_series)
## 16864                                     Frontline_(Australian_TV_series)
## 16865                                     Frontline_(Australian_TV_series)
## 16866                                     Frontline_(Australian_TV_series)
## 16867                                     Frontline_(Australian_TV_series)
## 16868                                     Frontline_(Australian_TV_series)
## 16869                                     Frontline_(Australian_TV_series)
## 16870                                     Frontline_(Australian_TV_series)
## 16871                                     Frontline_(Australian_TV_series)
## 16872                                     Frontline_(Australian_TV_series)
## 16873                                     Frontline_(Australian_TV_series)
## 16874                                     Frontline_(Australian_TV_series)
## 16875                                     Frontline_(Australian_TV_series)
## 16876                                     Frontline_(Australian_TV_series)
## 16877                                     Frontline_(Australian_TV_series)
## 16878                                     Frontline_(Australian_TV_series)
## 16879                                     Frontline_(Australian_TV_series)
## 16880                                     Frontline_(Australian_TV_series)
## 16881                                     Frontline_(Australian_TV_series)
## 16882                                     Frontline_(Australian_TV_series)
## 16883                                     Frontline_(Australian_TV_series)
## 16884                                     Frontline_(Australian_TV_series)
## 16885                                     Frontline_(Australian_TV_series)
## 16886                                     Frontline_(Australian_TV_series)
## 16887                                     Frontline_(Australian_TV_series)
## 16888                                     Frontline_(Australian_TV_series)
## 16889                                     Frontline_(Australian_TV_series)
## 16890                                     Frontline_(Australian_TV_series)
## 16891                                     Frontline_(Australian_TV_series)
## 16892                                     Frontline_(Australian_TV_series)
## 16893                                     Frontline_(Australian_TV_series)
## 16894                                     Frontline_(Australian_TV_series)
## 16895                                     Frontline_(Australian_TV_series)
## 16896                                     Frontline_(Australian_TV_series)
## 16897                                     Frontline_(Australian_TV_series)
## 16898                                     Frontline_(Australian_TV_series)
## 16899                                     Frontline_(Australian_TV_series)
## 16900                                     Frontline_(Australian_TV_series)
## 16901                                     Frontline_(Australian_TV_series)
## 16902                                     Frontline_(Australian_TV_series)
## 16903                                     Frontline_(Australian_TV_series)
## 16904                                     Frontline_(Australian_TV_series)
## 16905                                     Frontline_(Australian_TV_series)
## 16906                                     Frontline_(Australian_TV_series)
## 16907                                     Frontline_(Australian_TV_series)
## 16908                                     Frontline_(Australian_TV_series)
## 16909                                     Frontline_(Australian_TV_series)
## 16910                                     Frontline_(Australian_TV_series)
## 16911                                     Frontline_(Australian_TV_series)
## 16912                                     Frontline_(Australian_TV_series)
## 16913                                     Frontline_(Australian_TV_series)
## 16914                                     Frontline_(Australian_TV_series)
## 16915                                     Frontline_(Australian_TV_series)
## 16916                                     Frontline_(Australian_TV_series)
## 16917                                     Frontline_(Australian_TV_series)
## 16918                                     Frontline_(Australian_TV_series)
## 16919                                     Frontline_(Australian_TV_series)
## 16920                                     Frontline_(Australian_TV_series)
## 16921                                     Frontline_(Australian_TV_series)
## 16922                                     Frontline_(Australian_TV_series)
## 16923                                     Frontline_(Australian_TV_series)
## 16924                                     Frontline_(Australian_TV_series)
## 16925                                     Frontline_(Australian_TV_series)
## 16926                                     Frontline_(Australian_TV_series)
## 16927                                     Frontline_(Australian_TV_series)
## 16928                                     Frontline_(Australian_TV_series)
## 16929                                     Frontline_(Australian_TV_series)
## 16930                                     Frontline_(Australian_TV_series)
## 16931                                     Frontline_(Australian_TV_series)
## 16932                                     Frontline_(Australian_TV_series)
## 16933                                     Frontline_(Australian_TV_series)
## 16934                                     Frontline_(Australian_TV_series)
## 16935                                     Frontline_(Australian_TV_series)
## 16936                                     Frontline_(Australian_TV_series)
## 16937                                     Frontline_(Australian_TV_series)
## 16938                                     Frontline_(Australian_TV_series)
## 16939                                     Frontline_(Australian_TV_series)
## 16940                                     Frontline_(Australian_TV_series)
## 16941                                     Frontline_(Australian_TV_series)
## 16942                                     Frontline_(Australian_TV_series)
## 16943                                     Frontline_(Australian_TV_series)
## 16944                                     Frontline_(Australian_TV_series)
## 16945                                     Frontline_(Australian_TV_series)
## 16946                                     Frontline_(Australian_TV_series)
## 16947                                     Frontline_(Australian_TV_series)
## 16948                                     Frontline_(Australian_TV_series)
## 16949                                     Frontline_(Australian_TV_series)
## 16950                                     Frontline_(Australian_TV_series)
## 16951                                     Frontline_(Australian_TV_series)
## 16952                                     Frontline_(Australian_TV_series)
## 16953                                     Frontline_(Australian_TV_series)
## 16954                                     Frontline_(Australian_TV_series)
## 16955                                     Frontline_(Australian_TV_series)
## 16956                                     Frontline_(Australian_TV_series)
## 16957                                     Frontline_(Australian_TV_series)
## 16958                                     Frontline_(Australian_TV_series)
## 16959                                     Frontline_(Australian_TV_series)
## 16960                                     Frontline_(Australian_TV_series)
## 16961                                     Frontline_(Australian_TV_series)
## 16962                                     Frontline_(Australian_TV_series)
## 16963                                     Frontline_(Australian_TV_series)
## 16964                                     Frontline_(Australian_TV_series)
## 16965                                     Frontline_(Australian_TV_series)
## 16966                                     Frontline_(Australian_TV_series)
## 16967                                     Frontline_(Australian_TV_series)
## 16968                                     Frontline_(Australian_TV_series)
## 16969                                     Frontline_(Australian_TV_series)
## 16970                                     Frontline_(Australian_TV_series)
## 16971                                     Frontline_(Australian_TV_series)
## 16972                                     Frontline_(Australian_TV_series)
## 16973                                     Frontline_(Australian_TV_series)
## 16974                                     Frontline_(Australian_TV_series)
## 16975                                     Frontline_(Australian_TV_series)
## 16976                                     Frontline_(Australian_TV_series)
## 16977                                     Frontline_(Australian_TV_series)
## 16978                                     Frontline_(Australian_TV_series)
## 16979                                     Frontline_(Australian_TV_series)
## 16980                                     Frontline_(Australian_TV_series)
## 16981                                     Frontline_(Australian_TV_series)
## 16982                                     Frontline_(Australian_TV_series)
## 16983                                     Frontline_(Australian_TV_series)
## 16984                                     Frontline_(Australian_TV_series)
## 16985                                     Frontline_(Australian_TV_series)
## 16986                                     Frontline_(Australian_TV_series)
## 16987                                     Frontline_(Australian_TV_series)
## 16988                                     Frontline_(Australian_TV_series)
## 16989                                     Frontline_(Australian_TV_series)
## 16990                                     Frontline_(Australian_TV_series)
## 16991                                     Frontline_(Australian_TV_series)
## 16992                                     Frontline_(Australian_TV_series)
## 16993                                     Frontline_(Australian_TV_series)
## 16994                                     Frontline_(Australian_TV_series)
## 16995                                     Frontline_(Australian_TV_series)
## 16996                                     Frontline_(Australian_TV_series)
## 16997                                     Frontline_(Australian_TV_series)
## 16998                                     Frontline_(Australian_TV_series)
## 16999                                     Frontline_(Australian_TV_series)
## 17000                                     Frontline_(Australian_TV_series)
## 17001                                     Frontline_(Australian_TV_series)
## 17002                                     Frontline_(Australian_TV_series)
## 17003                                     Frontline_(Australian_TV_series)
## 17004                                     Frontline_(Australian_TV_series)
## 17005                                     Frontline_(Australian_TV_series)
## 17006                                     Frontline_(Australian_TV_series)
## 17007                                     Frontline_(Australian_TV_series)
## 17008                                     Frontline_(Australian_TV_series)
## 17009                                     Frontline_(Australian_TV_series)
## 17010                                     Frontline_(Australian_TV_series)
## 17011                                     Frontline_(Australian_TV_series)
## 17012                                     Frontline_(Australian_TV_series)
## 17013                                     Frontline_(Australian_TV_series)
## 17014                                     Frontline_(Australian_TV_series)
## 17015                                     Frontline_(Australian_TV_series)
## 17016                                     Frontline_(Australian_TV_series)
## 17017                                     Frontline_(Australian_TV_series)
## 17018                                     Frontline_(Australian_TV_series)
## 17019                                     Frontline_(Australian_TV_series)
## 17020                                     Frontline_(Australian_TV_series)
## 17021                                     Frontline_(Australian_TV_series)
## 17022                                     Frontline_(Australian_TV_series)
## 17023                                     Frontline_(Australian_TV_series)
## 17024                                     Frontline_(Australian_TV_series)
## 17025                                     Frontline_(Australian_TV_series)
## 17026                                     Frontline_(Australian_TV_series)
## 17027                                     Frontline_(Australian_TV_series)
## 17028                                                       St._Olaf,_Iowa
## 17029                                                       St._Olaf,_Iowa
## 17030                                                       St._Olaf,_Iowa
## 17031                                                       St._Olaf,_Iowa
## 17032                                                       St._Olaf,_Iowa
## 17033                                                       St._Olaf,_Iowa
## 17034                                                       St._Olaf,_Iowa
## 17035                                                       St._Olaf,_Iowa
## 17036                                                       St._Olaf,_Iowa
## 17037                                                       St._Olaf,_Iowa
## 17038                                                       St._Olaf,_Iowa
## 17039                                                       St._Olaf,_Iowa
## 17040                                                       St._Olaf,_Iowa
## 17041                                                       St._Olaf,_Iowa
## 17042                                                       St._Olaf,_Iowa
## 17043                                                       St._Olaf,_Iowa
## 17044                                                       St._Olaf,_Iowa
## 17045                                                       St._Olaf,_Iowa
## 17046                                                       St._Olaf,_Iowa
## 17047                                                       St._Olaf,_Iowa
## 17048                                                       St._Olaf,_Iowa
## 17049                                                       St._Olaf,_Iowa
## 17050                                                       St._Olaf,_Iowa
## 17051                                                       St._Olaf,_Iowa
## 17052                                                       St._Olaf,_Iowa
## 17053                                                       St._Olaf,_Iowa
## 17054                                                       St._Olaf,_Iowa
## 17055                                                       St._Olaf,_Iowa
## 17056                                                       St._Olaf,_Iowa
## 17057                                                       Pontius_Pilate
## 17058                                                       Pontius_Pilate
## 17059                                                       Pontius_Pilate
## 17060                                                       Pontius_Pilate
## 17061                                                       Pontius_Pilate
## 17062                                                       Pontius_Pilate
## 17063                                                       Pontius_Pilate
## 17064                                                       Pontius_Pilate
## 17065                                                       Pontius_Pilate
## 17066                                                       Pontius_Pilate
## 17067                                                       Pontius_Pilate
## 17068                                                       Pontius_Pilate
## 17069                                                       Pontius_Pilate
## 17070                                                       Pontius_Pilate
## 17071                                                       Pontius_Pilate
## 17072                                                       Pontius_Pilate
## 17073                                                       Pontius_Pilate
## 17074                                                       Pontius_Pilate
## 17075                                                       Pontius_Pilate
## 17076                                                       Pontius_Pilate
## 17077                                                       Pontius_Pilate
## 17078                                                       Pontius_Pilate
## 17079                                                       Pontius_Pilate
## 17080                                                       Pontius_Pilate
## 17081                                                       Pontius_Pilate
## 17082                                                       Pontius_Pilate
## 17083                                                       Pontius_Pilate
## 17084                                                       Pontius_Pilate
## 17085                                                       Pontius_Pilate
## 17086                                                       Pontius_Pilate
## 17087                                                       Pontius_Pilate
## 17088                                                       Pontius_Pilate
## 17089                                                       Pontius_Pilate
## 17090                                                       Pontius_Pilate
## 17091                                                       Pontius_Pilate
## 17092                                                       Pontius_Pilate
## 17093                                                       Pontius_Pilate
## 17094                                                       Pontius_Pilate
## 17095                                                       Pontius_Pilate
## 17096                                                       Pontius_Pilate
## 17097                                                       Pontius_Pilate
## 17098                                                       Pontius_Pilate
## 17099                                                       Pontius_Pilate
## 17100                                                       Pontius_Pilate
## 17101                                                       Pontius_Pilate
## 17102                                                       Pontius_Pilate
## 17103                                                       Pontius_Pilate
## 17104                                                       Pontius_Pilate
## 17105                                                       Pontius_Pilate
## 17106                                                       Pontius_Pilate
## 17107                                                       Pontius_Pilate
## 17108                                                       Pontius_Pilate
## 17109                                                       Pontius_Pilate
## 17110                                                       Pontius_Pilate
## 17111                                                       Pontius_Pilate
## 17112                                                       Pontius_Pilate
## 17113                                                       Pontius_Pilate
## 17114                                                       Pontius_Pilate
## 17115                                                       Pontius_Pilate
## 17116                                                       Pontius_Pilate
## 17117                                                       Pontius_Pilate
## 17118                                                       Pontius_Pilate
## 17119                                                       Pontius_Pilate
## 17120                                                       Pontius_Pilate
## 17121                                                       Pontius_Pilate
## 17122                                                       Pontius_Pilate
## 17123                                                       Pontius_Pilate
## 17124                                                       Pontius_Pilate
## 17125                                                       Pontius_Pilate
## 17126                                                       Pontius_Pilate
## 17127                                                       Pontius_Pilate
## 17128                                                       Pontius_Pilate
## 17129                                                       Pontius_Pilate
## 17130                                                       Pontius_Pilate
## 17131                                                       Pontius_Pilate
## 17132                                                       Pontius_Pilate
## 17133                                                       Pontius_Pilate
## 17134                                                       Pontius_Pilate
## 17135                                                       Pontius_Pilate
## 17136                                                       Pontius_Pilate
## 17137                                                       Pontius_Pilate
## 17138                                                       Pontius_Pilate
## 17139                                                       Pontius_Pilate
## 17140                                                       Pontius_Pilate
## 17141                                                       Pontius_Pilate
## 17142                                                       Pontius_Pilate
## 17143                                                       Pontius_Pilate
## 17144                                                       Pontius_Pilate
## 17145                                                       Pontius_Pilate
## 17146                                                       Pontius_Pilate
## 17147                                                       Pontius_Pilate
## 17148                                                       Pontius_Pilate
## 17149                                                       Pontius_Pilate
## 17150                                                       Pontius_Pilate
## 17151                                                       Pontius_Pilate
## 17152                                                       Pontius_Pilate
## 17153                                                       Pontius_Pilate
## 17154                                                       Pontius_Pilate
## 17155                                                       Pontius_Pilate
## 17156                                                       Pontius_Pilate
## 17157                                                       Pontius_Pilate
## 17158                                                       Pontius_Pilate
## 17159                                                       Pontius_Pilate
## 17160                                                       Pontius_Pilate
## 17161                                                       Pontius_Pilate
## 17162                                                       Pontius_Pilate
## 17163                                                       Pontius_Pilate
## 17164                                                       Pontius_Pilate
## 17165                                                       Pontius_Pilate
## 17166                                                       Pontius_Pilate
## 17167                                                       Pontius_Pilate
## 17168                                                       Pontius_Pilate
## 17169                                                       Pontius_Pilate
## 17170                                                       Pontius_Pilate
## 17171                                                       Pontius_Pilate
## 17172                                                       Pontius_Pilate
## 17173                                                       Pontius_Pilate
## 17174                                                       Pontius_Pilate
## 17175                                                       Pontius_Pilate
## 17176                                                       Pontius_Pilate
## 17177                                                       Pontius_Pilate
## 17178                                                       Pontius_Pilate
## 17179                                                       Pontius_Pilate
## 17180                                                       Pontius_Pilate
## 17181                                                       Pontius_Pilate
## 17182                                                       Pontius_Pilate
## 17183                                                       Pontius_Pilate
## 17184                                                       Pontius_Pilate
## 17185                                                       Pontius_Pilate
## 17186                                                       Pontius_Pilate
## 17187                                                       Pontius_Pilate
## 17188                                                       Pontius_Pilate
## 17189                                                       Pontius_Pilate
## 17190                                                       Pontius_Pilate
## 17191                                                       Pontius_Pilate
## 17192                                                       Pontius_Pilate
## 17193                                                       Pontius_Pilate
## 17194                                                       Pontius_Pilate
## 17195                                                       Pontius_Pilate
## 17196                                                       Pontius_Pilate
## 17197                                                       Pontius_Pilate
## 17198                                                       Pontius_Pilate
## 17199                                                       Pontius_Pilate
## 17200                                                       Pontius_Pilate
## 17201                                                       Pontius_Pilate
## 17202                                                       Pontius_Pilate
## 17203                                                       Pontius_Pilate
## 17204                                                       Pontius_Pilate
## 17205                                                       Pontius_Pilate
## 17206                                                       Pontius_Pilate
## 17207                                                       Pontius_Pilate
## 17208                                                       Pontius_Pilate
## 17209                                                       Pontius_Pilate
## 17210                                                       Pontius_Pilate
## 17211                                                       Pontius_Pilate
## 17212                                                       Pontius_Pilate
## 17213                                                       Pontius_Pilate
## 17214                                                       Pontius_Pilate
## 17215                                                       Pontius_Pilate
## 17216                                                       Pontius_Pilate
## 17217                                                       Pontius_Pilate
## 17218                                                       Pontius_Pilate
## 17219                                                       Pontius_Pilate
## 17220                                                       Pontius_Pilate
## 17221                                                       Pontius_Pilate
## 17222                                                       Pontius_Pilate
## 17223                                                       Pontius_Pilate
## 17224                                                       Pontius_Pilate
## 17225                                                       Pontius_Pilate
## 17226                                                       Pontius_Pilate
## 17227                                                       Pontius_Pilate
## 17228                                                       Pontius_Pilate
## 17229                                                       Pontius_Pilate
## 17230                                                       Pontius_Pilate
## 17231                                                       Pontius_Pilate
## 17232                                                       Pontius_Pilate
## 17233                                                       Pontius_Pilate
## 17234                                                       Pontius_Pilate
## 17235                                                       Pontius_Pilate
## 17236                                                       Pontius_Pilate
## 17237                                                       Pontius_Pilate
## 17238                                                       Pontius_Pilate
## 17239                                                       Pontius_Pilate
## 17240                                                       Pontius_Pilate
## 17241                                                       Pontius_Pilate
## 17242                                                       Pontius_Pilate
## 17243                                                       Pontius_Pilate
## 17244                                                       Pontius_Pilate
## 17245                                                       Pontius_Pilate
## 17246                                                       Pontius_Pilate
## 17247                                                       Pontius_Pilate
## 17248                                                       Pontius_Pilate
## 17249                                                       Pontius_Pilate
## 17250                                                       Pontius_Pilate
## 17251                                                       Pontius_Pilate
## 17252                                                       Pontius_Pilate
## 17253                                                       Pontius_Pilate
## 17254                                                       Pontius_Pilate
## 17255                                                       Pontius_Pilate
## 17256                                                       Pontius_Pilate
## 17257                                                       Pontius_Pilate
## 17258                                                       Pontius_Pilate
## 17259                                                       Pontius_Pilate
## 17260                                                       Pontius_Pilate
## 17261                                                       Pontius_Pilate
## 17262                                                       Pontius_Pilate
## 17263                                                       Pontius_Pilate
## 17264                                                       Pontius_Pilate
## 17265                                                       Pontius_Pilate
## 17266                                                       Pontius_Pilate
## 17267                                                       Pontius_Pilate
## 17268                                                       Pontius_Pilate
## 17269                                                       Pontius_Pilate
## 17270                                                       Pontius_Pilate
## 17271                                                       Pontius_Pilate
## 17272                                                       Pontius_Pilate
## 17273                                                       Pontius_Pilate
## 17274                                                       Pontius_Pilate
## 17275                                                       Pontius_Pilate
## 17276                                                       Pontius_Pilate
## 17277                                                       Pontius_Pilate
## 17278                                                       Pontius_Pilate
## 17279                                                       Pontius_Pilate
## 17280                                                       Pontius_Pilate
## 17281                                                       Pontius_Pilate
## 17282                                                       Pontius_Pilate
## 17283                                                       Pontius_Pilate
## 17284                                                       Pontius_Pilate
## 17285                                                       Pontius_Pilate
## 17286                                                       Pontius_Pilate
## 17287                                                       Pontius_Pilate
## 17288                                                       Pontius_Pilate
## 17289                                                       Pontius_Pilate
## 17290                                                       Pontius_Pilate
## 17291                                                       Pontius_Pilate
## 17292                                                       Pontius_Pilate
## 17293                                                       Pontius_Pilate
## 17294                                                       Pontius_Pilate
## 17295                                                       Pontius_Pilate
## 17296                                                       Pontius_Pilate
## 17297                                                       Pontius_Pilate
## 17298                                                       Pontius_Pilate
## 17299                                                       Pontius_Pilate
## 17300                                                       Pontius_Pilate
## 17301                                                       Pontius_Pilate
## 17302                                                       Pontius_Pilate
## 17303                                                       Pontius_Pilate
## 17304                                                       Pontius_Pilate
## 17305                                                       Pontius_Pilate
## 17306                                                       Pontius_Pilate
## 17307                                                       Pontius_Pilate
## 17308                                                       Pontius_Pilate
## 17309                                                       Pontius_Pilate
## 17310                                                       Pontius_Pilate
## 17311                                                       Pontius_Pilate
## 17312                                                       Pontius_Pilate
## 17313                                                       Pontius_Pilate
## 17314                                                       Pontius_Pilate
## 17315                                                       Pontius_Pilate
## 17316                                                       Pontius_Pilate
## 17317                                                       Pontius_Pilate
## 17318                                                       Pontius_Pilate
## 17319                                                       Pontius_Pilate
## 17320                                                       Pontius_Pilate
## 17321                                                       Pontius_Pilate
## 17322                                                       Pontius_Pilate
## 17323                                                       Pontius_Pilate
## 17324                                                       Pontius_Pilate
## 17325                                                       Pontius_Pilate
## 17326                                                       Pontius_Pilate
## 17327                                                       Pontius_Pilate
## 17328                                                       Pontius_Pilate
## 17329                                                       Pontius_Pilate
## 17330                                                       Pontius_Pilate
## 17331                                                       Pontius_Pilate
## 17332                                                       Pontius_Pilate
## 17333                                                       Pontius_Pilate
## 17334                                                       Pontius_Pilate
## 17335                                                       Pontius_Pilate
## 17336                                                       Pontius_Pilate
## 17337                                                       Pontius_Pilate
## 17338                                                       Pontius_Pilate
## 17339                                                       Pontius_Pilate
## 17340                                                       Pontius_Pilate
## 17341                                                       Pontius_Pilate
## 17342                                                       Pontius_Pilate
## 17343                                                       Pontius_Pilate
## 17344                                                       Pontius_Pilate
## 17345                                                       Pontius_Pilate
## 17346                                                       Pontius_Pilate
## 17347                                                       Pontius_Pilate
## 17348                                                       Pontius_Pilate
## 17349                                                       Pontius_Pilate
## 17350                                                       Pontius_Pilate
## 17351                                                       Pontius_Pilate
## 17352                                                       Pontius_Pilate
## 17353                                                       Pontius_Pilate
## 17354                                                       Pontius_Pilate
## 17355                                                       Pontius_Pilate
## 17356                                                       Pontius_Pilate
## 17357                                                       Pontius_Pilate
## 17358                                                       Pontius_Pilate
## 17359                                                       Pontius_Pilate
## 17360                                                       Pontius_Pilate
## 17361                                                       Pontius_Pilate
## 17362                                                       Pontius_Pilate
## 17363                                                       Pontius_Pilate
## 17364                                                       Pontius_Pilate
## 17365                                                       Pontius_Pilate
## 17366                                                       Pontius_Pilate
## 17367                                                       Pontius_Pilate
## 17368                                                       Pontius_Pilate
## 17369                                                       Pontius_Pilate
## 17370                                                       Pontius_Pilate
## 17371                                                       Pontius_Pilate
## 17372                                                       Pontius_Pilate
## 17373                                                       Pontius_Pilate
## 17374                                                       Pontius_Pilate
## 17375                                                       Pontius_Pilate
## 17376                                                       Pontius_Pilate
## 17377                                                       Pontius_Pilate
## 17378                                                       Pontius_Pilate
## 17379                                                       Pontius_Pilate
## 17380                                                       Pontius_Pilate
## 17381                                                       Pontius_Pilate
## 17382                                                       Pontius_Pilate
## 17383                                                       Pontius_Pilate
## 17384                                                       Pontius_Pilate
## 17385                                                       Pontius_Pilate
## 17386                                                       Pontius_Pilate
## 17387                                                       Pontius_Pilate
## 17388                                                       Pontius_Pilate
## 17389                                                       Pontius_Pilate
## 17390                                                       Pontius_Pilate
## 17391                                                       Pontius_Pilate
## 17392                                                       Pontius_Pilate
## 17393                                                       Pontius_Pilate
## 17394                                                       Pontius_Pilate
## 17395                                                       Pontius_Pilate
## 17396                                                       Pontius_Pilate
## 17397                                                       Pontius_Pilate
## 17398                                                       Pontius_Pilate
## 17399                                                       Pontius_Pilate
## 17400                                                       Pontius_Pilate
## 17401                                                       Pontius_Pilate
## 17402                                                       Pontius_Pilate
## 17403                                                       Pontius_Pilate
## 17404                                                       Pontius_Pilate
## 17405                                                       Pontius_Pilate
## 17406                                                       Pontius_Pilate
## 17407                                                       Pontius_Pilate
## 17408                                                       Pontius_Pilate
## 17409                                                       Pontius_Pilate
## 17410                                                       Pontius_Pilate
## 17411                                                       Pontius_Pilate
## 17412                                                       Pontius_Pilate
## 17413                                                       Pontius_Pilate
## 17414                                                       Pontius_Pilate
## 17415                                                       Pontius_Pilate
## 17416                                                       Pontius_Pilate
## 17417                                                       Pontius_Pilate
## 17418                                                       Pontius_Pilate
## 17419                                                       Pontius_Pilate
## 17420                                                       Pontius_Pilate
## 17421                                                       Pontius_Pilate
## 17422                                                       Pontius_Pilate
## 17423                                                       Pontius_Pilate
## 17424                                                       Pontius_Pilate
## 17425                                                       Pontius_Pilate
## 17426                                                       Pontius_Pilate
## 17427                                                       Pontius_Pilate
## 17428                                                       Pontius_Pilate
## 17429                                                       Pontius_Pilate
## 17430                                                       Pontius_Pilate
## 17431                                                       Pontius_Pilate
## 17432                                                       Pontius_Pilate
## 17433                                                       Pontius_Pilate
## 17434                                                       Pontius_Pilate
## 17435                                                       Pontius_Pilate
## 17436                                                       Pontius_Pilate
## 17437                                                       Pontius_Pilate
## 17438                                                       Pontius_Pilate
## 17439                                                       Pontius_Pilate
## 17440                                                       Pontius_Pilate
## 17441                                                       Pontius_Pilate
## 17442                                                       Pontius_Pilate
## 17443                                                       Pontius_Pilate
## 17444                                                       Pontius_Pilate
## 17445                                                       Pontius_Pilate
## 17446                                                       Pontius_Pilate
## 17447                                                       Pontius_Pilate
## 17448                                                       Pontius_Pilate
## 17449                                                       Pontius_Pilate
## 17450                                                       Pontius_Pilate
## 17451                                                       Pontius_Pilate
## 17452                                                       Pontius_Pilate
## 17453                                                       Pontius_Pilate
## 17454                                                       Pontius_Pilate
## 17455                                                       Pontius_Pilate
## 17456                                                       Pontius_Pilate
## 17457                                                       Pontius_Pilate
## 17458                                                       Pontius_Pilate
## 17459                                                       Pontius_Pilate
## 17460                                                       Pontius_Pilate
## 17461                                                       Pontius_Pilate
## 17462                                                       Pontius_Pilate
## 17463                                                       Pontius_Pilate
## 17464                                                       Pontius_Pilate
## 17465                                                       Pontius_Pilate
## 17466                                                       Pontius_Pilate
## 17467                                                       Pontius_Pilate
## 17468                                                       Pontius_Pilate
## 17469                                                       Pontius_Pilate
## 17470                                                       Pontius_Pilate
## 17471                                                       Pontius_Pilate
## 17472                                                       Pontius_Pilate
## 17473                                                       Pontius_Pilate
## 17474                                                       Pontius_Pilate
## 17475                                                       Pontius_Pilate
## 17476                                                       Pontius_Pilate
## 17477                                                       Pontius_Pilate
## 17478                                                       Pontius_Pilate
## 17479                                                       Pontius_Pilate
## 17480                                                       Pontius_Pilate
## 17481                                                       Pontius_Pilate
## 17482                                                       Pontius_Pilate
## 17483                                                       Pontius_Pilate
## 17484                                                       Pontius_Pilate
## 17485                                                       Pontius_Pilate
## 17486                                                       Pontius_Pilate
## 17487                                                       Pontius_Pilate
## 17488                                                       Pontius_Pilate
## 17489                                                       Pontius_Pilate
## 17490                                                       Pontius_Pilate
## 17491                                                       Pontius_Pilate
## 17492                                                       Pontius_Pilate
## 17493                                                       Pontius_Pilate
## 17494                                                       Pontius_Pilate
## 17495                                                       Pontius_Pilate
## 17496                                                       Pontius_Pilate
## 17497                                                       Pontius_Pilate
## 17498                                                       Pontius_Pilate
## 17499                                                       Pontius_Pilate
## 17500                                                       Pontius_Pilate
## 17501                                                       Pontius_Pilate
## 17502                                                       Pontius_Pilate
## 17503                                                       Pontius_Pilate
## 17504                                                       Pontius_Pilate
## 17505                                                       Pontius_Pilate
## 17506                                                       Pontius_Pilate
## 17507                                                       Pontius_Pilate
## 17508                                                       Pontius_Pilate
## 17509                                                       Pontius_Pilate
## 17510                                                       Pontius_Pilate
## 17511                                                       Pontius_Pilate
## 17512                                                       Pontius_Pilate
## 17513                                                       Pontius_Pilate
## 17514                                                       Pontius_Pilate
## 17515                                                       Pontius_Pilate
## 17516                                                       Pontius_Pilate
## 17517                                                       Pontius_Pilate
## 17518                                                       Pontius_Pilate
## 17519                                                       Pontius_Pilate
## 17520                                                       Pontius_Pilate
## 17521                                                       Pontius_Pilate
## 17522                                                       Pontius_Pilate
## 17523                                                       Pontius_Pilate
## 17524                                                       Pontius_Pilate
## 17525                                                       Pontius_Pilate
## 17526                                                       Pontius_Pilate
## 17527                                                       Pontius_Pilate
## 17528                                                       Pontius_Pilate
## 17529                                                       Pontius_Pilate
## 17530                                                       Pontius_Pilate
## 17531                                                       Pontius_Pilate
## 17532                                                       Pontius_Pilate
## 17533                                                       Pontius_Pilate
## 17534                                                       Pontius_Pilate
## 17535                                                       Pontius_Pilate
## 17536                                                       Pontius_Pilate
## 17537                                                       Pontius_Pilate
## 17538                                                       Pontius_Pilate
## 17539                                                       Pontius_Pilate
## 17540                                                       Pontius_Pilate
## 17541                                                       Pontius_Pilate
## 17542                                                       Pontius_Pilate
## 17543                                                       Pontius_Pilate
## 17544                                                       Pontius_Pilate
## 17545                                                       Pontius_Pilate
## 17546                                                       Pontius_Pilate
## 17547                                                       Pontius_Pilate
## 17548                                                       Pontius_Pilate
## 17549                                                       Pontius_Pilate
## 17550                                                       Pontius_Pilate
## 17551                                                       Pontius_Pilate
## 17552                                                       Pontius_Pilate
## 17553                                                       Pontius_Pilate
## 17554                                                       Pontius_Pilate
## 17555                                                       Pontius_Pilate
## 17556                                                       Pontius_Pilate
## 17557                                                       Pontius_Pilate
## 17558                                                       Pontius_Pilate
## 17559                                                       Pontius_Pilate
## 17560                                                       Pontius_Pilate
## 17561                                                       Pontius_Pilate
## 17562                                                       Pontius_Pilate
## 17563                                                       Pontius_Pilate
## 17564                                                       Pontius_Pilate
## 17565                                                       Pontius_Pilate
## 17566                                                       Pontius_Pilate
## 17567                                                       Pontius_Pilate
## 17568                                                       Pontius_Pilate
## 17569                                                       Pontius_Pilate
## 17570                                                       Pontius_Pilate
## 17571                                                       Pontius_Pilate
## 17572                                                       Pontius_Pilate
## 17573                                                       Pontius_Pilate
## 17574                                                       Pontius_Pilate
## 17575                                                       Pontius_Pilate
## 17576                                                       Pontius_Pilate
## 17577                                                       Pontius_Pilate
## 17578                                                       Pontius_Pilate
## 17579                                                       Pontius_Pilate
## 17580                                                       Pontius_Pilate
## 17581                                                       Pontius_Pilate
## 17582                                                       Pontius_Pilate
## 17583                                                       Pontius_Pilate
## 17584                                                       Pontius_Pilate
## 17585                                                       Pontius_Pilate
## 17586                                                       Pontius_Pilate
## 17587                                                       Pontius_Pilate
## 17588                                                       Pontius_Pilate
## 17589                                                       Pontius_Pilate
## 17590                                                       Pontius_Pilate
## 17591                                                       Pontius_Pilate
## 17592                                                       Pontius_Pilate
## 17593                                                       Pontius_Pilate
## 17594                                                       Pontius_Pilate
## 17595                                                       Pontius_Pilate
## 17596                                                       Pontius_Pilate
## 17597                                                       Pontius_Pilate
## 17598                                                       Pontius_Pilate
## 17599                                                       Pontius_Pilate
## 17600                                                       Pontius_Pilate
## 17601                                                       Pontius_Pilate
## 17602                                                       Pontius_Pilate
## 17603                                                       Pontius_Pilate
## 17604                                                       Pontius_Pilate
## 17605                                                       Pontius_Pilate
## 17606                                                       Pontius_Pilate
## 17607                                                       Pontius_Pilate
## 17608                                                       Pontius_Pilate
## 17609                                                       Pontius_Pilate
## 17610                                                       Pontius_Pilate
## 17611                                                       Pontius_Pilate
## 17612                                                       Pontius_Pilate
## 17613                                                       Pontius_Pilate
## 17614                                                       Pontius_Pilate
## 17615                                                       Pontius_Pilate
## 17616                                                       Pontius_Pilate
## 17617                                                       Pontius_Pilate
## 17618                                                       Pontius_Pilate
## 17619                                                       Pontius_Pilate
## 17620                                                       Pontius_Pilate
## 17621                                                       Pontius_Pilate
## 17622                                                       Pontius_Pilate
## 17623                                                       Pontius_Pilate
## 17624                                                       Pontius_Pilate
## 17625                                                       Pontius_Pilate
## 17626                                                       Pontius_Pilate
## 17627                                                       Pontius_Pilate
## 17628                                                       Pontius_Pilate
## 17629                                                       Pontius_Pilate
## 17630                                                       Pontius_Pilate
## 17631                                                       Pontius_Pilate
## 17632                                                       Pontius_Pilate
## 17633                                                       Pontius_Pilate
## 17634                                                       Pontius_Pilate
## 17635                                                       Pontius_Pilate
## 17636                                                       Pontius_Pilate
## 17637                                                       Pontius_Pilate
## 17638                                                       Pontius_Pilate
## 17639                                                       Pontius_Pilate
## 17640                                                       Pontius_Pilate
## 17641                                                       Pontius_Pilate
## 17642                                                       Pontius_Pilate
## 17643                                                       Pontius_Pilate
## 17644                                                       Pontius_Pilate
## 17645                                                       Pontius_Pilate
## 17646                                                       Pontius_Pilate
## 17647                                                       Pontius_Pilate
## 17648                                                       Pontius_Pilate
## 17649                                                       Pontius_Pilate
## 17650                                                       Pontius_Pilate
## 17651                                                       Pontius_Pilate
## 17652                                                       Pontius_Pilate
## 17653                                                       Pontius_Pilate
## 17654                                                       Pontius_Pilate
## 17655                                                       Pontius_Pilate
## 17656                                                       Pontius_Pilate
## 17657                                                       Pontius_Pilate
## 17658                                                       Pontius_Pilate
## 17659                                                       Pontius_Pilate
## 17660                                                       Pontius_Pilate
## 17661                                                       Pontius_Pilate
## 17662                                                       Pontius_Pilate
## 17663                                                       Pontius_Pilate
## 17664                                                       Pontius_Pilate
## 17665                                                       Pontius_Pilate
## 17666                                                       Pontius_Pilate
## 17667                                                       Pontius_Pilate
## 17668                                                       Pontius_Pilate
## 17669                                                       Pontius_Pilate
## 17670                                                       Pontius_Pilate
## 17671                                                       Pontius_Pilate
## 17672                                                       Pontius_Pilate
## 17673                                                       Pontius_Pilate
## 17674                                                       Pontius_Pilate
## 17675                                                       Pontius_Pilate
## 17676                                                       Pontius_Pilate
## 17677                                                       Pontius_Pilate
## 17678                                                       Pontius_Pilate
## 17679                                                       Pontius_Pilate
## 17680                                                       Pontius_Pilate
## 17681                                                       Pontius_Pilate
## 17682                                                       Pontius_Pilate
## 17683                                                       Pontius_Pilate
## 17684                                                       Pontius_Pilate
## 17685                                                       Pontius_Pilate
## 17686                                                       Pontius_Pilate
## 17687                                                       Pontius_Pilate
## 17688                                                       Pontius_Pilate
## 17689                                                       Pontius_Pilate
## 17690                                                       Pontius_Pilate
## 17691                                                       Pontius_Pilate
## 17692                                                       Pontius_Pilate
## 17693                                                       Pontius_Pilate
## 17694                                                       Pontius_Pilate
## 17695                                                       Pontius_Pilate
## 17696                                                       Pontius_Pilate
## 17697                                                       Pontius_Pilate
## 17698                                                       Pontius_Pilate
## 17699                                                       Pontius_Pilate
## 17700                                                       Pontius_Pilate
## 17701                                                       Pontius_Pilate
## 17702                                                       Pontius_Pilate
## 17703                                                       Pontius_Pilate
## 17704                                                       Pontius_Pilate
## 17705                                                       Pontius_Pilate
## 17706                                                       Pontius_Pilate
## 17707                                                       Pontius_Pilate
## 17708                                                       Pontius_Pilate
## 17709                                                       Pontius_Pilate
## 17710                                                       Pontius_Pilate
## 17711                                                       Pontius_Pilate
## 17712                                                       Pontius_Pilate
## 17713                                                       Pontius_Pilate
## 17714                                                       Pontius_Pilate
## 17715                                                       Pontius_Pilate
## 17716                                                       Pontius_Pilate
## 17717                                                       Pontius_Pilate
## 17718                                                       Pontius_Pilate
## 17719                                                       Pontius_Pilate
## 17720                                                       Pontius_Pilate
## 17721                                                       Pontius_Pilate
## 17722                                                       Pontius_Pilate
## 17723                                                       Pontius_Pilate
## 17724                                                       Pontius_Pilate
## 17725                                                       Pontius_Pilate
## 17726                                                       Pontius_Pilate
## 17727                                                       Pontius_Pilate
## 17728                                                       Pontius_Pilate
## 17729                                                       Pontius_Pilate
## 17730                                                       Pontius_Pilate
## 17731                                                       Pontius_Pilate
## 17732                                                       Pontius_Pilate
## 17733                                                       Pontius_Pilate
## 17734                                                       Pontius_Pilate
## 17735                                                       Pontius_Pilate
## 17736                                                       Pontius_Pilate
## 17737                                                       Pontius_Pilate
## 17738                                                       Pontius_Pilate
## 17739                                                       Pontius_Pilate
## 17740                                                       Pontius_Pilate
## 17741                                                       Pontius_Pilate
## 17742                                                       Pontius_Pilate
## 17743                                                       Pontius_Pilate
## 17744                                                       Pontius_Pilate
## 17745                                                       Pontius_Pilate
## 17746                                                       Pontius_Pilate
## 17747                                                       Pontius_Pilate
## 17748                                                       Pontius_Pilate
## 17749                                                       Pontius_Pilate
## 17750                                                       Pontius_Pilate
## 17751                                                       Pontius_Pilate
## 17752                                                       Pontius_Pilate
## 17753                                                       Pontius_Pilate
## 17754                                                       Pontius_Pilate
## 17755                                                       Pontius_Pilate
## 17756                                                       Pontius_Pilate
## 17757                                                       Pontius_Pilate
## 17758                                                       Pontius_Pilate
## 17759                                                       Pontius_Pilate
## 17760                                                       Pontius_Pilate
## 17761                                                       Pontius_Pilate
## 17762                                                       Pontius_Pilate
## 17763                                                       Pontius_Pilate
## 17764                                                       Pontius_Pilate
## 17765                                                       Pontius_Pilate
## 17766                                                       Pontius_Pilate
## 17767                                                       Pontius_Pilate
## 17768                                                       Pontius_Pilate
## 17769                                                       Pontius_Pilate
## 17770                                                       Pontius_Pilate
## 17771                                                       Pontius_Pilate
## 17772                                                       Pontius_Pilate
## 17773                                                       Pontius_Pilate
## 17774                                                       Pontius_Pilate
## 17775                                                       Pontius_Pilate
## 17776                                                       Pontius_Pilate
## 17777                                                       Pontius_Pilate
## 17778                                                       Pontius_Pilate
## 17779                                                       Pontius_Pilate
## 17780                                                       Pontius_Pilate
## 17781                                                       Pontius_Pilate
## 17782                                                       Pontius_Pilate
## 17783                                                       Pontius_Pilate
## 17784                                                       Pontius_Pilate
## 17785                                                       Pontius_Pilate
## 17786                                                       Pontius_Pilate
## 17787                                                       Pontius_Pilate
## 17788                                                       Pontius_Pilate
## 17789                                                       Pontius_Pilate
## 17790                                                       Pontius_Pilate
## 17791                                                       Pontius_Pilate
## 17792                                                       Pontius_Pilate
## 17793                                                       Pontius_Pilate
## 17794                                                       Pontius_Pilate
## 17795                                                       Pontius_Pilate
## 17796                                                       Pontius_Pilate
## 17797                                                       Pontius_Pilate
## 17798                                                       Pontius_Pilate
## 17799                                                       Pontius_Pilate
## 17800                                                       Pontius_Pilate
## 17801                                                       Pontius_Pilate
## 17802                                                       Pontius_Pilate
## 17803                                                       Pontius_Pilate
## 17804                                                       Pontius_Pilate
## 17805                                                       Pontius_Pilate
## 17806                                                       Pontius_Pilate
## 17807                                                       Pontius_Pilate
## 17808                                                       Pontius_Pilate
## 17809                                                       Pontius_Pilate
## 17810                                                       Pontius_Pilate
## 17811                                                       Pontius_Pilate
## 17812                                                       Pontius_Pilate
## 17813                                                       Pontius_Pilate
## 17814                                                       Pontius_Pilate
## 17815                                                       Pontius_Pilate
## 17816                                                       Pontius_Pilate
## 17817                                                       Pontius_Pilate
## 17818                                                       Pontius_Pilate
## 17819                                                       Pontius_Pilate
## 17820                                                       Pontius_Pilate
## 17821                                                       Pontius_Pilate
## 17822                                                       Pontius_Pilate
## 17823                                                       Pontius_Pilate
## 17824                                                       Pontius_Pilate
## 17825                                                       Pontius_Pilate
## 17826                                                       Pontius_Pilate
## 17827                                                       Pontius_Pilate
## 17828                                                       Pontius_Pilate
## 17829                                                       Pontius_Pilate
## 17830                                                       Pontius_Pilate
## 17831                                                       Pontius_Pilate
## 17832                                                       Pontius_Pilate
## 17833                                                       Pontius_Pilate
## 17834                                                       Pontius_Pilate
## 17835                                                       Pontius_Pilate
## 17836                                                       Pontius_Pilate
## 17837                                                       Pontius_Pilate
## 17838                                                       Pontius_Pilate
## 17839                                                       Pontius_Pilate
## 17840                                                       Pontius_Pilate
## 17841                                                               Djoser
## 17842                                                               Djoser
## 17843                                                               Djoser
## 17844                                                               Djoser
## 17845                                                               Djoser
## 17846                                                               Djoser
## 17847                                                               Djoser
## 17848                                                               Djoser
## 17849                                                               Djoser
## 17850                                                               Djoser
## 17851                                                               Djoser
## 17852                                                               Djoser
## 17853                                                               Djoser
## 17854                                                               Djoser
## 17855                                                               Djoser
## 17856                                                               Djoser
## 17857                                                               Djoser
## 17858                                                               Djoser
## 17859                                                               Djoser
## 17860                                                               Djoser
## 17861                                                               Djoser
## 17862                                                               Djoser
## 17863                                                               Djoser
## 17864                                                               Djoser
## 17865                                                               Djoser
## 17866                                                               Djoser
## 17867                                                               Djoser
## 17868                                                               Djoser
## 17869                                                               Djoser
## 17870                                                               Djoser
## 17871                                                               Djoser
## 17872                                                               Djoser
## 17873                                                               Djoser
## 17874                                                               Djoser
## 17875                                                               Djoser
## 17876                                                               Djoser
## 17877                                                               Djoser
## 17878                                                               Djoser
## 17879                                                               Djoser
## 17880                                                               Djoser
## 17881                                                               Djoser
## 17882                                                               Djoser
## 17883                                                               Djoser
## 17884                                                               Djoser
## 17885                                                               Djoser
## 17886                                                               Djoser
## 17887                                                               Djoser
## 17888                                                               Djoser
## 17889                                                               Djoser
## 17890                                                               Djoser
## 17891                                                               Djoser
## 17892                                                               Djoser
## 17893                                                               Djoser
## 17894                                                               Djoser
## 17895                                                               Djoser
## 17896                                                               Djoser
## 17897                                                               Djoser
## 17898                                                               Djoser
## 17899                                                               Djoser
## 17900                                                               Djoser
## 17901                                                               Djoser
## 17902                                                               Djoser
## 17903                                                               Djoser
## 17904                                                               Djoser
## 17905                                                               Djoser
## 17906                                                               Djoser
## 17907                                                               Djoser
## 17908                                                               Djoser
## 17909                                                               Djoser
## 17910                                                               Djoser
## 17911                                                               Djoser
## 17912                                                               Djoser
## 17913                                                               Djoser
## 17914                                                               Djoser
## 17915                                                               Djoser
## 17916                                                               Djoser
## 17917                                                               Djoser
## 17918                                                               Djoser
## 17919                                                               Djoser
## 17920                                                               Djoser
## 17921                                                               Djoser
## 17922                                                               Djoser
## 17923                                                               Djoser
## 17924                                                               Djoser
## 17925                                                               Djoser
## 17926                                                               Djoser
## 17927                                                               Djoser
## 17928                                                               Djoser
## 17929                                                               Djoser
## 17930                                                               Djoser
## 17931                                                               Djoser
## 17932                                                               Djoser
## 17933                                                               Djoser
## 17934                                                               Djoser
## 17935                                                               Djoser
## 17936                                                               Djoser
## 17937                                                               Djoser
## 17938                                                               Djoser
## 17939                                                               Djoser
## 17940                                                               Djoser
## 17941                                                               Djoser
## 17942                                                               Djoser
## 17943                                                               Djoser
## 17944                                                               Djoser
## 17945                                                               Djoser
## 17946                                                               Djoser
## 17947                                                               Djoser
## 17948                                                               Djoser
## 17949                                                               Djoser
## 17950                                                               Djoser
## 17951                                                               Djoser
## 17952                                                               Djoser
## 17953                                                               Djoser
## 17954                                                               Djoser
## 17955                                                               Djoser
## 17956                                                               Djoser
## 17957                                                               Djoser
## 17958                                                               Djoser
## 17959                                                               Djoser
## 17960                                                               Djoser
## 17961                                                               Djoser
## 17962                                                               Djoser
## 17963                                                               Djoser
## 17964                                                               Djoser
## 17965                                                               Djoser
## 17966                                                               Djoser
## 17967                                                               Djoser
## 17968                                                               Djoser
## 17969                                                               Djoser
## 17970                                                               Djoser
## 17971                                                               Djoser
## 17972                                                               Djoser
## 17973                                                               Djoser
## 17974                                                               Djoser
## 17975                                                               Djoser
## 17976                                                               Djoser
## 17977                                                               Djoser
## 17978                                                               Djoser
## 17979                                                               Djoser
## 17980                                                               Djoser
## 17981                                                               Djoser
## 17982                                                               Djoser
## 17983                                                               Djoser
## 17984                                                               Djoser
## 17985                                                               Djoser
## 17986                                                               Djoser
## 17987                                                               Djoser
## 17988                                                               Djoser
## 17989                                                               Djoser
## 17990                                                               Djoser
## 17991                                                               Djoser
## 17992                                                               Djoser
## 17993                                                               Djoser
## 17994                                                               Djoser
## 17995                                                               Djoser
## 17996                                                               Djoser
## 17997                                                               Djoser
## 17998                                                               Djoser
## 17999                                                               Djoser
## 18000                                                               Djoser
## 18001                                                               Djoser
## 18002                                                               Djoser
## 18003                                                               Djoser
## 18004                                                               Djoser
## 18005                                                               Djoser
## 18006                                                               Djoser
## 18007                                                               Djoser
## 18008                                                               Djoser
## 18009                                                               Djoser
## 18010                                                               Djoser
## 18011                                                               Djoser
## 18012                                                               Djoser
## 18013                                                               Djoser
## 18014                                                               Djoser
## 18015                                                               Djoser
## 18016                                                               Djoser
## 18017                                                               Djoser
## 18018                                                               Djoser
## 18019                                                               Djoser
## 18020                                                               Djoser
## 18021                                                               Djoser
## 18022                                                               Djoser
## 18023                                                               Djoser
## 18024                                                               Djoser
## 18025                                                               Djoser
## 18026                                                               Djoser
## 18027                                                               Djoser
## 18028                                                               Djoser
## 18029                                                               Djoser
## 18030                                                               Djoser
## 18031                                                               Djoser
## 18032                                                               Djoser
## 18033                                                               Djoser
## 18034                                                               Djoser
## 18035                                                               Djoser
## 18036                                                               Djoser
## 18037                                                               Djoser
## 18038                                                               Djoser
## 18039                                                               Djoser
## 18040                                                               Djoser
## 18041                                                               Djoser
## 18042                                                               Djoser
## 18043                                                               Djoser
## 18044                                                               Djoser
## 18045                                                               Djoser
## 18046                                                               Djoser
## 18047                                                               Djoser
## 18048                                                               Djoser
## 18049                                                               Djoser
## 18050                                                               Djoser
## 18051                                                               Djoser
## 18052                                                               Djoser
## 18053                                                               Djoser
## 18054                                                               Djoser
## 18055                                                               Djoser
## 18056                                                               Djoser
## 18057                                                               Djoser
## 18058                                                               Djoser
## 18059                                                               Djoser
## 18060                                                               Djoser
## 18061                                                               Djoser
## 18062                                                               Djoser
## 18063                                                               Djoser
## 18064                                                               Djoser
## 18065                                                               Djoser
## 18066                                                               Djoser
## 18067                                                               Djoser
## 18068                                                               Djoser
## 18069                                                               Djoser
## 18070                                                               Djoser
## 18071                                                               Djoser
## 18072                                                               Djoser
## 18073                                                               Djoser
## 18074                                                               Djoser
## 18075                                                               Djoser
## 18076                                                               Djoser
## 18077                                                               Djoser
## 18078                                                               Djoser
## 18079                                                               Djoser
## 18080                                                               Djoser
## 18081                                                               Djoser
## 18082                                                               Djoser
## 18083                                                               Djoser
## 18084                                                               Djoser
## 18085                                                     Monarch_of_China
## 18086                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18087                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18088                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18089                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18090                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18091                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18092                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18093                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18094                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18095                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18096                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18097                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18098                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18099                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18100                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18101                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18102                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18103                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18104                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18105                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18106                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18107                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18108                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18109                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18110                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18111                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18112                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18113                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18114                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18115                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18116                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18117                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18118                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18119                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18120                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18121                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18122                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18123                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18124                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18125                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18126                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18127                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18128                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18129                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18130                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18131                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18132                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18133                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18134                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18135                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18136                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18137                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18138                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18139                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18140                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18141                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18142                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18143                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18144                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18145                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18146                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18147                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18148                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18149                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18150                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18151                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18152                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18153                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18154                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18155                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18156                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18157                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18158                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18159                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18160                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18161                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18162                                  The_Hitch-Hiker_(The_Twilight_Zone)
## 18163                                                    This_Broken_Heart
## 18164                                                    This_Broken_Heart
## 18165                                                    This_Broken_Heart
## 18166                                                    This_Broken_Heart
## 18167                                                      Maquoketa,_Iowa
## 18168                                                      Maquoketa,_Iowa
## 18169                                                      Maquoketa,_Iowa
## 18170                                                      Maquoketa,_Iowa
## 18171                                                      Maquoketa,_Iowa
## 18172                                                      Maquoketa,_Iowa
## 18173                                                      Maquoketa,_Iowa
## 18174                                                      Maquoketa,_Iowa
## 18175                                                      Maquoketa,_Iowa
## 18176                                                      Maquoketa,_Iowa
## 18177                                                      Maquoketa,_Iowa
## 18178                                                      Maquoketa,_Iowa
## 18179                                                      Maquoketa,_Iowa
## 18180                                                      Maquoketa,_Iowa
## 18181                                                      Maquoketa,_Iowa
## 18182                                                      Maquoketa,_Iowa
## 18183                                                      Maquoketa,_Iowa
## 18184                                                      Maquoketa,_Iowa
## 18185                                                      Maquoketa,_Iowa
## 18186                                                      Maquoketa,_Iowa
## 18187                                                      Maquoketa,_Iowa
## 18188                                                      Maquoketa,_Iowa
## 18189                                                      Maquoketa,_Iowa
## 18190                                                      Maquoketa,_Iowa
## 18191                                                      Maquoketa,_Iowa
## 18192                                                      Maquoketa,_Iowa
## 18193                                                      Maquoketa,_Iowa
## 18194                                                      Maquoketa,_Iowa
## 18195                                                      Maquoketa,_Iowa
## 18196                                                      Maquoketa,_Iowa
## 18197                                                      Maquoketa,_Iowa
## 18198                                                      Maquoketa,_Iowa
## 18199                                                      Maquoketa,_Iowa
## 18200                                                      Maquoketa,_Iowa
## 18201                                                      Maquoketa,_Iowa
## 18202                                                      Maquoketa,_Iowa
## 18203                                                      Maquoketa,_Iowa
## 18204                                                      Maquoketa,_Iowa
## 18205                                                      Maquoketa,_Iowa
## 18206                                                      Maquoketa,_Iowa
## 18207                                                      Maquoketa,_Iowa
## 18208                                                      Maquoketa,_Iowa
## 18209                                                      Maquoketa,_Iowa
## 18210                                                      Maquoketa,_Iowa
## 18211                                                      Maquoketa,_Iowa
## 18212                                                      Maquoketa,_Iowa
## 18213                                                      Maquoketa,_Iowa
## 18214                                                      Maquoketa,_Iowa
## 18215                                                      Maquoketa,_Iowa
## 18216                                                      Maquoketa,_Iowa
## 18217                                                      Maquoketa,_Iowa
## 18218                                                      Maquoketa,_Iowa
## 18219                                                      Maquoketa,_Iowa
## 18220                                                      Maquoketa,_Iowa
## 18221                                                      Maquoketa,_Iowa
## 18222                                                      Maquoketa,_Iowa
## 18223                                                      Maquoketa,_Iowa
## 18224                                                      Maquoketa,_Iowa
## 18225                                                      Maquoketa,_Iowa
## 18226                                                      Maquoketa,_Iowa
## 18227                                                      Maquoketa,_Iowa
## 18228                                                      Maquoketa,_Iowa
## 18229                                                      Maquoketa,_Iowa
## 18230                                                      Maquoketa,_Iowa
## 18231                                                      Maquoketa,_Iowa
## 18232                                                      Maquoketa,_Iowa
## 18233                                                      Maquoketa,_Iowa
## 18234                                                      Maquoketa,_Iowa
## 18235                                                      Maquoketa,_Iowa
## 18236                                                      Maquoketa,_Iowa
## 18237                                                      Maquoketa,_Iowa
## 18238                                                      Maquoketa,_Iowa
## 18239                                                      Maquoketa,_Iowa
## 18240                                                      Maquoketa,_Iowa
## 18241                                                      Maquoketa,_Iowa
## 18242                                                      Maquoketa,_Iowa
## 18243                                                      Maquoketa,_Iowa
## 18244                                                      Maquoketa,_Iowa
## 18245                                                      Maquoketa,_Iowa
## 18246                                                      Maquoketa,_Iowa
## 18247                                                      Maquoketa,_Iowa
## 18248                                                      Maquoketa,_Iowa
## 18249                                                      Maquoketa,_Iowa
## 18250                                                      Maquoketa,_Iowa
## 18251                                                      Maquoketa,_Iowa
## 18252                                                      Maquoketa,_Iowa
## 18253                                                      Maquoketa,_Iowa
## 18254                                                      Maquoketa,_Iowa
## 18255                                                      Maquoketa,_Iowa
## 18256                                                      Maquoketa,_Iowa
## 18257                                                      Maquoketa,_Iowa
## 18258                                                      Maquoketa,_Iowa
## 18259                                                      Maquoketa,_Iowa
## 18260                                                      Maquoketa,_Iowa
## 18261                                                      Maquoketa,_Iowa
## 18262                                                      Maquoketa,_Iowa
## 18263                                                      Maquoketa,_Iowa
## 18264                                                      Maquoketa,_Iowa
## 18265                                                      Maquoketa,_Iowa
## 18266                                                      Maquoketa,_Iowa
## 18267                                                      Maquoketa,_Iowa
## 18268                                                      Maquoketa,_Iowa
## 18269                                                      Maquoketa,_Iowa
## 18270                                                      Maquoketa,_Iowa
## 18271                                                      Maquoketa,_Iowa
## 18272                                                      Maquoketa,_Iowa
## 18273                                                      Maquoketa,_Iowa
## 18274                                                      Maquoketa,_Iowa
## 18275                                                      Maquoketa,_Iowa
## 18276                                                      Maquoketa,_Iowa
## 18277                                                      Maquoketa,_Iowa
## 18278                                                      Maquoketa,_Iowa
## 18279                                                      Maquoketa,_Iowa
## 18280                                                      Maquoketa,_Iowa
## 18281                                                      Maquoketa,_Iowa
## 18282                                                      Maquoketa,_Iowa
## 18283                                                      Maquoketa,_Iowa
## 18284                                                      Maquoketa,_Iowa
## 18285                                                      Maquoketa,_Iowa
## 18286                                                      Maquoketa,_Iowa
## 18287                                                         Robins,_Iowa
## 18288                                                         Robins,_Iowa
## 18289                                                         Robins,_Iowa
## 18290                                                         Robins,_Iowa
## 18291                                                         Robins,_Iowa
## 18292                                                         Robins,_Iowa
## 18293                                                         Robins,_Iowa
## 18294                                                         Robins,_Iowa
## 18295                                                         Robins,_Iowa
## 18296                                                         Robins,_Iowa
## 18297                                                         Robins,_Iowa
## 18298                                                         Robins,_Iowa
## 18299                                                         Robins,_Iowa
## 18300                                                         Robins,_Iowa
## 18301                                                         Robins,_Iowa
## 18302                                                         Robins,_Iowa
## 18303                                                         Robins,_Iowa
## 18304                                                         Robins,_Iowa
## 18305                                                         Robins,_Iowa
## 18306                                                         Robins,_Iowa
## 18307                                                         Robins,_Iowa
## 18308                                                         Robins,_Iowa
## 18309                                                        Earlham,_Iowa
## 18310                                                        Earlham,_Iowa
## 18311                                                        Earlham,_Iowa
## 18312                                                        Earlham,_Iowa
## 18313                                                        Earlham,_Iowa
## 18314                                                        Earlham,_Iowa
## 18315                                                        Earlham,_Iowa
## 18316                                                        Earlham,_Iowa
## 18317                                                        Earlham,_Iowa
## 18318                                                        Earlham,_Iowa
## 18319                                                        Earlham,_Iowa
## 18320                                                        Earlham,_Iowa
## 18321                                                        Earlham,_Iowa
## 18322                                                        Earlham,_Iowa
## 18323                                                        Earlham,_Iowa
## 18324                                                        Earlham,_Iowa
## 18325                                                        Earlham,_Iowa
## 18326                                                        Earlham,_Iowa
## 18327                                                        Earlham,_Iowa
## 18328                                                        Earlham,_Iowa
## 18329                                                        Earlham,_Iowa
## 18330                                                        Earlham,_Iowa
## 18331                                                        Earlham,_Iowa
## 18332                                                        Earlham,_Iowa
## 18333                                                        Earlham,_Iowa
## 18334                                                        Earlham,_Iowa
## 18335                                                        Earlham,_Iowa
## 18336                                                        Earlham,_Iowa
## 18337                                                        Earlham,_Iowa
## 18338                                                        Earlham,_Iowa
## 18339                                                        Earlham,_Iowa
## 18340                                                        Earlham,_Iowa
## 18341                                                        Earlham,_Iowa
## 18342                                                        Earlham,_Iowa
## 18343                                                        Earlham,_Iowa
## 18344                                                        Earlham,_Iowa
## 18345                                                        Earlham,_Iowa
## 18346                                                        Earlham,_Iowa
## 18347                                                        Earlham,_Iowa
## 18348                                                        Earlham,_Iowa
## 18349                                                        Earlham,_Iowa
## 18350                                                        Earlham,_Iowa
## 18351                                                        Earlham,_Iowa
## 18352                                                        Earlham,_Iowa
## 18353                                                        Earlham,_Iowa
## 18354                                                        Earlham,_Iowa
## 18355                                                        Earlham,_Iowa
## 18356                                                        Earlham,_Iowa
## 18357                                                        Earlham,_Iowa
## 18358                                                        Earlham,_Iowa
## 18359                                                        Earlham,_Iowa
## 18360                                                        Earlham,_Iowa
## 18361                                                        Earlham,_Iowa
## 18362                                                        Earlham,_Iowa
## 18363                                                        Earlham,_Iowa
## 18364                                                        Earlham,_Iowa
## 18365                                                        Earlham,_Iowa
## 18366                                                        Earlham,_Iowa
## 18367                                                        Earlham,_Iowa
## 18368                                                        Earlham,_Iowa
## 18369                                                        Earlham,_Iowa
## 18370                                                        Earlham,_Iowa
## 18371                                                        Earlham,_Iowa
## 18372                                                        Earlham,_Iowa
## 18373                                                        Earlham,_Iowa
## 18374                                                        Earlham,_Iowa
## 18375                                                        Earlham,_Iowa
## 18376                                                        Earlham,_Iowa
## 18377                                                        Earlham,_Iowa
## 18378                                                        Earlham,_Iowa
## 18379                                                        Earlham,_Iowa
## 18380                                                        Earlham,_Iowa
## 18381                                                        Earlham,_Iowa
## 18382                                                        Earlham,_Iowa
## 18383                                                        Earlham,_Iowa
## 18384                                                        Earlham,_Iowa
## 18385                                                        Earlham,_Iowa
## 18386                                                        Earlham,_Iowa
## 18387                                                        Earlham,_Iowa
## 18388                                                        Earlham,_Iowa
## 18389                                                        Earlham,_Iowa
## 18390                                                        Earlham,_Iowa
## 18391                                                        Earlham,_Iowa
## 18392                                                        Earlham,_Iowa
## 18393                                                        Earlham,_Iowa
## 18394                                                        Earlham,_Iowa
## 18395                                                        Earlham,_Iowa
## 18396                                                        Earlham,_Iowa
## 18397                                                        Earlham,_Iowa
## 18398                                                        Earlham,_Iowa
## 18399                                                        Earlham,_Iowa
## 18400                                                        Earlham,_Iowa
## 18401                                                        Earlham,_Iowa
## 18402                                                        Earlham,_Iowa
## 18403                                                        Earlham,_Iowa
## 18404                                                        Earlham,_Iowa
## 18405                                                        Delphos,_Iowa
## 18406                                                        Delphos,_Iowa
## 18407                                                        Delphos,_Iowa
## 18408                                                        Delphos,_Iowa
## 18409                                                        Delphos,_Iowa
## 18410                                                        Delphos,_Iowa
## 18411                                                        Delphos,_Iowa
## 18412                                                        Delphos,_Iowa
## 18413                                                        Delphos,_Iowa
## 18414                                                        Delphos,_Iowa
## 18415                                                        Delphos,_Iowa
## 18416                                                        Delphos,_Iowa
## 18417                                                        Delphos,_Iowa
## 18418                                                        Delphos,_Iowa
## 18419                                                        Delphos,_Iowa
## 18420                                                        Delphos,_Iowa
## 18421                                                        Delphos,_Iowa
## 18422                                                        Delphos,_Iowa
## 18423                                                        Delphos,_Iowa
## 18424                                                        Delphos,_Iowa
## 18425                                                        Delphos,_Iowa
## 18426                                                        Delphos,_Iowa
## 18427                                                        Delphos,_Iowa
## 18428                                                         Panama,_Iowa
## 18429                                                         Panama,_Iowa
## 18430                                                         Panama,_Iowa
## 18431                                                         Panama,_Iowa
## 18432                                                         Panama,_Iowa
## 18433                                                         Panama,_Iowa
## 18434                                                         Panama,_Iowa
## 18435                                                         Panama,_Iowa
## 18436                                                         Panama,_Iowa
## 18437                                                         Panama,_Iowa
## 18438                                                         Panama,_Iowa
## 18439                                                         Panama,_Iowa
## 18440                                                         Panama,_Iowa
## 18441                                                         Panama,_Iowa
## 18442                                                         Panama,_Iowa
## 18443                                                         Panama,_Iowa
## 18444                                                         Panama,_Iowa
## 18445                                                         Panama,_Iowa
## 18446                                                         Panama,_Iowa
## 18447                                                         Panama,_Iowa
## 18448                                                         Panama,_Iowa
## 18449                                                         Panama,_Iowa
## 18450                                                         Panama,_Iowa
## 18451                                                         Panama,_Iowa
## 18452                                                         Panama,_Iowa
## 18453                                                         Panama,_Iowa
## 18454                                                         Panama,_Iowa
## 18455                                                         Panama,_Iowa
## 18456                                                         Panama,_Iowa
## 18457                                                         Panama,_Iowa
## 18458                                                    Rose_Hill,_Kansas
## 18459                                                    Rose_Hill,_Kansas
## 18460                                                    Rose_Hill,_Kansas
## 18461                                                    Rose_Hill,_Kansas
## 18462                                                    Rose_Hill,_Kansas
## 18463                                                    Rose_Hill,_Kansas
## 18464                                                    Rose_Hill,_Kansas
## 18465                                                    Rose_Hill,_Kansas
## 18466                                                    Rose_Hill,_Kansas
## 18467                                                    Rose_Hill,_Kansas
## 18468                                                    Rose_Hill,_Kansas
## 18469                                                    Rose_Hill,_Kansas
## 18470                                                    Rose_Hill,_Kansas
## 18471                                                    Rose_Hill,_Kansas
## 18472                                                    Rose_Hill,_Kansas
## 18473                                                    Rose_Hill,_Kansas
## 18474                                                    Rose_Hill,_Kansas
## 18475                                                    Rose_Hill,_Kansas
## 18476                                                    Rose_Hill,_Kansas
## 18477                                                    Rose_Hill,_Kansas
## 18478                                                    Rose_Hill,_Kansas
## 18479                                                    Rose_Hill,_Kansas
## 18480                                                    Rose_Hill,_Kansas
## 18481                                                    Rose_Hill,_Kansas
## 18482                                                    Rose_Hill,_Kansas
## 18483                                                    Rose_Hill,_Kansas
## 18484                                                    Rose_Hill,_Kansas
## 18485                                                    Rose_Hill,_Kansas
## 18486                                                    Rose_Hill,_Kansas
## 18487                                                    Rose_Hill,_Kansas
## 18488                                                    Rose_Hill,_Kansas
## 18489                                                    Rose_Hill,_Kansas
## 18490                                                    Rose_Hill,_Kansas
## 18491                                                    Rose_Hill,_Kansas
## 18492                                                    Rose_Hill,_Kansas
## 18493                                                    Rose_Hill,_Kansas
## 18494                                                    Rose_Hill,_Kansas
## 18495                                                    Rose_Hill,_Kansas
## 18496                                                    Rose_Hill,_Kansas
## 18497                                                    Rose_Hill,_Kansas
## 18498                                                    Rose_Hill,_Kansas
## 18499                                                    Rose_Hill,_Kansas
## 18500                                                    Rose_Hill,_Kansas
## 18501                                                    Rose_Hill,_Kansas
## 18502                                                    Rose_Hill,_Kansas
## 18503                                                    Rose_Hill,_Kansas
## 18504                                                    Rose_Hill,_Kansas
## 18505                                                    Rose_Hill,_Kansas
## 18506                                                    Rose_Hill,_Kansas
## 18507                                                    Rose_Hill,_Kansas
## 18508                                                    Rose_Hill,_Kansas
## 18509                                                    Rose_Hill,_Kansas
## 18510                                                    Rose_Hill,_Kansas
## 18511                                                    Rose_Hill,_Kansas
## 18512                                                    Rose_Hill,_Kansas
## 18513                                                    Rose_Hill,_Kansas
## 18514                                                    Rose_Hill,_Kansas
## 18515                                                    Rose_Hill,_Kansas
## 18516                                                    Rose_Hill,_Kansas
## 18517                                                    Rose_Hill,_Kansas
## 18518                                                    Rose_Hill,_Kansas
## 18519                                                    Rose_Hill,_Kansas
## 18520                                                    Rose_Hill,_Kansas
## 18521                                                    Rose_Hill,_Kansas
## 18522                                                    Rose_Hill,_Kansas
## 18523                                                    Rose_Hill,_Kansas
## 18524                                                    Rose_Hill,_Kansas
## 18525                                                    Rose_Hill,_Kansas
## 18526                                                    Rose_Hill,_Kansas
## 18527                                                    Rose_Hill,_Kansas
## 18528                                                    Rose_Hill,_Kansas
## 18529                                                    Rose_Hill,_Kansas
## 18530                                                    Rose_Hill,_Kansas
## 18531                                                    Rose_Hill,_Kansas
## 18532                                                    Rose_Hill,_Kansas
## 18533                                                    Rose_Hill,_Kansas
## 18534                                                    Rose_Hill,_Kansas
## 18535                                                    Rose_Hill,_Kansas
## 18536                                                    Rose_Hill,_Kansas
## 18537                                                    Rose_Hill,_Kansas
## 18538                                                    Rose_Hill,_Kansas
## 18539                                                    Rose_Hill,_Kansas
## 18540                                                    Rose_Hill,_Kansas
## 18541                                                    Rose_Hill,_Kansas
## 18542                                                    Rose_Hill,_Kansas
## 18543                                                    Rose_Hill,_Kansas
## 18544                                                    Rose_Hill,_Kansas
## 18545                                                    Rose_Hill,_Kansas
## 18546                                                    Rose_Hill,_Kansas
## 18547                                                    Rose_Hill,_Kansas
## 18548                                                    Rose_Hill,_Kansas
## 18549                                                    Rose_Hill,_Kansas
## 18550                                                    Rose_Hill,_Kansas
## 18551                                                    Rose_Hill,_Kansas
## 18552                                                    Rose_Hill,_Kansas
## 18553                                                    Rose_Hill,_Kansas
## 18554                                                    Rose_Hill,_Kansas
## 18555                                                    Rose_Hill,_Kansas
## 18556                                                    Rose_Hill,_Kansas
## 18557                                                    Rose_Hill,_Kansas
## 18558                                                    Rose_Hill,_Kansas
## 18559                                                    Rose_Hill,_Kansas
## 18560                                                    Rose_Hill,_Kansas
## 18561                                                    Rose_Hill,_Kansas
## 18562                                                    Rose_Hill,_Kansas
## 18563                                                    Rose_Hill,_Kansas
## 18564                                                    Rose_Hill,_Kansas
## 18565                                                    Rose_Hill,_Kansas
## 18566                                                    Rose_Hill,_Kansas
## 18567                                                    Rose_Hill,_Kansas
## 18568                                                    Rose_Hill,_Kansas
## 18569                                                    Rose_Hill,_Kansas
## 18570                                                    Rose_Hill,_Kansas
## 18571                                                    Rose_Hill,_Kansas
## 18572                                                    Rose_Hill,_Kansas
## 18573                                                    Rose_Hill,_Kansas
## 18574                                                    Rose_Hill,_Kansas
## 18575                                                    Rose_Hill,_Kansas
## 18576                                                    Rose_Hill,_Kansas
## 18577                                                    Rose_Hill,_Kansas
## 18578                                                    Rose_Hill,_Kansas
## 18579                                                    Rose_Hill,_Kansas
## 18580                                                    Rose_Hill,_Kansas
## 18581                                                    Rose_Hill,_Kansas
## 18582                                                    Rose_Hill,_Kansas
## 18583                                                    Rose_Hill,_Kansas
## 18584                                                    Rose_Hill,_Kansas
## 18585                                                    Rose_Hill,_Kansas
## 18586                                                    Rose_Hill,_Kansas
## 18587                                                    Rose_Hill,_Kansas
## 18588                                                    Rose_Hill,_Kansas
## 18589                                                    Rose_Hill,_Kansas
## 18590                                                    Rose_Hill,_Kansas
## 18591                                                    Rose_Hill,_Kansas
## 18592                                                    Rose_Hill,_Kansas
## 18593                                                    Rose_Hill,_Kansas
## 18594                                                    Rose_Hill,_Kansas
## 18595                                                    Rose_Hill,_Kansas
## 18596                                                    Rose_Hill,_Kansas
## 18597                                                   Protection,_Kansas
## 18598                                                   Protection,_Kansas
## 18599                                                   Protection,_Kansas
## 18600                                                   Protection,_Kansas
## 18601                                                   Protection,_Kansas
## 18602                                                   Protection,_Kansas
## 18603                                                   Protection,_Kansas
## 18604                                                   Protection,_Kansas
## 18605                                                   Protection,_Kansas
## 18606                                                   Protection,_Kansas
## 18607                                                   Protection,_Kansas
## 18608                                                   Protection,_Kansas
## 18609                                                   Protection,_Kansas
## 18610                                                   Protection,_Kansas
## 18611                                                   Protection,_Kansas
## 18612                                                   Protection,_Kansas
## 18613                                                   Protection,_Kansas
## 18614                                                   Protection,_Kansas
## 18615                                                   Protection,_Kansas
## 18616                                                   Protection,_Kansas
## 18617                                                      Longton,_Kansas
## 18618                                                      Longton,_Kansas
## 18619                                                      Longton,_Kansas
## 18620                                                      Longton,_Kansas
## 18621                                                      Longton,_Kansas
## 18622                                                      Longton,_Kansas
## 18623                                                      Longton,_Kansas
## 18624                                                      Longton,_Kansas
## 18625                                                      Longton,_Kansas
## 18626                                                      Longton,_Kansas
## 18627                                                      Longton,_Kansas
## 18628                                                      Longton,_Kansas
## 18629                                                      Longton,_Kansas
## 18630                                                      Longton,_Kansas
## 18631                                                      Longton,_Kansas
## 18632                                                      Longton,_Kansas
## 18633                                                      Longton,_Kansas
## 18634                                                      Longton,_Kansas
## 18635                                                      Longton,_Kansas
## 18636                                                      Longton,_Kansas
## 18637                                                      Longton,_Kansas
## 18638                                                      Longton,_Kansas
## 18639                                                      Longton,_Kansas
## 18640                                                      Longton,_Kansas
## 18641                                                      Longton,_Kansas
## 18642                                                      Longton,_Kansas
## 18643                                                     Scranton,_Kansas
## 18644                                                     Scranton,_Kansas
## 18645                                                     Scranton,_Kansas
## 18646                                                     Scranton,_Kansas
## 18647                                                     Scranton,_Kansas
## 18648                                                     Scranton,_Kansas
## 18649                                                     Scranton,_Kansas
## 18650                                                     Scranton,_Kansas
## 18651                                                     Scranton,_Kansas
## 18652                                                     Scranton,_Kansas
## 18653                                                     Scranton,_Kansas
## 18654                                                     Scranton,_Kansas
## 18655                                                     Scranton,_Kansas
## 18656                                                     Scranton,_Kansas
## 18657                                                     Scranton,_Kansas
## 18658                                                     Scranton,_Kansas
## 18659                                                     Scranton,_Kansas
## 18660                                                     Scranton,_Kansas
## 18661                                                        Chase,_Kansas
## 18662                                                        Chase,_Kansas
## 18663                                                        Chase,_Kansas
## 18664                                                        Chase,_Kansas
## 18665                                                        Chase,_Kansas
## 18666                                                        Chase,_Kansas
## 18667                                                        Chase,_Kansas
## 18668                                                        Chase,_Kansas
## 18669                                                        Chase,_Kansas
## 18670                                                        Chase,_Kansas
## 18671                                                        Chase,_Kansas
## 18672                                                        Chase,_Kansas
## 18673                                                        Chase,_Kansas
## 18674                                                        Chase,_Kansas
## 18675                                                        Chase,_Kansas
## 18676                                                        Chase,_Kansas
## 18677                                                        Chase,_Kansas
## 18678                                                        Chase,_Kansas
## 18679                                                        Chase,_Kansas
## 18680                                                        Chase,_Kansas
## 18681                                                        Chase,_Kansas
## 18682                                                        Chase,_Kansas
## 18683                                                        Chase,_Kansas
## 18684                                                        Chase,_Kansas
## 18685                                                        Chase,_Kansas
## 18686                                                        Chase,_Kansas
## 18687                                                        Chase,_Kansas
## 18688                                                        Chase,_Kansas
## 18689                                                        Chase,_Kansas
## 18690                                                        Chase,_Kansas
## 18691                                                        Chase,_Kansas
## 18692                                                        Chase,_Kansas
## 18693                                                        Chase,_Kansas
## 18694                 Communications_in_the_Federated_States_of_Micronesia
## 18695                 Communications_in_the_Federated_States_of_Micronesia
## 18696                 Communications_in_the_Federated_States_of_Micronesia
## 18697                 Communications_in_the_Federated_States_of_Micronesia
## 18698                 Communications_in_the_Federated_States_of_Micronesia
## 18699                 Communications_in_the_Federated_States_of_Micronesia
## 18700                 Communications_in_the_Federated_States_of_Micronesia
## 18701                 Communications_in_the_Federated_States_of_Micronesia
## 18702                 Communications_in_the_Federated_States_of_Micronesia
## 18703                 Communications_in_the_Federated_States_of_Micronesia
## 18704                 Communications_in_the_Federated_States_of_Micronesia
## 18705                 Communications_in_the_Federated_States_of_Micronesia
## 18706                 Communications_in_the_Federated_States_of_Micronesia
## 18707                                                 Burlington,_Kentucky
## 18708                                                 Burlington,_Kentucky
## 18709                                                 Burlington,_Kentucky
## 18710                                                 Burlington,_Kentucky
## 18711                                                 Burlington,_Kentucky
## 18712                                                 Burlington,_Kentucky
## 18713                                                 Burlington,_Kentucky
## 18714                                                 Burlington,_Kentucky
## 18715                                                 Burlington,_Kentucky
## 18716                                                 Burlington,_Kentucky
## 18717                                                 Burlington,_Kentucky
## 18718                                                 Burlington,_Kentucky
## 18719                                                 Burlington,_Kentucky
## 18720                                                 Burlington,_Kentucky
## 18721                                                 Burlington,_Kentucky
## 18722                                                 Burlington,_Kentucky
## 18723                                                 Burlington,_Kentucky
## 18724                                                 Burlington,_Kentucky
## 18725                                                 Burlington,_Kentucky
## 18726                                                 Burlington,_Kentucky
## 18727                                                 Burlington,_Kentucky
## 18728                                                 Burlington,_Kentucky
## 18729                                                 Burlington,_Kentucky
## 18730                                                 Burlington,_Kentucky
## 18731                                                 Burlington,_Kentucky
## 18732                                                 Burlington,_Kentucky
## 18733                                                 Burlington,_Kentucky
## 18734                                                 Burlington,_Kentucky
## 18735                                                 Burlington,_Kentucky
## 18736                                                 Burlington,_Kentucky
## 18737                                                      Ewing,_Kentucky
## 18738                                                      Ewing,_Kentucky
## 18739                                                      Ewing,_Kentucky
## 18740                                                      Ewing,_Kentucky
## 18741                                                      Ewing,_Kentucky
## 18742                                                      Ewing,_Kentucky
## 18743                                                      Ewing,_Kentucky
## 18744                                                      Ewing,_Kentucky
## 18745                                                      Ewing,_Kentucky
## 18746                                                      Ewing,_Kentucky
## 18747                                                      Ewing,_Kentucky
## 18748                                                      Ewing,_Kentucky
## 18749                                                      Ewing,_Kentucky
## 18750                                                      Ewing,_Kentucky
## 18751                                                      Ewing,_Kentucky
## 18752                                                      Ewing,_Kentucky
## 18753                                                      Ewing,_Kentucky
## 18754                                                      Ewing,_Kentucky
## 18755                                                      Ewing,_Kentucky
## 18756                                                      Ewing,_Kentucky
## 18757                                                      Ewing,_Kentucky
## 18758                                                      Ewing,_Kentucky
## 18759                                                      Ewing,_Kentucky
## 18760                                                      Ewing,_Kentucky
## 18761                                                   Supreme,_Louisiana
## 18762                                                   Supreme,_Louisiana
## 18763                                                   Supreme,_Louisiana
## 18764                                                   Supreme,_Louisiana
## 18765                                                   Supreme,_Louisiana
## 18766                                                   Supreme,_Louisiana
## 18767                                                   Supreme,_Louisiana
## 18768                                                   Supreme,_Louisiana
## 18769                                                   Supreme,_Louisiana
## 18770                                                   Supreme,_Louisiana
## 18771                                                   Supreme,_Louisiana
## 18772                                                   Supreme,_Louisiana
## 18773                                                   Supreme,_Louisiana
## 18774                                                   Supreme,_Louisiana
## 18775                                                   Supreme,_Louisiana
## 18776                                                   Supreme,_Louisiana
## 18777                                                   Supreme,_Louisiana
## 18778                                                   Supreme,_Louisiana
## 18779                                                   Supreme,_Louisiana
## 18780                                                   Supreme,_Louisiana
## 18781                                                Maringouin,_Louisiana
## 18782                                                Maringouin,_Louisiana
## 18783                                                Maringouin,_Louisiana
## 18784                                                Maringouin,_Louisiana
## 18785                                                Maringouin,_Louisiana
## 18786                                                Maringouin,_Louisiana
## 18787                                                Maringouin,_Louisiana
## 18788                                                Maringouin,_Louisiana
## 18789                                                Maringouin,_Louisiana
## 18790                                                Maringouin,_Louisiana
## 18791                                                Maringouin,_Louisiana
## 18792                                                Maringouin,_Louisiana
## 18793                                                Maringouin,_Louisiana
## 18794                                                Maringouin,_Louisiana
## 18795                                                Maringouin,_Louisiana
## 18796                                                Maringouin,_Louisiana
## 18797                                                Maringouin,_Louisiana
## 18798                                                Maringouin,_Louisiana
## 18799                                                Maringouin,_Louisiana
## 18800                                                Maringouin,_Louisiana
## 18801                                                Maringouin,_Louisiana
## 18802                                                Maringouin,_Louisiana
## 18803                                                Maringouin,_Louisiana
## 18804                                                Maringouin,_Louisiana
## 18805                                                Maringouin,_Louisiana
## 18806                                                Maringouin,_Louisiana
## 18807                                                Maringouin,_Louisiana
## 18808                                                Maringouin,_Louisiana
## 18809                                                Maringouin,_Louisiana
## 18810                                                Maringouin,_Louisiana
## 18811                                                Maringouin,_Louisiana
## 18812                                                Maringouin,_Louisiana
## 18813                                                Maringouin,_Louisiana
## 18814                                                Maringouin,_Louisiana
## 18815                                                    Fenton,_Louisiana
## 18816                                                    Fenton,_Louisiana
## 18817                                                    Fenton,_Louisiana
## 18818                                                    Fenton,_Louisiana
## 18819                                                    Fenton,_Louisiana
## 18820                                                    Fenton,_Louisiana
## 18821                                                    Fenton,_Louisiana
## 18822                                                    Fenton,_Louisiana
## 18823                                                    Fenton,_Louisiana
## 18824                                                    Fenton,_Louisiana
## 18825                                                    Fenton,_Louisiana
## 18826                                                    Fenton,_Louisiana
## 18827                                                    Fenton,_Louisiana
## 18828                                                    Fenton,_Louisiana
## 18829                                                    Fenton,_Louisiana
## 18830                                                    Fenton,_Louisiana
## 18831                                                    Fenton,_Louisiana
## 18832                                                    Fenton,_Louisiana
## 18833                                                    Fenton,_Louisiana
## 18834                                                    Fenton,_Louisiana
## 18835                                                    Violet,_Louisiana
## 18836                                                    Violet,_Louisiana
## 18837                                                    Violet,_Louisiana
## 18838                                                    Violet,_Louisiana
## 18839                                                    Violet,_Louisiana
## 18840                                                    Violet,_Louisiana
## 18841                                                    Violet,_Louisiana
## 18842                                                    Violet,_Louisiana
## 18843                                                    Violet,_Louisiana
## 18844                                                    Violet,_Louisiana
## 18845                                                    Violet,_Louisiana
## 18846                                                    Violet,_Louisiana
## 18847                                                    Violet,_Louisiana
## 18848                                                    Violet,_Louisiana
## 18849                                                    Violet,_Louisiana
## 18850                                                    Violet,_Louisiana
## 18851                                                    Violet,_Louisiana
## 18852                                                    Violet,_Louisiana
## 18853                                                    Violet,_Louisiana
## 18854                                                    Violet,_Louisiana
## 18855                                                    Violet,_Louisiana
## 18856                                                    Violet,_Louisiana
## 18857                                                    Violet,_Louisiana
## 18858                                                    Violet,_Louisiana
## 18859                                                    Violet,_Louisiana
## 18860                                                    Violet,_Louisiana
## 18861                                                    Violet,_Louisiana
## 18862                                                    Violet,_Louisiana
## 18863                                                    Violet,_Louisiana
## 18864                                                    Violet,_Louisiana
## 18865                                                    Violet,_Louisiana
## 18866                                                    Violet,_Louisiana
## 18867                                                    Violet,_Louisiana
## 18868                                                    Violet,_Louisiana
## 18869                                                    Violet,_Louisiana
## 18870                                                    Violet,_Louisiana
## 18871                                                    Violet,_Louisiana
## 18872                                                    Violet,_Louisiana
## 18873                                                    Violet,_Louisiana
## 18874                                                    Violet,_Louisiana
## 18875                                               Morgan_City,_Louisiana
## 18876                                               Morgan_City,_Louisiana
## 18877                                               Morgan_City,_Louisiana
## 18878                                               Morgan_City,_Louisiana
## 18879                                               Morgan_City,_Louisiana
## 18880                                               Morgan_City,_Louisiana
## 18881                                               Morgan_City,_Louisiana
## 18882                                               Morgan_City,_Louisiana
## 18883                                               Morgan_City,_Louisiana
## 18884                                               Morgan_City,_Louisiana
## 18885                                               Morgan_City,_Louisiana
## 18886                                               Morgan_City,_Louisiana
## 18887                                               Morgan_City,_Louisiana
## 18888                                               Morgan_City,_Louisiana
## 18889                                               Morgan_City,_Louisiana
## 18890                                               Morgan_City,_Louisiana
## 18891                                               Morgan_City,_Louisiana
## 18892                                               Morgan_City,_Louisiana
## 18893                                               Morgan_City,_Louisiana
## 18894                                               Morgan_City,_Louisiana
## 18895                                               Morgan_City,_Louisiana
## 18896                                               Morgan_City,_Louisiana
## 18897                                               Morgan_City,_Louisiana
## 18898                                               Morgan_City,_Louisiana
## 18899                                               Morgan_City,_Louisiana
## 18900                                               Morgan_City,_Louisiana
## 18901                                               Morgan_City,_Louisiana
## 18902                                               Morgan_City,_Louisiana
## 18903                                               Morgan_City,_Louisiana
## 18904                                               Morgan_City,_Louisiana
## 18905                                               Morgan_City,_Louisiana
## 18906                                               Morgan_City,_Louisiana
## 18907                                               Morgan_City,_Louisiana
## 18908                                               Morgan_City,_Louisiana
## 18909                                               Morgan_City,_Louisiana
## 18910                                               Morgan_City,_Louisiana
## 18911                                               Morgan_City,_Louisiana
## 18912                                               Morgan_City,_Louisiana
## 18913                                               Morgan_City,_Louisiana
## 18914                                               Morgan_City,_Louisiana
## 18915                                               Morgan_City,_Louisiana
## 18916                                               Morgan_City,_Louisiana
## 18917                                               Morgan_City,_Louisiana
## 18918                                               Morgan_City,_Louisiana
## 18919                                               Morgan_City,_Louisiana
## 18920                                               Morgan_City,_Louisiana
## 18921                                               Morgan_City,_Louisiana
## 18922                                               Morgan_City,_Louisiana
## 18923                                               Morgan_City,_Louisiana
## 18924                                               Morgan_City,_Louisiana
## 18925                                               Morgan_City,_Louisiana
## 18926                                               Morgan_City,_Louisiana
## 18927                                               Morgan_City,_Louisiana
## 18928                                               Morgan_City,_Louisiana
## 18929                                               Morgan_City,_Louisiana
## 18930                                               Morgan_City,_Louisiana
## 18931                                               Morgan_City,_Louisiana
## 18932                                               Morgan_City,_Louisiana
## 18933                                               Morgan_City,_Louisiana
## 18934                                               Morgan_City,_Louisiana
## 18935                                               Morgan_City,_Louisiana
## 18936                                               Morgan_City,_Louisiana
## 18937                                               Morgan_City,_Louisiana
## 18938                                               Morgan_City,_Louisiana
## 18939                                               Morgan_City,_Louisiana
## 18940                                               Morgan_City,_Louisiana
## 18941                                               Morgan_City,_Louisiana
## 18942                                               Morgan_City,_Louisiana
## 18943                                               Morgan_City,_Louisiana
## 18944                                               Morgan_City,_Louisiana
## 18945                                               Morgan_City,_Louisiana
## 18946                                               Morgan_City,_Louisiana
## 18947                                               Morgan_City,_Louisiana
## 18948                                          Nashville_Plantation,_Maine
## 18949                                          Nashville_Plantation,_Maine
## 18950                                          Nashville_Plantation,_Maine
## 18951                                          Nashville_Plantation,_Maine
## 18952                                          Nashville_Plantation,_Maine
## 18953                                          Nashville_Plantation,_Maine
## 18954                                          Nashville_Plantation,_Maine
## 18955                                          Nashville_Plantation,_Maine
## 18956                                          Nashville_Plantation,_Maine
## 18957                                          Nashville_Plantation,_Maine
## 18958                                          Nashville_Plantation,_Maine
## 18959                                          Nashville_Plantation,_Maine
## 18960                                          Nashville_Plantation,_Maine
## 18961                                          Nashville_Plantation,_Maine
## 18962                                                        Orient,_Maine
## 18963                                                        Orient,_Maine
## 18964                                                        Orient,_Maine
## 18965                                                        Orient,_Maine
## 18966                                                        Orient,_Maine
## 18967                                                        Orient,_Maine
## 18968                                                        Orient,_Maine
## 18969                                                        Orient,_Maine
## 18970                                                        Orient,_Maine
## 18971                                                        Orient,_Maine
## 18972                                                        Orient,_Maine
## 18973                                                        Orient,_Maine
## 18974                                                       Raymond,_Maine
## 18975                                                       Raymond,_Maine
## 18976                                                       Raymond,_Maine
## 18977                                                       Raymond,_Maine
## 18978                                                       Raymond,_Maine
## 18979                                                       Raymond,_Maine
## 18980                                                       Raymond,_Maine
## 18981                                                       Raymond,_Maine
## 18982                                                       Raymond,_Maine
## 18983                                                       Raymond,_Maine
## 18984                                                       Raymond,_Maine
## 18985                                                       Raymond,_Maine
## 18986                                                       Raymond,_Maine
## 18987                                                       Raymond,_Maine
## 18988                                                       Raymond,_Maine
## 18989                                                       Raymond,_Maine
## 18990                                                       Raymond,_Maine
## 18991                                                       Raymond,_Maine
## 18992                                                       Raymond,_Maine
## 18993                                                       Raymond,_Maine
## 18994                                                       Raymond,_Maine
## 18995                                                       Raymond,_Maine
## 18996                                                       Raymond,_Maine
## 18997                                                      Rockport,_Maine
## 18998                                                      Rockport,_Maine
## 18999                                                      Rockport,_Maine
## 19000                                                      Rockport,_Maine
## 19001                                                      Rockport,_Maine
## 19002                                                      Rockport,_Maine
## 19003                                                      Rockport,_Maine
## 19004                                                      Rockport,_Maine
## 19005                                                      Rockport,_Maine
## 19006                                                      Rockport,_Maine
## 19007                                                      Rockport,_Maine
## 19008                                                      Rockport,_Maine
## 19009                                                      Rockport,_Maine
## 19010                                                      Rockport,_Maine
## 19011                                                      Rockport,_Maine
## 19012                                                      Rockport,_Maine
## 19013                                                      Rockport,_Maine
## 19014                                                      Rockport,_Maine
## 19015                                                      Rockport,_Maine
## 19016                                                      Rockport,_Maine
## 19017                                                      Rockport,_Maine
## 19018                                                      Rockport,_Maine
## 19019                                                      Rockport,_Maine
## 19020                                                      Rockport,_Maine
## 19021                                                      Rockport,_Maine
## 19022                                                      Rockport,_Maine
## 19023                                                      Rockport,_Maine
## 19024                                                      Rockport,_Maine
## 19025                                                      Rockport,_Maine
## 19026                                                      Rockport,_Maine
## 19027                                                      Rockport,_Maine
## 19028                                                      Rockport,_Maine
## 19029                                                      Rockport,_Maine
## 19030                                                      Rockport,_Maine
## 19031                                                      Rockport,_Maine
## 19032                                                      Rockport,_Maine
## 19033                                                      Rockport,_Maine
## 19034                                                      Rockport,_Maine
## 19035                                                      Rockport,_Maine
## 19036                                                      Rockport,_Maine
## 19037                                                      Rockport,_Maine
## 19038                                                      Rockport,_Maine
## 19039                                                      Rockport,_Maine
## 19040                                                      Rockport,_Maine
## 19041                                                      Rockport,_Maine
## 19042                                                      Rockport,_Maine
## 19043                                                      Rockport,_Maine
## 19044                                                      Rockport,_Maine
## 19045                                                         Sebec,_Maine
## 19046                                                         Sebec,_Maine
## 19047                                                         Sebec,_Maine
## 19048                                                         Sebec,_Maine
## 19049                                                         Sebec,_Maine
## 19050                                                         Sebec,_Maine
## 19051                                                         Sebec,_Maine
## 19052                                                         Sebec,_Maine
## 19053                                                         Sebec,_Maine
## 19054                                                         Sebec,_Maine
## 19055                                                         Sebec,_Maine
## 19056                                                         Sebec,_Maine
## 19057                                                         Sebec,_Maine
## 19058                                                         Sebec,_Maine
## 19059                                                         Sebec,_Maine
## 19060                                                         Sebec,_Maine
## 19061                                                         Sebec,_Maine
## 19062                                                         Sebec,_Maine
## 19063                                                         Sebec,_Maine
## 19064                                                         Sebec,_Maine
## 19065                                                         Sebec,_Maine
## 19066                                                         Sebec,_Maine
## 19067                                                         Sebec,_Maine
## 19068                                                         Sebec,_Maine
## 19069                                                         Sebec,_Maine
## 19070                                                     The_Forks,_Maine
## 19071                                                     The_Forks,_Maine
## 19072                                                     The_Forks,_Maine
## 19073                                                     The_Forks,_Maine
## 19074                                                     The_Forks,_Maine
## 19075                                                     The_Forks,_Maine
## 19076                                                     The_Forks,_Maine
## 19077                                                     The_Forks,_Maine
## 19078                                                     The_Forks,_Maine
## 19079                                                     The_Forks,_Maine
## 19080                                                     The_Forks,_Maine
## 19081                                                     The_Forks,_Maine
## 19082                                                     The_Forks,_Maine
## 19083                                                     The_Forks,_Maine
## 19084                                                     The_Forks,_Maine
## 19085                                                     The_Forks,_Maine
## 19086                                                     The_Forks,_Maine
## 19087                                                     The_Forks,_Maine
## 19088                                                       Belmont,_Maine
## 19089                                                       Belmont,_Maine
## 19090                                                       Belmont,_Maine
## 19091                                                       Belmont,_Maine
## 19092                                                       Belmont,_Maine
## 19093                                                       Belmont,_Maine
## 19094                                                       Belmont,_Maine
## 19095                                                       Belmont,_Maine
## 19096                                                       Belmont,_Maine
## 19097                                                       Belmont,_Maine
## 19098                                                       Belmont,_Maine
## 19099                                                       Belmont,_Maine
## 19100                                                       Belmont,_Maine
## 19101                                                       Belmont,_Maine
## 19102                                                       Belmont,_Maine
## 19103                                                       Belmont,_Maine
## 19104                                                  Roque_Bluffs,_Maine
## 19105                                                  Roque_Bluffs,_Maine
## 19106                                                  Roque_Bluffs,_Maine
## 19107                                                  Roque_Bluffs,_Maine
## 19108                                                  Roque_Bluffs,_Maine
## 19109                                                  Roque_Bluffs,_Maine
## 19110                                                  Roque_Bluffs,_Maine
## 19111                                                  Roque_Bluffs,_Maine
## 19112                                                  Roque_Bluffs,_Maine
## 19113                                                  Roque_Bluffs,_Maine
## 19114                                              Maryland_City,_Maryland
## 19115                                              Maryland_City,_Maryland
## 19116                                              Maryland_City,_Maryland
## 19117                                              Maryland_City,_Maryland
## 19118                                              Maryland_City,_Maryland
## 19119                                              Maryland_City,_Maryland
## 19120                                              Maryland_City,_Maryland
## 19121                                              Maryland_City,_Maryland
## 19122                                              Maryland_City,_Maryland
## 19123                                              Maryland_City,_Maryland
## 19124                                              Maryland_City,_Maryland
## 19125                                              Maryland_City,_Maryland
## 19126                                              Maryland_City,_Maryland
## 19127                                              Maryland_City,_Maryland
## 19128                                              Maryland_City,_Maryland
## 19129                                              Maryland_City,_Maryland
## 19130                                              Maryland_City,_Maryland
## 19131                                              Maryland_City,_Maryland
## 19132                                              Maryland_City,_Maryland
## 19133                                              Maryland_City,_Maryland
## 19134                                              Maryland_City,_Maryland
## 19135                                              Maryland_City,_Maryland
## 19136                                              Maryland_City,_Maryland
## 19137                                              Maryland_City,_Maryland
## 19138                                              Maryland_City,_Maryland
## 19139                                              Maryland_City,_Maryland
## 19140                                              Maryland_City,_Maryland
## 19141                                              Maryland_City,_Maryland
## 19142                                              Maryland_City,_Maryland
## 19143                                              Maryland_City,_Maryland
## 19144                                              Maryland_City,_Maryland
## 19145                                              Maryland_City,_Maryland
## 19146                                              Maryland_City,_Maryland
## 19147                                              Maryland_City,_Maryland
## 19148                                                 Kingsville,_Maryland
## 19149                                                 Kingsville,_Maryland
## 19150                                                 Kingsville,_Maryland
## 19151                                                 Kingsville,_Maryland
## 19152                                                 Kingsville,_Maryland
## 19153                                                 Kingsville,_Maryland
## 19154                                                 Kingsville,_Maryland
## 19155                                                 Kingsville,_Maryland
## 19156                                                 Kingsville,_Maryland
## 19157                                                 Kingsville,_Maryland
## 19158                                                 Kingsville,_Maryland
## 19159                                                 Kingsville,_Maryland
## 19160                                                 Kingsville,_Maryland
## 19161                                                 Kingsville,_Maryland
## 19162                                                 Kingsville,_Maryland
## 19163                                                 Kingsville,_Maryland
## 19164                                                 Kingsville,_Maryland
## 19165                                                 Kingsville,_Maryland
## 19166                                                 Kingsville,_Maryland
## 19167                                                 Kingsville,_Maryland
## 19168                                                 Kingsville,_Maryland
## 19169                                                 Kingsville,_Maryland
## 19170                                                 Kingsville,_Maryland
## 19171                                                 Kingsville,_Maryland
## 19172                                                 Kingsville,_Maryland
## 19173                                                 Kingsville,_Maryland
## 19174                                               Middle_River,_Maryland
## 19175                                               Middle_River,_Maryland
## 19176                                               Middle_River,_Maryland
## 19177                                               Middle_River,_Maryland
## 19178                                               Middle_River,_Maryland
## 19179                                               Middle_River,_Maryland
## 19180                                               Middle_River,_Maryland
## 19181                                               Middle_River,_Maryland
## 19182                                               Middle_River,_Maryland
## 19183                                               Middle_River,_Maryland
## 19184                                               Middle_River,_Maryland
## 19185                                               Middle_River,_Maryland
## 19186                                               Middle_River,_Maryland
## 19187                                               Middle_River,_Maryland
## 19188                                               Middle_River,_Maryland
## 19189                                               Middle_River,_Maryland
## 19190                                               Middle_River,_Maryland
## 19191                                               Middle_River,_Maryland
## 19192                                               Middle_River,_Maryland
## 19193                                               Middle_River,_Maryland
## 19194                                               Middle_River,_Maryland
## 19195                                               Middle_River,_Maryland
## 19196                                               Middle_River,_Maryland
## 19197                                               Middle_River,_Maryland
## 19198                                               Middle_River,_Maryland
## 19199                                               Middle_River,_Maryland
## 19200                                           Braddock_Heights,_Maryland
## 19201                                           Braddock_Heights,_Maryland
## 19202                                           Braddock_Heights,_Maryland
## 19203                                           Braddock_Heights,_Maryland
## 19204                                           Braddock_Heights,_Maryland
## 19205                                           Braddock_Heights,_Maryland
## 19206                                           Braddock_Heights,_Maryland
## 19207                                           Braddock_Heights,_Maryland
## 19208                                           Braddock_Heights,_Maryland
## 19209                                           Braddock_Heights,_Maryland
## 19210                                           Braddock_Heights,_Maryland
## 19211                                           Braddock_Heights,_Maryland
## 19212                                           Braddock_Heights,_Maryland
## 19213                                           Braddock_Heights,_Maryland
## 19214                                           Braddock_Heights,_Maryland
## 19215                                           Braddock_Heights,_Maryland
## 19216                                           Braddock_Heights,_Maryland
## 19217                                           Braddock_Heights,_Maryland
## 19218                                           Braddock_Heights,_Maryland
## 19219                                           Braddock_Heights,_Maryland
## 19220                                           Braddock_Heights,_Maryland
## 19221                                           Braddock_Heights,_Maryland
## 19222                                           Braddock_Heights,_Maryland
## 19223                                           Braddock_Heights,_Maryland
## 19224                                           Braddock_Heights,_Maryland
## 19225                                           Braddock_Heights,_Maryland
## 19226                                           Braddock_Heights,_Maryland
## 19227                                           Braddock_Heights,_Maryland
## 19228                                           Braddock_Heights,_Maryland
## 19229                                           Braddock_Heights,_Maryland
## 19230                                           Braddock_Heights,_Maryland
## 19231                                           Braddock_Heights,_Maryland
## 19232                                           Braddock_Heights,_Maryland
## 19233                                           Braddock_Heights,_Maryland
## 19234                                           Braddock_Heights,_Maryland
## 19235                                           Braddock_Heights,_Maryland
## 19236                                           Braddock_Heights,_Maryland
## 19237                                           Braddock_Heights,_Maryland
## 19238                                           Braddock_Heights,_Maryland
## 19239                                           Braddock_Heights,_Maryland
## 19240                                           Braddock_Heights,_Maryland
## 19241                                           Braddock_Heights,_Maryland
## 19242                                           Braddock_Heights,_Maryland
## 19243                                           Braddock_Heights,_Maryland
## 19244                                           Braddock_Heights,_Maryland
## 19245                                           Braddock_Heights,_Maryland
## 19246                                           Braddock_Heights,_Maryland
## 19247                                           Braddock_Heights,_Maryland
## 19248                                           Braddock_Heights,_Maryland
## 19249                                           Braddock_Heights,_Maryland
## 19250                                           Braddock_Heights,_Maryland
## 19251                                           Braddock_Heights,_Maryland
## 19252                                           Braddock_Heights,_Maryland
## 19253                                           Braddock_Heights,_Maryland
## 19254                                           Braddock_Heights,_Maryland
## 19255                                           Braddock_Heights,_Maryland
## 19256                                           Braddock_Heights,_Maryland
## 19257                                           Braddock_Heights,_Maryland
## 19258                                           Braddock_Heights,_Maryland
## 19259                                           Braddock_Heights,_Maryland
## 19260                                           Braddock_Heights,_Maryland
## 19261                                           Braddock_Heights,_Maryland
## 19262                                           Braddock_Heights,_Maryland
## 19263                                           Braddock_Heights,_Maryland
## 19264                                           Braddock_Heights,_Maryland
## 19265                                           Braddock_Heights,_Maryland
## 19266                                           Braddock_Heights,_Maryland
## 19267                                           Braddock_Heights,_Maryland
## 19268                                           Braddock_Heights,_Maryland
## 19269                                           Braddock_Heights,_Maryland
## 19270                                           Braddock_Heights,_Maryland
## 19271                                           Braddock_Heights,_Maryland
## 19272                                           Braddock_Heights,_Maryland
## 19273                                           Braddock_Heights,_Maryland
## 19274                                           Braddock_Heights,_Maryland
## 19275                                           Braddock_Heights,_Maryland
## 19276                                           Braddock_Heights,_Maryland
## 19277                                           Braddock_Heights,_Maryland
## 19278                                           Braddock_Heights,_Maryland
## 19279                                           Braddock_Heights,_Maryland
## 19280                                           Braddock_Heights,_Maryland
## 19281                                           Braddock_Heights,_Maryland
## 19282                                           Braddock_Heights,_Maryland
## 19283                                           Braddock_Heights,_Maryland
## 19284                                           Braddock_Heights,_Maryland
## 19285                                           Braddock_Heights,_Maryland
## 19286                                           Braddock_Heights,_Maryland
## 19287                                           Braddock_Heights,_Maryland
## 19288                                           Braddock_Heights,_Maryland
## 19289                                           Braddock_Heights,_Maryland
## 19290                                           Braddock_Heights,_Maryland
## 19291                                           Braddock_Heights,_Maryland
## 19292                                           Braddock_Heights,_Maryland
## 19293                                           Braddock_Heights,_Maryland
## 19294                                           Braddock_Heights,_Maryland
## 19295                                           Braddock_Heights,_Maryland
## 19296                                           Braddock_Heights,_Maryland
## 19297                                           Braddock_Heights,_Maryland
## 19298                                           Braddock_Heights,_Maryland
## 19299                                           Braddock_Heights,_Maryland
## 19300                                           Braddock_Heights,_Maryland
## 19301                                           Braddock_Heights,_Maryland
## 19302                                           Braddock_Heights,_Maryland
## 19303                                           Braddock_Heights,_Maryland
## 19304                                           Braddock_Heights,_Maryland
## 19305                                           Braddock_Heights,_Maryland
## 19306                                           Braddock_Heights,_Maryland
## 19307                                           Braddock_Heights,_Maryland
## 19308                                           Braddock_Heights,_Maryland
## 19309                                           Braddock_Heights,_Maryland
## 19310                                           Braddock_Heights,_Maryland
## 19311                                           Braddock_Heights,_Maryland
## 19312                                           Braddock_Heights,_Maryland
## 19313                                           Braddock_Heights,_Maryland
## 19314                                           Braddock_Heights,_Maryland
## 19315                                           Braddock_Heights,_Maryland
## 19316                                           Braddock_Heights,_Maryland
## 19317                                           Braddock_Heights,_Maryland
## 19318                                           Braddock_Heights,_Maryland
## 19319                                           Braddock_Heights,_Maryland
## 19320                                           Braddock_Heights,_Maryland
## 19321                                           Braddock_Heights,_Maryland
## 19322                                           Braddock_Heights,_Maryland
## 19323                                           Braddock_Heights,_Maryland
## 19324                                           Braddock_Heights,_Maryland
## 19325                                           Braddock_Heights,_Maryland
## 19326                                           Braddock_Heights,_Maryland
## 19327                                           Braddock_Heights,_Maryland
## 19328                                           Braddock_Heights,_Maryland
## 19329                                           Braddock_Heights,_Maryland
## 19330                                           Braddock_Heights,_Maryland
## 19331                                           Braddock_Heights,_Maryland
## 19332                                           Braddock_Heights,_Maryland
## 19333                                           Braddock_Heights,_Maryland
## 19334                                           Braddock_Heights,_Maryland
## 19335                                           Braddock_Heights,_Maryland
## 19336                                           Braddock_Heights,_Maryland
## 19337                                           Braddock_Heights,_Maryland
## 19338                                           Braddock_Heights,_Maryland
## 19339                                           Braddock_Heights,_Maryland
## 19340                                           Braddock_Heights,_Maryland
## 19341                                           Braddock_Heights,_Maryland
## 19342                                           Braddock_Heights,_Maryland
## 19343                                           Braddock_Heights,_Maryland
## 19344                                           Braddock_Heights,_Maryland
## 19345                                           Braddock_Heights,_Maryland
## 19346                                           Braddock_Heights,_Maryland
## 19347                                           Braddock_Heights,_Maryland
## 19348                                           Braddock_Heights,_Maryland
## 19349                                           Braddock_Heights,_Maryland
## 19350                                           Braddock_Heights,_Maryland
## 19351                                           Braddock_Heights,_Maryland
## 19352                                           Braddock_Heights,_Maryland
## 19353                                             Havre_de_Grace,_Maryland
## 19354                                             Havre_de_Grace,_Maryland
## 19355                                             Havre_de_Grace,_Maryland
## 19356                                             Havre_de_Grace,_Maryland
## 19357                                             Havre_de_Grace,_Maryland
## 19358                                             Havre_de_Grace,_Maryland
## 19359                                             Havre_de_Grace,_Maryland
## 19360                                             Havre_de_Grace,_Maryland
## 19361                                             Havre_de_Grace,_Maryland
## 19362                                             Havre_de_Grace,_Maryland
## 19363                                             Havre_de_Grace,_Maryland
## 19364                                             Havre_de_Grace,_Maryland
## 19365                                             Havre_de_Grace,_Maryland
## 19366                                             Havre_de_Grace,_Maryland
## 19367                                             Havre_de_Grace,_Maryland
## 19368                                             Havre_de_Grace,_Maryland
## 19369                                             Havre_de_Grace,_Maryland
## 19370                                             Havre_de_Grace,_Maryland
## 19371                                             Havre_de_Grace,_Maryland
## 19372                                             Havre_de_Grace,_Maryland
## 19373                                             Havre_de_Grace,_Maryland
## 19374                                             Havre_de_Grace,_Maryland
## 19375                                             Havre_de_Grace,_Maryland
## 19376                                             Havre_de_Grace,_Maryland
## 19377                                             Havre_de_Grace,_Maryland
## 19378                                             Havre_de_Grace,_Maryland
## 19379                                             Havre_de_Grace,_Maryland
## 19380                                             Havre_de_Grace,_Maryland
## 19381                                             Havre_de_Grace,_Maryland
## 19382                                             Havre_de_Grace,_Maryland
## 19383                                             Havre_de_Grace,_Maryland
## 19384                                             Havre_de_Grace,_Maryland
## 19385                                             Havre_de_Grace,_Maryland
## 19386                                             Havre_de_Grace,_Maryland
## 19387                                             Havre_de_Grace,_Maryland
## 19388                                             Havre_de_Grace,_Maryland
## 19389                                             Havre_de_Grace,_Maryland
## 19390                                             Havre_de_Grace,_Maryland
## 19391                                             Havre_de_Grace,_Maryland
## 19392                                             Havre_de_Grace,_Maryland
## 19393                                             Havre_de_Grace,_Maryland
## 19394                                             Havre_de_Grace,_Maryland
## 19395                                             Havre_de_Grace,_Maryland
## 19396                                             Havre_de_Grace,_Maryland
## 19397                                             Havre_de_Grace,_Maryland
## 19398                                             Havre_de_Grace,_Maryland
## 19399                                             Havre_de_Grace,_Maryland
## 19400                                             Havre_de_Grace,_Maryland
## 19401                                             Havre_de_Grace,_Maryland
## 19402                                             Havre_de_Grace,_Maryland
## 19403                                             Havre_de_Grace,_Maryland
## 19404                                             Havre_de_Grace,_Maryland
## 19405                                             Havre_de_Grace,_Maryland
## 19406                                             Havre_de_Grace,_Maryland
## 19407                                             Havre_de_Grace,_Maryland
## 19408                                             Havre_de_Grace,_Maryland
## 19409                                             Havre_de_Grace,_Maryland
## 19410                                             Havre_de_Grace,_Maryland
## 19411                                             Havre_de_Grace,_Maryland
## 19412                                             Havre_de_Grace,_Maryland
## 19413                                             Havre_de_Grace,_Maryland
## 19414                                             Havre_de_Grace,_Maryland
## 19415                                             Havre_de_Grace,_Maryland
## 19416                                             Havre_de_Grace,_Maryland
## 19417                                             Havre_de_Grace,_Maryland
## 19418                                             Havre_de_Grace,_Maryland
## 19419                                             Havre_de_Grace,_Maryland
## 19420                                             Havre_de_Grace,_Maryland
## 19421                                             Havre_de_Grace,_Maryland
## 19422                                             Havre_de_Grace,_Maryland
## 19423                                             Havre_de_Grace,_Maryland
## 19424                                             Havre_de_Grace,_Maryland
## 19425                                             Havre_de_Grace,_Maryland
## 19426                                             Havre_de_Grace,_Maryland
## 19427                                             Havre_de_Grace,_Maryland
## 19428                                             Havre_de_Grace,_Maryland
## 19429                                             Havre_de_Grace,_Maryland
## 19430                                             Havre_de_Grace,_Maryland
## 19431                                             Havre_de_Grace,_Maryland
## 19432                                             Havre_de_Grace,_Maryland
## 19433                                             Havre_de_Grace,_Maryland
## 19434                                             Havre_de_Grace,_Maryland
## 19435                                             Havre_de_Grace,_Maryland
## 19436                                             Havre_de_Grace,_Maryland
## 19437                                             Havre_de_Grace,_Maryland
## 19438                                             Havre_de_Grace,_Maryland
## 19439                                             Havre_de_Grace,_Maryland
## 19440                                             Havre_de_Grace,_Maryland
## 19441                                             Havre_de_Grace,_Maryland
## 19442                                             Havre_de_Grace,_Maryland
## 19443                                             Havre_de_Grace,_Maryland
## 19444                                             Havre_de_Grace,_Maryland
## 19445                                             Havre_de_Grace,_Maryland
## 19446                                             Havre_de_Grace,_Maryland
## 19447                                             Havre_de_Grace,_Maryland
## 19448                                             Havre_de_Grace,_Maryland
## 19449                                             Havre_de_Grace,_Maryland
## 19450                                             Havre_de_Grace,_Maryland
## 19451                                             Havre_de_Grace,_Maryland
## 19452                                             Havre_de_Grace,_Maryland
## 19453                                             Havre_de_Grace,_Maryland
## 19454                                             Havre_de_Grace,_Maryland
## 19455                                             Havre_de_Grace,_Maryland
## 19456                                             Havre_de_Grace,_Maryland
## 19457                                             Havre_de_Grace,_Maryland
## 19458                                             Havre_de_Grace,_Maryland
## 19459                                             Havre_de_Grace,_Maryland
## 19460                                             Havre_de_Grace,_Maryland
## 19461                                             Havre_de_Grace,_Maryland
## 19462                                             Havre_de_Grace,_Maryland
## 19463                                             Havre_de_Grace,_Maryland
## 19464                                             Havre_de_Grace,_Maryland
## 19465                                             Havre_de_Grace,_Maryland
## 19466                                             Havre_de_Grace,_Maryland
## 19467                                             Havre_de_Grace,_Maryland
## 19468                                             Havre_de_Grace,_Maryland
## 19469                                             Havre_de_Grace,_Maryland
## 19470                                             Havre_de_Grace,_Maryland
## 19471                                             Havre_de_Grace,_Maryland
## 19472                                             Havre_de_Grace,_Maryland
## 19473                                             Havre_de_Grace,_Maryland
## 19474                                             Havre_de_Grace,_Maryland
## 19475                                             Havre_de_Grace,_Maryland
## 19476                                             Havre_de_Grace,_Maryland
## 19477                                             Havre_de_Grace,_Maryland
## 19478                                             Havre_de_Grace,_Maryland
## 19479                                             Havre_de_Grace,_Maryland
## 19480                                             Havre_de_Grace,_Maryland
## 19481                                             Havre_de_Grace,_Maryland
## 19482                                             Havre_de_Grace,_Maryland
## 19483                                             Havre_de_Grace,_Maryland
## 19484                                             Havre_de_Grace,_Maryland
## 19485                                             Havre_de_Grace,_Maryland
## 19486                                             Havre_de_Grace,_Maryland
## 19487                                             Havre_de_Grace,_Maryland
## 19488                                             Havre_de_Grace,_Maryland
## 19489                                             Havre_de_Grace,_Maryland
## 19490                                             Havre_de_Grace,_Maryland
## 19491                                             Havre_de_Grace,_Maryland
## 19492                                             Havre_de_Grace,_Maryland
## 19493                                             Havre_de_Grace,_Maryland
## 19494                                             Havre_de_Grace,_Maryland
## 19495                                             Havre_de_Grace,_Maryland
## 19496                                             Havre_de_Grace,_Maryland
## 19497                                             Havre_de_Grace,_Maryland
## 19498                                             Havre_de_Grace,_Maryland
## 19499                                             Havre_de_Grace,_Maryland
## 19500                                             Havre_de_Grace,_Maryland
## 19501                                             Havre_de_Grace,_Maryland
## 19502                                             Havre_de_Grace,_Maryland
## 19503                                             Havre_de_Grace,_Maryland
## 19504                                             Havre_de_Grace,_Maryland
## 19505                                             Havre_de_Grace,_Maryland
## 19506                                             Havre_de_Grace,_Maryland
## 19507                                             Havre_de_Grace,_Maryland
## 19508                                             Havre_de_Grace,_Maryland
## 19509                                             Havre_de_Grace,_Maryland
## 19510                                             Havre_de_Grace,_Maryland
## 19511                                             Havre_de_Grace,_Maryland
## 19512                                             Havre_de_Grace,_Maryland
## 19513                                             Havre_de_Grace,_Maryland
## 19514                                             Havre_de_Grace,_Maryland
## 19515                                             Havre_de_Grace,_Maryland
## 19516                                             Havre_de_Grace,_Maryland
## 19517                                             Havre_de_Grace,_Maryland
## 19518                                             Havre_de_Grace,_Maryland
## 19519                                             Havre_de_Grace,_Maryland
## 19520                                             Havre_de_Grace,_Maryland
## 19521                                             Havre_de_Grace,_Maryland
## 19522                                             Havre_de_Grace,_Maryland
## 19523                                             Havre_de_Grace,_Maryland
## 19524                                             Havre_de_Grace,_Maryland
## 19525                                             Havre_de_Grace,_Maryland
## 19526                                             Havre_de_Grace,_Maryland
## 19527                                             Havre_de_Grace,_Maryland
## 19528                                             Havre_de_Grace,_Maryland
## 19529                                             Havre_de_Grace,_Maryland
## 19530                                             Havre_de_Grace,_Maryland
## 19531                                             Havre_de_Grace,_Maryland
## 19532                                             Havre_de_Grace,_Maryland
## 19533                                             Havre_de_Grace,_Maryland
## 19534                                             Havre_de_Grace,_Maryland
## 19535                                             Havre_de_Grace,_Maryland
## 19536                                             Havre_de_Grace,_Maryland
## 19537                                             Havre_de_Grace,_Maryland
## 19538                                             Havre_de_Grace,_Maryland
## 19539                                             Havre_de_Grace,_Maryland
## 19540                                             Havre_de_Grace,_Maryland
## 19541                                             Havre_de_Grace,_Maryland
## 19542                                             Havre_de_Grace,_Maryland
## 19543                                             Havre_de_Grace,_Maryland
## 19544                                             Havre_de_Grace,_Maryland
## 19545                                             Havre_de_Grace,_Maryland
## 19546                                             Havre_de_Grace,_Maryland
## 19547                                             Havre_de_Grace,_Maryland
## 19548                                             Havre_de_Grace,_Maryland
## 19549                                             Havre_de_Grace,_Maryland
## 19550                                             Havre_de_Grace,_Maryland
## 19551                                             Havre_de_Grace,_Maryland
## 19552                                             Havre_de_Grace,_Maryland
## 19553                                             Havre_de_Grace,_Maryland
## 19554                                             Havre_de_Grace,_Maryland
## 19555                                             Havre_de_Grace,_Maryland
## 19556                                             Havre_de_Grace,_Maryland
## 19557                                             Havre_de_Grace,_Maryland
## 19558                                             Havre_de_Grace,_Maryland
## 19559                                             Havre_de_Grace,_Maryland
## 19560                                             Havre_de_Grace,_Maryland
## 19561                                             Havre_de_Grace,_Maryland
## 19562                                             Havre_de_Grace,_Maryland
## 19563                                             Havre_de_Grace,_Maryland
## 19564                                             Havre_de_Grace,_Maryland
## 19565                                             Havre_de_Grace,_Maryland
## 19566                                             Havre_de_Grace,_Maryland
## 19567                                             Havre_de_Grace,_Maryland
## 19568                                             Havre_de_Grace,_Maryland
## 19569                                             Havre_de_Grace,_Maryland
## 19570                                             Havre_de_Grace,_Maryland
## 19571                                             Havre_de_Grace,_Maryland
## 19572                                             Havre_de_Grace,_Maryland
## 19573                                             Havre_de_Grace,_Maryland
## 19574                                             Havre_de_Grace,_Maryland
## 19575                                             Havre_de_Grace,_Maryland
## 19576                                             Havre_de_Grace,_Maryland
## 19577                                             Havre_de_Grace,_Maryland
## 19578                                             Havre_de_Grace,_Maryland
## 19579                                             Havre_de_Grace,_Maryland
## 19580                                             Havre_de_Grace,_Maryland
## 19581                                             Havre_de_Grace,_Maryland
## 19582                                             Havre_de_Grace,_Maryland
## 19583                                             Havre_de_Grace,_Maryland
## 19584                                             Havre_de_Grace,_Maryland
## 19585                                             Havre_de_Grace,_Maryland
## 19586                                             Havre_de_Grace,_Maryland
## 19587                                             Havre_de_Grace,_Maryland
## 19588                                             Havre_de_Grace,_Maryland
## 19589                                             Havre_de_Grace,_Maryland
## 19590                                             Havre_de_Grace,_Maryland
## 19591                                             Havre_de_Grace,_Maryland
## 19592                                             Havre_de_Grace,_Maryland
## 19593                                             Havre_de_Grace,_Maryland
## 19594                                             Havre_de_Grace,_Maryland
## 19595                                             Havre_de_Grace,_Maryland
## 19596                                             Havre_de_Grace,_Maryland
## 19597                                             Havre_de_Grace,_Maryland
## 19598                                             Havre_de_Grace,_Maryland
## 19599                                             Havre_de_Grace,_Maryland
## 19600                                             Havre_de_Grace,_Maryland
## 19601                                             Havre_de_Grace,_Maryland
## 19602                                             Havre_de_Grace,_Maryland
## 19603                                             Havre_de_Grace,_Maryland
## 19604                                             Havre_de_Grace,_Maryland
## 19605                                             Havre_de_Grace,_Maryland
## 19606                                             Havre_de_Grace,_Maryland
## 19607                                             Havre_de_Grace,_Maryland
## 19608                                             Havre_de_Grace,_Maryland
## 19609                                             Havre_de_Grace,_Maryland
## 19610                                             Havre_de_Grace,_Maryland
## 19611                                             Havre_de_Grace,_Maryland
## 19612                                             Havre_de_Grace,_Maryland
## 19613                                             Havre_de_Grace,_Maryland
## 19614                                             Havre_de_Grace,_Maryland
## 19615                                             Havre_de_Grace,_Maryland
## 19616                                             Havre_de_Grace,_Maryland
## 19617                                             Havre_de_Grace,_Maryland
## 19618                                             Havre_de_Grace,_Maryland
## 19619                                                 Darnestown,_Maryland
## 19620                                                 Darnestown,_Maryland
## 19621                                                 Darnestown,_Maryland
## 19622                                                 Darnestown,_Maryland
## 19623                                                 Darnestown,_Maryland
## 19624                                                 Darnestown,_Maryland
## 19625                                                 Darnestown,_Maryland
## 19626                                                 Darnestown,_Maryland
## 19627                                                 Darnestown,_Maryland
## 19628                                                 Darnestown,_Maryland
## 19629                                                 Darnestown,_Maryland
## 19630                                                 Darnestown,_Maryland
## 19631                                                 Darnestown,_Maryland
## 19632                                                 Darnestown,_Maryland
## 19633                                                 Darnestown,_Maryland
## 19634                                                 Darnestown,_Maryland
## 19635                                                 Darnestown,_Maryland
## 19636                                                 Darnestown,_Maryland
## 19637                                                 Darnestown,_Maryland
## 19638                                                 Darnestown,_Maryland
## 19639                                                 Darnestown,_Maryland
## 19640                                                 Darnestown,_Maryland
## 19641                                                 Darnestown,_Maryland
## 19642                                                 Darnestown,_Maryland
## 19643                                                 Darnestown,_Maryland
## 19644                                                 Darnestown,_Maryland
## 19645                                                 Darnestown,_Maryland
## 19646                                                 Darnestown,_Maryland
## 19647                                                 Darnestown,_Maryland
## 19648                                                 Darnestown,_Maryland
## 19649                                                 Darnestown,_Maryland
## 19650                                                 Darnestown,_Maryland
## 19651                                                 Darnestown,_Maryland
## 19652                                                 Darnestown,_Maryland
## 19653                                                 Darnestown,_Maryland
## 19654                                               Camp_Springs,_Maryland
## 19655                                               Camp_Springs,_Maryland
## 19656                                               Camp_Springs,_Maryland
## 19657                                               Camp_Springs,_Maryland
## 19658                                               Camp_Springs,_Maryland
## 19659                                               Camp_Springs,_Maryland
## 19660                                               Camp_Springs,_Maryland
## 19661                                               Camp_Springs,_Maryland
## 19662                                               Camp_Springs,_Maryland
## 19663                                               Camp_Springs,_Maryland
## 19664                                               Camp_Springs,_Maryland
## 19665                                               Camp_Springs,_Maryland
## 19666                                               Camp_Springs,_Maryland
## 19667                                               Camp_Springs,_Maryland
## 19668                                               Camp_Springs,_Maryland
## 19669                                               Camp_Springs,_Maryland
## 19670                                               Camp_Springs,_Maryland
## 19671                                               Camp_Springs,_Maryland
## 19672                                               Camp_Springs,_Maryland
## 19673                                               Camp_Springs,_Maryland
## 19674                                               Camp_Springs,_Maryland
## 19675                                               Camp_Springs,_Maryland
## 19676                                               Camp_Springs,_Maryland
## 19677                                               Camp_Springs,_Maryland
## 19678                                               Camp_Springs,_Maryland
## 19679                                               Camp_Springs,_Maryland
## 19680                                               Camp_Springs,_Maryland
## 19681                                               Camp_Springs,_Maryland
## 19682                                               Camp_Springs,_Maryland
## 19683                                               Camp_Springs,_Maryland
## 19684                                               Camp_Springs,_Maryland
## 19685                                               Camp_Springs,_Maryland
## 19686                                               Camp_Springs,_Maryland
## 19687                                               Camp_Springs,_Maryland
## 19688                                               Camp_Springs,_Maryland
## 19689                                               Camp_Springs,_Maryland
## 19690                                               Camp_Springs,_Maryland
## 19691                                             Forest_Heights,_Maryland
## 19692                                             Forest_Heights,_Maryland
## 19693                                             Forest_Heights,_Maryland
## 19694                                             Forest_Heights,_Maryland
## 19695                                             Forest_Heights,_Maryland
## 19696                                             Forest_Heights,_Maryland
## 19697                                             Forest_Heights,_Maryland
## 19698                                             Forest_Heights,_Maryland
## 19699                                             Forest_Heights,_Maryland
## 19700                                             Forest_Heights,_Maryland
## 19701                                             Forest_Heights,_Maryland
## 19702                                             Forest_Heights,_Maryland
## 19703                                             Forest_Heights,_Maryland
## 19704                                             Forest_Heights,_Maryland
## 19705                                             Forest_Heights,_Maryland
## 19706                                             Forest_Heights,_Maryland
## 19707                                             Forest_Heights,_Maryland
## 19708                                             Forest_Heights,_Maryland
## 19709                                             Forest_Heights,_Maryland
## 19710                                             Forest_Heights,_Maryland
## 19711                                             Forest_Heights,_Maryland
## 19712                                             Forest_Heights,_Maryland
## 19713                                             Forest_Heights,_Maryland
## 19714                                             Forest_Heights,_Maryland
## 19715                                             Forest_Heights,_Maryland
## 19716                                             Forest_Heights,_Maryland
## 19717                                             Forest_Heights,_Maryland
## 19718                                             Forest_Heights,_Maryland
## 19719                                             Forest_Heights,_Maryland
## 19720                                             Forest_Heights,_Maryland
## 19721                                             Forest_Heights,_Maryland
## 19722                                             Forest_Heights,_Maryland
## 19723                                             Forest_Heights,_Maryland
## 19724                                             Forest_Heights,_Maryland
## 19725                                             Forest_Heights,_Maryland
## 19726                                             Forest_Heights,_Maryland
## 19727                                             Forest_Heights,_Maryland
## 19728                                             Forest_Heights,_Maryland
## 19729                                             Forest_Heights,_Maryland
## 19730                                             Forest_Heights,_Maryland
## 19731                                             Forest_Heights,_Maryland
## 19732                                             Forest_Heights,_Maryland
## 19733                                             Forest_Heights,_Maryland
## 19734                                             Forest_Heights,_Maryland
## 19735                                             Forest_Heights,_Maryland
## 19736                                             Forest_Heights,_Maryland
## 19737                                             Forest_Heights,_Maryland
## 19738                                             Forest_Heights,_Maryland
## 19739                                             Forest_Heights,_Maryland
## 19740                                             Forest_Heights,_Maryland
## 19741                                             Forest_Heights,_Maryland
## 19742                                     Monomoscoy_Island,_Massachusetts
## 19743                                     Monomoscoy_Island,_Massachusetts
## 19744                                     Monomoscoy_Island,_Massachusetts
## 19745                                     Monomoscoy_Island,_Massachusetts
## 19746                                     Monomoscoy_Island,_Massachusetts
## 19747                                     Monomoscoy_Island,_Massachusetts
## 19748                                     Monomoscoy_Island,_Massachusetts
## 19749                                     Monomoscoy_Island,_Massachusetts
## 19750                                     Monomoscoy_Island,_Massachusetts
## 19751                                     Monomoscoy_Island,_Massachusetts
## 19752                                             Spurr_Township,_Michigan
## 19753                                             Spurr_Township,_Michigan
## 19754                                             Spurr_Township,_Michigan
## 19755                                             Spurr_Township,_Michigan
## 19756                                             Spurr_Township,_Michigan
## 19757                                             Spurr_Township,_Michigan
## 19758                                             Spurr_Township,_Michigan
## 19759                                             Spurr_Township,_Michigan
## 19760                                             Spurr_Township,_Michigan
## 19761                                             Spurr_Township,_Michigan
## 19762                                             Spurr_Township,_Michigan
## 19763                                             Spurr_Township,_Michigan
## 19764                                             Spurr_Township,_Michigan
## 19765                                             Spurr_Township,_Michigan
## 19766                                             Spurr_Township,_Michigan
## 19767                                             Spurr_Township,_Michigan
## 19768                                             Spurr_Township,_Michigan
## 19769                                             Spurr_Township,_Michigan
## 19770                                             Spurr_Township,_Michigan
## 19771                                             Spurr_Township,_Michigan
## 19772                                             Spurr_Township,_Michigan
## 19773                                             Spurr_Township,_Michigan
## 19774                                             Spurr_Township,_Michigan
## 19775                                             Spurr_Township,_Michigan
## 19776                                             Spurr_Township,_Michigan
## 19777                                             Spurr_Township,_Michigan
## 19778                                             Spurr_Township,_Michigan
## 19779                                             Spurr_Township,_Michigan
## 19780                                        Portsmouth_Township,_Michigan
## 19781                                        Portsmouth_Township,_Michigan
## 19782                                        Portsmouth_Township,_Michigan
## 19783                                        Portsmouth_Township,_Michigan
## 19784                                        Portsmouth_Township,_Michigan
## 19785                                        Portsmouth_Township,_Michigan
## 19786                                        Portsmouth_Township,_Michigan
## 19787                                        Portsmouth_Township,_Michigan
## 19788                                        Portsmouth_Township,_Michigan
## 19789                                        Portsmouth_Township,_Michigan
## 19790                                        Portsmouth_Township,_Michigan
## 19791                                        Portsmouth_Township,_Michigan
## 19792                                        Portsmouth_Township,_Michigan
## 19793                                          Matteson_Township,_Michigan
## 19794                                          Matteson_Township,_Michigan
## 19795                                          Matteson_Township,_Michigan
## 19796                                          Matteson_Township,_Michigan
## 19797                                          Matteson_Township,_Michigan
## 19798                                          Matteson_Township,_Michigan
## 19799                                          Matteson_Township,_Michigan
## 19800                                          Matteson_Township,_Michigan
## 19801                                          Matteson_Township,_Michigan
## 19802                                          Matteson_Township,_Michigan
## 19803                                          Matteson_Township,_Michigan
## 19804                                          Matteson_Township,_Michigan
## 19805                                          Matteson_Township,_Michigan
## 19806                                          Matteson_Township,_Michigan
## 19807                                          Matteson_Township,_Michigan
## 19808                                                List_of_chess_players
## 19809                                                List_of_chess_players
## 19810                                                List_of_chess_players
## 19811                                                List_of_chess_players
## 19812                                                List_of_chess_players
## 19813                                                List_of_chess_players
## 19814                                                List_of_chess_players
## 19815                                                List_of_chess_players
## 19816                                                List_of_chess_players
## 19817                                                List_of_chess_players
## 19818                                                List_of_chess_players
## 19819                                                List_of_chess_players
## 19820                                                List_of_chess_players
## 19821                                                List_of_chess_players
## 19822                                                List_of_chess_players
## 19823                                                List_of_chess_players
## 19824                                                List_of_chess_players
## 19825                                                List_of_chess_players
## 19826                                                List_of_chess_players
## 19827                                                List_of_chess_players
## 19828                                                List_of_chess_players
## 19829                                                List_of_chess_players
## 19830                                                List_of_chess_players
## 19831                                                List_of_chess_players
## 19832                                                List_of_chess_players
## 19833                                                List_of_chess_players
## 19834                                                List_of_chess_players
## 19835                                                List_of_chess_players
## 19836                                                List_of_chess_players
## 19837                                                List_of_chess_players
## 19838                                                List_of_chess_players
## 19839                                                List_of_chess_players
## 19840                                                List_of_chess_players
## 19841                                                List_of_chess_players
## 19842                                                List_of_chess_players
## 19843                                                List_of_chess_players
## 19844                                                List_of_chess_players
## 19845                                                List_of_chess_players
## 19846                                                List_of_chess_players
## 19847                                                List_of_chess_players
## 19848                                                List_of_chess_players
## 19849                                                List_of_chess_players
## 19850                                                List_of_chess_players
## 19851                                                List_of_chess_players
## 19852                                                List_of_chess_players
## 19853                                                List_of_chess_players
## 19854                                                List_of_chess_players
## 19855                                                List_of_chess_players
## 19856                                                List_of_chess_players
## 19857                                                List_of_chess_players
## 19858                                                List_of_chess_players
## 19859                                                List_of_chess_players
## 19860                                                List_of_chess_players
## 19861                                                List_of_chess_players
## 19862                                                List_of_chess_players
## 19863                                                List_of_chess_players
## 19864                                                List_of_chess_players
## 19865                                                List_of_chess_players
## 19866                                                List_of_chess_players
## 19867                                                List_of_chess_players
## 19868                                                List_of_chess_players
## 19869                                                List_of_chess_players
## 19870                                                List_of_chess_players
## 19871                                                List_of_chess_players
## 19872                                                List_of_chess_players
## 19873                                                List_of_chess_players
## 19874                                                List_of_chess_players
## 19875                                                List_of_chess_players
## 19876                                                List_of_chess_players
## 19877                                                List_of_chess_players
## 19878                                                List_of_chess_players
## 19879                                                List_of_chess_players
## 19880                                                List_of_chess_players
## 19881                                                List_of_chess_players
## 19882                                                List_of_chess_players
## 19883                                                List_of_chess_players
## 19884                                                List_of_chess_players
## 19885                                                List_of_chess_players
## 19886                                                List_of_chess_players
## 19887                                                List_of_chess_players
## 19888                                                List_of_chess_players
## 19889                                                List_of_chess_players
## 19890                                                List_of_chess_players
## 19891                                                List_of_chess_players
## 19892                                                List_of_chess_players
## 19893                                                List_of_chess_players
## 19894                                                List_of_chess_players
## 19895                                                List_of_chess_players
## 19896                                                List_of_chess_players
## 19897                                                List_of_chess_players
## 19898                                                List_of_chess_players
## 19899                                                List_of_chess_players
## 19900                                                List_of_chess_players
## 19901                                                List_of_chess_players
## 19902                                                List_of_chess_players
## 19903                                                List_of_chess_players
## 19904                                                List_of_chess_players
## 19905                                                List_of_chess_players
## 19906                                                List_of_chess_players
## 19907                                                List_of_chess_players
## 19908                                                List_of_chess_players
## 19909                                                List_of_chess_players
## 19910                                                List_of_chess_players
## 19911                                                List_of_chess_players
## 19912                                                List_of_chess_players
## 19913                                                List_of_chess_players
## 19914                                                List_of_chess_players
## 19915                                                List_of_chess_players
## 19916                                                List_of_chess_players
## 19917                                                List_of_chess_players
## 19918                                                List_of_chess_players
## 19919                                                List_of_chess_players
## 19920                                                List_of_chess_players
## 19921                                                List_of_chess_players
## 19922                                                List_of_chess_players
## 19923                                                List_of_chess_players
## 19924                                                List_of_chess_players
## 19925                                                List_of_chess_players
## 19926                                                List_of_chess_players
## 19927                                                List_of_chess_players
## 19928                                                List_of_chess_players
## 19929                                                List_of_chess_players
## 19930                                                List_of_chess_players
## 19931                                                List_of_chess_players
## 19932                                                List_of_chess_players
## 19933                                                List_of_chess_players
## 19934                                                List_of_chess_players
## 19935                                                List_of_chess_players
## 19936                                                List_of_chess_players
## 19937                                                List_of_chess_players
## 19938                                                List_of_chess_players
## 19939                                                List_of_chess_players
## 19940                                                List_of_chess_players
## 19941                                                List_of_chess_players
## 19942                                                List_of_chess_players
## 19943                                                List_of_chess_players
## 19944                                                List_of_chess_players
## 19945                                                List_of_chess_players
## 19946                                                List_of_chess_players
## 19947                                                List_of_chess_players
## 19948                                                List_of_chess_players
## 19949                                                List_of_chess_players
## 19950                                                List_of_chess_players
## 19951                                                List_of_chess_players
## 19952                                                List_of_chess_players
## 19953                                                List_of_chess_players
## 19954                                                List_of_chess_players
## 19955                                                List_of_chess_players
## 19956                                                List_of_chess_players
## 19957                                                List_of_chess_players
## 19958                                                List_of_chess_players
## 19959                                                List_of_chess_players
## 19960                                                List_of_chess_players
## 19961                                                List_of_chess_players
## 19962                                                List_of_chess_players
## 19963                                                List_of_chess_players
## 19964                                                List_of_chess_players
## 19965                                                List_of_chess_players
## 19966                                                List_of_chess_players
## 19967                                                List_of_chess_players
## 19968                                                List_of_chess_players
## 19969                                                List_of_chess_players
## 19970                                                List_of_chess_players
## 19971                                                List_of_chess_players
## 19972                                                List_of_chess_players
## 19973                                                List_of_chess_players
## 19974                                                List_of_chess_players
## 19975                                                List_of_chess_players
## 19976                                                List_of_chess_players
## 19977                                                List_of_chess_players
## 19978                                                List_of_chess_players
## 19979                                                List_of_chess_players
## 19980                                                List_of_chess_players
## 19981                                                List_of_chess_players
## 19982                                                List_of_chess_players
## 19983                                                List_of_chess_players
## 19984                                                List_of_chess_players
## 19985                                                List_of_chess_players
## 19986                                                List_of_chess_players
## 19987                                                List_of_chess_players
## 19988                                                List_of_chess_players
## 19989                                                List_of_chess_players
## 19990                                                List_of_chess_players
## 19991                                                List_of_chess_players
## 19992                                                List_of_chess_players
## 19993                                                List_of_chess_players
## 19994                                                List_of_chess_players
## 19995                                                List_of_chess_players
## 19996                                                List_of_chess_players
## 19997                                                List_of_chess_players
## 19998                                                List_of_chess_players
## 19999                                                List_of_chess_players
##           date      time TEXTDATA
## 1      2002-10 20:34:51Z        1
## 2      2002-10 22:37:13Z        1
## 3      2003-01 09:23:22Z        1
## 4      2003-08 15:25:16Z        1
## 5      2003-08 15:28:19Z        1
## 6      2003-08 21:27:54Z        1
## 7      2004-04 18:08:04Z        1
## 8      2004-04 16:10:45Z        1
## 9      2004-04 16:11:49Z        1
## 10     2004-04 16:13:33Z        1
## 11     2004-06 04:10:35Z        1
## 12     2004-08 14:03:01Z        1
## 13     2004-11 18:19:09Z        1
## 14     2004-12 08:42:16Z        1
## 15     2004-12 08:42:58Z        1
## 16     2005-01 08:47:29Z        1
## 17     2005-01 08:48:14Z        1
## 18     2005-01 08:49:33Z        1
## 19     2005-02 07:55:18Z        1
## 20     2005-03 14:08:17Z        1
## 21     2005-03 14:09:00Z        1
## 22     2005-03 17:17:10Z        1
## 23     2005-04 17:45:27Z        1
## 24     2005-05 21:41:59Z        1
## 25     2005-05 13:11:46Z        1
## 26     2005-06 19:42:50Z        1
## 27     2005-06 19:17:58Z        1
## 28     2005-06 14:43:02Z        1
## 29     2005-07 21:18:45Z        1
## 30     2005-07 02:55:27Z        1
## 31     2005-07 23:12:06Z        1
## 32     2005-07 23:13:29Z        1
## 33     2005-08 11:12:46Z        1
## 34     2005-08 11:13:55Z        1
## 35     2005-08 02:41:08Z        1
## 36     2005-08 20:22:34Z        1
## 37     2005-08 18:48:32Z        1
## 38     2005-09 06:44:03Z        1
## 39     2005-09 23:29:33Z        1
## 40     2005-09 23:31:12Z        1
## 41     2005-09 15:44:23Z        1
## 42     2005-09 02:38:44Z        1
## 43     2005-10 13:48:30Z        1
## 44     2005-10 00:18:33Z        1
## 45     2005-10 00:19:14Z        1
## 46     2005-10 00:20:52Z        1
## 47     2005-10 00:23:11Z        1
## 48     2005-10 00:25:37Z        1
## 49     2005-10 00:27:25Z        1
## 50     2005-10 00:28:57Z        1
## 51     2005-10 00:29:15Z        1
## 52     2005-10 00:29:49Z        1
## 53     2005-10 00:30:08Z        1
## 54     2005-10 00:31:19Z        1
## 55     2005-10 00:31:54Z        1
## 56     2005-10 00:33:53Z        1
## 57     2005-10 00:35:16Z        1
## 58     2005-10 00:36:16Z        1
## 59     2005-10 04:40:52Z        1
## 60     2005-10 04:59:16Z        1
## 61     2005-10 15:44:30Z        1
## 62     2005-11 18:50:39Z        1
## 63     2005-11 18:55:57Z        1
## 64     2005-11 18:57:47Z        1
## 65     2005-11 23:45:47Z        1
## 66     2005-11 23:46:26Z        1
## 67     2005-11 14:35:17Z        1
## 68     2005-11 18:55:51Z        1
## 69     2005-11 02:52:13Z        1
## 70     2005-12 22:53:08Z        1
## 71     2005-12 22:11:00Z        1
## 72     2005-12 07:17:22Z        1
## 73     2005-12 15:51:39Z        1
## 74     2006-01 15:21:04Z        1
## 75     2006-01 15:22:13Z        1
## 76     2006-01 02:25:44Z        1
## 77     2006-01 02:56:55Z        1
## 78     2006-01 04:10:31Z        1
## 79     2006-01 06:50:57Z        1
## 80     2006-01 16:04:17Z        1
## 81     2006-01 16:05:36Z        1
## 82     2006-04 19:30:34Z        1
## 83     2006-04 19:56:20Z        1
## 84     2006-04 23:00:42Z        1
## 85     2006-04 04:00:40Z        1
## 86     2006-04 02:12:59Z        1
## 87     2006-05 10:59:04Z        1
## 88     2006-05 11:00:53Z        1
## 89     2006-05 11:00:55Z        1
## 90     2006-05 18:02:52Z        1
## 91     2006-05 18:03:45Z        1
## 92     2006-05 18:11:29Z        1
## 93     2006-05 18:14:03Z        1
## 94     2006-05 13:15:54Z        1
## 95     2006-05 02:46:33Z        1
## 96     2006-05 06:12:32Z        1
## 97     2006-05 03:45:35Z        1
## 98     2006-05 10:18:36Z        1
## 99     2006-06 08:30:10Z        1
## 100    2006-06 02:29:11Z        1
## 101    2006-06 19:35:42Z        1
## 102    2006-07 03:26:45Z        1
## 103    2006-07 11:18:20Z        1
## 104    2006-07 11:27:37Z        1
## 105    2006-07 18:03:20Z        1
## 106    2006-07 22:20:06Z        1
## 107    2006-07 22:20:11Z        1
## 108    2006-07 05:49:14Z        1
## 109    2006-08 00:14:43Z        1
## 110    2006-08 02:30:45Z        1
## 111    2006-08 15:32:00Z        1
## 112    2006-08 05:07:12Z        1
## 113    2006-08 05:31:27Z        1
## 114    2006-08 12:34:26Z        1
## 115    2006-08 14:29:01Z        1
## 116    2006-09 00:21:47Z        1
## 117    2006-09 07:15:41Z        1
## 118    2006-09 07:57:17Z        1
## 119    2006-09 09:09:32Z        1
## 120    2006-09 07:27:16Z        1
## 121    2006-09 16:03:03Z        1
## 122    2006-09 16:33:55Z        1
## 123    2006-09 21:05:54Z        1
## 124    2006-10 21:53:41Z        1
## 125    2006-10 04:58:00Z        1
## 126    2006-10 09:13:52Z        1
## 127    2006-10 04:02:31Z        1
## 128    2006-10 23:12:08Z        1
## 129    2006-10 19:04:56Z        1
## 130    2006-11 07:22:19Z        1
## 131    2006-11 07:34:56Z        1
## 132    2006-11 22:36:03Z        1
## 133    2006-11 21:31:12Z        1
## 134    2006-11 07:43:08Z        1
## 135    2006-11 20:09:06Z        1
## 136    2006-11 21:57:59Z        1
## 137    2006-11 21:59:30Z        1
## 138    2006-11 09:09:39Z        1
## 139    2006-11 08:24:11Z        1
## 140    2006-11 06:11:43Z        1
## 141    2006-11 06:55:35Z        1
## 142    2006-11 03:53:57Z        1
## 143    2006-11 04:05:11Z        1
## 144    2006-11 20:28:28Z        1
## 145    2006-11 20:04:27Z        1
## 146    2006-11 02:50:56Z        1
## 147    2006-11 02:51:03Z        1
## 148    2006-12 20:21:30Z        1
## 149    2007-01 05:03:41Z        1
## 150    2007-01 18:08:22Z        1
## 151    2007-02 05:51:12Z        1
## 152    2007-02 05:56:00Z        1
## 153    2007-02 08:44:14Z        1
## 154    2007-02 10:12:45Z        1
## 155    2007-02 18:45:36Z        1
## 156    2007-02 12:13:49Z        1
## 157    2007-02 12:33:21Z        1
## 158    2007-02 07:37:43Z        1
## 159    2007-02 13:22:19Z        1
## 160    2007-02 15:45:34Z        1
## 161    2007-03 11:47:55Z        1
## 162    2007-03 13:07:53Z        1
## 163    2007-03 10:42:01Z        1
## 164    2007-03 17:18:39Z        1
## 165    2007-03 19:00:56Z        1
## 166    2007-03 06:44:19Z        1
## 167    2007-03 14:25:09Z        1
## 168    2007-03 17:07:51Z        1
## 169    2007-03 17:10:32Z        1
## 170    2007-03 01:06:33Z        1
## 171    2007-03 01:09:04Z        1
## 172    2007-03 01:10:09Z        1
## 173    2007-04 00:40:00Z        1
## 174    2007-04 19:22:51Z        1
## 175    2007-04 21:10:41Z        1
## 176    2007-04 05:39:02Z        1
## 177    2007-04 22:29:51Z        1
## 178    2007-04 23:26:05Z        1
## 179    2007-04 07:53:16Z        1
## 180    2007-04 21:17:51Z        1
## 181    2007-04 14:40:15Z        1
## 182    2007-05 14:26:44Z        1
## 183    2007-05 21:44:06Z        1
## 184    2007-05 15:23:48Z        1
## 185    2007-05 15:13:10Z        1
## 186    2007-06 00:18:51Z        1
## 187    2007-06 16:18:00Z        1
## 188    2007-06 16:23:43Z        1
## 189    2007-06 14:59:05Z        1
## 190    2007-06 14:59:22Z        1
## 191    2007-06 15:00:41Z        1
## 192    2007-06 12:43:22Z        1
## 193    2007-06 12:52:32Z        1
## 194    2007-06 12:55:01Z        1
## 195    2007-07 11:11:36Z        1
## 196    2007-07 06:41:58Z        1
## 197    2007-07 06:49:03Z        1
## 198    2007-07 06:50:40Z        1
## 199    2007-07 06:54:05Z        1
## 200    2007-07 12:10:48Z        1
## 201    2007-07 10:29:17Z        1
## 202    2007-07 13:07:41Z        1
## 203    2007-07 11:55:55Z        1
## 204    2007-07 15:50:55Z        1
## 205    2007-08 09:46:44Z        1
## 206    2007-08 21:16:03Z        1
## 207    2007-08 21:16:43Z        1
## 208    2007-08 15:57:04Z        1
## 209    2007-08 15:59:26Z        1
## 210    2007-08 16:00:28Z        1
## 211    2007-08 18:16:27Z        1
## 212    2007-08 20:43:01Z        1
## 213    2007-08 00:19:34Z        1
## 214    2007-09 04:01:47Z        1
## 215    2007-09 10:13:47Z        1
## 216    2007-09 10:14:12Z        1
## 217    2007-09 12:07:02Z        1
## 218    2007-09 12:07:50Z        1
## 219    2007-09 12:14:27Z        1
## 220    2007-09 12:14:32Z        1
## 221    2007-09 12:15:30Z        1
## 222    2007-09 12:15:36Z        1
## 223    2007-09 12:16:37Z        1
## 224    2007-09 12:17:52Z        1
## 225    2007-09 12:18:03Z        1
## 226    2007-09 12:23:34Z        1
## 227    2007-09 12:25:49Z        1
## 228    2007-09 12:27:15Z        1
## 229    2007-09 12:31:55Z        1
## 230    2007-09 12:34:07Z        1
## 231    2007-09 12:35:30Z        1
## 232    2007-09 06:02:59Z        1
## 233    2007-09 06:03:55Z        1
## 234    2007-09 06:04:43Z        1
## 235    2007-09 06:06:37Z        1
## 236    2007-09 06:08:11Z        1
## 237    2007-09 06:08:51Z        1
## 238    2007-10 11:55:59Z        1
## 239    2007-10 13:16:54Z        1
## 240    2007-10 18:22:57Z        1
## 241    2007-10 02:56:02Z        1
## 242    2007-10 02:56:30Z        1
## 243    2007-10 12:24:53Z        1
## 244    2007-10 03:36:14Z        1
## 245    2007-10 19:34:07Z        1
## 246    2007-10 21:52:04Z        1
## 247    2007-10 21:52:09Z        1
## 248    2007-11 06:37:25Z        1
## 249    2007-11 07:34:10Z        1
## 250    2007-11 07:52:36Z        1
## 251    2007-11 07:53:09Z        1
## 252    2007-11 07:55:36Z        1
## 253    2007-11 08:00:42Z        1
## 254    2007-11 08:26:51Z        1
## 255    2007-11 08:39:32Z        1
## 256    2007-11 07:54:34Z        1
## 257    2007-11 07:56:30Z        1
## 258    2007-11 07:57:11Z        1
## 259    2007-11 07:58:11Z        1
## 260    2007-11 08:00:49Z        1
## 261    2007-11 12:45:56Z        1
## 262    2007-11 12:48:38Z        1
## 263    2007-11 12:51:41Z        1
## 264    2007-11 13:07:46Z        1
## 265    2007-11 13:10:04Z        1
## 266    2007-11 13:13:12Z        1
## 267    2007-11 17:25:11Z        1
## 268    2007-11 19:31:40Z        1
## 269    2007-11 16:37:05Z        1
## 270    2007-11 22:07:58Z        1
## 271    2007-11 04:23:17Z        1
## 272    2007-11 06:29:21Z        1
## 273    2007-11 14:53:43Z        1
## 274    2007-11 14:54:28Z        1
## 275    2007-11 14:55:15Z        1
## 276    2007-11 14:58:22Z        1
## 277    2007-11 14:59:17Z        1
## 278    2007-12 17:34:37Z        1
## 279    2007-12 11:01:00Z        1
## 280    2007-12 14:08:05Z        1
## 281    2007-12 09:16:24Z        1
## 282    2007-12 09:18:52Z        1
## 283    2007-12 09:25:03Z        1
## 284    2007-12 11:18:24Z        1
## 285    2007-12 11:19:34Z        1
## 286    2007-12 11:20:14Z        1
## 287    2007-12 14:54:05Z        1
## 288    2007-12 01:21:50Z        1
## 289    2007-12 01:22:40Z        1
## 290    2007-12 02:18:10Z        1
## 291    2007-12 05:16:02Z        1
## 292    2007-12 07:43:22Z        1
## 293    2007-12 07:51:27Z        1
## 294    2007-12 07:55:16Z        1
## 295    2007-12 08:00:49Z        1
## 296    2007-12 08:08:14Z        1
## 297    2007-12 08:22:28Z        1
## 298    2007-12 08:24:48Z        1
## 299    2007-12 08:34:44Z        1
## 300    2007-12 08:35:52Z        1
## 301    2007-12 11:24:13Z        1
## 302    2007-12 11:48:07Z        1
## 303    2007-12 11:50:54Z        1
## 304    2007-12 11:51:17Z        1
## 305    2007-12 11:52:16Z        1
## 306    2007-12 12:10:02Z        1
## 307    2007-12 12:39:05Z        1
## 308    2007-12 12:50:32Z        1
## 309    2007-12 12:51:37Z        1
## 310    2007-12 13:03:55Z        1
## 311    2007-12 13:07:22Z        1
## 312    2007-12 13:13:56Z        1
## 313    2007-12 08:31:35Z        1
## 314    2007-12 09:27:37Z        1
## 315    2007-12 07:45:07Z        1
## 316    2007-12 00:56:14Z        1
## 317    2007-12 01:31:45Z        1
## 318    2008-01 03:59:20Z        1
## 319    2002-10 18:15:50Z        5
## 320    2004-03 19:02:40Z        5
## 321    2004-03 19:05:43Z        5
## 322    2004-05 04:28:30Z        5
## 323    2004-09 21:53:55Z        5
## 324    2004-11 17:08:23Z        5
## 325    2004-11 00:23:59Z        5
## 326    2004-11 07:22:47Z        5
## 327    2004-11 11:45:52Z        5
## 328    2004-12 18:07:09Z        5
## 329    2004-12 21:09:04Z        5
## 330    2005-03 03:44:27Z        5
## 331    2005-03 12:22:57Z        5
## 332    2005-03 14:45:23Z        5
## 333    2005-04 19:57:12Z        5
## 334    2005-04 20:49:51Z        5
## 335    2005-04 11:53:11Z        5
## 336    2005-04 11:54:33Z        5
## 337    2005-04 11:47:47Z        5
## 338    2005-05 17:34:18Z        5
## 339    2005-05 17:34:43Z        5
## 340    2005-05 21:33:11Z        5
## 341    2005-08 06:28:31Z        5
## 342    2005-10 14:17:12Z        5
## 343    2005-10 22:11:43Z        5
## 344    2005-10 17:13:09Z        5
## 345    2005-11 15:13:50Z        5
## 346    2005-12 14:53:43Z        5
## 347    2005-12 09:17:07Z        5
## 348    2005-12 17:28:56Z        5
## 349    2006-01 22:28:31Z        5
## 350    2006-01 23:05:14Z        5
## 351    2006-02 14:35:01Z        5
## 352    2006-02 06:41:23Z        5
## 353    2006-02 06:43:08Z        5
## 354    2006-02 12:13:54Z        5
## 355    2006-02 13:05:01Z        5
## 356    2006-02 15:49:33Z        5
## 357    2006-02 16:00:32Z        5
## 358    2006-02 16:03:03Z        5
## 359    2006-02 20:09:31Z        5
## 360    2006-02 14:55:25Z        5
## 361    2006-02 15:17:13Z        5
## 362    2006-02 16:39:36Z        5
## 363    2006-02 16:39:43Z        5
## 364    2006-02 22:38:42Z        5
## 365    2006-02 23:32:17Z        5
## 366    2006-02 15:04:03Z        5
## 367    2006-02 17:06:28Z        5
## 368    2006-02 10:54:21Z        5
## 369    2006-03 09:32:40Z        5
## 370    2006-03 19:19:41Z        5
## 371    2006-03 20:19:03Z        5
## 372    2006-03 23:02:30Z        5
## 373    2006-03 05:33:52Z        5
## 374    2006-03 05:34:55Z        5
## 375    2006-03 11:01:13Z        5
## 376    2006-03 12:09:52Z        5
## 377    2006-03 01:37:06Z        5
## 378    2006-03 06:37:57Z        5
## 379    2006-03 19:27:30Z        5
## 380    2006-03 19:28:32Z        5
## 381    2006-03 19:29:09Z        5
## 382    2006-03 21:18:38Z        5
## 383    2006-03 18:54:10Z        5
## 384    2006-03 18:55:30Z        5
## 385    2006-03 10:29:32Z        5
## 386    2006-03 18:36:35Z        5
## 387    2006-03 18:37:48Z        5
## 388    2006-03 12:42:44Z        5
## 389    2006-04 03:09:56Z        5
## 390    2006-04 00:12:26Z        5
## 391    2006-04 16:55:33Z        5
## 392    2006-04 01:48:05Z        5
## 393    2006-04 09:44:38Z        5
## 394    2006-05 18:44:14Z        5
## 395    2006-05 21:15:30Z        5
## 396    2006-05 15:08:57Z        5
## 397    2006-05 20:46:33Z        5
## 398    2006-05 09:46:29Z        5
## 399    2006-05 01:13:15Z        5
## 400    2006-05 07:24:12Z        5
## 401    2006-05 02:35:02Z        5
## 402    2006-06 06:51:59Z        5
## 403    2006-06 01:29:46Z        5
## 404    2006-06 12:59:56Z        5
## 405    2006-06 13:15:21Z        5
## 406    2006-06 00:35:05Z        5
## 407    2006-06 00:40:15Z        5
## 408    2006-07 07:29:28Z        5
## 409    2006-07 19:49:51Z        5
## 410    2006-07 22:42:27Z        5
## 411    2006-08 16:55:57Z        5
## 412    2006-08 20:19:31Z        5
## 413    2006-08 12:07:40Z        5
## 414    2006-08 04:09:28Z        5
## 415    2006-08 12:56:40Z        5
## 416    2006-08 02:07:14Z        5
## 417    2006-08 02:07:49Z        5
## 418    2006-08 19:52:52Z        5
## 419    2006-09 20:59:46Z        5
## 420    2006-09 01:38:07Z        5
## 421    2006-09 09:04:52Z        5
## 422    2006-09 10:25:37Z        5
## 423    2006-09 10:26:20Z        5
## 424    2006-09 15:50:48Z        5
## 425    2006-09 15:51:06Z        5
## 426    2006-09 15:59:11Z        5
## 427    2006-09 21:31:34Z        5
## 428    2006-09 21:58:35Z        5
## 429    2006-09 10:25:43Z        5
## 430    2006-09 03:26:35Z        5
## 431    2006-10 14:47:44Z        5
## 432    2006-10 19:01:12Z        5
## 433    2006-10 10:09:28Z        5
## 434    2006-10 10:09:56Z        5
## 435    2006-10 12:33:36Z        5
## 436    2006-10 10:43:11Z        5
## 437    2006-10 07:13:20Z        5
## 438    2006-10 21:27:06Z        5
## 439    2006-11 19:58:38Z        5
## 440    2006-11 15:01:43Z        5
## 441    2006-11 15:04:48Z        5
## 442    2006-11 16:31:31Z        5
## 443    2006-11 17:01:43Z        5
## 444    2006-11 17:17:28Z        5
## 445    2006-12 18:04:33Z        5
## 446    2006-12 12:40:15Z        5
## 447    2006-12 15:19:27Z        5
## 448    2006-12 05:05:24Z        5
## 449    2006-12 17:22:58Z        5
## 450    2006-12 15:48:08Z        5
## 451    2006-12 02:51:50Z        5
## 452    2006-12 02:12:46Z        5
## 453    2007-01 13:55:38Z        5
## 454    2007-01 10:06:51Z        5
## 455    2007-01 18:33:52Z        5
## 456    2007-01 06:00:26Z        5
## 457    2007-01 10:51:20Z        5
## 458    2007-01 16:42:08Z        5
## 459    2007-01 06:08:50Z        5
## 460    2007-02 07:29:46Z        5
## 461    2007-02 15:27:04Z        5
## 462    2007-02 15:40:43Z        5
## 463    2007-02 20:01:50Z        5
## 464    2007-02 15:09:44Z        5
## 465    2007-02 14:03:57Z        5
## 466    2007-02 09:59:11Z        5
## 467    2007-02 01:39:13Z        5
## 468    2007-03 11:15:15Z        5
## 469    2007-03 19:14:04Z        5
## 470    2007-03 21:28:40Z        5
## 471    2007-03 13:38:06Z        5
## 472    2007-03 16:00:36Z        5
## 473    2007-03 16:01:00Z        5
## 474    2007-03 16:02:20Z        5
## 475    2007-03 20:12:29Z        5
## 476    2007-03 11:36:11Z        5
## 477    2007-03 01:08:43Z        5
## 478    2007-03 15:41:57Z        5
## 479    2007-04 06:37:43Z        5
## 480    2007-04 14:15:30Z        5
## 481    2007-04 13:11:33Z        5
## 482    2007-04 13:24:26Z        5
## 483    2007-05 19:19:11Z        5
## 484    2007-05 16:33:22Z        5
## 485    2007-05 00:56:01Z        5
## 486    2007-05 23:14:11Z        5
## 487    2007-05 17:58:43Z        5
## 488    2007-05 11:50:12Z        5
## 489    2007-05 04:58:27Z        5
## 490    2007-05 19:41:27Z        5
## 491    2007-05 20:54:57Z        5
## 492    2007-06 13:03:57Z        5
## 493    2007-06 09:02:07Z        5
## 494    2007-06 18:11:56Z        5
## 495    2007-06 18:12:29Z        5
## 496    2007-06 03:03:14Z        5
## 497    2007-06 03:03:26Z        5
## 498    2007-06 03:03:56Z        5
## 499    2007-06 03:07:14Z        5
## 500    2007-06 19:20:55Z        5
## 501    2007-06 04:06:23Z        5
## 502    2007-06 18:03:11Z        5
## 503    2007-06 18:04:47Z        5
## 504    2007-07 21:18:02Z        5
## 505    2007-07 21:18:17Z        5
## 506    2007-07 08:28:46Z        5
## 507    2007-07 15:18:41Z        5
## 508    2007-09 16:21:18Z        5
## 509    2007-09 19:13:10Z        5
## 510    2007-09 22:37:59Z        5
## 511    2007-09 22:40:13Z        5
## 512    2007-09 21:10:33Z        5
## 513    2007-10 10:20:51Z        5
## 514    2007-10 12:13:07Z        5
## 515    2007-10 03:40:38Z        5
## 516    2007-10 15:18:36Z        5
## 517    2007-10 15:06:19Z        5
## 518    2007-11 04:36:30Z        5
## 519    2007-11 16:39:52Z        5
## 520    2007-11 11:17:07Z        5
## 521    2007-11 11:26:55Z        5
## 522    2007-11 11:37:31Z        5
## 523    2007-11 08:54:03Z        5
## 524    2007-12 23:31:55Z        5
## 525    2007-12 23:34:26Z        5
## 526    2007-12 23:37:37Z        5
## 527    2002-10 21:01:03Z        6
## 528    2003-05 03:27:24Z        6
## 529    2004-02 00:12:49Z        6
## 530    2004-08 06:38:14Z        6
## 531    2004-09 13:22:51Z        6
## 532    2004-09 13:25:10Z        6
## 533    2004-11 09:29:52Z        6
## 534    2005-10 20:04:45Z        6
## 535    2005-10 20:16:05Z        6
## 536    2006-01 22:57:16Z        6
## 537    2006-07 15:12:31Z        6
## 538    2006-07 00:07:33Z        6
## 539    2006-07 01:01:30Z        6
## 540    2006-07 04:26:21Z        6
## 541    2006-07 15:24:55Z        6
## 542    2006-07 19:39:30Z        6
## 543    2006-08 03:51:11Z        6
## 544    2006-08 03:52:40Z        6
## 545    2006-08 13:58:10Z        6
## 546    2006-08 03:05:52Z        6
## 547    2006-08 13:27:32Z        6
## 548    2006-08 13:30:57Z        6
## 549    2006-08 17:59:21Z        6
## 550    2006-08 20:38:56Z        6
## 551    2006-08 17:26:20Z        6
## 552    2006-08 04:12:24Z        6
## 553    2006-08 18:05:35Z        6
## 554    2006-08 06:11:05Z        6
## 555    2006-09 11:33:38Z        6
## 556    2006-09 00:52:46Z        6
## 557    2006-09 01:33:35Z        6
## 558    2006-10 13:13:19Z        6
## 559    2006-10 19:54:33Z        6
## 560    2006-10 17:29:27Z        6
## 561    2006-10 23:15:43Z        6
## 562    2006-11 11:42:49Z        6
## 563    2006-11 02:20:53Z        6
## 564    2006-11 02:24:19Z        6
## 565    2006-11 02:29:06Z        6
## 566    2007-01 12:49:36Z        6
## 567    2007-03 17:08:39Z        6
## 568    2007-03 14:50:32Z        6
## 569    2007-03 15:00:10Z        6
## 570    2007-03 15:05:21Z        6
## 571    2007-03 15:14:28Z        6
## 572    2007-03 15:20:43Z        6
## 573    2007-03 15:28:03Z        6
## 574    2007-03 15:32:38Z        6
## 575    2007-03 15:35:44Z        6
## 576    2007-03 15:37:33Z        6
## 577    2007-03 18:28:32Z        6
## 578    2007-03 23:16:59Z        6
## 579    2007-04 03:05:31Z        6
## 580    2007-04 03:05:58Z        6
## 581    2007-04 08:23:21Z        6
## 582    2007-05 05:23:05Z        6
## 583    2007-07 22:51:28Z        6
## 584    2007-07 16:23:51Z        6
## 585    2007-08 23:54:01Z        6
## 586    2007-08 13:07:43Z        6
## 587    2007-08 14:06:38Z        6
## 588    2007-08 16:11:58Z        6
## 589    2007-08 16:26:51Z        6
## 590    2007-09 20:09:06Z        6
## 591    2007-09 21:34:09Z        6
## 592    2007-09 21:10:51Z        6
## 593    2007-09 20:16:25Z        6
## 594    2007-09 03:52:15Z        6
## 595    2007-09 04:09:34Z        6
## 596    2007-09 04:18:13Z        6
## 597    2007-09 04:18:57Z        6
## 598    2007-10 11:50:36Z        6
## 599    2007-10 21:06:22Z        6
## 600    2007-11 09:43:03Z        6
## 601    2007-11 22:03:00Z        6
## 602    2007-11 22:55:16Z        6
## 603    2002-10 21:03:09Z        6
## 604    2002-10 15:53:19Z        6
## 605    2002-10 15:56:38Z        6
## 606    2003-06 12:10:38Z        6
## 607    2005-05 03:38:37Z        6
## 608    2005-08 21:12:41Z        6
## 609    2005-09 15:22:32Z        6
## 610    2005-09 04:52:30Z        6
## 611    2005-12 01:08:01Z        6
## 612    2006-01 13:37:51Z        6
## 613    2006-01 13:43:43Z        6
## 614    2006-01 11:58:37Z        6
## 615    2006-05 20:18:31Z        6
## 616    2006-05 20:18:56Z        6
## 617    2006-07 05:34:54Z        6
## 618    2006-08 09:55:23Z        6
## 619    2006-10 10:58:23Z        6
## 620    2006-10 11:03:16Z        6
## 621    2007-03 22:01:57Z        6
## 622    2007-05 23:21:52Z        6
## 623    2007-07 19:34:07Z        6
## 624    2007-09 21:03:36Z        6
## 625    2007-11 14:44:01Z        6
## 626    2007-11 14:44:18Z        6
## 627    2007-12 12:41:20Z        6
## 628    2007-12 12:44:48Z        6
## 629    2007-12 15:38:56Z        6
## 630    2007-12 02:21:54Z        6
## 631    2007-12 14:21:48Z        6
## 632    2002-02 15:43:11Z        7
## 633    2001-11 21:15:07Z        7
## 634    2002-06 10:14:22Z        7
## 635    2002-09 06:34:08Z        7
## 636    2003-08 04:07:58Z        7
## 637    2003-08 04:09:31Z        7
## 638    2003-08 04:19:42Z        7
## 639    2003-08 04:20:01Z        7
## 640    2003-08 04:20:53Z        7
## 641    2003-08 04:21:33Z        7
## 642    2003-08 04:22:29Z        7
## 643    2003-08 04:23:02Z        7
## 644    2003-08 04:24:08Z        7
## 645    2003-08 04:25:07Z        7
## 646    2003-10 06:41:55Z        7
## 647    2003-11 23:50:11Z        7
## 648    2003-11 00:01:30Z        7
## 649    2003-12 18:02:53Z        7
## 650    2004-01 17:22:28Z        7
## 651    2004-01 17:29:58Z        7
## 652    2004-03 20:05:59Z        7
## 653    2004-03 01:47:19Z        7
## 654    2004-03 01:54:09Z        7
## 655    2004-05 13:53:50Z        7
## 656    2004-05 14:49:32Z        7
## 657    2004-05 06:32:31Z        7
## 658    2004-06 18:32:45Z        7
## 659    2004-07 14:17:00Z        7
## 660    2004-08 14:40:06Z        7
## 661    2004-08 14:40:53Z        7
## 662    2004-09 08:49:40Z        7
## 663    2004-10 16:08:15Z        7
## 664    2004-10 21:39:15Z        7
## 665    2004-10 05:17:44Z        7
## 666    2004-10 01:17:00Z        7
## 667    2004-10 08:39:57Z        7
## 668    2004-11 12:17:50Z        7
## 669    2004-11 10:21:18Z        7
## 670    2004-11 07:33:57Z        7
## 671    2004-12 21:55:01Z        7
## 672    2004-12 23:35:54Z        7
## 673    2004-12 23:36:16Z        7
## 674    2005-01 23:48:30Z        7
## 675    2005-01 00:22:52Z        7
## 676    2005-01 15:20:13Z        7
## 677    2005-01 23:41:06Z        7
## 678    2005-01 05:17:55Z        7
## 679    2005-01 19:11:13Z        7
## 680    2005-02 23:39:55Z        7
## 681    2005-03 07:13:53Z        7
## 682    2005-04 22:17:04Z        7
## 683    2005-04 22:22:35Z        7
## 684    2005-07 23:40:52Z        7
## 685    2005-07 07:19:26Z        7
## 686    2005-08 12:44:23Z        7
## 687    2005-09 05:27:25Z        7
## 688    2005-09 06:01:51Z        7
## 689    2005-09 18:51:17Z        7
## 690    2005-10 01:18:59Z        7
## 691    2005-10 07:11:26Z        7
## 692    2005-10 07:16:18Z        7
## 693    2005-10 03:53:58Z        7
## 694    2005-11 23:03:20Z        7
## 695    2005-11 22:36:25Z        7
## 696    2005-11 22:49:51Z        7
## 697    2005-11 20:08:20Z        7
## 698    2005-11 11:01:57Z        7
## 699    2005-11 23:44:21Z        7
## 700    2005-11 08:06:25Z        7
## 701    2005-12 12:57:20Z        7
## 702    2005-12 20:29:35Z        7
## 703    2005-12 14:17:48Z        7
## 704    2005-12 14:29:53Z        7
## 705    2006-01 16:35:03Z        7
## 706    2006-01 09:13:34Z        7
## 707    2006-01 20:03:23Z        7
## 708    2006-01 20:03:31Z        7
## 709    2006-02 15:04:29Z        7
## 710    2006-02 00:04:16Z        7
## 711    2006-02 00:18:42Z        7
## 712    2006-02 09:01:47Z        7
## 713    2006-02 10:53:14Z        7
## 714    2006-03 10:24:17Z        7
## 715    2006-03 19:30:36Z        7
## 716    2006-03 19:31:37Z        7
## 717    2006-03 19:32:17Z        7
## 718    2006-03 20:36:05Z        7
## 719    2006-03 20:37:51Z        7
## 720    2006-03 12:22:04Z        7
## 721    2006-03 00:18:49Z        7
## 722    2006-03 08:53:40Z        7
## 723    2006-03 21:27:43Z        7
## 724    2006-03 15:37:20Z        7
## 725    2006-03 04:45:07Z        7
## 726    2006-03 00:12:15Z        7
## 727    2006-03 14:00:44Z        7
## 728    2006-03 23:59:51Z        7
## 729    2006-03 19:19:19Z        7
## 730    2006-03 19:19:41Z        7
## 731    2006-04 05:37:34Z        7
## 732    2006-04 13:48:51Z        7
## 733    2006-04 07:20:39Z        7
## 734    2006-05 01:57:12Z        7
## 735    2006-05 01:57:49Z        7
## 736    2006-05 23:57:28Z        7
## 737    2006-05 00:03:54Z        7
## 738    2006-05 15:59:43Z        7
## 739    2006-05 18:51:57Z        7
## 740    2006-07 16:32:41Z        7
## 741    2006-07 18:53:24Z        7
## 742    2006-07 09:51:40Z        7
## 743    2006-07 13:37:46Z        7
## 744    2006-07 13:38:55Z        7
## 745    2006-07 13:39:44Z        7
## 746    2006-07 21:47:47Z        7
## 747    2006-08 14:38:02Z        7
## 748    2006-08 12:29:32Z        7
## 749    2006-09 14:58:55Z        7
## 750    2006-09 15:33:36Z        7
## 751    2006-09 03:17:20Z        7
## 752    2006-09 03:17:56Z        7
## 753    2006-09 18:07:49Z        7
## 754    2006-09 20:52:57Z        7
## 755    2006-09 20:53:27Z        7
## 756    2006-09 00:24:56Z        7
## 757    2006-09 07:25:56Z        7
## 758    2006-09 20:24:40Z        7
## 759    2006-10 08:12:53Z        7
## 760    2006-10 17:49:30Z        7
## 761    2006-10 00:41:19Z        7
## 762    2006-10 10:31:44Z        7
## 763    2006-10 10:42:49Z        7
## 764    2006-10 10:45:22Z        7
## 765    2006-10 03:54:22Z        7
## 766    2006-10 21:56:00Z        7
## 767    2006-11 15:13:43Z        7
## 768    2006-11 15:14:24Z        7
## 769    2006-11 23:31:18Z        7
## 770    2006-11 23:31:48Z        7
## 771    2006-11 15:31:34Z        7
## 772    2006-11 21:03:32Z        7
## 773    2006-11 12:37:20Z        7
## 774    2006-11 12:38:33Z        7
## 775    2006-11 21:52:34Z        7
## 776    2006-11 21:56:32Z        7
## 777    2006-11 21:59:00Z        7
## 778    2006-11 22:02:25Z        7
## 779    2006-11 04:45:29Z        7
## 780    2006-11 04:46:07Z        7
## 781    2006-11 04:46:28Z        7
## 782    2006-11 20:13:04Z        7
## 783    2006-12 06:02:14Z        7
## 784    2006-12 20:25:52Z        7
## 785    2006-12 20:26:21Z        7
## 786    2006-12 20:27:07Z        7
## 787    2006-12 16:49:27Z        7
## 788    2006-12 17:01:47Z        7
## 789    2006-12 14:16:36Z        7
## 790    2006-12 14:17:33Z        7
## 791    2006-12 11:00:34Z        7
## 792    2006-12 01:17:16Z        7
## 793    2007-01 10:21:00Z        7
## 794    2007-01 10:21:58Z        7
## 795    2007-01 10:22:28Z        7
## 796    2007-01 10:23:16Z        7
## 797    2007-01 10:23:40Z        7
## 798    2007-01 02:50:19Z        7
## 799    2007-01 01:00:14Z        7
## 800    2007-01 01:17:00Z        7
## 801    2007-01 01:23:02Z        7
## 802    2007-01 20:58:52Z        7
## 803    2007-02 19:33:10Z        7
## 804    2007-02 19:34:19Z        7
## 805    2007-02 19:37:16Z        7
## 806    2007-02 07:42:40Z        7
## 807    2007-03 22:31:22Z        7
## 808    2007-03 01:24:51Z        7
## 809    2007-03 00:13:12Z        7
## 810    2007-03 00:14:09Z        7
## 811    2007-03 04:05:01Z        7
## 812    2007-03 22:41:35Z        7
## 813    2007-03 17:03:14Z        7
## 814    2007-04 01:23:15Z        7
## 815    2007-04 10:00:29Z        7
## 816    2007-04 22:08:38Z        7
## 817    2007-04 20:05:20Z        7
## 818    2007-04 20:07:34Z        7
## 819    2007-04 22:30:49Z        7
## 820    2007-04 22:50:29Z        7
## 821    2007-05 11:26:28Z        7
## 822    2007-05 14:51:29Z        7
## 823    2007-05 13:35:15Z        7
## 824    2007-05 13:35:33Z        7
## 825    2007-05 13:37:09Z        7
## 826    2007-05 15:05:04Z        7
## 827    2007-05 13:41:59Z        7
## 828    2007-05 14:55:24Z        7
## 829    2007-05 22:46:02Z        7
## 830    2007-05 23:17:31Z        7
## 831    2007-05 17:51:36Z        7
## 832    2007-05 17:52:53Z        7
## 833    2007-05 17:53:46Z        7
## 834    2007-05 17:54:18Z        7
## 835    2007-05 18:06:14Z        7
## 836    2007-05 02:29:53Z        7
## 837    2007-05 14:50:01Z        7
## 838    2007-05 14:50:55Z        7
## 839    2007-05 14:52:37Z        7
## 840    2007-05 15:09:00Z        7
## 841    2007-05 15:52:44Z        7
## 842    2007-05 15:54:51Z        7
## 843    2007-05 15:55:58Z        7
## 844    2007-05 17:39:56Z        7
## 845    2007-05 17:50:43Z        7
## 846    2007-05 17:53:02Z        7
## 847    2007-05 17:55:43Z        7
## 848    2007-05 17:56:24Z        7
## 849    2007-05 17:57:35Z        7
## 850    2007-05 17:58:42Z        7
## 851    2007-05 17:59:22Z        7
## 852    2007-05 03:12:53Z        7
## 853    2007-06 20:51:29Z        7
## 854    2007-06 11:29:16Z        7
## 855    2007-06 21:29:07Z        7
## 856    2007-06 21:31:54Z        7
## 857    2007-06 21:32:50Z        7
## 858    2007-06 21:34:20Z        7
## 859    2007-06 21:36:44Z        7
## 860    2007-06 21:37:21Z        7
## 861    2007-06 21:39:47Z        7
## 862    2007-06 21:40:30Z        7
## 863    2007-06 21:42:37Z        7
## 864    2007-06 19:14:54Z        7
## 865    2007-06 03:27:56Z        7
## 866    2007-06 22:14:34Z        7
## 867    2007-06 01:46:59Z        7
## 868    2007-06 04:37:21Z        7
## 869    2007-06 15:45:48Z        7
## 870    2007-06 15:46:16Z        7
## 871    2007-06 15:46:57Z        7
## 872    2007-06 21:53:02Z        7
## 873    2007-06 13:18:21Z        7
## 874    2007-07 10:46:28Z        7
## 875    2007-07 01:37:01Z        7
## 876    2007-07 02:52:09Z        7
## 877    2007-08 02:47:03Z        7
## 878    2007-09 22:36:05Z        7
## 879    2007-09 12:09:04Z        7
## 880    2007-09 04:17:43Z        7
## 881    2007-09 22:02:40Z        7
## 882    2007-10 20:37:55Z        7
## 883    2007-10 16:35:45Z        7
## 884    2007-10 11:22:13Z        7
## 885    2007-10 12:00:58Z        7
## 886    2007-10 20:32:05Z        7
## 887    2007-10 01:58:28Z        7
## 888    2007-10 02:23:57Z        7
## 889    2007-10 18:00:31Z        7
## 890    2007-10 18:01:15Z        7
## 891    2007-10 12:15:50Z        7
## 892    2007-10 12:16:14Z        7
## 893    2007-11 00:29:13Z        7
## 894    2007-11 12:38:16Z        7
## 895    2007-11 20:34:48Z        7
## 896    2007-11 20:36:22Z        7
## 897    2007-11 20:36:46Z        7
## 898    2007-12 01:23:49Z        7
## 899    2007-12 10:05:18Z        7
## 900    2007-12 10:10:49Z        7
## 901    2007-12 10:13:15Z        7
## 902    2007-12 10:20:27Z        7
## 903    2007-12 23:30:55Z        7
## 904    2007-12 12:31:46Z        7
## 905    2007-12 12:32:28Z        7
## 906    2007-12 01:25:16Z        7
## 907    2007-12 15:16:23Z        7
## 908    2007-12 14:09:05Z        7
## 909    2007-12 14:17:54Z        7
## 910    2007-12 21:38:21Z        7
## 911    2007-12 22:34:48Z        7
## 912    2007-12 21:04:42Z        7
## 913    2002-10 00:44:50Z        7
## 914    2002-10 01:57:44Z        7
## 915    2002-10 02:46:16Z        7
## 916    2003-05 04:40:58Z        7
## 917    2003-05 04:42:50Z        7
## 918    2003-05 05:33:12Z        7
## 919    2003-05 05:43:54Z        7
## 920    2003-05 05:46:41Z        7
## 921    2003-05 05:50:34Z        7
## 922    2003-05 05:51:00Z        7
## 923    2003-05 05:52:45Z        7
## 924    2003-12 21:42:01Z        7
## 925    2004-03 05:25:39Z        7
## 926    2004-10 05:10:17Z        7
## 927    2004-10 05:35:55Z        7
## 928    2004-10 05:44:59Z        7
## 929    2004-10 09:13:18Z        7
## 930    2004-10 09:56:47Z        7
## 931    2004-10 14:56:56Z        7
## 932    2004-10 23:50:04Z        7
## 933    2004-10 23:53:47Z        7
## 934    2004-12 15:18:26Z        7
## 935    2004-12 21:36:00Z        7
## 936    2005-01 10:04:44Z        7
## 937    2005-03 15:42:26Z        7
## 938    2005-03 15:48:41Z        7
## 939    2005-03 15:54:08Z        7
## 940    2005-03 18:28:57Z        7
## 941    2005-03 18:34:41Z        7
## 942    2005-03 18:36:11Z        7
## 943    2005-03 18:41:24Z        7
## 944    2005-03 18:42:05Z        7
## 945    2005-03 18:49:44Z        7
## 946    2005-03 18:51:53Z        7
## 947    2005-03 18:51:14Z        7
## 948    2005-03 18:55:18Z        7
## 949    2005-03 18:56:45Z        7
## 950    2005-03 18:58:44Z        7
## 951    2005-03 19:02:27Z        7
## 952    2005-03 19:04:24Z        7
## 953    2005-03 19:05:31Z        7
## 954    2005-03 19:06:37Z        7
## 955    2005-03 19:11:41Z        7
## 956    2005-03 19:11:11Z        7
## 957    2005-03 19:17:12Z        7
## 958    2005-03 19:23:40Z        7
## 959    2005-03 19:26:57Z        7
## 960    2005-03 19:27:06Z        7
## 961    2005-03 19:28:45Z        7
## 962    2005-03 19:29:49Z        7
## 963    2005-03 19:30:23Z        7
## 964    2005-03 19:34:36Z        7
## 965    2005-03 19:37:24Z        7
## 966    2005-03 19:37:36Z        7
## 967    2005-03 19:39:28Z        7
## 968    2005-03 19:41:11Z        7
## 969    2005-03 19:44:42Z        7
## 970    2005-03 19:46:39Z        7
## 971    2005-03 19:47:43Z        7
## 972    2005-03 19:49:20Z        7
## 973    2005-03 19:50:07Z        7
## 974    2005-04 22:26:29Z        7
## 975    2005-05 10:53:55Z        7
## 976    2005-05 19:49:43Z        7
## 977    2005-05 00:43:14Z        7
## 978    2005-05 00:45:55Z        7
## 979    2005-07 08:33:18Z        7
## 980    2005-07 10:06:49Z        7
## 981    2005-09 05:27:49Z        7
## 982    2005-09 07:59:45Z        7
## 983    2005-09 18:19:24Z        7
## 984    2005-09 05:09:51Z        7
## 985    2005-09 23:15:16Z        7
## 986    2005-09 04:45:36Z        7
## 987    2005-09 20:33:53Z        7
## 988    2005-09 04:03:00Z        7
## 989    2005-09 10:17:12Z        7
## 990    2005-09 10:36:58Z        7
## 991    2005-09 10:59:39Z        7
## 992    2005-09 15:51:23Z        7
## 993    2005-09 16:03:14Z        7
## 994    2005-09 03:18:04Z        7
## 995    2005-09 15:25:19Z        7
## 996    2005-09 15:26:45Z        7
## 997    2005-10 15:46:31Z        7
## 998    2005-10 20:12:00Z        7
## 999    2005-11 17:42:03Z        7
## 1000   2005-11 17:49:57Z        7
## 1001   2005-11 04:25:03Z        7
## 1002   2005-11 11:23:43Z        7
## 1003   2005-11 20:04:41Z        7
## 1004   2005-11 22:58:58Z        7
## 1005   2005-11 12:54:36Z        7
## 1006   2005-11 12:54:49Z        7
## 1007   2005-11 23:54:43Z        7
## 1008   2005-12 19:07:13Z        7
## 1009   2005-12 19:08:15Z        7
## 1010   2005-12 18:26:42Z        7
## 1011   2005-12 01:39:49Z        7
## 1012   2005-12 01:40:34Z        7
## 1013   2006-01 00:38:47Z        7
## 1014   2006-01 05:53:11Z        7
## 1015   2006-01 20:12:52Z        7
## 1016   2006-01 20:57:54Z        7
## 1017   2006-01 22:39:16Z        7
## 1018   2006-01 14:15:27Z        7
## 1019   2006-01 14:52:48Z        7
## 1020   2006-01 01:06:45Z        7
## 1021   2006-01 23:40:09Z        7
## 1022   2006-01 23:41:55Z        7
## 1023   2006-02 16:55:42Z        7
## 1024   2006-02 20:52:53Z        7
## 1025   2006-02 20:54:43Z        7
## 1026   2006-02 23:31:56Z        7
## 1027   2006-02 23:32:42Z        7
## 1028   2006-02 23:32:50Z        7
## 1029   2006-02 23:34:37Z        7
## 1030   2006-02 23:35:21Z        7
## 1031   2006-02 23:35:54Z        7
## 1032   2006-02 13:20:14Z        7
## 1033   2006-03 04:31:26Z        7
## 1034   2006-03 04:32:06Z        7
## 1035   2006-03 02:58:00Z        7
## 1036   2006-03 16:23:14Z        7
## 1037   2006-03 16:24:56Z        7
## 1038   2006-03 16:32:49Z        7
## 1039   2006-03 04:19:34Z        7
## 1040   2006-04 02:28:59Z        7
## 1041   2006-04 02:47:16Z        7
## 1042   2006-04 16:21:52Z        7
## 1043   2006-04 21:48:40Z        7
## 1044   2006-04 19:59:34Z        7
## 1045   2006-04 11:55:12Z        7
## 1046   2006-04 15:25:14Z        7
## 1047   2006-04 15:25:46Z        7
## 1048   2006-04 15:28:45Z        7
## 1049   2006-04 15:28:51Z        7
## 1050   2006-04 15:29:07Z        7
## 1051   2006-04 15:29:41Z        7
## 1052   2006-04 15:30:01Z        7
## 1053   2006-04 15:32:33Z        7
## 1054   2006-05 17:51:12Z        7
## 1055   2006-05 20:56:40Z        7
## 1056   2006-05 17:38:05Z        7
## 1057   2006-05 22:57:05Z        7
## 1058   2006-05 23:01:56Z        7
## 1059   2006-05 23:04:27Z        7
## 1060   2006-05 01:35:06Z        7
## 1061   2006-06 03:27:00Z        7
## 1062   2006-06 09:43:13Z        7
## 1063   2006-06 19:56:02Z        7
## 1064   2006-06 23:05:26Z        7
## 1065   2006-06 03:36:18Z        7
## 1066   2006-06 03:27:57Z        7
## 1067   2006-06 03:28:14Z        7
## 1068   2006-06 18:20:55Z        7
## 1069   2006-06 23:13:12Z        7
## 1070   2006-07 14:46:38Z        7
## 1071   2006-07 21:16:59Z        7
## 1072   2006-07 21:09:14Z        7
## 1073   2006-07 21:10:03Z        7
## 1074   2006-07 21:11:08Z        7
## 1075   2006-07 06:49:52Z        7
## 1076   2006-08 23:29:03Z        7
## 1077   2006-08 14:20:59Z        7
## 1078   2006-09 17:43:24Z        7
## 1079   2006-09 17:20:00Z        7
## 1080   2006-09 17:25:07Z        7
## 1081   2006-09 09:44:57Z        7
## 1082   2006-09 09:56:10Z        7
## 1083   2006-10 05:42:32Z        7
## 1084   2006-10 05:43:13Z        7
## 1085   2006-10 05:43:48Z        7
## 1086   2006-10 16:47:59Z        7
## 1087   2006-10 16:48:23Z        7
## 1088   2006-10 00:14:21Z        7
## 1089   2006-11 21:10:29Z        7
## 1090   2006-11 21:17:15Z        7
## 1091   2006-11 15:59:46Z        7
## 1092   2006-11 16:01:12Z        7
## 1093   2006-11 16:42:58Z        7
## 1094   2006-11 20:34:22Z        7
## 1095   2006-11 23:55:01Z        7
## 1096   2006-11 06:12:57Z        7
## 1097   2006-11 06:12:59Z        7
## 1098   2006-11 04:46:15Z        7
## 1099   2006-11 04:46:49Z        7
## 1100   2006-11 12:01:51Z        7
## 1101   2006-11 12:01:53Z        7
## 1102   2006-12 16:58:43Z        7
## 1103   2007-01 06:01:21Z        7
## 1104   2007-01 02:50:56Z        7
## 1105   2007-02 17:44:28Z        7
## 1106   2007-02 17:45:41Z        7
## 1107   2007-02 17:46:10Z        7
## 1108   2007-02 17:46:48Z        7
## 1109   2007-02 17:47:34Z        7
## 1110   2007-02 17:57:06Z        7
## 1111   2007-02 01:23:02Z        7
## 1112   2007-02 13:34:12Z        7
## 1113   2007-02 13:34:42Z        7
## 1114   2007-02 04:10:08Z        7
## 1115   2007-02 04:10:55Z        7
## 1116   2007-02 20:52:13Z        7
## 1117   2007-02 20:52:42Z        7
## 1118   2007-02 20:53:03Z        7
## 1119   2007-02 13:01:49Z        7
## 1120   2007-02 13:02:19Z        7
## 1121   2007-02 13:02:49Z        7
## 1122   2007-02 13:08:53Z        7
## 1123   2007-02 05:07:23Z        7
## 1124   2007-02 05:07:43Z        7
## 1125   2007-02 10:56:44Z        7
## 1126   2007-02 10:57:06Z        7
## 1127   2007-02 10:58:59Z        7
## 1128   2007-02 11:01:29Z        7
## 1129   2007-02 11:01:44Z        7
## 1130   2007-02 11:01:54Z        7
## 1131   2007-02 11:02:18Z        7
## 1132   2007-02 11:11:39Z        7
## 1133   2007-02 23:08:23Z        7
## 1134   2007-03 22:14:31Z        7
## 1135   2007-03 13:34:06Z        7
## 1136   2007-03 13:35:45Z        7
## 1137   2007-03 13:38:32Z        7
## 1138   2007-03 13:39:35Z        7
## 1139   2007-03 13:45:21Z        7
## 1140   2007-03 15:19:17Z        7
## 1141   2007-03 15:20:20Z        7
## 1142   2007-03 15:20:51Z        7
## 1143   2007-03 15:21:26Z        7
## 1144   2007-03 15:25:13Z        7
## 1145   2007-03 13:01:06Z        7
## 1146   2007-03 19:58:09Z        7
## 1147   2007-03 20:59:48Z        7
## 1148   2007-03 21:00:12Z        7
## 1149   2007-03 20:34:42Z        7
## 1150   2007-03 20:54:19Z        7
## 1151   2007-03 17:49:33Z        7
## 1152   2007-04 08:41:36Z        7
## 1153   2007-04 18:41:37Z        7
## 1154   2007-04 18:56:27Z        7
## 1155   2007-04 18:59:35Z        7
## 1156   2007-04 23:13:03Z        7
## 1157   2007-04 03:10:13Z        7
## 1158   2007-04 12:28:07Z        7
## 1159   2007-04 12:28:58Z        7
## 1160   2007-04 12:31:00Z        7
## 1161   2007-04 12:31:52Z        7
## 1162   2007-04 12:32:04Z        7
## 1163   2007-04 12:24:45Z        7
## 1164   2007-04 12:35:18Z        7
## 1165   2007-04 15:50:02Z        7
## 1166   2007-04 19:46:19Z        7
## 1167   2007-04 03:18:47Z        7
## 1168   2007-04 03:28:29Z        7
## 1169   2007-04 00:33:34Z        7
## 1170   2007-04 01:57:00Z        7
## 1171   2007-05 11:07:23Z        7
## 1172   2007-05 17:59:19Z        7
## 1173   2007-06 12:09:18Z        7
## 1174   2007-06 18:40:29Z        7
## 1175   2007-06 05:28:34Z        7
## 1176   2007-07 03:21:11Z        7
## 1177   2007-08 18:40:43Z        7
## 1178   2007-08 21:46:42Z        7
## 1179   2007-09 10:18:37Z        7
## 1180   2007-09 15:04:03Z        7
## 1181   2007-09 15:47:35Z        7
## 1182   2007-09 15:50:58Z        7
## 1183   2007-09 03:14:20Z        7
## 1184   2007-09 17:42:11Z        7
## 1185   2007-09 17:50:19Z        7
## 1186   2007-09 17:51:31Z        7
## 1187   2007-10 20:37:25Z        7
## 1188   2007-10 20:37:31Z        7
## 1189   2007-10 20:41:40Z        7
## 1190   2007-10 20:45:19Z        7
## 1191   2007-10 20:45:56Z        7
## 1192   2007-10 22:09:40Z        7
## 1193   2007-10 15:05:56Z        7
## 1194   2007-10 22:32:47Z        7
## 1195   2007-10 22:47:32Z        7
## 1196   2007-10 19:06:52Z        7
## 1197   2007-10 23:49:15Z        7
## 1198   2007-10 23:49:21Z        7
## 1199   2007-10 04:02:46Z        7
## 1200   2007-10 04:19:01Z        7
## 1201   2007-10 13:25:46Z        7
## 1202   2007-10 18:40:47Z        7
## 1203   2007-10 09:33:57Z        7
## 1204   2007-10 13:47:07Z        7
## 1205   2007-10 16:53:21Z        7
## 1206   2007-10 08:29:39Z        7
## 1207   2007-10 04:45:34Z        7
## 1208   2007-10 04:47:18Z        7
## 1209   2007-10 04:48:06Z        7
## 1210   2007-10 04:54:04Z        7
## 1211   2007-11 19:49:39Z        7
## 1212   2007-11 14:00:35Z        7
## 1213   2007-12 06:11:33Z        7
## 1214   2007-12 11:43:37Z        7
## 1215   2007-12 15:42:25Z        7
## 1216   2007-12 15:42:30Z        7
## 1217   2007-12 15:44:24Z        7
## 1218   2007-12 15:45:10Z        7
## 1219   2007-12 09:25:10Z        7
## 1220   2007-12 00:46:59Z        7
## 1221   2007-12 01:03:57Z        7
## 1222   2007-12 01:07:40Z        7
## 1223   2007-12 01:09:19Z        7
## 1224   2007-12 01:13:39Z        7
## 1225   2007-12 01:20:02Z        7
## 1226   2007-12 01:24:36Z        7
## 1227   2007-12 01:26:11Z        7
## 1228   2002-10 12:54:09Z        9
## 1229   2002-10 18:57:50Z        9
## 1230   2002-10 19:31:30Z        9
## 1231   2004-06 17:34:51Z        9
## 1232   2004-08 06:42:28Z        9
## 1233   2005-03 03:39:51Z        9
## 1234   2005-03 04:38:04Z        9
## 1235   2005-09 23:12:50Z        9
## 1236   2005-12 21:37:44Z        9
## 1237   2006-05 14:05:42Z        9
## 1238   2006-09 14:45:12Z        9
## 1239   2007-03 15:16:11Z        9
## 1240   2002-10 12:56:34Z        9
## 1241   2002-10 19:00:15Z        9
## 1242   2002-10 07:35:34Z        9
## 1243   2004-06 17:05:34Z        9
## 1244   2004-08 06:42:55Z        9
## 1245   2005-03 03:42:36Z        9
## 1246   2005-03 04:38:53Z        9
## 1247   2005-07 20:58:43Z        9
## 1248   2005-09 07:16:25Z        9
## 1249   2005-09 07:23:38Z        9
## 1250   2005-09 23:14:55Z        9
## 1251   2005-12 22:27:55Z        9
## 1252   2006-05 14:06:25Z        9
## 1253   2006-06 12:18:35Z        9
## 1254   2006-09 14:46:01Z        9
## 1255   2006-12 21:06:48Z        9
## 1256   2007-03 17:22:21Z        9
## 1257   2007-04 10:25:00Z        9
## 1258   2007-08 00:22:08Z        9
## 1259   2007-08 04:10:14Z        9
## 1260   2007-10 09:29:34Z        9
## 1261   2007-10 09:45:58Z        9
## 1262   2007-10 09:46:39Z        9
## 1263   2007-10 09:46:59Z        9
## 1264   2007-10 09:47:24Z        9
## 1265   2002-01 04:57:45Z        0
## 1266   2002-01 05:34:12Z        0
## 1267   2002-02 15:51:15Z        0
## 1268   2002-04 03:55:41Z        0
## 1269   2002-04 10:30:15Z        0
## 1270   2002-04 10:47:50Z        0
## 1271   2002-04 10:50:58Z        0
## 1272   2002-04 10:51:22Z        0
## 1273   2002-04 10:52:30Z        0
## 1274   2002-04 11:09:30Z        0
## 1275   2002-07 22:13:14Z        0
## 1276   2002-07 09:14:34Z        0
## 1277   2002-08 00:55:21Z        0
## 1278   2001-10 12:25:18Z        0
## 1279   2001-12 11:34:39Z        0
## 1280   2002-09 05:16:33Z        0
## 1281   2002-09 15:24:09Z        0
## 1282   2002-11 00:52:59Z        0
## 1283   2002-12 15:54:49Z        0
## 1284   2003-01 16:42:22Z        0
## 1285   2003-01 20:08:25Z        0
## 1286   2003-01 18:40:03Z        0
## 1287   2003-01 18:41:14Z        0
## 1288   2003-01 18:49:37Z        0
## 1289   2003-02 18:29:43Z        0
## 1290   2003-02 20:09:00Z        0
## 1291   2003-03 13:14:25Z        0
## 1292   2003-03 13:32:28Z        0
## 1293   2003-03 07:40:01Z        0
## 1294   2003-04 08:31:58Z        0
## 1295   2003-04 13:52:24Z        0
## 1296   2003-04 11:21:33Z        0
## 1297   2003-04 16:55:13Z        0
## 1298   2003-04 16:56:22Z        0
## 1299   2003-04 16:57:02Z        0
## 1300   2003-04 01:32:10Z        0
## 1301   2003-04 23:54:14Z        0
## 1302   2003-04 16:42:02Z        0
## 1303   2003-04 16:43:30Z        0
## 1304   2003-04 17:19:11Z        0
## 1305   2003-04 18:13:52Z        0
## 1306   2003-04 19:29:34Z        0
## 1307   2003-04 23:00:42Z        0
## 1308   2003-04 07:27:10Z        0
## 1309   2003-04 00:15:57Z        0
## 1310   2003-04 00:16:54Z        0
## 1311   2003-04 18:21:51Z        0
## 1312   2003-04 17:29:00Z        0
## 1313   2003-05 02:22:26Z        0
## 1314   2003-05 02:32:18Z        0
## 1315   2003-05 09:32:42Z        0
## 1316   2003-05 09:35:47Z        0
## 1317   2003-06 16:35:25Z        0
## 1318   2003-06 17:19:14Z        0
## 1319   2003-07 07:52:24Z        0
## 1320   2003-07 05:49:26Z        0
## 1321   2003-07 02:34:11Z        0
## 1322   2003-08 15:14:52Z        0
## 1323   2003-09 12:15:13Z        0
## 1324   2003-11 00:12:09Z        0
## 1325   2003-11 02:13:14Z        0
## 1326   2003-11 03:43:28Z        0
## 1327   2003-11 20:31:46Z        0
## 1328   2003-11 20:33:01Z        0
## 1329   2003-11 21:41:45Z        0
## 1330   2003-12 17:39:36Z        0
## 1331   2003-12 10:03:38Z        0
## 1332   2003-12 14:05:15Z        0
## 1333   2003-12 09:47:59Z        0
## 1334   2004-01 16:41:04Z        0
## 1335   2004-01 05:57:59Z        0
## 1336   2004-01 15:32:45Z        0
## 1337   2004-02 01:36:30Z        0
## 1338   2004-02 11:24:20Z        0
## 1339   2004-02 18:41:35Z        0
## 1340   2004-02 18:42:12Z        0
## 1341   2004-02 05:12:03Z        0
## 1342   2004-02 06:46:54Z        0
## 1343   2004-03 15:15:52Z        0
## 1344   2004-03 18:58:14Z        0
## 1345   2004-03 02:31:57Z        0
## 1346   2004-03 08:36:13Z        0
## 1347   2004-03 19:46:27Z        0
## 1348   2004-03 10:13:42Z        0
## 1349   2004-03 00:07:09Z        0
## 1350   2004-03 17:50:52Z        0
## 1351   2004-03 08:48:43Z        0
## 1352   2004-04 01:27:45Z        0
## 1353   2004-04 21:51:12Z        0
## 1354   2004-04 04:59:17Z        0
## 1355   2004-04 05:01:37Z        0
## 1356   2004-04 00:13:16Z        0
## 1357   2004-04 06:03:37Z        0
## 1358   2004-04 12:23:47Z        0
## 1359   2004-04 13:20:53Z        0
## 1360   2004-04 17:40:30Z        0
## 1361   2004-04 19:12:13Z        0
## 1362   2004-04 20:55:33Z        0
## 1363   2004-04 19:56:34Z        0
## 1364   2004-04 20:12:31Z        0
## 1365   2004-04 12:49:48Z        0
## 1366   2004-04 00:37:08Z        0
## 1367   2004-04 20:31:38Z        0
## 1368   2004-04 19:07:09Z        0
## 1369   2004-04 21:40:25Z        0
## 1370   2004-05 00:50:05Z        0
## 1371   2004-05 00:50:52Z        0
## 1372   2004-05 18:46:31Z        0
## 1373   2004-05 13:43:05Z        0
## 1374   2004-05 13:49:56Z        0
## 1375   2004-05 00:47:10Z        0
## 1376   2004-05 00:18:31Z        0
## 1377   2004-05 09:37:16Z        0
## 1378   2004-06 17:51:36Z        0
## 1379   2004-06 00:06:57Z        0
## 1380   2004-06 22:45:30Z        0
## 1381   2004-06 03:59:57Z        0
## 1382   2004-06 04:09:10Z        0
## 1383   2004-06 18:25:34Z        0
## 1384   2004-06 18:26:16Z        0
## 1385   2004-07 15:14:16Z        0
## 1386   2004-07 06:08:00Z        0
## 1387   2004-07 16:53:34Z        0
## 1388   2004-07 16:56:33Z        0
## 1389   2004-07 03:50:53Z        0
## 1390   2004-07 15:53:37Z        0
## 1391   2004-07 16:31:06Z        0
## 1392   2004-07 17:26:09Z        0
## 1393   2004-07 17:30:09Z        0
## 1394   2004-07 17:30:26Z        0
## 1395   2004-07 17:30:52Z        0
## 1396   2004-07 07:31:15Z        0
## 1397   2004-07 16:41:32Z        0
## 1398   2004-07 19:57:44Z        0
## 1399   2004-08 18:08:43Z        0
## 1400   2004-08 18:10:02Z        0
## 1401   2004-08 18:11:35Z        0
## 1402   2004-08 18:40:56Z        0
## 1403   2004-08 07:35:35Z        0
## 1404   2004-08 22:07:17Z        0
## 1405   2004-08 18:51:03Z        0
## 1406   2004-08 23:29:57Z        0
## 1407   2004-08 12:31:47Z        0
## 1408   2004-08 12:32:15Z        0
## 1409   2004-08 16:31:49Z        0
## 1410   2004-08 07:11:12Z        0
## 1411   2004-08 07:14:10Z        0
## 1412   2004-08 17:50:13Z        0
## 1413   2004-09 06:04:28Z        0
## 1414   2004-09 19:18:04Z        0
## 1415   2004-09 10:42:30Z        0
## 1416   2004-09 23:32:07Z        0
## 1417   2004-09 04:15:05Z        0
## 1418   2004-09 19:17:23Z        0
## 1419   2004-10 12:24:39Z        0
## 1420   2004-10 19:05:12Z        0
## 1421   2004-10 00:00:32Z        0
## 1422   2004-10 06:43:15Z        0
## 1423   2004-10 15:08:50Z        0
## 1424   2004-10 15:09:47Z        0
## 1425   2004-10 21:00:47Z        0
## 1426   2004-10 01:02:54Z        0
## 1427   2004-11 05:40:59Z        0
## 1428   2004-11 00:08:49Z        0
## 1429   2004-11 01:59:48Z        0
## 1430   2004-11 02:01:23Z        0
## 1431   2004-11 02:02:08Z        0
## 1432   2004-11 06:43:47Z        0
## 1433   2004-11 06:44:33Z        0
## 1434   2004-11 06:46:01Z        0
## 1435   2004-11 06:48:36Z        0
## 1436   2004-11 06:50:19Z        0
## 1437   2004-11 10:26:38Z        0
## 1438   2004-12 02:32:41Z        0
## 1439   2004-12 04:58:41Z        0
## 1440   2004-12 20:25:35Z        0
## 1441   2004-12 18:29:27Z        0
## 1442   2004-12 20:52:14Z        0
## 1443   2004-12 05:34:14Z        0
## 1444   2005-01 03:32:22Z        0
## 1445   2005-01 03:35:14Z        0
## 1446   2005-01 03:35:44Z        0
## 1447   2005-01 03:38:49Z        0
## 1448   2005-01 14:00:03Z        0
## 1449   2005-01 18:01:57Z        0
## 1450   2005-02 17:43:07Z        0
## 1451   2005-02 19:14:00Z        0
## 1452   2005-03 00:09:06Z        0
## 1453   2005-03 00:44:55Z        0
## 1454   2005-03 01:14:44Z        0
## 1455   2005-03 03:09:25Z        0
## 1456   2005-03 17:15:25Z        0
## 1457   2005-03 17:17:27Z        0
## 1458   2005-04 04:44:15Z        0
## 1459   2005-04 03:59:12Z        0
## 1460   2005-04 03:59:34Z        0
## 1461   2005-04 04:00:21Z        0
## 1462   2005-04 04:23:43Z        0
## 1463   2005-04 04:24:36Z        0
## 1464   2005-04 13:35:08Z        0
## 1465   2005-04 13:35:19Z        0
## 1466   2005-04 18:38:48Z        0
## 1467   2005-04 11:11:38Z        0
## 1468   2005-04 12:42:55Z        0
## 1469   2005-04 18:53:26Z        0
## 1470   2005-04 18:56:18Z        0
## 1471   2005-04 21:09:50Z        0
## 1472   2005-04 00:15:24Z        0
## 1473   2005-04 09:18:24Z        0
## 1474   2005-04 11:59:21Z        0
## 1475   2005-04 13:42:20Z        0
## 1476   2005-04 16:18:09Z        0
## 1477   2005-04 16:48:22Z        0
## 1478   2005-04 16:54:59Z        0
## 1479   2005-04 17:08:30Z        0
## 1480   2005-04 17:53:31Z        0
## 1481   2005-04 20:10:15Z        0
## 1482   2005-04 20:13:23Z        0
## 1483   2005-04 20:18:13Z        0
## 1484   2005-04 02:02:33Z        0
## 1485   2005-04 22:31:23Z        0
## 1486   2005-04 22:41:35Z        0
## 1487   2005-04 22:43:19Z        0
## 1488   2005-04 20:42:10Z        0
## 1489   2005-04 16:55:51Z        0
## 1490   2005-04 03:11:23Z        0
## 1491   2005-05 14:02:13Z        0
## 1492   2005-05 01:00:43Z        0
## 1493   2005-05 01:07:19Z        0
## 1494   2005-05 01:09:37Z        0
## 1495   2005-05 01:10:34Z        0
## 1496   2005-05 16:26:48Z        0
## 1497   2005-05 14:27:34Z        0
## 1498   2005-05 16:48:32Z        0
## 1499   2005-05 02:15:24Z        0
## 1500   2005-05 02:24:06Z        0
## 1501   2005-06 02:56:41Z        0
## 1502   2005-06 02:57:44Z        0
## 1503   2005-06 23:52:48Z        0
## 1504   2005-06 15:02:54Z        0
## 1505   2005-06 16:03:43Z        0
## 1506   2005-06 18:54:00Z        0
## 1507   2005-06 11:03:43Z        0
## 1508   2005-06 20:32:29Z        0
## 1509   2005-06 20:33:02Z        0
## 1510   2005-06 20:33:44Z        0
## 1511   2005-06 02:31:06Z        0
## 1512   2005-06 13:36:53Z        0
## 1513   2005-07 20:43:04Z        0
## 1514   2005-07 10:11:22Z        0
## 1515   2005-07 10:13:28Z        0
## 1516   2005-07 13:46:58Z        0
## 1517   2005-07 20:50:25Z        0
## 1518   2005-07 20:05:04Z        0
## 1519   2005-07 02:54:58Z        0
## 1520   2005-07 14:21:56Z        0
## 1521   2005-07 14:01:39Z        0
## 1522   2005-07 14:03:27Z        0
## 1523   2005-07 03:22:40Z        0
## 1524   2005-07 17:28:45Z        0
## 1525   2005-07 18:36:12Z        0
## 1526   2005-07 20:13:10Z        0
## 1527   2005-07 14:00:41Z        0
## 1528   2005-07 14:02:37Z        0
## 1529   2005-07 14:05:18Z        0
## 1530   2005-07 17:53:46Z        0
## 1531   2005-07 00:16:10Z        0
## 1532   2005-07 17:38:23Z        0
## 1533   2005-07 18:31:00Z        0
## 1534   2005-07 19:44:36Z        0
## 1535   2005-07 20:15:59Z        0
## 1536   2005-08 05:30:25Z        0
## 1537   2005-08 19:09:15Z        0
## 1538   2005-08 16:23:54Z        0
## 1539   2005-08 01:15:17Z        0
## 1540   2005-08 01:16:42Z        0
## 1541   2005-08 01:19:11Z        0
## 1542   2005-08 01:22:14Z        0
## 1543   2005-08 01:24:44Z        0
## 1544   2005-08 01:26:42Z        0
## 1545   2005-08 01:29:03Z        0
## 1546   2005-08 01:30:31Z        0
## 1547   2005-08 01:33:13Z        0
## 1548   2005-08 01:33:50Z        0
## 1549   2005-08 01:37:02Z        0
## 1550   2005-08 01:39:07Z        0
## 1551   2005-08 01:40:38Z        0
## 1552   2005-08 01:41:55Z        0
## 1553   2005-08 01:43:09Z        0
## 1554   2005-08 01:45:37Z        0
## 1555   2005-08 01:48:42Z        0
## 1556   2005-08 01:49:46Z        0
## 1557   2005-08 01:51:41Z        0
## 1558   2005-08 01:52:44Z        0
## 1559   2005-08 01:54:57Z        0
## 1560   2005-08 13:39:10Z        0
## 1561   2005-08 11:56:19Z        0
## 1562   2005-08 13:15:47Z        0
## 1563   2005-08 13:17:39Z        0
## 1564   2005-08 06:36:44Z        0
## 1565   2005-08 22:34:27Z        0
## 1566   2005-08 18:31:33Z        0
## 1567   2005-08 15:59:06Z        0
## 1568   2005-09 13:12:36Z        0
## 1569   2005-09 17:21:41Z        0
## 1570   2005-09 17:26:43Z        0
## 1571   2005-09 17:59:01Z        0
## 1572   2005-09 19:28:39Z        0
## 1573   2005-09 20:46:01Z        0
## 1574   2005-09 20:46:38Z        0
## 1575   2005-09 07:37:41Z        0
## 1576   2005-09 18:36:29Z        0
## 1577   2005-09 13:56:53Z        0
## 1578   2005-09 03:55:42Z        0
## 1579   2005-09 21:42:39Z        0
## 1580   2005-09 11:28:42Z        0
## 1581   2005-09 13:14:15Z        0
## 1582   2005-09 22:11:29Z        0
## 1583   2005-09 22:12:06Z        0
## 1584   2005-10 16:10:34Z        0
## 1585   2005-10 01:42:15Z        0
## 1586   2005-10 16:35:31Z        0
## 1587   2005-10 16:36:18Z        0
## 1588   2005-10 16:37:25Z        0
## 1589   2005-10 21:23:49Z        0
## 1590   2005-10 21:24:48Z        0
## 1591   2005-10 12:08:34Z        0
## 1592   2005-10 12:09:23Z        0
## 1593   2005-10 12:09:59Z        0
## 1594   2005-10 12:10:51Z        0
## 1595   2005-10 16:08:57Z        0
## 1596   2005-10 20:06:08Z        0
## 1597   2005-10 23:07:22Z        0
## 1598   2005-10 23:11:57Z        0
## 1599   2005-10 23:13:05Z        0
## 1600   2005-10 23:20:21Z        0
## 1601   2005-10 23:24:54Z        0
## 1602   2005-10 23:34:00Z        0
## 1603   2005-10 09:29:01Z        0
## 1604   2005-10 19:48:38Z        0
## 1605   2005-10 20:15:48Z        0
## 1606   2005-10 22:13:32Z        0
## 1607   2005-10 07:33:28Z        0
## 1608   2005-10 21:25:18Z        0
## 1609   2005-10 02:07:16Z        0
## 1610   2005-10 18:51:04Z        0
## 1611   2005-10 18:52:07Z        0
## 1612   2005-10 18:52:41Z        0
## 1613   2005-11 03:45:22Z        0
## 1614   2005-11 17:16:35Z        0
## 1615   2005-11 18:27:31Z        0
## 1616   2005-11 13:54:22Z        0
## 1617   2005-11 16:39:16Z        0
## 1618   2005-11 16:49:27Z        0
## 1619   2005-11 02:13:11Z        0
## 1620   2005-11 02:13:36Z        0
## 1621   2005-11 20:09:26Z        0
## 1622   2005-11 01:02:02Z        0
## 1623   2005-11 15:44:59Z        0
## 1624   2005-11 16:45:06Z        0
## 1625   2005-11 06:23:13Z        0
## 1626   2005-11 14:27:07Z        0
## 1627   2005-11 14:59:55Z        0
## 1628   2005-11 17:52:27Z        0
## 1629   2005-11 20:53:07Z        0
## 1630   2005-11 20:54:11Z        0
## 1631   2005-11 14:12:09Z        0
## 1632   2005-11 23:16:25Z        0
## 1633   2005-11 23:21:00Z        0
## 1634   2005-11 21:17:39Z        0
## 1635   2005-12 15:34:31Z        0
## 1636   2005-12 11:58:39Z        0
## 1637   2005-12 13:04:48Z        0
## 1638   2005-12 07:36:05Z        0
## 1639   2005-12 15:53:44Z        0
## 1640   2005-12 19:30:05Z        0
## 1641   2005-12 18:43:23Z        0
## 1642   2005-12 18:56:27Z        0
## 1643   2005-12 23:20:35Z        0
## 1644   2005-12 03:29:23Z        0
## 1645   2005-12 07:41:58Z        0
## 1646   2005-12 02:37:30Z        0
## 1647   2005-12 02:38:12Z        0
## 1648   2005-12 02:38:40Z        0
## 1649   2005-12 14:08:27Z        0
## 1650   2005-12 15:15:56Z        0
## 1651   2005-12 17:35:41Z        0
## 1652   2005-12 19:24:23Z        0
## 1653   2006-01 14:54:24Z        0
## 1654   2006-01 00:59:28Z        0
## 1655   2006-01 17:12:24Z        0
## 1656   2006-01 04:30:45Z        0
## 1657   2006-01 06:31:05Z        0
## 1658   2006-01 16:54:03Z        0
## 1659   2006-01 18:06:43Z        0
## 1660   2006-01 22:03:05Z        0
## 1661   2006-01 13:44:27Z        0
## 1662   2006-01 02:37:04Z        0
## 1663   2006-01 11:52:54Z        0
## 1664   2006-01 12:07:42Z        0
## 1665   2006-01 12:18:05Z        0
## 1666   2006-01 12:21:11Z        0
## 1667   2006-01 12:25:25Z        0
## 1668   2006-01 12:26:30Z        0
## 1669   2006-01 17:07:54Z        0
## 1670   2006-01 17:08:30Z        0
## 1671   2006-01 18:52:25Z        0
## 1672   2006-01 20:14:55Z        0
## 1673   2006-01 01:49:20Z        0
## 1674   2006-01 02:26:45Z        0
## 1675   2006-01 13:47:44Z        0
## 1676   2006-01 16:26:59Z        0
## 1677   2006-01 17:33:22Z        0
## 1678   2006-01 12:18:06Z        0
## 1679   2006-01 12:19:17Z        0
## 1680   2006-01 20:12:27Z        0
## 1681   2006-01 02:02:43Z        0
## 1682   2006-01 14:44:12Z        0
## 1683   2006-01 15:17:45Z        0
## 1684   2006-02 22:30:43Z        0
## 1685   2006-02 00:45:51Z        0
## 1686   2006-02 22:39:17Z        0
## 1687   2006-02 17:19:05Z        0
## 1688   2006-02 23:52:12Z        0
## 1689   2006-02 22:25:53Z        0
## 1690   2006-02 00:33:28Z        0
## 1691   2006-02 23:57:15Z        0
## 1692   2006-02 23:57:32Z        0
## 1693   2006-02 03:05:27Z        0
## 1694   2006-02 04:47:54Z        0
## 1695   2006-02 00:13:54Z        0
## 1696   2006-02 00:14:10Z        0
## 1697   2006-02 00:15:41Z        0
## 1698   2006-02 01:46:44Z        0
## 1699   2006-02 00:22:39Z        0
## 1700   2006-02 12:21:47Z        0
## 1701   2006-02 10:42:08Z        0
## 1702   2006-02 14:23:14Z        0
## 1703   2006-02 14:23:58Z        0
## 1704   2006-02 15:33:16Z        0
## 1705   2006-02 23:39:17Z        0
## 1706   2006-02 03:19:37Z        0
## 1707   2006-02 03:21:08Z        0
## 1708   2006-02 03:30:06Z        0
## 1709   2006-02 23:16:52Z        0
## 1710   2006-02 23:41:05Z        0
## 1711   2006-02 02:16:28Z        0
## 1712   2006-02 19:07:17Z        0
## 1713   2006-02 00:34:10Z        0
## 1714   2006-02 02:15:01Z        0
## 1715   2006-02 05:20:48Z        0
## 1716   2006-02 05:21:03Z        0
## 1717   2006-02 17:47:37Z        0
## 1718   2006-02 18:05:04Z        0
## 1719   2006-02 23:57:32Z        0
## 1720   2006-02 00:08:36Z        0
## 1721   2006-02 00:43:34Z        0
## 1722   2006-02 00:45:50Z        0
## 1723   2006-02 00:47:37Z        0
## 1724   2006-02 00:48:00Z        0
## 1725   2006-02 00:52:47Z        0
## 1726   2006-02 00:53:31Z        0
## 1727   2006-02 00:56:24Z        0
## 1728   2006-02 00:57:02Z        0
## 1729   2006-02 00:59:37Z        0
## 1730   2006-02 01:01:22Z        0
## 1731   2006-02 01:01:56Z        0
## 1732   2006-02 01:02:48Z        0
## 1733   2006-02 01:04:51Z        0
## 1734   2006-02 01:05:19Z        0
## 1735   2006-02 04:50:42Z        0
## 1736   2006-02 05:23:12Z        0
## 1737   2006-02 02:02:45Z        0
## 1738   2006-02 02:04:46Z        0
## 1739   2006-02 02:11:29Z        0
## 1740   2006-02 02:14:58Z        0
## 1741   2006-02 02:16:35Z        0
## 1742   2006-02 02:18:35Z        0
## 1743   2006-02 02:19:03Z        0
## 1744   2006-02 13:32:53Z        0
## 1745   2006-02 14:59:39Z        0
## 1746   2006-02 23:34:35Z        0
## 1747   2006-02 23:35:42Z        0
## 1748   2006-02 23:36:41Z        0
## 1749   2006-02 23:37:24Z        0
## 1750   2006-02 00:17:45Z        0
## 1751   2006-02 00:25:55Z        0
## 1752   2006-02 00:27:05Z        0
## 1753   2006-02 00:30:49Z        0
## 1754   2006-02 17:20:58Z        0
## 1755   2006-02 17:50:34Z        0
## 1756   2006-02 23:08:46Z        0
## 1757   2006-02 23:09:20Z        0
## 1758   2006-02 02:08:10Z        0
## 1759   2006-02 02:43:03Z        0
## 1760   2006-02 15:18:07Z        0
## 1761   2006-02 15:53:21Z        0
## 1762   2006-02 17:11:45Z        0
## 1763   2006-02 17:14:42Z        0
## 1764   2006-02 17:36:35Z        0
## 1765   2006-02 17:44:43Z        0
## 1766   2006-02 17:45:11Z        0
## 1767   2006-02 18:34:39Z        0
## 1768   2006-02 16:42:15Z        0
## 1769   2006-02 16:43:45Z        0
## 1770   2006-02 16:45:16Z        0
## 1771   2006-02 17:11:22Z        0
## 1772   2006-03 19:41:43Z        0
## 1773   2006-03 19:58:56Z        0
## 1774   2006-03 21:46:31Z        0
## 1775   2006-03 21:46:48Z        0
## 1776   2006-03 03:25:44Z        0
## 1777   2006-03 03:26:57Z        0
## 1778   2006-03 16:57:54Z        0
## 1779   2006-03 18:50:43Z        0
## 1780   2006-03 23:09:45Z        0
## 1781   2006-03 23:13:46Z        0
## 1782   2006-03 02:11:29Z        0
## 1783   2006-03 02:12:10Z        0
## 1784   2006-03 02:12:20Z        0
## 1785   2006-03 02:40:10Z        0
## 1786   2006-03 03:32:19Z        0
## 1787   2006-03 21:44:54Z        0
## 1788   2006-03 21:55:08Z        0
## 1789   2006-03 18:48:24Z        0
## 1790   2006-03 19:03:56Z        0
## 1791   2006-03 02:13:52Z        0
## 1792   2006-03 02:27:41Z        0
## 1793   2006-03 23:53:45Z        0
## 1794   2006-03 05:49:40Z        0
## 1795   2006-03 06:37:48Z        0
## 1796   2006-03 22:24:32Z        0
## 1797   2006-03 21:09:38Z        0
## 1798   2006-03 18:35:13Z        0
## 1799   2006-03 01:20:37Z        0
## 1800   2006-03 09:11:31Z        0
## 1801   2006-03 09:15:10Z        0
## 1802   2006-03 05:07:54Z        0
## 1803   2006-03 22:43:56Z        0
## 1804   2006-03 21:54:39Z        0
## 1805   2006-03 22:16:20Z        0
## 1806   2006-03 03:27:25Z        0
## 1807   2006-03 23:53:21Z        0
## 1808   2006-03 08:11:39Z        0
## 1809   2006-03 14:29:14Z        0
## 1810   2006-03 14:30:28Z        0
## 1811   2006-03 15:28:19Z        0
## 1812   2006-03 16:59:43Z        0
## 1813   2006-03 18:03:45Z        0
## 1814   2006-03 18:26:57Z        0
## 1815   2006-04 17:48:43Z        0
## 1816   2006-04 12:40:52Z        0
## 1817   2006-04 18:57:04Z        0
## 1818   2006-04 19:01:07Z        0
## 1819   2006-04 19:01:32Z        0
## 1820   2006-04 19:03:25Z        0
## 1821   2006-04 19:14:40Z        0
## 1822   2006-04 19:15:28Z        0
## 1823   2006-04 20:14:56Z        0
## 1824   2006-04 23:37:48Z        0
## 1825   2006-04 05:56:37Z        0
## 1826   2006-04 06:40:51Z        0
## 1827   2006-04 14:35:29Z        0
## 1828   2006-04 17:18:25Z        0
## 1829   2006-04 23:45:39Z        0
## 1830   2006-04 23:46:37Z        0
## 1831   2006-04 01:30:48Z        0
## 1832   2006-04 05:04:28Z        0
## 1833   2006-04 02:22:57Z        0
## 1834   2006-04 01:56:36Z        0
## 1835   2006-04 01:57:13Z        0
## 1836   2006-04 01:57:36Z        0
## 1837   2006-04 02:18:04Z        0
## 1838   2006-04 13:03:20Z        0
## 1839   2006-04 13:14:18Z        0
## 1840   2006-04 14:05:52Z        0
## 1841   2006-04 02:09:34Z        0
## 1842   2006-04 12:35:10Z        0
## 1843   2006-04 00:34:31Z        0
## 1844   2006-04 00:35:05Z        0
## 1845   2006-04 02:07:32Z        0
## 1846   2006-04 09:57:24Z        0
## 1847   2006-04 09:59:10Z        0
## 1848   2006-04 12:36:14Z        0
## 1849   2006-04 12:36:18Z        0
## 1850   2006-04 12:39:21Z        0
## 1851   2006-04 12:40:33Z        0
## 1852   2006-04 12:43:06Z        0
## 1853   2006-04 12:43:36Z        0
## 1854   2006-04 13:15:13Z        0
## 1855   2006-04 13:52:38Z        0
## 1856   2006-04 17:07:54Z        0
## 1857   2006-04 17:36:47Z        0
## 1858   2006-04 17:37:19Z        0
## 1859   2006-04 17:37:50Z        0
## 1860   2006-04 17:54:39Z        0
## 1861   2006-04 18:36:32Z        0
## 1862   2006-04 18:56:37Z        0
## 1863   2006-04 19:52:13Z        0
## 1864   2006-04 19:54:25Z        0
## 1865   2006-04 20:07:36Z        0
## 1866   2006-04 23:04:48Z        0
## 1867   2006-04 23:05:14Z        0
## 1868   2006-04 23:58:28Z        0
## 1869   2006-04 00:37:28Z        0
## 1870   2006-04 00:38:19Z        0
## 1871   2006-04 00:59:01Z        0
## 1872   2006-04 02:10:15Z        0
## 1873   2006-04 02:11:03Z        0
## 1874   2006-04 02:15:27Z        0
## 1875   2006-04 02:15:57Z        0
## 1876   2006-04 02:16:42Z        0
## 1877   2006-04 04:19:21Z        0
## 1878   2006-04 04:28:47Z        0
## 1879   2006-04 05:41:37Z        0
## 1880   2006-04 05:42:03Z        0
## 1881   2006-04 09:36:02Z        0
## 1882   2006-04 21:03:36Z        0
## 1883   2006-04 21:04:03Z        0
## 1884   2006-04 09:50:39Z        0
## 1885   2006-04 09:51:37Z        0
## 1886   2006-04 20:05:19Z        0
## 1887   2006-04 20:21:32Z        0
## 1888   2006-04 11:45:24Z        0
## 1889   2006-04 12:44:15Z        0
## 1890   2006-04 12:44:36Z        0
## 1891   2006-04 17:44:40Z        0
## 1892   2006-04 17:47:22Z        0
## 1893   2006-04 22:41:31Z        0
## 1894   2006-04 23:52:24Z        0
## 1895   2006-04 23:45:59Z        0
## 1896   2006-04 23:46:40Z        0
## 1897   2006-04 23:47:58Z        0
## 1898   2006-04 23:48:55Z        0
## 1899   2006-04 22:41:16Z        0
## 1900   2006-05 18:06:34Z        0
## 1901   2006-05 18:15:14Z        0
## 1902   2006-05 03:04:18Z        0
## 1903   2006-05 03:06:32Z        0
## 1904   2006-05 03:07:15Z        0
## 1905   2006-05 03:08:31Z        0
## 1906   2006-05 06:52:00Z        0
## 1907   2006-05 01:56:54Z        0
## 1908   2006-05 02:32:52Z        0
## 1909   2006-05 13:17:37Z        0
## 1910   2006-05 13:35:14Z        0
## 1911   2006-05 22:38:53Z        0
## 1912   2006-05 15:10:22Z        0
## 1913   2006-05 15:11:48Z        0
## 1914   2006-05 01:22:05Z        0
## 1915   2006-05 01:24:24Z        0
## 1916   2006-05 01:26:40Z        0
## 1917   2006-05 01:27:36Z        0
## 1918   2006-05 01:28:42Z        0
## 1919   2006-05 06:35:02Z        0
## 1920   2006-05 14:49:27Z        0
## 1921   2006-05 00:13:33Z        0
## 1922   2006-05 04:19:22Z        0
## 1923   2006-05 04:20:30Z        0
## 1924   2006-05 04:21:17Z        0
## 1925   2006-05 10:21:30Z        0
## 1926   2006-05 12:09:15Z        0
## 1927   2006-05 15:07:06Z        0
## 1928   2006-05 15:12:37Z        0
## 1929   2006-05 12:45:11Z        0
## 1930   2006-05 01:46:19Z        0
## 1931   2006-05 01:52:21Z        0
## 1932   2006-05 04:33:39Z        0
## 1933   2006-05 02:00:26Z        0
## 1934   2006-05 02:47:40Z        0
## 1935   2006-05 02:48:48Z        0
## 1936   2006-05 02:51:21Z        0
## 1937   2006-05 11:29:20Z        0
## 1938   2006-05 11:31:09Z        0
## 1939   2006-05 11:53:31Z        0
## 1940   2006-05 12:46:20Z        0
## 1941   2006-05 15:46:31Z        0
## 1942   2006-05 23:17:36Z        0
## 1943   2006-06 04:31:12Z        0
## 1944   2006-06 04:32:54Z        0
## 1945   2006-06 02:45:18Z        0
## 1946   2006-06 06:07:24Z        0
## 1947   2006-06 06:07:35Z        0
## 1948   2006-06 06:07:47Z        0
## 1949   2006-06 14:55:17Z        0
## 1950   2006-06 01:11:23Z        0
## 1951   2006-06 01:13:31Z        0
## 1952   2006-06 17:54:40Z        0
## 1953   2006-06 21:08:18Z        0
## 1954   2006-06 21:08:40Z        0
## 1955   2006-06 21:34:37Z        0
## 1956   2006-06 21:24:19Z        0
## 1957   2006-06 21:52:27Z        0
## 1958   2006-06 01:14:24Z        0
## 1959   2006-06 01:15:28Z        0
## 1960   2006-06 02:14:43Z        0
## 1961   2006-06 12:01:05Z        0
## 1962   2006-06 12:02:25Z        0
## 1963   2006-06 12:03:11Z        0
## 1964   2006-06 12:53:57Z        0
## 1965   2006-06 18:56:53Z        0
## 1966   2006-06 12:11:06Z        0
## 1967   2006-06 13:03:27Z        0
## 1968   2006-07 13:55:50Z        0
## 1969   2006-07 14:52:33Z        0
## 1970   2006-07 04:37:34Z        0
## 1971   2006-07 04:43:55Z        0
## 1972   2006-07 09:38:27Z        0
## 1973   2006-07 16:57:18Z        0
## 1974   2006-07 19:01:29Z        0
## 1975   2006-07 19:10:32Z        0
## 1976   2006-07 01:16:20Z        0
## 1977   2006-07 03:23:26Z        0
## 1978   2006-07 13:01:24Z        0
## 1979   2006-07 17:28:17Z        0
## 1980   2006-07 17:28:43Z        0
## 1981   2006-07 22:24:16Z        0
## 1982   2006-07 22:25:34Z        0
## 1983   2006-07 23:18:43Z        0
## 1984   2006-07 16:57:58Z        0
## 1985   2006-07 17:00:58Z        0
## 1986   2006-07 23:34:34Z        0
## 1987   2006-07 08:53:02Z        0
## 1988   2006-07 09:05:03Z        0
## 1989   2006-07 09:54:36Z        0
## 1990   2006-07 23:45:55Z        0
## 1991   2006-07 16:39:27Z        0
## 1992   2006-07 17:00:40Z        0
## 1993   2006-07 16:26:03Z        0
## 1994   2006-07 03:15:38Z        0
## 1995   2006-08 03:59:06Z        0
## 1996   2006-08 04:16:36Z        0
## 1997   2006-08 07:13:33Z        0
## 1998   2006-08 07:14:00Z        0
## 1999   2006-08 07:14:08Z        0
## 2000   2006-08 20:54:00Z        0
## 2001   2006-08 23:11:17Z        0
## 2002   2006-08 16:32:00Z        0
## 2003   2006-08 10:08:04Z        0
## 2004   2006-08 17:34:22Z        0
## 2005   2006-08 17:29:09Z        0
## 2006   2006-08 17:29:51Z        0
## 2007   2006-08 17:32:06Z        0
## 2008   2006-08 18:32:43Z        0
## 2009   2006-08 23:54:53Z        0
## 2010   2006-08 02:47:13Z        0
## 2011   2006-08 01:18:32Z        0
## 2012   2006-08 20:14:26Z        0
## 2013   2006-08 04:32:46Z        0
## 2014   2006-08 16:20:12Z        0
## 2015   2006-08 19:59:18Z        0
## 2016   2006-08 22:20:00Z        0
## 2017   2006-08 22:23:33Z        0
## 2018   2006-08 21:38:48Z        0
## 2019   2006-08 23:41:41Z        0
## 2020   2006-08 22:47:59Z        0
## 2021   2006-08 04:25:11Z        0
## 2022   2006-08 20:56:18Z        0
## 2023   2006-08 00:20:35Z        0
## 2024   2006-08 18:54:07Z        0
## 2025   2006-09 08:46:21Z        0
## 2026   2006-09 14:00:03Z        0
## 2027   2006-09 14:02:29Z        0
## 2028   2006-09 15:42:52Z        0
## 2029   2006-09 15:43:38Z        0
## 2030   2006-09 16:47:26Z        0
## 2031   2006-09 16:48:09Z        0
## 2032   2006-09 16:48:32Z        0
## 2033   2006-09 18:41:38Z        0
## 2034   2006-09 10:51:27Z        0
## 2035   2006-09 20:08:22Z        0
## 2036   2006-09 23:01:00Z        0
## 2037   2006-09 00:05:43Z        0
## 2038   2006-09 02:43:24Z        0
## 2039   2006-09 08:12:35Z        0
## 2040   2006-09 00:17:38Z        0
## 2041   2006-09 00:20:32Z        0
## 2042   2006-09 07:22:25Z        0
## 2043   2006-09 19:02:23Z        0
## 2044   2006-09 22:16:06Z        0
## 2045   2006-09 01:54:42Z        0
## 2046   2006-09 01:54:44Z        0
## 2047   2006-10 11:45:04Z        0
## 2048   2006-10 19:07:16Z        0
## 2049   2006-10 00:55:03Z        0
## 2050   2006-10 01:17:25Z        0
## 2051   2006-10 19:15:50Z        0
## 2052   2006-10 19:16:23Z        0
## 2053   2006-10 20:14:27Z        0
## 2054   2006-10 10:43:55Z        0
## 2055   2006-10 10:44:28Z        0
## 2056   2006-10 11:16:03Z        0
## 2057   2006-10 11:16:49Z        0
## 2058   2006-10 11:17:39Z        0
## 2059   2006-10 11:19:40Z        0
## 2060   2006-10 11:59:24Z        0
## 2061   2006-10 18:28:57Z        0
## 2062   2006-10 19:29:43Z        0
## 2063   2006-10 22:37:57Z        0
## 2064   2006-10 10:22:12Z        0
## 2065   2006-10 10:23:02Z        0
## 2066   2006-10 19:02:05Z        0
## 2067   2006-10 19:02:28Z        0
## 2068   2006-11 12:59:04Z        0
## 2069   2006-11 13:11:17Z        0
## 2070   2006-11 23:19:34Z        0
## 2071   2006-11 23:20:50Z        0
## 2072   2006-11 23:23:26Z        0
## 2073   2006-11 23:23:40Z        0
## 2074   2006-11 23:31:19Z        0
## 2075   2006-11 23:33:27Z        0
## 2076   2006-11 23:48:11Z        0
## 2077   2006-11 23:48:35Z        0
## 2078   2006-11 19:07:16Z        0
## 2079   2006-11 19:22:15Z        0
## 2080   2006-11 23:28:22Z        0
## 2081   2006-11 23:16:51Z        0
## 2082   2006-11 11:16:17Z        0
## 2083   2006-11 12:04:03Z        0
## 2084   2006-11 23:42:49Z        0
## 2085   2006-11 00:43:46Z        0
## 2086   2006-11 01:47:00Z        0
## 2087   2006-11 01:48:40Z        0
## 2088   2006-11 01:49:27Z        0
## 2089   2006-11 14:59:05Z        0
## 2090   2006-11 15:27:17Z        0
## 2091   2006-11 21:17:06Z        0
## 2092   2006-11 23:32:24Z        0
## 2093   2006-11 17:05:50Z        0
## 2094   2006-11 17:36:54Z        0
## 2095   2006-11 20:07:42Z        0
## 2096   2006-11 21:40:08Z        0
## 2097   2006-11 02:46:49Z        0
## 2098   2006-11 14:15:02Z        0
## 2099   2006-11 01:26:07Z        0
## 2100   2006-11 03:47:22Z        0
## 2101   2006-11 07:23:35Z        0
## 2102   2006-11 08:04:23Z        0
## 2103   2006-11 02:34:44Z        0
## 2104   2006-11 02:55:14Z        0
## 2105   2006-11 07:45:53Z        0
## 2106   2006-12 21:51:13Z        0
## 2107   2006-12 21:51:18Z        0
## 2108   2006-12 15:03:11Z        0
## 2109   2006-12 15:58:22Z        0
## 2110   2006-12 16:11:06Z        0
## 2111   2006-12 13:44:34Z        0
## 2112   2006-12 14:44:05Z        0
## 2113   2006-12 14:53:42Z        0
## 2114   2006-12 20:53:27Z        0
## 2115   2006-12 13:06:56Z        0
## 2116   2006-12 13:07:35Z        0
## 2117   2006-12 23:13:12Z        0
## 2118   2006-12 23:14:00Z        0
## 2119   2006-12 22:20:12Z        0
## 2120   2006-12 22:31:40Z        0
## 2121   2006-12 03:34:17Z        0
## 2122   2006-12 11:54:23Z        0
## 2123   2006-12 11:54:45Z        0
## 2124   2006-12 19:51:56Z        0
## 2125   2006-12 23:39:58Z        0
## 2126   2006-12 08:31:24Z        0
## 2127   2006-12 08:32:11Z        0
## 2128   2006-12 11:51:45Z        0
## 2129   2006-12 16:32:30Z        0
## 2130   2006-12 03:50:36Z        0
## 2131   2006-12 03:25:19Z        0
## 2132   2006-12 03:54:12Z        0
## 2133   2006-12 03:57:16Z        0
## 2134   2006-12 03:58:21Z        0
## 2135   2006-12 03:59:35Z        0
## 2136   2006-12 04:00:36Z        0
## 2137   2007-01 02:22:31Z        0
## 2138   2007-01 12:23:52Z        0
## 2139   2007-01 02:53:22Z        0
## 2140   2007-01 04:35:38Z        0
## 2141   2007-01 04:43:57Z        0
## 2142   2007-01 21:59:43Z        0
## 2143   2007-01 17:45:09Z        0
## 2144   2007-01 22:27:30Z        0
## 2145   2007-01 04:53:02Z        0
## 2146   2007-01 04:27:10Z        0
## 2147   2007-01 04:28:07Z        0
## 2148   2007-01 21:20:51Z        0
## 2149   2007-01 03:09:05Z        0
## 2150   2007-01 15:35:23Z        0
## 2151   2007-01 19:50:41Z        0
## 2152   2007-01 17:49:16Z        0
## 2153   2007-01 23:21:57Z        0
## 2154   2007-01 23:59:29Z        0
## 2155   2007-01 01:02:25Z        0
## 2156   2007-01 18:40:21Z        0
## 2157   2007-01 17:03:40Z        0
## 2158   2007-01 00:54:20Z        0
## 2159   2007-01 01:27:06Z        0
## 2160   2007-01 02:30:47Z        0
## 2161   2007-01 03:51:13Z        0
## 2162   2007-01 20:34:35Z        0
## 2163   2007-01 20:41:10Z        0
## 2164   2007-01 18:19:06Z        0
## 2165   2007-01 18:21:19Z        0
## 2166   2007-01 18:30:00Z        0
## 2167   2007-01 14:38:18Z        0
## 2168   2007-01 14:42:37Z        0
## 2169   2007-01 07:58:09Z        0
## 2170   2007-01 13:39:26Z        0
## 2171   2007-01 16:11:02Z        0
## 2172   2007-01 22:41:10Z        0
## 2173   2007-01 22:42:42Z        0
## 2174   2007-01 22:43:25Z        0
## 2175   2007-01 22:46:41Z        0
## 2176   2007-01 22:50:34Z        0
## 2177   2007-01 23:11:54Z        0
## 2178   2007-01 23:13:03Z        0
## 2179   2007-01 23:16:08Z        0
## 2180   2007-01 23:20:37Z        0
## 2181   2007-01 23:22:58Z        0
## 2182   2007-02 01:12:52Z        0
## 2183   2007-02 01:13:14Z        0
## 2184   2007-02 23:02:42Z        0
## 2185   2007-02 23:37:23Z        0
## 2186   2007-02 02:14:44Z        0
## 2187   2007-02 14:15:45Z        0
## 2188   2007-02 14:21:22Z        0
## 2189   2007-02 22:28:55Z        0
## 2190   2007-02 22:29:10Z        0
## 2191   2007-02 22:29:59Z        0
## 2192   2007-02 22:30:49Z        0
## 2193   2007-02 22:31:57Z        0
## 2194   2007-02 22:32:14Z        0
## 2195   2007-02 05:12:40Z        0
## 2196   2007-02 05:24:26Z        0
## 2197   2007-02 05:47:26Z        0
## 2198   2007-02 18:37:59Z        0
## 2199   2007-02 18:46:44Z        0
## 2200   2007-02 00:34:51Z        0
## 2201   2007-02 00:36:15Z        0
## 2202   2007-02 01:54:52Z        0
## 2203   2007-02 18:13:49Z        0
## 2204   2007-02 17:02:57Z        0
## 2205   2007-02 17:05:28Z        0
## 2206   2007-02 17:06:11Z        0
## 2207   2007-02 17:07:55Z        0
## 2208   2007-02 17:16:21Z        0
## 2209   2007-02 20:50:18Z        0
## 2210   2007-02 20:51:45Z        0
## 2211   2007-02 20:57:07Z        0
## 2212   2007-02 21:06:02Z        0
## 2213   2007-02 00:38:00Z        0
## 2214   2007-02 00:42:30Z        0
## 2215   2007-02 04:35:10Z        0
## 2216   2007-02 04:36:45Z        0
## 2217   2007-02 15:35:40Z        0
## 2218   2007-02 17:09:22Z        0
## 2219   2007-02 00:51:50Z        0
## 2220   2007-02 14:24:37Z        0
## 2221   2007-02 22:53:24Z        0
## 2222   2007-02 22:53:36Z        0
## 2223   2007-02 17:03:37Z        0
## 2224   2007-02 17:04:40Z        0
## 2225   2007-02 17:29:04Z        0
## 2226   2007-02 10:08:58Z        0
## 2227   2007-02 12:09:42Z        0
## 2228   2007-02 19:55:40Z        0
## 2229   2007-02 23:06:39Z        0
## 2230   2007-02 23:07:11Z        0
## 2231   2007-02 00:20:02Z        0
## 2232   2007-02 00:27:23Z        0
## 2233   2007-02 00:29:57Z        0
## 2234   2007-02 00:31:22Z        0
## 2235   2007-02 00:25:26Z        0
## 2236   2007-02 00:33:53Z        0
## 2237   2007-02 14:45:10Z        0
## 2238   2007-02 16:29:31Z        0
## 2239   2007-02 01:53:03Z        0
## 2240   2007-02 01:58:08Z        0
## 2241   2007-02 02:08:42Z        0
## 2242   2007-02 04:48:32Z        0
## 2243   2007-03 20:00:12Z        0
## 2244   2007-03 20:46:50Z        0
## 2245   2007-03 22:47:33Z        0
## 2246   2007-03 02:24:44Z        0
## 2247   2007-03 02:25:56Z        0
## 2248   2007-03 14:58:15Z        0
## 2249   2007-03 15:19:42Z        0
## 2250   2007-03 16:20:15Z        0
## 2251   2007-03 23:20:45Z        0
## 2252   2007-03 23:22:57Z        0
## 2253   2007-03 23:24:01Z        0
## 2254   2007-03 23:56:29Z        0
## 2255   2007-03 00:03:25Z        0
## 2256   2007-03 00:41:50Z        0
## 2257   2007-03 00:43:19Z        0
## 2258   2007-03 00:44:30Z        0
## 2259   2007-03 00:45:22Z        0
## 2260   2007-03 00:45:50Z        0
## 2261   2007-03 00:46:09Z        0
## 2262   2007-03 08:09:47Z        0
## 2263   2007-03 10:15:07Z        0
## 2264   2007-03 10:10:22Z        0
## 2265   2007-03 19:18:19Z        0
## 2266   2007-03 19:18:41Z        0
## 2267   2007-03 19:28:22Z        0
## 2268   2007-03 20:29:34Z        0
## 2269   2007-03 21:40:09Z        0
## 2270   2007-03 00:28:11Z        0
## 2271   2007-03 00:34:47Z        0
## 2272   2007-03 02:03:09Z        0
## 2273   2007-03 04:40:18Z        0
## 2274   2007-03 09:56:11Z        0
## 2275   2007-03 10:44:43Z        0
## 2276   2007-03 12:27:17Z        0
## 2277   2007-03 14:18:11Z        0
## 2278   2007-03 14:18:34Z        0
## 2279   2007-03 14:20:38Z        0
## 2280   2007-03 12:12:29Z        0
## 2281   2007-03 04:39:51Z        0
## 2282   2007-03 16:58:02Z        0
## 2283   2007-03 17:29:41Z        0
## 2284   2007-03 18:59:05Z        0
## 2285   2007-03 20:24:29Z        0
## 2286   2007-03 20:24:52Z        0
## 2287   2007-03 20:57:16Z        0
## 2288   2007-03 02:43:04Z        0
## 2289   2007-03 16:44:42Z        0
## 2290   2007-03 16:28:58Z        0
## 2291   2007-03 16:29:27Z        0
## 2292   2007-03 16:32:23Z        0
## 2293   2007-03 17:24:23Z        0
## 2294   2007-03 20:43:26Z        0
## 2295   2007-03 00:09:36Z        0
## 2296   2007-03 14:14:41Z        0
## 2297   2007-03 14:15:13Z        0
## 2298   2007-03 23:15:51Z        0
## 2299   2007-03 12:12:43Z        0
## 2300   2007-03 12:21:32Z        0
## 2301   2007-03 12:33:03Z        0
## 2302   2007-03 12:39:26Z        0
## 2303   2007-03 22:46:33Z        0
## 2304   2007-03 22:52:21Z        0
## 2305   2007-03 17:35:42Z        0
## 2306   2007-03 17:36:01Z        0
## 2307   2007-03 20:46:24Z        0
## 2308   2007-03 21:09:47Z        0
## 2309   2007-03 00:25:22Z        0
## 2310   2007-03 14:11:01Z        0
## 2311   2007-03 14:12:31Z        0
## 2312   2007-03 19:25:05Z        0
## 2313   2007-03 20:11:14Z        0
## 2314   2007-03 20:27:17Z        0
## 2315   2007-03 20:28:43Z        0
## 2316   2007-03 22:58:24Z        0
## 2317   2007-03 22:59:34Z        0
## 2318   2007-03 23:01:44Z        0
## 2319   2007-03 23:02:28Z        0
## 2320   2007-03 23:33:46Z        0
## 2321   2007-03 23:34:22Z        0
## 2322   2007-03 01:25:32Z        0
## 2323   2007-03 01:27:08Z        0
## 2324   2007-03 01:29:54Z        0
## 2325   2007-03 03:04:23Z        0
## 2326   2007-03 04:53:01Z        0
## 2327   2007-03 20:25:59Z        0
## 2328   2007-03 00:05:08Z        0
## 2329   2007-03 00:06:55Z        0
## 2330   2007-03 17:10:34Z        0
## 2331   2007-03 17:10:45Z        0
## 2332   2007-03 23:05:59Z        0
## 2333   2007-04 00:02:13Z        0
## 2334   2007-04 01:49:37Z        0
## 2335   2007-04 01:51:11Z        0
## 2336   2007-04 15:29:59Z        0
## 2337   2007-04 20:58:14Z        0
## 2338   2007-04 05:45:19Z        0
## 2339   2007-04 00:06:24Z        0
## 2340   2007-04 00:09:29Z        0
## 2341   2007-04 00:10:57Z        0
## 2342   2007-04 02:26:17Z        0
## 2343   2007-04 03:02:11Z        0
## 2344   2007-04 03:02:26Z        0
## 2345   2007-04 04:53:15Z        0
## 2346   2007-04 07:08:21Z        0
## 2347   2007-04 13:55:01Z        0
## 2348   2007-04 13:55:37Z        0
## 2349   2007-04 13:55:55Z        0
## 2350   2007-04 21:04:50Z        0
## 2351   2007-04 05:59:07Z        0
## 2352   2007-04 06:00:16Z        0
## 2353   2007-04 06:01:25Z        0
## 2354   2007-04 06:03:44Z        0
## 2355   2007-04 06:09:21Z        0
## 2356   2007-04 08:17:40Z        0
## 2357   2007-04 08:50:35Z        0
## 2358   2007-04 07:31:29Z        0
## 2359   2007-04 07:52:22Z        0
## 2360   2007-04 04:40:24Z        0
## 2361   2007-04 19:29:50Z        0
## 2362   2007-04 15:01:05Z        0
## 2363   2007-04 15:17:49Z        0
## 2364   2007-04 15:18:29Z        0
## 2365   2007-04 15:19:18Z        0
## 2366   2007-04 23:03:30Z        0
## 2367   2007-04 23:04:03Z        0
## 2368   2007-04 23:04:27Z        0
## 2369   2007-04 17:25:07Z        0
## 2370   2007-04 17:31:20Z        0
## 2371   2007-04 19:41:06Z        0
## 2372   2007-04 01:09:06Z        0
## 2373   2007-04 01:27:44Z        0
## 2374   2007-04 01:29:03Z        0
## 2375   2007-04 02:03:50Z        0
## 2376   2007-04 02:37:16Z        0
## 2377   2007-04 03:35:36Z        0
## 2378   2007-04 07:26:49Z        0
## 2379   2007-04 19:03:08Z        0
## 2380   2007-04 19:03:45Z        0
## 2381   2007-04 19:11:12Z        0
## 2382   2007-04 02:35:37Z        0
## 2383   2007-04 10:48:25Z        0
## 2384   2007-04 10:50:03Z        0
## 2385   2007-04 13:00:34Z        0
## 2386   2007-04 16:28:59Z        0
## 2387   2007-04 16:29:35Z        0
## 2388   2007-04 23:27:06Z        0
## 2389   2007-04 23:32:03Z        0
## 2390   2007-04 01:05:34Z        0
## 2391   2007-04 13:24:49Z        0
## 2392   2007-04 13:38:54Z        0
## 2393   2007-04 14:10:08Z        0
## 2394   2007-04 15:31:26Z        0
## 2395   2007-04 18:44:17Z        0
## 2396   2007-04 19:02:23Z        0
## 2397   2007-04 19:02:39Z        0
## 2398   2007-04 20:05:28Z        0
## 2399   2007-04 21:45:47Z        0
## 2400   2007-04 21:45:59Z        0
## 2401   2007-04 22:41:30Z        0
## 2402   2007-04 23:14:58Z        0
## 2403   2007-04 23:54:54Z        0
## 2404   2007-04 00:49:57Z        0
## 2405   2007-04 02:39:38Z        0
## 2406   2007-04 05:24:54Z        0
## 2407   2007-04 05:25:27Z        0
## 2408   2007-04 06:12:52Z        0
## 2409   2007-04 11:39:09Z        0
## 2410   2007-04 11:50:22Z        0
## 2411   2007-04 15:09:38Z        0
## 2412   2007-04 15:50:14Z        0
## 2413   2007-04 15:51:12Z        0
## 2414   2007-04 15:52:14Z        0
## 2415   2007-04 15:54:16Z        0
## 2416   2007-04 15:54:43Z        0
## 2417   2007-04 15:54:51Z        0
## 2418   2007-04 15:56:00Z        0
## 2419   2007-04 15:57:07Z        0
## 2420   2007-04 15:57:26Z        0
## 2421   2007-04 16:12:51Z        0
## 2422   2007-04 18:56:02Z        0
## 2423   2007-04 19:30:06Z        0
## 2424   2007-04 19:31:17Z        0
## 2425   2007-04 19:34:55Z        0
## 2426   2007-04 20:03:29Z        0
## 2427   2007-04 21:55:46Z        0
## 2428   2007-04 21:59:53Z        0
## 2429   2007-04 22:55:11Z        0
## 2430   2007-04 00:11:46Z        0
## 2431   2007-04 00:14:16Z        0
## 2432   2007-04 03:04:32Z        0
## 2433   2007-04 03:30:06Z        0
## 2434   2007-04 12:22:26Z        0
## 2435   2007-04 12:22:56Z        0
## 2436   2007-04 15:57:37Z        0
## 2437   2007-04 16:32:47Z        0
## 2438   2007-04 16:42:43Z        0
## 2439   2007-04 17:21:18Z        0
## 2440   2007-04 17:21:25Z        0
## 2441   2007-04 18:01:46Z        0
## 2442   2007-04 18:02:29Z        0
## 2443   2007-04 18:02:39Z        0
## 2444   2007-04 20:52:15Z        0
## 2445   2007-04 01:31:21Z        0
## 2446   2007-04 01:32:09Z        0
## 2447   2007-04 06:55:19Z        0
## 2448   2007-04 08:32:22Z        0
## 2449   2007-04 08:33:54Z        0
## 2450   2007-04 10:28:08Z        0
## 2451   2007-04 10:33:02Z        0
## 2452   2007-04 11:53:54Z        0
## 2453   2007-04 12:25:41Z        0
## 2454   2007-04 19:26:10Z        0
## 2455   2007-04 19:26:43Z        0
## 2456   2007-04 13:55:23Z        0
## 2457   2007-04 13:57:32Z        0
## 2458   2007-04 06:18:25Z        0
## 2459   2007-04 06:19:08Z        0
## 2460   2007-04 12:52:17Z        0
## 2461   2007-04 13:06:57Z        0
## 2462   2007-04 20:58:00Z        0
## 2463   2007-04 21:20:53Z        0
## 2464   2007-04 03:12:08Z        0
## 2465   2007-04 03:19:20Z        0
## 2466   2007-04 03:20:50Z        0
## 2467   2007-04 03:22:09Z        0
## 2468   2007-04 17:13:23Z        0
## 2469   2007-04 17:14:20Z        0
## 2470   2007-04 21:28:36Z        0
## 2471   2007-04 07:12:44Z        0
## 2472   2007-04 15:38:00Z        0
## 2473   2007-04 17:18:40Z        0
## 2474   2007-04 18:56:26Z        0
## 2475   2007-04 01:49:34Z        0
## 2476   2007-04 00:50:29Z        0
## 2477   2007-04 00:50:35Z        0
## 2478   2007-04 01:18:56Z        0
## 2479   2007-04 17:37:20Z        0
## 2480   2007-04 17:38:18Z        0
## 2481   2007-04 18:36:49Z        0
## 2482   2007-04 18:37:54Z        0
## 2483   2007-04 18:39:05Z        0
## 2484   2007-04 18:39:33Z        0
## 2485   2007-04 18:40:58Z        0
## 2486   2007-04 18:41:41Z        0
## 2487   2007-04 18:42:30Z        0
## 2488   2007-04 18:42:51Z        0
## 2489   2007-04 18:43:15Z        0
## 2490   2007-04 18:43:45Z        0
## 2491   2007-04 18:43:52Z        0
## 2492   2007-04 18:44:28Z        0
## 2493   2007-04 18:45:51Z        0
## 2494   2007-04 18:46:20Z        0
## 2495   2007-05 08:43:45Z        0
## 2496   2007-05 12:01:06Z        0
## 2497   2007-05 12:03:13Z        0
## 2498   2007-05 15:01:37Z        0
## 2499   2007-05 18:48:59Z        0
## 2500   2007-05 22:21:59Z        0
## 2501   2007-05 11:50:47Z        0
## 2502   2007-05 12:50:21Z        0
## 2503   2007-05 20:29:04Z        0
## 2504   2007-05 01:40:07Z        0
## 2505   2007-05 01:41:16Z        0
## 2506   2007-05 22:38:10Z        0
## 2507   2007-05 22:38:14Z        0
## 2508   2007-05 15:39:19Z        0
## 2509   2007-05 06:06:29Z        0
## 2510   2007-05 06:07:34Z        0
## 2511   2007-05 06:08:10Z        0
## 2512   2007-05 06:18:49Z        0
## 2513   2007-05 19:32:16Z        0
## 2514   2007-05 21:50:12Z        0
## 2515   2007-05 00:43:41Z        0
## 2516   2007-05 00:43:51Z        0
## 2517   2007-05 14:04:00Z        0
## 2518   2007-05 06:06:02Z        0
## 2519   2007-05 06:17:39Z        0
## 2520   2007-05 10:07:26Z        0
## 2521   2007-05 02:46:09Z        0
## 2522   2007-05 16:13:29Z        0
## 2523   2007-05 00:20:44Z        0
## 2524   2007-05 00:25:52Z        0
## 2525   2007-05 18:10:11Z        0
## 2526   2007-05 18:22:28Z        0
## 2527   2007-05 22:48:02Z        0
## 2528   2007-05 22:50:07Z        0
## 2529   2007-05 00:44:02Z        0
## 2530   2007-05 00:51:40Z        0
## 2531   2007-05 01:57:55Z        0
## 2532   2007-05 08:35:30Z        0
## 2533   2007-05 08:36:22Z        0
## 2534   2007-05 13:52:36Z        0
## 2535   2007-05 14:17:51Z        0
## 2536   2007-05 00:02:33Z        0
## 2537   2007-05 00:24:55Z        0
## 2538   2007-05 20:15:00Z        0
## 2539   2007-05 00:00:58Z        0
## 2540   2007-05 00:01:31Z        0
## 2541   2007-05 14:29:48Z        0
## 2542   2007-05 14:30:29Z        0
## 2543   2007-05 14:48:24Z        0
## 2544   2007-05 17:33:48Z        0
## 2545   2007-05 17:38:25Z        0
## 2546   2007-05 15:30:00Z        0
## 2547   2007-05 16:25:26Z        0
## 2548   2007-05 19:44:37Z        0
## 2549   2007-05 19:47:03Z        0
## 2550   2007-05 21:10:50Z        0
## 2551   2007-05 21:12:52Z        0
## 2552   2007-05 21:13:21Z        0
## 2553   2007-05 18:36:03Z        0
## 2554   2007-05 18:36:24Z        0
## 2555   2007-06 02:59:11Z        0
## 2556   2007-06 17:21:10Z        0
## 2557   2007-06 04:51:30Z        0
## 2558   2007-06 05:29:38Z        0
## 2559   2007-06 19:30:08Z        0
## 2560   2007-06 22:07:09Z        0
## 2561   2007-06 22:07:59Z        0
## 2562   2007-06 09:33:07Z        0
## 2563   2007-06 09:38:31Z        0
## 2564   2007-06 09:40:13Z        0
## 2565   2007-06 09:44:16Z        0
## 2566   2007-06 16:29:13Z        0
## 2567   2007-06 20:56:37Z        0
## 2568   2007-06 20:59:26Z        0
## 2569   2007-06 02:57:49Z        0
## 2570   2007-06 03:13:24Z        0
## 2571   2007-06 16:06:31Z        0
## 2572   2007-06 23:59:20Z        0
## 2573   2007-06 00:02:59Z        0
## 2574   2007-06 16:01:36Z        0
## 2575   2007-06 16:08:27Z        0
## 2576   2007-06 23:51:46Z        0
## 2577   2007-06 02:45:20Z        0
## 2578   2007-06 15:57:06Z        0
## 2579   2007-06 04:05:37Z        0
## 2580   2007-06 04:06:00Z        0
## 2581   2007-06 16:58:20Z        0
## 2582   2007-06 17:02:47Z        0
## 2583   2007-06 19:10:37Z        0
## 2584   2007-06 19:13:46Z        0
## 2585   2007-06 19:16:21Z        0
## 2586   2007-06 19:17:10Z        0
## 2587   2007-06 21:53:46Z        0
## 2588   2007-06 06:14:09Z        0
## 2589   2007-06 06:15:17Z        0
## 2590   2007-06 15:46:52Z        0
## 2591   2007-06 00:43:23Z        0
## 2592   2007-06 18:56:39Z        0
## 2593   2007-06 18:50:09Z        0
## 2594   2007-06 18:50:21Z        0
## 2595   2007-06 23:52:51Z        0
## 2596   2007-06 16:23:57Z        0
## 2597   2007-06 17:35:37Z        0
## 2598   2007-06 11:52:00Z        0
## 2599   2007-06 16:03:11Z        0
## 2600   2007-06 02:59:47Z        0
## 2601   2007-06 17:13:41Z        0
## 2602   2007-07 22:58:13Z        0
## 2603   2007-07 18:29:45Z        0
## 2604   2007-07 21:41:23Z        0
## 2605   2007-07 22:42:14Z        0
## 2606   2007-07 06:45:31Z        0
## 2607   2007-07 08:09:41Z        0
## 2608   2007-07 02:13:05Z        0
## 2609   2007-07 16:43:36Z        0
## 2610   2007-07 00:09:45Z        0
## 2611   2007-07 00:15:19Z        0
## 2612   2007-07 00:22:43Z        0
## 2613   2007-07 00:23:59Z        0
## 2614   2007-07 00:35:58Z        0
## 2615   2007-07 16:48:00Z        0
## 2616   2007-07 16:51:03Z        0
## 2617   2007-07 19:11:03Z        0
## 2618   2007-07 21:33:27Z        0
## 2619   2007-07 22:03:24Z        0
## 2620   2007-07 22:33:46Z        0
## 2621   2007-07 22:34:00Z        0
## 2622   2007-07 02:45:36Z        0
## 2623   2007-07 02:46:49Z        0
## 2624   2007-07 02:47:21Z        0
## 2625   2007-07 15:19:37Z        0
## 2626   2007-07 16:45:24Z        0
## 2627   2007-07 16:46:31Z        0
## 2628   2007-07 16:50:02Z        0
## 2629   2007-07 16:53:35Z        0
## 2630   2007-07 21:05:44Z        0
## 2631   2007-07 22:22:16Z        0
## 2632   2007-07 03:37:07Z        0
## 2633   2007-07 03:37:29Z        0
## 2634   2007-07 23:05:18Z        0
## 2635   2007-07 23:05:58Z        0
## 2636   2007-07 16:57:42Z        0
## 2637   2007-07 21:18:45Z        0
## 2638   2007-07 21:19:36Z        0
## 2639   2007-07 21:32:32Z        0
## 2640   2007-07 02:59:11Z        0
## 2641   2007-08 13:25:15Z        0
## 2642   2007-08 13:29:51Z        0
## 2643   2007-08 06:35:51Z        0
## 2644   2007-08 20:49:02Z        0
## 2645   2007-08 18:52:31Z        0
## 2646   2007-08 09:02:59Z        0
## 2647   2007-08 17:36:58Z        0
## 2648   2007-08 16:56:21Z        0
## 2649   2007-08 17:03:22Z        0
## 2650   2007-08 05:48:03Z        0
## 2651   2007-08 06:36:22Z        0
## 2652   2007-08 03:25:00Z        0
## 2653   2007-08 13:36:08Z        0
## 2654   2007-08 00:16:04Z        0
## 2655   2007-08 04:07:15Z        0
## 2656   2007-08 22:34:53Z        0
## 2657   2007-08 22:35:01Z        0
## 2658   2007-08 01:50:02Z        0
## 2659   2007-08 01:53:09Z        0
## 2660   2007-08 04:17:13Z        0
## 2661   2007-08 04:20:17Z        0
## 2662   2007-08 03:17:48Z        0
## 2663   2007-08 03:20:59Z        0
## 2664   2007-08 13:47:29Z        0
## 2665   2007-08 13:48:08Z        0
## 2666   2007-08 13:48:57Z        0
## 2667   2007-09 04:06:13Z        0
## 2668   2007-09 04:16:42Z        0
## 2669   2007-09 13:58:29Z        0
## 2670   2007-09 13:59:21Z        0
## 2671   2007-09 23:39:18Z        0
## 2672   2007-09 13:51:17Z        0
## 2673   2007-09 13:57:20Z        0
## 2674   2007-09 14:26:17Z        0
## 2675   2007-09 02:56:06Z        0
## 2676   2007-09 02:56:49Z        0
## 2677   2007-09 00:36:20Z        0
## 2678   2007-09 00:37:42Z        0
## 2679   2007-09 00:47:56Z        0
## 2680   2007-09 00:51:27Z        0
## 2681   2007-09 00:52:41Z        0
## 2682   2007-09 23:02:49Z        0
## 2683   2007-09 13:46:45Z        0
## 2684   2007-09 19:27:54Z        0
## 2685   2007-09 00:28:05Z        0
## 2686   2007-09 16:59:40Z        0
## 2687   2007-09 17:01:20Z        0
## 2688   2007-09 01:53:42Z        0
## 2689   2007-09 01:54:18Z        0
## 2690   2007-09 01:54:31Z        0
## 2691   2007-09 01:55:03Z        0
## 2692   2007-09 01:55:08Z        0
## 2693   2007-09 01:55:55Z        0
## 2694   2007-09 01:56:51Z        0
## 2695   2007-09 16:17:47Z        0
## 2696   2007-09 17:40:32Z        0
## 2697   2007-09 02:35:05Z        0
## 2698   2007-09 02:36:28Z        0
## 2699   2007-10 11:07:59Z        0
## 2700   2007-10 13:54:53Z        0
## 2701   2007-10 15:12:12Z        0
## 2702   2007-10 19:12:18Z        0
## 2703   2007-10 19:26:59Z        0
## 2704   2007-10 16:30:20Z        0
## 2705   2007-10 16:30:28Z        0
## 2706   2007-10 00:53:33Z        0
## 2707   2007-10 03:22:35Z        0
## 2708   2007-10 04:18:56Z        0
## 2709   2007-10 04:20:30Z        0
## 2710   2007-10 19:27:49Z        0
## 2711   2007-10 01:26:03Z        0
## 2712   2007-10 11:30:40Z        0
## 2713   2007-10 15:32:47Z        0
## 2714   2007-10 15:33:27Z        0
## 2715   2007-10 15:52:35Z        0
## 2716   2007-10 21:34:11Z        0
## 2717   2007-10 21:34:37Z        0
## 2718   2007-10 21:35:11Z        0
## 2719   2007-10 21:37:01Z        0
## 2720   2007-10 05:11:55Z        0
## 2721   2007-10 05:12:45Z        0
## 2722   2007-10 07:11:18Z        0
## 2723   2007-10 07:11:57Z        0
## 2724   2007-10 11:43:35Z        0
## 2725   2007-10 14:25:42Z        0
## 2726   2007-10 14:29:35Z        0
## 2727   2007-10 23:01:53Z        0
## 2728   2007-10 01:14:21Z        0
## 2729   2007-10 18:13:38Z        0
## 2730   2007-10 01:44:33Z        0
## 2731   2007-10 05:49:07Z        0
## 2732   2007-10 23:31:22Z        0
## 2733   2007-10 23:32:36Z        0
## 2734   2007-10 23:40:15Z        0
## 2735   2007-10 03:28:13Z        0
## 2736   2007-10 09:53:18Z        0
## 2737   2007-10 19:29:19Z        0
## 2738   2007-10 19:42:41Z        0
## 2739   2007-10 22:01:31Z        0
## 2740   2007-10 05:58:42Z        0
## 2741   2007-10 23:01:21Z        0
## 2742   2007-10 02:02:17Z        0
## 2743   2007-10 05:11:56Z        0
## 2744   2007-10 04:18:07Z        0
## 2745   2007-10 20:09:33Z        0
## 2746   2007-10 20:13:32Z        0
## 2747   2007-10 23:44:04Z        0
## 2748   2007-10 23:52:30Z        0
## 2749   2007-10 00:21:22Z        0
## 2750   2007-10 00:23:35Z        0
## 2751   2007-10 00:40:04Z        0
## 2752   2007-10 00:42:55Z        0
## 2753   2007-10 00:57:53Z        0
## 2754   2007-11 01:43:52Z        0
## 2755   2007-11 02:03:06Z        0
## 2756   2007-11 03:16:59Z        0
## 2757   2007-11 03:40:40Z        0
## 2758   2007-11 04:05:30Z        0
## 2759   2007-11 04:06:53Z        0
## 2760   2007-11 14:47:29Z        0
## 2761   2007-11 05:35:32Z        0
## 2762   2007-11 12:41:23Z        0
## 2763   2007-11 12:42:53Z        0
## 2764   2007-11 00:23:04Z        0
## 2765   2007-11 00:23:41Z        0
## 2766   2007-11 13:47:33Z        0
## 2767   2007-11 09:20:47Z        0
## 2768   2007-11 19:38:44Z        0
## 2769   2007-11 04:05:19Z        0
## 2770   2007-11 21:47:48Z        0
## 2771   2007-11 21:49:18Z        0
## 2772   2007-11 15:06:19Z        0
## 2773   2007-11 15:06:36Z        0
## 2774   2007-11 20:01:30Z        0
## 2775   2007-11 20:02:10Z        0
## 2776   2007-11 09:58:06Z        0
## 2777   2007-11 17:33:49Z        0
## 2778   2007-11 19:22:45Z        0
## 2779   2007-11 19:24:50Z        0
## 2780   2007-11 19:25:15Z        0
## 2781   2007-11 16:55:58Z        0
## 2782   2007-11 19:17:47Z        0
## 2783   2007-11 20:42:58Z        0
## 2784   2007-11 05:11:47Z        0
## 2785   2007-11 12:27:04Z        0
## 2786   2007-11 12:28:08Z        0
## 2787   2007-11 02:50:17Z        0
## 2788   2007-11 02:52:03Z        0
## 2789   2007-11 22:29:47Z        0
## 2790   2007-11 22:38:02Z        0
## 2791   2007-11 05:58:38Z        0
## 2792   2007-11 16:32:13Z        0
## 2793   2007-11 16:36:46Z        0
## 2794   2007-11 23:15:56Z        0
## 2795   2007-11 23:18:38Z        0
## 2796   2007-11 00:01:46Z        0
## 2797   2007-11 00:59:31Z        0
## 2798   2007-11 01:03:18Z        0
## 2799   2007-11 01:05:32Z        0
## 2800   2007-11 01:07:05Z        0
## 2801   2007-11 01:08:31Z        0
## 2802   2007-11 03:27:49Z        0
## 2803   2007-11 04:05:45Z        0
## 2804   2007-11 17:11:40Z        0
## 2805   2007-11 17:11:47Z        0
## 2806   2007-12 18:43:31Z        0
## 2807   2007-12 19:49:52Z        0
## 2808   2007-12 23:06:42Z        0
## 2809   2007-12 23:18:36Z        0
## 2810   2007-12 03:34:14Z        0
## 2811   2007-12 00:25:00Z        0
## 2812   2007-12 20:48:12Z        0
## 2813   2007-12 21:15:15Z        0
## 2814   2007-12 03:13:47Z        0
## 2815   2007-12 03:14:41Z        0
## 2816   2007-12 03:15:42Z        0
## 2817   2007-12 04:08:03Z        0
## 2818   2007-12 15:02:47Z        0
## 2819   2007-12 16:34:52Z        0
## 2820   2007-12 20:45:35Z        0
## 2821   2007-12 01:27:54Z        0
## 2822   2007-12 18:55:35Z        0
## 2823   2007-12 19:00:24Z        0
## 2824   2007-12 22:33:45Z        0
## 2825   2007-12 22:34:44Z        0
## 2826   2007-12 16:59:33Z        0
## 2827   2007-12 17:09:38Z        0
## 2828   2007-12 16:36:59Z        0
## 2829   2007-12 16:39:41Z        0
## 2830   2007-12 02:09:21Z        0
## 2831   2007-12 02:54:39Z        0
## 2832   2007-12 13:43:09Z        0
## 2833   2007-12 21:00:22Z        0
## 2834   2007-12 02:55:50Z        0
## 2835   2007-12 02:59:09Z        0
## 2836   2007-12 03:00:14Z        0
## 2837   2007-12 03:00:38Z        0
## 2838   2007-12 03:01:10Z        0
## 2839   2007-12 03:01:17Z        0
## 2840   2007-12 03:01:32Z        0
## 2841   2007-12 03:02:51Z        0
## 2842   2007-12 03:04:02Z        0
## 2843   2007-12 03:23:05Z        0
## 2844   2007-12 03:24:40Z        0
## 2845   2007-12 08:40:52Z        0
## 2846   2007-12 12:14:36Z        0
## 2847   2007-12 20:29:28Z        0
## 2848   2007-12 11:15:59Z        0
## 2849   2007-12 11:16:33Z        0
## 2850   2007-12 11:17:21Z        0
## 2851   2007-12 00:00:46Z        0
## 2852   2007-12 00:02:47Z        0
## 2853   2007-12 00:10:33Z        0
## 2854   2007-12 00:11:39Z        0
## 2855   2007-12 12:27:56Z        0
## 2856   2007-12 14:00:31Z        0
## 2857   2007-12 23:28:43Z        0
## 2858   2007-12 23:29:21Z        0
## 2859   2008-01 03:24:29Z        0
## 2860   2008-01 12:03:37Z        0
## 2861   2008-01 19:14:15Z        0
## 2862   2008-01 09:57:15Z        0
## 2863   2008-01 01:53:18Z        0
## 2864   2008-01 02:09:13Z        0
## 2865   2008-01 17:01:40Z        0
## 2866   2008-01 17:06:50Z        0
## 2867   2008-01 22:41:31Z        0
## 2868   2002-10 13:12:12Z        0
## 2869   2002-10 19:11:41Z        0
## 2870   2002-10 11:44:02Z        0
## 2871   2004-06 17:12:05Z        0
## 2872   2004-08 06:46:30Z        0
## 2873   2005-03 03:55:22Z        0
## 2874   2005-03 04:42:28Z        0
## 2875   2005-07 21:19:52Z        0
## 2876   2005-09 23:36:01Z        0
## 2877   2006-05 14:09:50Z        0
## 2878   2006-09 14:49:41Z        0
## 2879   2007-02 21:50:01Z        0
## 2880   2002-10 13:19:15Z        0
## 2881   2002-10 19:20:18Z        0
## 2882   2002-10 11:49:16Z        0
## 2883   2004-06 17:15:47Z        0
## 2884   2004-08 06:48:21Z        0
## 2885   2004-12 17:30:45Z        0
## 2886   2005-03 04:44:20Z        0
## 2887   2005-06 01:10:50Z        0
## 2888   2005-07 22:09:13Z        0
## 2889   2005-09 23:44:12Z        0
## 2890   2006-01 11:57:41Z        0
## 2891   2006-05 14:11:12Z        0
## 2892   2006-09 14:51:11Z        0
## 2893   2007-02 21:56:08Z        0
## 2894   2002-10 13:43:59Z        0
## 2895   2002-10 19:43:32Z        0
## 2896   2002-10 15:28:46Z        0
## 2897   2004-06 11:39:02Z        0
## 2898   2004-08 06:51:47Z        0
## 2899   2005-02 19:07:51Z        0
## 2900   2005-03 04:50:55Z        0
## 2901   2005-06 01:07:26Z        0
## 2902   2005-09 00:11:43Z        0
## 2903   2005-12 11:46:07Z        0
## 2904   2006-09 14:57:34Z        0
## 2905   2007-04 19:28:00Z        0
## 2906   2002-10 13:49:36Z        0
## 2907   2002-10 19:48:23Z        0
## 2908   2002-10 16:03:41Z        0
## 2909   2004-06 11:42:30Z        0
## 2910   2004-08 06:55:26Z        0
## 2911   2004-10 17:43:24Z        0
## 2912   2005-03 23:13:52Z        0
## 2913   2005-03 04:52:37Z        0
## 2914   2005-09 04:11:30Z        0
## 2915   2005-09 04:17:41Z        0
## 2916   2005-09 00:33:56Z        0
## 2917   2005-11 17:41:14Z        0
## 2918   2005-12 11:00:13Z        0
## 2919   2005-12 18:03:02Z        0
## 2920   2005-12 19:36:09Z        0
## 2921   2005-12 19:48:01Z        0
## 2922   2005-12 11:19:14Z        0
## 2923   2006-05 14:14:24Z        0
## 2924   2006-05 03:24:20Z        0
## 2925   2006-09 14:38:25Z        0
## 2926   2006-12 21:35:46Z        0
## 2927   2007-04 04:38:32Z        0
## 2928   2007-04 04:42:48Z        0
## 2929   2007-04 04:43:21Z        0
## 2930   2007-04 19:27:40Z        0
## 2931   2007-08 07:51:33Z        0
## 2932   2007-11 06:38:12Z        0
## 2933   2007-11 09:19:14Z        0
## 2934   2002-10 18:46:50Z        7
## 2935   2002-10 20:05:03Z        7
## 2936   2002-10 15:15:29Z        7
## 2937   2003-12 05:15:43Z        7
## 2938   2004-07 09:21:33Z        7
## 2939   2004-08 01:42:48Z        7
## 2940   2005-03 05:04:59Z        7
## 2941   2005-03 06:23:47Z        7
## 2942   2005-05 00:57:14Z        7
## 2943   2005-10 20:34:35Z        7
## 2944   2005-11 23:16:02Z        7
## 2945   2006-05 14:25:52Z        7
## 2946   2006-09 08:14:39Z        7
## 2947   2006-10 23:21:54Z        7
## 2948   2006-10 23:24:07Z        7
## 2949   2006-11 20:00:07Z        7
## 2950   2006-11 05:29:28Z        7
## 2951   2006-11 00:16:58Z        7
## 2952   2006-11 13:09:41Z        7
## 2953   2006-12 06:00:37Z        7
## 2954   2006-12 08:17:54Z        7
## 2955   2006-12 02:40:30Z        7
## 2956   2006-12 03:24:43Z        7
## 2957   2006-12 11:16:12Z        7
## 2958   2007-06 10:23:26Z        7
## 2959   2007-08 08:44:54Z        7
## 2960   2007-08 09:08:59Z        7
## 2961   2007-08 09:10:29Z        7
## 2962   2007-08 09:00:30Z        7
## 2963   2007-10 03:48:17Z        7
## 2964   2002-10 02:46:43Z        9
## 2965   2002-11 05:43:10Z        9
## 2966   2004-02 20:41:33Z        9
## 2967   2004-11 00:06:49Z        9
## 2968   2004-12 03:52:23Z        9
## 2969   2005-07 00:32:01Z        9
## 2970   2005-07 00:33:59Z        9
## 2971   2005-08 04:16:31Z        9
## 2972   2006-01 08:25:35Z        9
## 2973   2006-01 08:26:15Z        9
## 2974   2006-01 08:26:43Z        9
## 2975   2006-02 18:02:00Z        9
## 2976   2006-02 18:02:43Z        9
## 2977   2006-02 18:18:21Z        9
## 2978   2006-02 18:19:35Z        9
## 2979   2006-02 18:19:56Z        9
## 2980   2006-02 18:20:29Z        9
## 2981   2006-02 03:05:06Z        9
## 2982   2006-02 19:48:26Z        9
## 2983   2006-02 16:16:17Z        9
## 2984   2006-02 16:16:44Z        9
## 2985   2006-02 19:13:58Z        9
## 2986   2006-02 00:11:12Z        9
## 2987   2006-03 01:29:13Z        9
## 2988   2006-04 17:31:54Z        9
## 2989   2006-04 02:35:05Z        9
## 2990   2006-04 16:34:05Z        9
## 2991   2006-07 00:28:13Z        9
## 2992   2006-07 16:35:43Z        9
## 2993   2006-08 15:19:15Z        9
## 2994   2006-08 15:19:44Z        9
## 2995   2006-08 21:16:00Z        9
## 2996   2006-08 11:00:46Z        9
## 2997   2006-08 16:35:13Z        9
## 2998   2006-09 08:16:12Z        9
## 2999   2006-09 08:16:41Z        9
## 3000   2006-10 18:09:55Z        9
## 3001   2006-11 16:36:29Z        9
## 3002   2006-11 16:37:56Z        9
## 3003   2006-12 22:06:50Z        9
## 3004   2006-12 13:40:15Z        9
## 3005   2007-01 01:08:09Z        9
## 3006   2007-01 17:00:00Z        9
## 3007   2007-02 22:50:33Z        9
## 3008   2007-02 22:55:20Z        9
## 3009   2007-02 22:57:19Z        9
## 3010   2007-03 20:49:06Z        9
## 3011   2007-05 01:44:17Z        9
## 3012   2007-05 02:04:45Z        9
## 3013   2007-05 02:05:14Z        9
## 3014   2007-07 03:10:26Z        9
## 3015   2007-07 22:38:05Z        9
## 3016   2007-07 08:01:52Z        9
## 3017   2007-07 19:26:32Z        9
## 3018   2007-07 12:55:59Z        9
## 3019   2007-08 11:52:27Z        9
## 3020   2002-10 09:56:54Z        0
## 3021   2002-10 09:58:31Z        0
## 3022   2003-01 07:57:24Z        0
## 3023   2003-03 08:57:16Z        0
## 3024   2003-03 08:57:37Z        0
## 3025   2003-04 01:34:28Z        0
## 3026   2003-04 01:53:18Z        0
## 3027   2003-04 01:59:24Z        0
## 3028   2003-04 03:00:36Z        0
## 3029   2003-06 13:18:45Z        0
## 3030   2003-06 13:19:09Z        0
## 3031   2003-06 08:12:58Z        0
## 3032   2003-07 13:17:46Z        0
## 3033   2003-09 13:11:24Z        0
## 3034   2003-09 13:48:26Z        0
## 3035   2003-10 11:58:04Z        0
## 3036   2003-10 12:01:13Z        0
## 3037   2003-10 11:32:51Z        0
## 3038   2003-10 11:34:36Z        0
## 3039   2003-10 11:35:13Z        0
## 3040   2003-11 22:07:31Z        0
## 3041   2003-11 17:12:54Z        0
## 3042   2003-11 20:30:27Z        0
## 3043   2003-11 20:43:23Z        0
## 3044   2003-11 16:50:26Z        0
## 3045   2003-12 16:48:40Z        0
## 3046   2004-01 19:39:04Z        0
## 3047   2004-02 16:22:49Z        0
## 3048   2004-02 16:59:19Z        0
## 3049   2004-02 19:15:53Z        0
## 3050   2004-02 19:19:13Z        0
## 3051   2004-02 19:20:28Z        0
## 3052   2004-03 01:05:25Z        0
## 3053   2004-03 01:11:44Z        0
## 3054   2004-03 01:13:30Z        0
## 3055   2004-03 01:22:32Z        0
## 3056   2004-03 02:03:57Z        0
## 3057   2004-06 07:44:58Z        0
## 3058   2004-06 16:38:21Z        0
## 3059   2004-06 07:30:14Z        0
## 3060   2004-06 07:31:48Z        0
## 3061   2004-06 07:54:17Z        0
## 3062   2004-06 17:00:11Z        0
## 3063   2004-07 03:20:42Z        0
## 3064   2004-07 13:02:59Z        0
## 3065   2004-07 21:27:52Z        0
## 3066   2004-07 12:06:47Z        0
## 3067   2004-07 14:57:21Z        0
## 3068   2004-08 06:23:49Z        0
## 3069   2004-08 06:25:07Z        0
## 3070   2004-08 12:03:38Z        0
## 3071   2004-09 04:27:53Z        0
## 3072   2004-10 16:50:19Z        0
## 3073   2004-11 23:19:36Z        0
## 3074   2004-11 23:20:30Z        0
## 3075   2004-11 23:28:42Z        0
## 3076   2004-11 23:35:02Z        0
## 3077   2004-12 12:44:12Z        0
## 3078   2005-03 19:28:59Z        0
## 3079   2005-04 14:52:47Z        0
## 3080   2005-04 10:27:28Z        0
## 3081   2005-04 10:28:05Z        0
## 3082   2005-04 09:32:34Z        0
## 3083   2005-04 10:41:24Z        0
## 3084   2005-04 06:55:04Z        0
## 3085   2005-05 23:33:44Z        0
## 3086   2005-05 20:18:32Z        0
## 3087   2005-05 20:32:48Z        0
## 3088   2005-05 11:17:58Z        0
## 3089   2005-06 22:36:54Z        0
## 3090   2005-06 04:56:50Z        0
## 3091   2005-06 12:33:46Z        0
## 3092   2005-06 12:59:56Z        0
## 3093   2005-06 13:01:06Z        0
## 3094   2005-06 01:31:07Z        0
## 3095   2005-06 14:07:31Z        0
## 3096   2005-07 20:19:32Z        0
## 3097   2005-07 23:39:18Z        0
## 3098   2005-07 00:58:58Z        0
## 3099   2005-07 01:49:01Z        0
## 3100   2005-07 01:50:37Z        0
## 3101   2005-07 06:39:44Z        0
## 3102   2005-07 15:36:07Z        0
## 3103   2005-07 01:55:36Z        0
## 3104   2005-07 01:58:56Z        0
## 3105   2005-07 01:59:56Z        0
## 3106   2005-07 02:12:13Z        0
## 3107   2005-07 02:17:42Z        0
## 3108   2005-07 12:11:03Z        0
## 3109   2005-07 02:58:41Z        0
## 3110   2005-08 04:05:50Z        0
## 3111   2005-08 04:14:16Z        0
## 3112   2005-08 04:14:43Z        0
## 3113   2005-08 11:38:13Z        0
## 3114   2005-08 06:19:25Z        0
## 3115   2005-08 09:32:48Z        0
## 3116   2005-09 17:20:17Z        0
## 3117   2005-09 04:03:49Z        0
## 3118   2005-09 17:44:34Z        0
## 3119   2005-10 10:42:27Z        0
## 3120   2005-10 10:51:34Z        0
## 3121   2005-10 10:52:23Z        0
## 3122   2005-11 02:04:48Z        0
## 3123   2005-11 08:32:19Z        0
## 3124   2005-11 11:29:12Z        0
## 3125   2005-11 23:44:40Z        0
## 3126   2005-11 20:08:24Z        0
## 3127   2005-12 00:06:13Z        0
## 3128   2005-12 19:27:56Z        0
## 3129   2005-12 19:28:47Z        0
## 3130   2006-01 23:10:17Z        0
## 3131   2006-01 23:13:43Z        0
## 3132   2006-01 14:26:18Z        0
## 3133   2006-01 20:32:42Z        0
## 3134   2006-02 12:49:52Z        0
## 3135   2006-03 22:39:27Z        0
## 3136   2006-03 09:15:56Z        0
## 3137   2006-03 19:02:34Z        0
## 3138   2006-03 19:03:31Z        0
## 3139   2006-03 04:25:10Z        0
## 3140   2006-03 01:30:52Z        0
## 3141   2006-03 19:18:02Z        0
## 3142   2006-04 18:00:58Z        0
## 3143   2006-04 12:17:47Z        0
## 3144   2006-04 14:57:19Z        0
## 3145   2006-04 14:58:22Z        0
## 3146   2006-05 19:16:30Z        0
## 3147   2006-05 14:36:33Z        0
## 3148   2006-05 14:36:57Z        0
## 3149   2006-05 20:09:50Z        0
## 3150   2006-06 15:35:23Z        0
## 3151   2006-06 13:29:57Z        0
## 3152   2006-06 12:35:23Z        0
## 3153   2006-07 11:51:54Z        0
## 3154   2006-07 04:36:35Z        0
## 3155   2006-07 18:19:55Z        0
## 3156   2006-07 23:54:28Z        0
## 3157   2006-07 23:55:33Z        0
## 3158   2006-07 22:02:42Z        0
## 3159   2006-07 06:04:28Z        0
## 3160   2006-07 15:58:02Z        0
## 3161   2006-07 13:51:41Z        0
## 3162   2006-08 02:14:45Z        0
## 3163   2006-09 12:40:43Z        0
## 3164   2006-09 13:32:12Z        0
## 3165   2006-09 13:37:41Z        0
## 3166   2006-09 13:51:28Z        0
## 3167   2006-09 13:52:21Z        0
## 3168   2006-09 01:12:02Z        0
## 3169   2006-09 13:29:15Z        0
## 3170   2006-09 23:56:04Z        0
## 3171   2006-10 21:19:00Z        0
## 3172   2006-10 06:58:59Z        0
## 3173   2006-10 03:59:04Z        0
## 3174   2006-11 09:35:00Z        0
## 3175   2006-11 10:33:05Z        0
## 3176   2006-11 14:42:51Z        0
## 3177   2006-11 15:31:29Z        0
## 3178   2006-11 06:18:33Z        0
## 3179   2006-12 05:11:53Z        0
## 3180   2006-12 05:13:14Z        0
## 3181   2006-12 14:36:14Z        0
## 3182   2006-12 23:48:38Z        0
## 3183   2006-12 23:53:19Z        0
## 3184   2006-12 20:27:41Z        0
## 3185   2006-12 22:46:08Z        0
## 3186   2006-12 06:06:47Z        0
## 3187   2006-12 06:09:50Z        0
## 3188   2006-12 06:18:44Z        0
## 3189   2006-12 07:51:40Z        0
## 3190   2006-12 04:31:31Z        0
## 3191   2006-12 20:09:50Z        0
## 3192   2006-12 03:13:56Z        0
## 3193   2006-12 22:33:03Z        0
## 3194   2006-12 22:41:02Z        0
## 3195   2007-01 00:19:53Z        0
## 3196   2007-01 00:22:22Z        0
## 3197   2007-01 00:28:24Z        0
## 3198   2007-01 18:37:32Z        0
## 3199   2007-01 19:10:28Z        0
## 3200   2007-01 04:21:19Z        0
## 3201   2007-01 16:59:34Z        0
## 3202   2007-01 17:00:56Z        0
## 3203   2007-01 17:02:14Z        0
## 3204   2007-01 17:05:58Z        0
## 3205   2007-01 01:28:38Z        0
## 3206   2007-01 11:41:29Z        0
## 3207   2007-01 12:00:13Z        0
## 3208   2007-02 22:25:31Z        0
## 3209   2007-03 14:13:00Z        0
## 3210   2007-03 05:13:29Z        0
## 3211   2007-03 21:19:33Z        0
## 3212   2007-03 21:21:46Z        0
## 3213   2007-03 15:19:25Z        0
## 3214   2007-04 18:52:39Z        0
## 3215   2007-04 17:24:42Z        0
## 3216   2007-04 17:22:34Z        0
## 3217   2007-04 17:31:53Z        0
## 3218   2007-04 17:36:56Z        0
## 3219   2007-06 18:52:43Z        0
## 3220   2007-07 20:29:57Z        0
## 3221   2007-07 17:21:44Z        0
## 3222   2007-07 09:58:41Z        0
## 3223   2007-07 11:59:36Z        0
## 3224   2007-07 23:07:50Z        0
## 3225   2007-09 21:54:27Z        0
## 3226   2007-09 00:08:26Z        0
## 3227   2007-09 22:49:46Z        0
## 3228   2007-09 22:51:16Z        0
## 3229   2007-09 22:52:15Z        0
## 3230   2007-09 10:07:34Z        0
## 3231   2007-11 10:50:17Z        0
## 3232   2007-11 16:17:51Z        0
## 3233   2007-12 18:40:55Z        0
## 3234   2007-12 10:41:21Z        0
## 3235   2002-10 13:24:28Z        1
## 3236   2004-06 17:27:55Z        1
## 3237   2004-08 01:34:54Z        1
## 3238   2005-03 05:19:10Z        1
## 3239   2005-03 01:33:02Z        1
## 3240   2005-03 14:49:06Z        1
## 3241   2005-03 14:49:42Z        1
## 3242   2005-05 20:51:23Z        1
## 3243   2005-09 03:58:49Z        1
## 3244   2005-12 20:41:01Z        1
## 3245   2006-03 06:34:38Z        1
## 3246   2006-07 01:41:17Z        1
## 3247   2002-10 20:15:42Z        2
## 3248   2002-10 20:16:58Z        2
## 3249   2002-10 00:38:57Z        2
## 3250   2002-10 00:41:29Z        2
## 3251   2002-10 00:43:44Z        2
## 3252   2002-10 00:45:23Z        2
## 3253   2002-10 00:50:31Z        2
## 3254   2002-10 00:52:41Z        2
## 3255   2002-10 00:54:11Z        2
## 3256   2002-10 00:57:42Z        2
## 3257   2002-10 01:05:08Z        2
## 3258   2002-10 01:09:26Z        2
## 3259   2002-10 01:12:20Z        2
## 3260   2002-10 01:13:06Z        2
## 3261   2002-10 01:16:34Z        2
## 3262   2002-10 01:17:40Z        2
## 3263   2002-10 12:47:46Z        2
## 3264   2002-10 16:45:22Z        2
## 3265   2002-10 18:35:35Z        2
## 3266   2002-10 18:37:57Z        2
## 3267   2002-10 04:19:41Z        2
## 3268   2002-10 13:34:04Z        2
## 3269   2002-10 05:05:04Z        2
## 3270   2002-10 07:57:08Z        2
## 3271   2002-10 16:11:07Z        2
## 3272   2002-10 23:23:16Z        2
## 3273   2002-10 18:34:22Z        2
## 3274   2002-11 03:17:57Z        2
## 3275   2003-06 08:00:31Z        2
## 3276   2003-06 08:01:14Z        2
## 3277   2003-06 08:48:36Z        2
## 3278   2003-06 21:46:26Z        2
## 3279   2003-06 21:54:25Z        2
## 3280   2003-06 21:55:30Z        2
## 3281   2003-06 21:58:13Z        2
## 3282   2003-06 22:05:20Z        2
## 3283   2003-07 22:09:20Z        2
## 3284   2003-08 13:48:20Z        2
## 3285   2003-08 10:07:12Z        2
## 3286   2003-08 10:08:44Z        2
## 3287   2003-09 06:17:50Z        2
## 3288   2004-02 13:09:41Z        2
## 3289   2004-04 10:08:29Z        2
## 3290   2004-04 13:28:25Z        2
## 3291   2004-04 22:11:19Z        2
## 3292   2004-05 06:06:22Z        2
## 3293   2004-06 22:33:58Z        2
## 3294   2004-07 20:28:39Z        2
## 3295   2004-08 02:56:49Z        2
## 3296   2004-08 13:02:54Z        2
## 3297   2004-08 08:24:27Z        2
## 3298   2004-09 20:15:10Z        2
## 3299   2004-09 06:00:27Z        2
## 3300   2004-09 20:19:21Z        2
## 3301   2004-09 03:30:32Z        2
## 3302   2004-09 03:32:31Z        2
## 3303   2004-09 03:34:05Z        2
## 3304   2004-10 17:10:35Z        2
## 3305   2004-10 17:52:02Z        2
## 3306   2004-11 13:39:20Z        2
## 3307   2004-11 15:49:14Z        2
## 3308   2004-11 22:38:39Z        2
## 3309   2004-11 13:27:16Z        2
## 3310   2004-12 23:41:40Z        2
## 3311   2004-12 03:20:14Z        2
## 3312   2004-12 15:59:40Z        2
## 3313   2004-12 07:28:05Z        2
## 3314   2004-12 06:43:18Z        2
## 3315   2004-12 00:10:54Z        2
## 3316   2004-12 00:11:17Z        2
## 3317   2004-12 09:13:33Z        2
## 3318   2004-12 15:15:03Z        2
## 3319   2005-01 03:08:19Z        2
## 3320   2005-01 03:24:53Z        2
## 3321   2005-01 03:31:56Z        2
## 3322   2005-01 22:10:08Z        2
## 3323   2005-01 22:10:44Z        2
## 3324   2005-01 11:14:06Z        2
## 3325   2005-02 23:31:58Z        2
## 3326   2005-03 21:08:42Z        2
## 3327   2005-03 02:34:47Z        2
## 3328   2005-03 14:03:01Z        2
## 3329   2005-03 10:06:57Z        2
## 3330   2005-04 15:25:10Z        2
## 3331   2005-04 07:12:00Z        2
## 3332   2005-04 07:13:35Z        2
## 3333   2005-04 20:56:36Z        2
## 3334   2005-04 07:07:30Z        2
## 3335   2005-04 23:04:05Z        2
## 3336   2005-04 10:26:04Z        2
## 3337   2005-04 16:08:39Z        2
## 3338   2005-04 16:11:52Z        2
## 3339   2005-04 20:37:25Z        2
## 3340   2005-04 22:18:19Z        2
## 3341   2005-05 05:52:16Z        2
## 3342   2005-05 11:39:16Z        2
## 3343   2005-05 13:43:02Z        2
## 3344   2005-05 13:48:18Z        2
## 3345   2005-05 09:56:52Z        2
## 3346   2005-06 17:11:59Z        2
## 3347   2005-06 08:22:34Z        2
## 3348   2005-06 04:47:46Z        2
## 3349   2005-06 14:24:29Z        2
## 3350   2005-07 12:30:00Z        2
## 3351   2005-07 03:13:48Z        2
## 3352   2005-07 23:09:27Z        2
## 3353   2005-08 00:51:32Z        2
## 3354   2005-08 17:40:44Z        2
## 3355   2005-08 14:04:53Z        2
## 3356   2005-08 22:39:52Z        2
## 3357   2005-08 11:19:09Z        2
## 3358   2005-09 20:03:54Z        2
## 3359   2005-09 20:20:06Z        2
## 3360   2005-09 11:34:42Z        2
## 3361   2005-09 12:09:25Z        2
## 3362   2005-10 18:46:34Z        2
## 3363   2005-10 11:52:37Z        2
## 3364   2005-10 16:18:00Z        2
## 3365   2005-10 16:25:21Z        2
## 3366   2005-10 23:44:11Z        2
## 3367   2005-10 23:51:34Z        2
## 3368   2005-10 23:55:01Z        2
## 3369   2005-10 00:01:39Z        2
## 3370   2005-10 21:34:20Z        2
## 3371   2005-10 06:53:05Z        2
## 3372   2005-10 15:20:07Z        2
## 3373   2005-10 15:23:56Z        2
## 3374   2005-10 15:26:49Z        2
## 3375   2005-10 15:41:50Z        2
## 3376   2005-10 15:42:34Z        2
## 3377   2005-10 15:50:56Z        2
## 3378   2005-10 16:09:19Z        2
## 3379   2005-10 16:20:10Z        2
## 3380   2005-10 11:02:41Z        2
## 3381   2005-10 22:09:07Z        2
## 3382   2005-10 22:14:08Z        2
## 3383   2005-10 22:18:10Z        2
## 3384   2005-10 14:47:47Z        2
## 3385   2005-10 18:26:51Z        2
## 3386   2005-10 05:23:31Z        2
## 3387   2005-11 17:22:34Z        2
## 3388   2005-11 22:05:18Z        2
## 3389   2005-11 10:38:01Z        2
## 3390   2005-11 10:39:15Z        2
## 3391   2005-12 21:42:59Z        2
## 3392   2005-12 10:08:16Z        2
## 3393   2005-12 11:28:26Z        2
## 3394   2005-12 17:24:47Z        2
## 3395   2005-12 17:27:31Z        2
## 3396   2006-01 23:09:53Z        2
## 3397   2006-01 09:53:11Z        2
## 3398   2006-01 19:55:06Z        2
## 3399   2006-01 22:09:25Z        2
## 3400   2006-01 12:29:50Z        2
## 3401   2006-01 15:54:42Z        2
## 3402   2006-01 15:55:01Z        2
## 3403   2006-01 15:55:50Z        2
## 3404   2006-01 15:59:01Z        2
## 3405   2006-01 16:01:08Z        2
## 3406   2006-01 16:02:35Z        2
## 3407   2006-02 07:10:20Z        2
## 3408   2006-02 20:00:32Z        2
## 3409   2006-02 20:01:18Z        2
## 3410   2006-02 00:26:50Z        2
## 3411   2006-02 02:36:53Z        2
## 3412   2006-02 10:17:38Z        2
## 3413   2006-03 19:16:55Z        2
## 3414   2006-03 19:28:29Z        2
## 3415   2006-03 19:58:14Z        2
## 3416   2006-03 02:35:49Z        2
## 3417   2006-03 02:37:49Z        2
## 3418   2006-03 09:05:57Z        2
## 3419   2006-03 17:41:50Z        2
## 3420   2006-03 17:42:52Z        2
## 3421   2006-03 23:13:20Z        2
## 3422   2006-03 18:46:15Z        2
## 3423   2006-03 18:56:40Z        2
## 3424   2006-03 19:00:09Z        2
## 3425   2006-03 19:04:09Z        2
## 3426   2006-03 12:06:50Z        2
## 3427   2006-03 21:01:09Z        2
## 3428   2006-04 01:45:02Z        2
## 3429   2006-04 08:01:40Z        2
## 3430   2006-04 08:02:43Z        2
## 3431   2006-04 19:18:15Z        2
## 3432   2006-04 19:27:40Z        2
## 3433   2006-04 21:27:25Z        2
## 3434   2006-04 22:16:32Z        2
## 3435   2006-04 23:57:45Z        2
## 3436   2006-04 01:49:54Z        2
## 3437   2006-04 01:53:05Z        2
## 3438   2006-04 03:12:52Z        2
## 3439   2006-04 03:14:25Z        2
## 3440   2006-04 03:16:27Z        2
## 3441   2006-04 03:19:26Z        2
## 3442   2006-04 04:16:07Z        2
## 3443   2006-04 21:30:29Z        2
## 3444   2006-04 17:35:00Z        2
## 3445   2006-04 07:18:09Z        2
## 3446   2006-04 07:19:21Z        2
## 3447   2006-04 07:19:53Z        2
## 3448   2006-04 07:23:00Z        2
## 3449   2006-04 07:24:17Z        2
## 3450   2006-04 07:36:56Z        2
## 3451   2006-04 08:53:15Z        2
## 3452   2006-04 10:08:48Z        2
## 3453   2006-05 03:11:20Z        2
## 3454   2006-05 06:01:56Z        2
## 3455   2006-05 15:01:13Z        2
## 3456   2006-05 15:13:29Z        2
## 3457   2006-05 15:13:57Z        2
## 3458   2006-05 15:14:57Z        2
## 3459   2006-05 15:16:32Z        2
## 3460   2006-05 15:17:20Z        2
## 3461   2006-05 14:06:25Z        2
## 3462   2006-05 11:47:06Z        2
## 3463   2006-05 15:56:24Z        2
## 3464   2006-06 05:41:38Z        2
## 3465   2006-06 08:40:36Z        2
## 3466   2006-06 21:05:33Z        2
## 3467   2006-06 21:06:39Z        2
## 3468   2006-06 20:28:28Z        2
## 3469   2006-06 20:31:02Z        2
## 3470   2006-06 20:35:17Z        2
## 3471   2006-06 20:39:59Z        2
## 3472   2006-06 20:56:28Z        2
## 3473   2006-06 20:57:23Z        2
## 3474   2006-06 02:09:56Z        2
## 3475   2006-06 14:34:29Z        2
## 3476   2006-07 23:09:59Z        2
## 3477   2006-07 05:07:32Z        2
## 3478   2006-07 05:07:31Z        2
## 3479   2006-07 08:49:42Z        2
## 3480   2006-07 17:42:16Z        2
## 3481   2006-07 17:47:54Z        2
## 3482   2006-07 19:14:13Z        2
## 3483   2006-07 19:19:48Z        2
## 3484   2006-07 19:20:33Z        2
## 3485   2006-07 19:23:40Z        2
## 3486   2006-07 19:25:01Z        2
## 3487   2006-07 19:26:38Z        2
## 3488   2006-07 18:57:17Z        2
## 3489   2006-07 03:15:23Z        2
## 3490   2006-08 17:02:58Z        2
## 3491   2006-08 15:10:12Z        2
## 3492   2006-08 15:14:12Z        2
## 3493   2006-08 15:15:44Z        2
## 3494   2006-09 22:39:46Z        2
## 3495   2006-09 17:36:09Z        2
## 3496   2006-09 23:46:59Z        2
## 3497   2006-10 19:30:27Z        2
## 3498   2006-10 20:48:29Z        2
## 3499   2006-10 20:48:56Z        2
## 3500   2006-10 20:49:39Z        2
## 3501   2006-10 13:11:40Z        2
## 3502   2006-10 14:13:12Z        2
## 3503   2006-11 21:19:42Z        2
## 3504   2006-11 15:10:34Z        2
## 3505   2006-11 15:50:47Z        2
## 3506   2006-11 22:39:58Z        2
## 3507   2006-11 22:41:02Z        2
## 3508   2006-11 03:29:36Z        2
## 3509   2006-12 18:20:28Z        2
## 3510   2006-12 12:14:06Z        2
## 3511   2006-12 21:56:27Z        2
## 3512   2006-12 21:57:26Z        2
## 3513   2006-12 21:57:41Z        2
## 3514   2006-12 06:11:18Z        2
## 3515   2006-12 19:16:52Z        2
## 3516   2007-01 02:02:48Z        2
## 3517   2007-01 13:31:25Z        2
## 3518   2007-01 14:01:49Z        2
## 3519   2007-01 14:08:35Z        2
## 3520   2007-01 00:38:29Z        2
## 3521   2007-01 23:47:17Z        2
## 3522   2007-01 23:48:47Z        2
## 3523   2007-01 23:49:40Z        2
## 3524   2007-02 22:50:28Z        2
## 3525   2007-02 13:35:54Z        2
## 3526   2007-02 17:25:17Z        2
## 3527   2007-02 17:26:54Z        2
## 3528   2007-02 22:27:18Z        2
## 3529   2007-02 22:38:22Z        2
## 3530   2007-02 23:07:23Z        2
## 3531   2007-02 02:13:58Z        2
## 3532   2007-02 17:43:29Z        2
## 3533   2007-02 03:16:53Z        2
## 3534   2007-02 04:54:33Z        2
## 3535   2007-03 16:10:24Z        2
## 3536   2007-03 16:12:52Z        2
## 3537   2007-03 18:31:32Z        2
## 3538   2007-03 21:33:24Z        2
## 3539   2007-03 21:37:42Z        2
## 3540   2007-03 06:56:23Z        2
## 3541   2007-04 21:02:39Z        2
## 3542   2007-04 21:35:10Z        2
## 3543   2007-04 21:47:15Z        2
## 3544   2007-04 21:59:31Z        2
## 3545   2007-04 22:06:16Z        2
## 3546   2007-04 22:14:31Z        2
## 3547   2007-04 22:32:45Z        2
## 3548   2007-04 22:37:57Z        2
## 3549   2007-04 22:41:25Z        2
## 3550   2007-04 08:12:12Z        2
## 3551   2007-04 08:51:56Z        2
## 3552   2007-04 09:13:35Z        2
## 3553   2007-04 20:55:20Z        2
## 3554   2007-04 10:58:06Z        2
## 3555   2007-04 10:21:52Z        2
## 3556   2007-04 21:30:04Z        2
## 3557   2007-04 21:30:42Z        2
## 3558   2007-04 21:46:27Z        2
## 3559   2007-05 17:57:58Z        2
## 3560   2007-05 17:59:01Z        2
## 3561   2007-05 23:48:07Z        2
## 3562   2007-05 06:48:07Z        2
## 3563   2007-05 18:25:58Z        2
## 3564   2007-05 01:55:37Z        2
## 3565   2007-05 03:51:11Z        2
## 3566   2007-05 17:38:27Z        2
## 3567   2007-05 17:40:21Z        2
## 3568   2007-05 17:29:46Z        2
## 3569   2007-05 23:25:38Z        2
## 3570   2007-05 23:26:21Z        2
## 3571   2007-05 20:10:51Z        2
## 3572   2007-05 20:13:13Z        2
## 3573   2007-05 22:07:34Z        2
## 3574   2007-05 19:43:36Z        2
## 3575   2007-06 17:34:48Z        2
## 3576   2007-06 05:31:55Z        2
## 3577   2007-06 06:54:45Z        2
## 3578   2007-07 23:27:47Z        2
## 3579   2007-07 23:19:20Z        2
## 3580   2007-07 14:37:00Z        2
## 3581   2007-07 14:45:36Z        2
## 3582   2007-07 14:05:10Z        2
## 3583   2007-07 01:52:29Z        2
## 3584   2007-07 19:17:25Z        2
## 3585   2007-07 19:18:00Z        2
## 3586   2007-07 20:58:14Z        2
## 3587   2007-07 16:10:01Z        2
## 3588   2007-07 23:14:31Z        2
## 3589   2007-07 11:44:35Z        2
## 3590   2007-08 19:27:30Z        2
## 3591   2007-08 19:27:41Z        2
## 3592   2007-08 19:29:40Z        2
## 3593   2007-08 19:30:54Z        2
## 3594   2007-08 19:31:16Z        2
## 3595   2007-08 19:32:11Z        2
## 3596   2007-08 19:32:29Z        2
## 3597   2007-08 19:32:39Z        2
## 3598   2007-08 03:07:09Z        2
## 3599   2007-08 18:09:24Z        2
## 3600   2007-08 00:41:25Z        2
## 3601   2007-08 03:35:05Z        2
## 3602   2007-08 01:15:22Z        2
## 3603   2007-08 01:21:58Z        2
## 3604   2007-08 01:28:24Z        2
## 3605   2007-08 15:17:14Z        2
## 3606   2007-09 18:42:37Z        2
## 3607   2007-09 16:41:29Z        2
## 3608   2007-09 17:02:39Z        2
## 3609   2007-09 17:05:14Z        2
## 3610   2007-09 17:05:55Z        2
## 3611   2007-09 09:52:26Z        2
## 3612   2007-09 23:43:12Z        2
## 3613   2007-09 23:45:01Z        2
## 3614   2007-09 23:48:10Z        2
## 3615   2007-09 23:53:45Z        2
## 3616   2007-09 23:54:46Z        2
## 3617   2007-09 23:57:45Z        2
## 3618   2007-09 23:59:50Z        2
## 3619   2007-10 09:18:30Z        2
## 3620   2007-10 02:01:52Z        2
## 3621   2007-10 02:04:12Z        2
## 3622   2007-10 19:12:01Z        2
## 3623   2007-10 17:52:31Z        2
## 3624   2007-10 02:18:12Z        2
## 3625   2007-10 23:21:49Z        2
## 3626   2007-11 15:44:12Z        2
## 3627   2007-11 04:42:27Z        2
## 3628   2007-11 04:43:26Z        2
## 3629   2007-11 22:06:19Z        2
## 3630   2007-11 05:02:48Z        2
## 3631   2007-11 05:03:16Z        2
## 3632   2007-11 18:29:03Z        2
## 3633   2007-11 12:03:25Z        2
## 3634   2007-11 06:50:47Z        2
## 3635   2007-11 12:25:10Z        2
## 3636   2007-12 22:58:41Z        2
## 3637   2007-12 08:50:22Z        2
## 3638   2007-12 08:53:05Z        2
## 3639   2007-12 08:59:16Z        2
## 3640   2007-12 14:50:10Z        2
## 3641   2007-12 14:52:34Z        2
## 3642   2007-12 01:32:56Z        2
## 3643   2007-12 01:33:24Z        2
## 3644   2007-12 09:09:51Z        2
## 3645   2007-12 08:43:34Z        2
## 3646   2007-12 17:38:57Z        2
## 3647   2002-10 15:19:07Z        7
## 3648   2002-10 15:59:02Z        7
## 3649   2003-08 08:07:06Z        7
## 3650   2003-08 08:13:31Z        7
## 3651   2004-06 00:27:56Z        7
## 3652   2004-11 10:20:39Z        7
## 3653   2005-04 07:31:43Z        7
## 3654   2005-04 02:20:54Z        7
## 3655   2005-04 00:58:52Z        7
## 3656   2005-06 21:48:44Z        7
## 3657   2005-07 15:42:36Z        7
## 3658   2005-07 09:56:01Z        7
## 3659   2005-08 20:00:23Z        7
## 3660   2005-10 00:35:57Z        7
## 3661   2005-11 05:51:40Z        7
## 3662   2006-04 13:59:16Z        7
## 3663   2006-07 22:57:35Z        7
## 3664   2006-10 03:41:01Z        7
## 3665   2007-01 02:44:20Z        7
## 3666   2007-01 02:47:20Z        7
## 3667   2007-02 05:07:03Z        7
## 3668   2007-04 21:09:29Z        7
## 3669   2007-06 18:13:23Z        7
## 3670   2007-06 14:24:41Z        7
## 3671   2007-07 18:08:50Z        7
## 3672   2007-07 18:09:05Z        7
## 3673   2007-07 10:18:46Z        7
## 3674   2007-07 21:16:35Z        7
## 3675   2007-07 08:50:12Z        7
## 3676   2007-09 05:50:55Z        7
## 3677   2007-09 05:57:19Z        7
## 3678   2007-09 05:58:07Z        7
## 3679   2007-09 06:50:52Z        7
## 3680   2007-09 06:51:45Z        7
## 3681   2007-09 02:46:07Z        7
## 3682   2007-10 22:11:50Z        7
## 3683   2007-10 22:12:11Z        7
## 3684   2007-10 22:12:47Z        7
## 3685   2007-10 22:21:02Z        7
## 3686   2007-10 22:22:43Z        7
## 3687   2007-10 22:24:25Z        7
## 3688   2007-10 22:24:55Z        7
## 3689   2007-10 22:25:12Z        7
## 3690   2007-10 15:32:05Z        7
## 3691   2007-10 15:35:00Z        7
## 3692   2007-10 16:07:21Z        7
## 3693   2007-10 16:07:51Z        7
## 3694   2007-10 17:36:10Z        7
## 3695   2007-11 20:24:48Z        7
## 3696   2007-11 20:25:26Z        7
## 3697   2002-10 15:38:20Z        7
## 3698   2003-05 16:27:04Z        7
## 3699   2003-05 16:27:31Z        7
## 3700   2003-05 22:31:47Z        7
## 3701   2003-06 23:09:31Z        7
## 3702   2003-09 18:47:42Z        7
## 3703   2003-09 19:02:42Z        7
## 3704   2003-11 23:43:22Z        7
## 3705   2003-11 05:09:51Z        7
## 3706   2003-11 05:02:49Z        7
## 3707   2003-11 17:52:53Z        7
## 3708   2003-11 17:54:01Z        7
## 3709   2004-01 22:55:25Z        7
## 3710   2004-02 01:23:10Z        7
## 3711   2004-02 04:59:47Z        7
## 3712   2004-04 03:56:43Z        7
## 3713   2004-04 03:57:15Z        7
## 3714   2004-06 03:38:55Z        7
## 3715   2004-06 00:07:21Z        7
## 3716   2004-06 22:01:39Z        7
## 3717   2004-06 03:32:50Z        7
## 3718   2004-07 07:18:08Z        7
## 3719   2004-07 04:35:33Z        7
## 3720   2004-08 02:50:07Z        7
## 3721   2004-08 02:53:01Z        7
## 3722   2004-09 14:15:01Z        7
## 3723   2004-09 16:07:23Z        7
## 3724   2004-10 01:03:49Z        7
## 3725   2004-11 10:19:48Z        7
## 3726   2004-11 20:49:46Z        7
## 3727   2004-11 10:14:33Z        7
## 3728   2004-12 00:35:41Z        7
## 3729   2004-12 00:37:13Z        7
## 3730   2004-12 23:49:37Z        7
## 3731   2004-12 01:20:43Z        7
## 3732   2004-12 13:22:53Z        7
## 3733   2004-12 13:17:46Z        7
## 3734   2005-01 04:04:59Z        7
## 3735   2005-01 22:54:09Z        7
## 3736   2005-01 22:54:42Z        7
## 3737   2005-01 21:10:40Z        7
## 3738   2005-01 16:29:47Z        7
## 3739   2005-01 01:39:58Z        7
## 3740   2005-01 01:40:15Z        7
## 3741   2005-01 05:07:41Z        7
## 3742   2005-02 00:18:30Z        7
## 3743   2005-02 15:44:14Z        7
## 3744   2005-02 02:33:39Z        7
## 3745   2005-02 01:59:24Z        7
## 3746   2005-02 16:55:45Z        7
## 3747   2005-02 16:56:41Z        7
## 3748   2005-02 07:48:36Z        7
## 3749   2005-02 07:14:53Z        7
## 3750   2005-02 00:04:35Z        7
## 3751   2005-02 04:40:44Z        7
## 3752   2005-02 03:27:14Z        7
## 3753   2005-02 08:57:38Z        7
## 3754   2005-02 09:02:22Z        7
## 3755   2005-02 09:04:44Z        7
## 3756   2005-03 03:03:21Z        7
## 3757   2005-03 15:14:17Z        7
## 3758   2005-03 20:30:12Z        7
## 3759   2005-03 03:11:26Z        7
## 3760   2005-03 04:00:18Z        7
## 3761   2005-03 18:05:11Z        7
## 3762   2005-03 22:33:51Z        7
## 3763   2005-04 14:18:02Z        7
## 3764   2005-04 14:19:46Z        7
## 3765   2005-04 14:24:47Z        7
## 3766   2005-04 21:37:56Z        7
## 3767   2005-04 13:59:40Z        7
## 3768   2005-04 18:38:12Z        7
## 3769   2005-04 19:01:21Z        7
## 3770   2005-04 19:12:51Z        7
## 3771   2005-04 06:21:36Z        7
## 3772   2005-04 07:08:43Z        7
## 3773   2005-04 07:26:14Z        7
## 3774   2005-04 07:27:56Z        7
## 3775   2005-04 15:22:03Z        7
## 3776   2005-04 15:41:10Z        7
## 3777   2005-04 23:23:43Z        7
## 3778   2005-04 23:32:00Z        7
## 3779   2005-04 23:38:21Z        7
## 3780   2005-04 16:09:29Z        7
## 3781   2005-04 16:52:08Z        7
## 3782   2005-04 03:41:32Z        7
## 3783   2005-04 16:29:10Z        7
## 3784   2005-04 16:34:34Z        7
## 3785   2005-04 13:37:06Z        7
## 3786   2005-04 13:39:11Z        7
## 3787   2005-04 17:05:40Z        7
## 3788   2005-04 13:51:06Z        7
## 3789   2005-04 13:56:30Z        7
## 3790   2005-04 14:01:45Z        7
## 3791   2005-04 15:09:57Z        7
## 3792   2005-04 18:40:32Z        7
## 3793   2005-04 18:45:50Z        7
## 3794   2005-04 20:09:16Z        7
## 3795   2005-04 08:49:51Z        7
## 3796   2005-05 19:18:45Z        7
## 3797   2005-05 01:47:26Z        7
## 3798   2005-05 01:48:19Z        7
## 3799   2005-05 02:28:34Z        7
## 3800   2005-05 02:32:24Z        7
## 3801   2005-05 23:34:29Z        7
## 3802   2005-05 23:48:33Z        7
## 3803   2005-05 20:00:30Z        7
## 3804   2005-05 23:15:17Z        7
## 3805   2005-05 23:16:41Z        7
## 3806   2005-05 23:23:10Z        7
## 3807   2005-05 21:43:56Z        7
## 3808   2005-05 22:26:46Z        7
## 3809   2005-05 08:30:13Z        7
## 3810   2005-05 13:54:49Z        7
## 3811   2005-05 04:06:13Z        7
## 3812   2005-05 01:56:17Z        7
## 3813   2005-05 05:50:07Z        7
## 3814   2005-05 11:41:39Z        7
## 3815   2005-05 11:47:29Z        7
## 3816   2005-05 07:04:41Z        7
## 3817   2005-05 17:26:53Z        7
## 3818   2005-05 19:21:44Z        7
## 3819   2005-05 19:28:37Z        7
## 3820   2005-05 19:32:00Z        7
## 3821   2005-05 19:33:10Z        7
## 3822   2005-05 13:54:19Z        7
## 3823   2005-06 22:01:32Z        7
## 3824   2005-06 05:17:10Z        7
## 3825   2005-06 01:01:06Z        7
## 3826   2005-06 11:45:00Z        7
## 3827   2005-06 16:18:41Z        7
## 3828   2005-06 15:46:27Z        7
## 3829   2005-06 15:52:18Z        7
## 3830   2005-06 15:54:54Z        7
## 3831   2005-06 15:56:41Z        7
## 3832   2005-06 15:59:28Z        7
## 3833   2005-06 16:06:45Z        7
## 3834   2005-06 16:40:44Z        7
## 3835   2005-06 16:48:05Z        7
## 3836   2005-06 16:52:11Z        7
## 3837   2005-06 17:09:28Z        7
## 3838   2005-06 18:05:40Z        7
## 3839   2005-06 20:23:51Z        7
## 3840   2005-06 23:24:26Z        7
## 3841   2005-06 17:48:02Z        7
## 3842   2005-06 17:58:32Z        7
## 3843   2005-06 18:38:47Z        7
## 3844   2005-06 18:39:28Z        7
## 3845   2005-06 18:48:10Z        7
## 3846   2005-06 18:48:59Z        7
## 3847   2005-06 22:36:10Z        7
## 3848   2005-06 20:48:28Z        7
## 3849   2005-06 03:52:36Z        7
## 3850   2005-07 03:33:49Z        7
## 3851   2005-07 15:16:58Z        7
## 3852   2005-07 07:55:04Z        7
## 3853   2005-07 08:00:27Z        7
## 3854   2005-07 08:04:56Z        7
## 3855   2005-07 14:57:33Z        7
## 3856   2005-07 20:36:43Z        7
## 3857   2005-07 22:38:31Z        7
## 3858   2005-07 22:40:51Z        7
## 3859   2005-07 18:22:15Z        7
## 3860   2005-07 18:33:54Z        7
## 3861   2005-07 18:35:29Z        7
## 3862   2005-07 18:38:38Z        7
## 3863   2005-07 18:40:51Z        7
## 3864   2005-07 18:41:20Z        7
## 3865   2005-07 13:35:45Z        7
## 3866   2005-07 13:53:20Z        7
## 3867   2005-07 03:23:24Z        7
## 3868   2005-07 03:25:10Z        7
## 3869   2005-07 17:51:11Z        7
## 3870   2005-07 17:57:27Z        7
## 3871   2005-07 06:08:28Z        7
## 3872   2005-07 11:24:14Z        7
## 3873   2005-07 17:04:40Z        7
## 3874   2005-07 21:21:23Z        7
## 3875   2005-07 13:23:17Z        7
## 3876   2005-07 16:07:17Z        7
## 3877   2005-07 17:22:37Z        7
## 3878   2005-07 17:24:30Z        7
## 3879   2005-07 01:07:31Z        7
## 3880   2005-07 01:09:18Z        7
## 3881   2005-07 18:16:30Z        7
## 3882   2005-07 19:44:20Z        7
## 3883   2005-07 19:00:52Z        7
## 3884   2005-07 19:48:54Z        7
## 3885   2005-07 21:46:15Z        7
## 3886   2005-07 15:52:47Z        7
## 3887   2005-07 15:53:07Z        7
## 3888   2005-08 21:08:44Z        7
## 3889   2005-08 21:11:23Z        7
## 3890   2005-08 13:12:45Z        7
## 3891   2005-08 02:22:23Z        7
## 3892   2005-08 02:22:39Z        7
## 3893   2005-08 02:30:30Z        7
## 3894   2005-08 02:32:40Z        7
## 3895   2005-08 02:34:06Z        7
## 3896   2005-08 02:50:52Z        7
## 3897   2005-08 23:21:07Z        7
## 3898   2005-08 23:22:44Z        7
## 3899   2005-08 23:23:22Z        7
## 3900   2005-08 23:27:34Z        7
## 3901   2005-08 01:50:49Z        7
## 3902   2005-08 17:02:52Z        7
## 3903   2005-08 14:39:50Z        7
## 3904   2005-08 15:03:45Z        7
## 3905   2005-08 15:04:45Z        7
## 3906   2005-08 15:24:52Z        7
## 3907   2005-08 15:25:31Z        7
## 3908   2005-08 15:31:51Z        7
## 3909   2005-08 15:32:11Z        7
## 3910   2005-08 15:34:44Z        7
## 3911   2005-08 13:35:02Z        7
## 3912   2005-08 17:46:55Z        7
## 3913   2005-08 20:30:23Z        7
## 3914   2005-08 20:33:56Z        7
## 3915   2005-08 20:41:54Z        7
## 3916   2005-08 15:19:26Z        7
## 3917   2005-08 15:45:01Z        7
## 3918   2005-08 16:03:33Z        7
## 3919   2005-08 18:11:06Z        7
## 3920   2005-08 14:31:06Z        7
## 3921   2005-08 14:31:53Z        7
## 3922   2005-08 05:24:33Z        7
## 3923   2005-08 05:24:41Z        7
## 3924   2005-08 05:39:15Z        7
## 3925   2005-08 18:49:31Z        7
## 3926   2005-08 22:58:43Z        7
## 3927   2005-08 00:14:33Z        7
## 3928   2005-08 23:31:51Z        7
## 3929   2005-08 04:34:44Z        7
## 3930   2005-08 18:45:55Z        7
## 3931   2005-09 01:11:13Z        7
## 3932   2005-09 02:11:09Z        7
## 3933   2005-09 08:24:06Z        7
## 3934   2005-09 09:15:33Z        7
## 3935   2005-09 02:56:04Z        7
## 3936   2005-09 03:00:56Z        7
## 3937   2005-09 03:06:27Z        7
## 3938   2005-09 03:12:28Z        7
## 3939   2005-09 04:43:45Z        7
## 3940   2005-09 23:53:36Z        7
## 3941   2005-09 17:30:13Z        7
## 3942   2005-09 06:09:19Z        7
## 3943   2005-09 06:15:45Z        7
## 3944   2005-09 06:17:14Z        7
## 3945   2005-09 06:19:05Z        7
## 3946   2005-09 06:20:53Z        7
## 3947   2005-09 06:22:14Z        7
## 3948   2005-09 03:34:01Z        7
## 3949   2005-09 15:24:05Z        7
## 3950   2005-09 01:32:27Z        7
## 3951   2005-09 05:20:15Z        7
## 3952   2005-09 17:27:21Z        7
## 3953   2005-09 11:38:19Z        7
## 3954   2005-10 18:37:39Z        7
## 3955   2005-10 13:27:59Z        7
## 3956   2005-10 13:32:38Z        7
## 3957   2005-10 03:42:37Z        7
## 3958   2005-10 18:22:03Z        7
## 3959   2005-10 20:07:28Z        7
## 3960   2005-10 17:53:49Z        7
## 3961   2005-10 00:03:57Z        7
## 3962   2005-10 21:55:57Z        7
## 3963   2005-10 22:48:48Z        7
## 3964   2005-10 04:29:04Z        7
## 3965   2005-10 22:09:54Z        7
## 3966   2005-10 22:11:21Z        7
## 3967   2005-10 22:15:10Z        7
## 3968   2005-10 22:16:03Z        7
## 3969   2005-10 02:14:25Z        7
## 3970   2005-10 03:00:00Z        7
## 3971   2005-10 05:20:19Z        7
## 3972   2005-11 18:48:25Z        7
## 3973   2005-11 18:57:03Z        7
## 3974   2005-11 11:08:13Z        7
## 3975   2005-11 21:22:35Z        7
## 3976   2005-11 22:26:48Z        7
## 3977   2005-11 05:19:30Z        7
## 3978   2005-11 21:37:30Z        7
## 3979   2005-11 21:39:03Z        7
## 3980   2005-11 21:40:14Z        7
## 3981   2005-11 01:04:10Z        7
## 3982   2005-11 14:00:35Z        7
## 3983   2005-11 14:01:44Z        7
## 3984   2005-11 15:32:50Z        7
## 3985   2005-11 01:23:30Z        7
## 3986   2005-11 16:42:54Z        7
## 3987   2005-11 17:07:33Z        7
## 3988   2005-11 08:11:55Z        7
## 3989   2005-11 08:14:26Z        7
## 3990   2005-11 13:49:10Z        7
## 3991   2005-11 01:45:25Z        7
## 3992   2005-11 02:52:49Z        7
## 3993   2005-11 16:57:20Z        7
## 3994   2005-11 18:25:34Z        7
## 3995   2005-11 18:35:24Z        7
## 3996   2005-11 18:36:33Z        7
## 3997   2005-12 19:39:36Z        7
## 3998   2005-12 19:40:51Z        7
## 3999   2005-12 19:41:36Z        7
## 4000   2005-12 19:43:16Z        7
## 4001   2005-12 19:45:13Z        7
## 4002   2005-12 01:15:37Z        7
## 4003   2005-12 06:28:19Z        7
## 4004   2005-12 06:29:07Z        7
## 4005   2005-12 06:30:01Z        7
## 4006   2005-12 14:08:30Z        7
## 4007   2005-12 14:09:30Z        7
## 4008   2005-12 14:10:04Z        7
## 4009   2005-12 13:04:10Z        7
## 4010   2005-12 13:05:15Z        7
## 4011   2005-12 21:31:00Z        7
## 4012   2005-12 21:31:32Z        7
## 4013   2005-12 17:26:45Z        7
## 4014   2005-12 17:29:14Z        7
## 4015   2005-12 17:29:37Z        7
## 4016   2005-12 05:14:41Z        7
## 4017   2005-12 05:19:06Z        7
## 4018   2005-12 05:49:53Z        7
## 4019   2005-12 04:28:27Z        7
## 4020   2005-12 04:33:05Z        7
## 4021   2005-12 16:33:33Z        7
## 4022   2005-12 20:41:24Z        7
## 4023   2005-12 16:02:00Z        7
## 4024   2005-12 21:42:19Z        7
## 4025   2005-12 19:11:31Z        7
## 4026   2005-12 15:54:41Z        7
## 4027   2005-12 15:54:51Z        7
## 4028   2005-12 13:19:14Z        7
## 4029   2005-12 12:01:02Z        7
## 4030   2005-12 04:39:53Z        7
## 4031   2005-12 08:31:13Z        7
## 4032   2005-12 08:39:55Z        7
## 4033   2005-12 08:42:11Z        7
## 4034   2005-12 09:07:43Z        7
## 4035   2005-12 09:16:50Z        7
## 4036   2005-12 03:38:51Z        7
## 4037   2005-12 03:09:49Z        7
## 4038   2005-12 17:20:13Z        7
## 4039   2006-01 04:38:54Z        7
## 4040   2006-01 04:45:15Z        7
## 4041   2006-01 05:17:32Z        7
## 4042   2006-01 06:41:03Z        7
## 4043   2006-01 19:41:10Z        7
## 4044   2006-01 19:44:00Z        7
## 4045   2006-01 19:46:55Z        7
## 4046   2006-01 19:48:02Z        7
## 4047   2006-01 23:37:03Z        7
## 4048   2006-01 23:37:28Z        7
## 4049   2006-01 16:48:22Z        7
## 4050   2006-01 17:32:09Z        7
## 4051   2006-01 21:23:38Z        7
## 4052   2006-01 06:21:22Z        7
## 4053   2006-01 18:14:27Z        7
## 4054   2006-01 04:51:06Z        7
## 4055   2006-01 09:42:40Z        7
## 4056   2006-01 21:36:44Z        7
## 4057   2006-01 15:58:59Z        7
## 4058   2006-01 23:29:08Z        7
## 4059   2006-01 01:36:19Z        7
## 4060   2006-01 07:58:23Z        7
## 4061   2006-01 07:59:23Z        7
## 4062   2006-01 08:00:23Z        7
## 4063   2006-01 08:00:51Z        7
## 4064   2006-01 08:01:14Z        7
## 4065   2006-01 08:01:29Z        7
## 4066   2006-01 20:13:10Z        7
## 4067   2006-02 20:54:02Z        7
## 4068   2006-02 21:09:52Z        7
## 4069   2006-02 21:10:38Z        7
## 4070   2006-02 21:16:57Z        7
## 4071   2006-02 21:19:54Z        7
## 4072   2006-02 21:21:22Z        7
## 4073   2006-02 21:25:18Z        7
## 4074   2006-02 21:32:29Z        7
## 4075   2006-02 21:35:13Z        7
## 4076   2006-02 21:36:56Z        7
## 4077   2006-02 21:38:18Z        7
## 4078   2006-02 21:40:41Z        7
## 4079   2006-02 21:49:02Z        7
## 4080   2006-02 22:02:42Z        7
## 4081   2006-02 04:45:34Z        7
## 4082   2006-02 21:20:05Z        7
## 4083   2006-02 21:24:57Z        7
## 4084   2006-02 21:45:53Z        7
## 4085   2006-02 03:12:23Z        7
## 4086   2006-02 17:51:09Z        7
## 4087   2006-02 17:54:56Z        7
## 4088   2006-02 17:58:24Z        7
## 4089   2006-02 17:59:23Z        7
## 4090   2006-02 18:00:33Z        7
## 4091   2006-02 00:29:07Z        7
## 4092   2006-02 00:30:10Z        7
## 4093   2006-02 00:35:35Z        7
## 4094   2006-02 18:27:58Z        7
## 4095   2006-02 18:29:34Z        7
## 4096   2006-02 18:32:25Z        7
## 4097   2006-02 18:32:48Z        7
## 4098   2006-02 18:33:27Z        7
## 4099   2006-02 18:36:05Z        7
## 4100   2006-02 16:34:45Z        7
## 4101   2006-02 18:11:06Z        7
## 4102   2006-02 18:33:11Z        7
## 4103   2006-02 19:06:24Z        7
## 4104   2006-02 19:40:17Z        7
## 4105   2006-02 21:49:52Z        7
## 4106   2006-02 05:12:37Z        7
## 4107   2006-02 05:15:37Z        7
## 4108   2006-02 05:16:36Z        7
## 4109   2006-02 05:18:11Z        7
## 4110   2006-02 05:18:48Z        7
## 4111   2006-02 05:19:43Z        7
## 4112   2006-02 05:21:22Z        7
## 4113   2006-02 22:29:12Z        7
## 4114   2006-02 05:32:23Z        7
## 4115   2006-02 05:35:49Z        7
## 4116   2006-02 00:56:05Z        7
## 4117   2006-02 00:58:29Z        7
## 4118   2006-02 01:05:26Z        7
## 4119   2006-02 01:09:23Z        7
## 4120   2006-02 18:17:31Z        7
## 4121   2006-03 01:07:36Z        7
## 4122   2006-03 01:09:56Z        7
## 4123   2006-03 03:06:57Z        7
## 4124   2006-03 19:37:30Z        7
## 4125   2006-03 17:16:16Z        7
## 4126   2006-03 17:17:02Z        7
## 4127   2006-03 16:17:52Z        7
## 4128   2006-03 16:25:05Z        7
## 4129   2006-03 06:35:58Z        7
## 4130   2006-03 12:23:56Z        7
## 4131   2006-03 01:42:42Z        7
## 4132   2006-03 13:04:16Z        7
## 4133   2006-03 13:07:21Z        7
## 4134   2006-03 01:56:37Z        7
## 4135   2006-03 01:20:36Z        7
## 4136   2006-03 01:20:49Z        7
## 4137   2006-03 19:55:09Z        7
## 4138   2006-03 00:28:00Z        7
## 4139   2006-03 00:28:15Z        7
## 4140   2006-03 00:29:48Z        7
## 4141   2006-03 00:38:38Z        7
## 4142   2006-03 04:07:19Z        7
## 4143   2006-04 05:49:15Z        7
## 4144   2006-04 05:55:04Z        7
## 4145   2006-04 05:56:44Z        7
## 4146   2006-04 21:01:14Z        7
## 4147   2006-04 14:28:41Z        7
## 4148   2006-04 14:34:04Z        7
## 4149   2006-04 03:02:08Z        7
## 4150   2006-04 03:02:37Z        7
## 4151   2006-04 18:49:59Z        7
## 4152   2006-04 18:52:28Z        7
## 4153   2006-04 18:57:34Z        7
## 4154   2006-04 05:37:24Z        7
## 4155   2006-04 17:30:54Z        7
## 4156   2006-04 14:50:15Z        7
## 4157   2006-04 20:00:03Z        7
## 4158   2006-04 20:00:58Z        7
## 4159   2006-04 21:18:15Z        7
## 4160   2006-04 03:53:37Z        7
## 4161   2006-04 19:18:48Z        7
## 4162   2006-04 01:31:13Z        7
## 4163   2006-05 02:28:12Z        7
## 4164   2006-05 17:36:39Z        7
## 4165   2006-05 17:48:13Z        7
## 4166   2006-05 00:16:18Z        7
## 4167   2006-05 22:24:09Z        7
## 4168   2006-05 04:04:07Z        7
## 4169   2006-05 14:23:10Z        7
## 4170   2006-05 14:23:51Z        7
## 4171   2006-05 00:31:29Z        7
## 4172   2006-05 00:33:54Z        7
## 4173   2006-05 00:34:17Z        7
## 4174   2006-05 13:56:52Z        7
## 4175   2006-05 13:09:18Z        7
## 4176   2006-05 13:12:24Z        7
## 4177   2006-05 23:43:17Z        7
## 4178   2006-05 01:30:30Z        7
## 4179   2006-05 17:10:52Z        7
## 4180   2006-05 21:15:36Z        7
## 4181   2006-05 14:54:13Z        7
## 4182   2006-05 14:55:50Z        7
## 4183   2006-05 14:56:30Z        7
## 4184   2006-05 17:59:28Z        7
## 4185   2006-05 20:47:06Z        7
## 4186   2006-05 16:23:43Z        7
## 4187   2006-05 16:35:40Z        7
## 4188   2006-05 16:36:56Z        7
## 4189   2006-05 14:38:02Z        7
## 4190   2006-05 17:43:47Z        7
## 4191   2006-05 17:44:14Z        7
## 4192   2006-05 14:50:57Z        7
## 4193   2006-05 14:51:59Z        7
## 4194   2006-05 17:15:25Z        7
## 4195   2006-05 16:23:30Z        7
## 4196   2006-06 10:19:18Z        7
## 4197   2006-06 01:54:44Z        7
## 4198   2006-06 07:10:17Z        7
## 4199   2006-06 16:42:57Z        7
## 4200   2006-06 16:48:38Z        7
## 4201   2006-06 17:14:21Z        7
## 4202   2006-06 17:14:46Z        7
## 4203   2006-06 17:16:25Z        7
## 4204   2006-06 22:59:29Z        7
## 4205   2006-06 15:40:48Z        7
## 4206   2006-06 16:03:47Z        7
## 4207   2006-06 16:36:40Z        7
## 4208   2006-06 19:56:43Z        7
## 4209   2006-06 14:45:58Z        7
## 4210   2006-06 14:49:44Z        7
## 4211   2006-06 15:02:51Z        7
## 4212   2006-06 15:04:46Z        7
## 4213   2006-06 15:10:41Z        7
## 4214   2006-06 15:19:31Z        7
## 4215   2006-06 22:07:34Z        7
## 4216   2006-06 13:59:49Z        7
## 4217   2006-06 15:14:27Z        7
## 4218   2006-06 19:32:21Z        7
## 4219   2006-06 21:06:50Z        7
## 4220   2006-06 21:09:48Z        7
## 4221   2006-06 21:11:33Z        7
## 4222   2006-06 02:39:23Z        7
## 4223   2006-06 02:41:54Z        7
## 4224   2006-06 02:42:32Z        7
## 4225   2006-06 02:45:28Z        7
## 4226   2006-06 19:59:06Z        7
## 4227   2006-06 18:03:55Z        7
## 4228   2006-06 19:08:31Z        7
## 4229   2006-06 19:17:01Z        7
## 4230   2006-06 19:24:37Z        7
## 4231   2006-06 23:31:37Z        7
## 4232   2006-06 23:33:21Z        7
## 4233   2006-06 19:14:10Z        7
## 4234   2006-07 00:12:42Z        7
## 4235   2006-07 18:59:14Z        7
## 4236   2006-07 17:11:07Z        7
## 4237   2006-07 17:14:21Z        7
## 4238   2006-07 03:34:14Z        7
## 4239   2006-07 01:58:05Z        7
## 4240   2006-07 02:29:15Z        7
## 4241   2006-07 17:42:21Z        7
## 4242   2006-07 22:59:37Z        7
## 4243   2006-07 19:00:03Z        7
## 4244   2006-07 08:06:45Z        7
## 4245   2006-07 08:07:53Z        7
## 4246   2006-07 17:15:32Z        7
## 4247   2006-07 04:07:31Z        7
## 4248   2006-07 01:24:54Z        7
## 4249   2006-07 14:39:27Z        7
## 4250   2006-07 23:07:17Z        7
## 4251   2006-07 01:03:22Z        7
## 4252   2006-07 07:47:10Z        7
## 4253   2006-07 06:54:02Z        7
## 4254   2006-07 15:44:13Z        7
## 4255   2006-07 19:21:02Z        7
## 4256   2006-07 19:24:44Z        7
## 4257   2006-07 23:56:51Z        7
## 4258   2006-07 08:52:29Z        7
## 4259   2006-07 09:01:25Z        7
## 4260   2006-07 15:24:05Z        7
## 4261   2006-07 06:54:26Z        7
## 4262   2006-07 19:14:36Z        7
## 4263   2006-07 19:17:29Z        7
## 4264   2006-08 01:06:16Z        7
## 4265   2006-08 01:07:51Z        7
## 4266   2006-08 01:08:28Z        7
## 4267   2006-08 21:48:20Z        7
## 4268   2006-08 21:52:45Z        7
## 4269   2006-08 21:57:26Z        7
## 4270   2006-08 19:25:50Z        7
## 4271   2006-08 05:59:28Z        7
## 4272   2006-08 06:02:02Z        7
## 4273   2006-08 06:10:22Z        7
## 4274   2006-08 06:11:22Z        7
## 4275   2006-08 06:12:21Z        7
## 4276   2006-08 16:53:36Z        7
## 4277   2006-08 17:05:03Z        7
## 4278   2006-08 19:34:24Z        7
## 4279   2006-08 20:27:52Z        7
## 4280   2006-08 20:29:07Z        7
## 4281   2006-08 21:18:08Z        7
## 4282   2006-08 01:39:07Z        7
## 4283   2006-08 04:30:43Z        7
## 4284   2006-08 04:31:16Z        7
## 4285   2006-08 04:31:55Z        7
## 4286   2006-08 04:47:09Z        7
## 4287   2006-08 14:27:06Z        7
## 4288   2006-08 22:58:12Z        7
## 4289   2006-08 05:07:51Z        7
## 4290   2006-08 05:08:42Z        7
## 4291   2006-08 05:10:33Z        7
## 4292   2006-08 17:26:53Z        7
## 4293   2006-08 17:27:59Z        7
## 4294   2006-08 17:28:22Z        7
## 4295   2006-08 12:02:40Z        7
## 4296   2006-08 22:25:50Z        7
## 4297   2006-08 01:04:39Z        7
## 4298   2006-08 22:34:29Z        7
## 4299   2006-08 22:34:51Z        7
## 4300   2006-08 06:40:05Z        7
## 4301   2006-08 14:41:27Z        7
## 4302   2006-09 03:58:07Z        7
## 4303   2006-09 18:16:06Z        7
## 4304   2006-09 18:17:35Z        7
## 4305   2006-09 18:24:51Z        7
## 4306   2006-09 18:27:08Z        7
## 4307   2006-09 18:28:28Z        7
## 4308   2006-09 18:30:27Z        7
## 4309   2006-09 19:36:13Z        7
## 4310   2006-09 19:36:44Z        7
## 4311   2006-09 19:46:58Z        7
## 4312   2006-09 19:47:41Z        7
## 4313   2006-09 19:52:24Z        7
## 4314   2006-09 19:52:48Z        7
## 4315   2006-09 14:00:42Z        7
## 4316   2006-09 16:18:02Z        7
## 4317   2006-09 02:25:38Z        7
## 4318   2006-09 02:27:03Z        7
## 4319   2006-09 15:44:59Z        7
## 4320   2006-09 12:04:05Z        7
## 4321   2006-09 12:08:31Z        7
## 4322   2006-09 02:26:14Z        7
## 4323   2006-09 04:58:33Z        7
## 4324   2006-09 19:03:38Z        7
## 4325   2006-09 21:34:57Z        7
## 4326   2006-09 21:35:58Z        7
## 4327   2006-09 21:36:43Z        7
## 4328   2006-09 13:57:42Z        7
## 4329   2006-09 23:50:28Z        7
## 4330   2006-09 19:03:42Z        7
## 4331   2006-09 01:02:59Z        7
## 4332   2006-09 01:06:05Z        7
## 4333   2006-09 01:07:02Z        7
## 4334   2006-09 14:17:53Z        7
## 4335   2006-09 14:19:40Z        7
## 4336   2006-09 15:06:29Z        7
## 4337   2006-10 19:59:31Z        7
## 4338   2006-10 18:51:24Z        7
## 4339   2006-10 01:19:03Z        7
## 4340   2006-10 13:39:47Z        7
## 4341   2006-10 20:51:58Z        7
## 4342   2006-10 23:35:33Z        7
## 4343   2006-10 23:43:13Z        7
## 4344   2006-10 23:56:16Z        7
## 4345   2006-10 23:57:57Z        7
## 4346   2006-10 00:02:22Z        7
## 4347   2006-10 00:10:23Z        7
## 4348   2006-10 02:19:23Z        7
## 4349   2006-10 17:03:00Z        7
## 4350   2006-10 17:09:31Z        7
## 4351   2006-10 15:22:12Z        7
## 4352   2006-10 15:31:33Z        7
## 4353   2006-10 17:16:56Z        7
## 4354   2006-10 05:27:38Z        7
## 4355   2006-10 15:53:49Z        7
## 4356   2006-10 16:16:24Z        7
## 4357   2006-10 17:27:00Z        7
## 4358   2006-10 17:28:07Z        7
## 4359   2006-10 19:56:35Z        7
## 4360   2006-10 20:41:02Z        7
## 4361   2006-10 16:04:20Z        7
## 4362   2006-10 06:03:25Z        7
## 4363   2006-10 20:24:50Z        7
## 4364   2006-10 21:34:52Z        7
## 4365   2006-10 21:40:43Z        7
## 4366   2006-10 13:50:36Z        7
## 4367   2006-10 13:52:04Z        7
## 4368   2006-10 14:12:56Z        7
## 4369   2006-10 14:30:16Z        7
## 4370   2006-10 14:25:12Z        7
## 4371   2006-10 03:25:21Z        7
## 4372   2006-10 17:12:53Z        7
## 4373   2006-10 01:10:17Z        7
## 4374   2006-10 01:22:11Z        7
## 4375   2006-10 03:57:26Z        7
## 4376   2006-10 03:59:24Z        7
## 4377   2006-10 04:00:56Z        7
## 4378   2006-10 04:02:33Z        7
## 4379   2006-10 04:03:04Z        7
## 4380   2006-10 04:05:56Z        7
## 4381   2006-10 04:22:52Z        7
## 4382   2006-10 04:35:58Z        7
## 4383   2006-11 15:20:21Z        7
## 4384   2006-11 19:46:55Z        7
## 4385   2006-11 19:47:18Z        7
## 4386   2006-11 02:39:21Z        7
## 4387   2006-11 13:59:56Z        7
## 4388   2006-11 14:02:11Z        7
## 4389   2006-11 16:46:03Z        7
## 4390   2006-11 19:00:06Z        7
## 4391   2006-11 19:13:17Z        7
## 4392   2006-11 00:17:39Z        7
## 4393   2006-11 00:28:38Z        7
## 4394   2006-11 04:59:01Z        7
## 4395   2006-11 16:11:01Z        7
## 4396   2006-11 16:11:45Z        7
## 4397   2006-11 16:13:09Z        7
## 4398   2006-11 16:17:04Z        7
## 4399   2006-11 23:07:55Z        7
## 4400   2006-11 23:09:08Z        7
## 4401   2006-11 23:13:13Z        7
## 4402   2006-11 23:13:55Z        7
## 4403   2006-11 23:14:45Z        7
## 4404   2006-11 23:20:23Z        7
## 4405   2006-11 23:46:29Z        7
## 4406   2006-11 23:47:05Z        7
## 4407   2006-11 23:48:04Z        7
## 4408   2006-11 23:48:17Z        7
## 4409   2006-11 23:48:40Z        7
## 4410   2006-11 23:49:10Z        7
## 4411   2006-11 23:49:23Z        7
## 4412   2006-11 23:49:42Z        7
## 4413   2006-11 23:49:57Z        7
## 4414   2006-11 23:50:10Z        7
## 4415   2006-11 04:02:41Z        7
## 4416   2006-11 15:09:09Z        7
## 4417   2006-11 17:37:34Z        7
## 4418   2006-11 22:02:46Z        7
## 4419   2006-11 01:15:17Z        7
## 4420   2006-11 01:16:32Z        7
## 4421   2006-11 03:07:15Z        7
## 4422   2006-11 04:23:03Z        7
## 4423   2006-11 04:24:48Z        7
## 4424   2006-11 04:26:26Z        7
## 4425   2006-11 04:36:56Z        7
## 4426   2006-11 04:37:31Z        7
## 4427   2006-11 18:37:23Z        7
## 4428   2006-11 18:51:23Z        7
## 4429   2006-11 21:30:17Z        7
## 4430   2006-11 16:40:22Z        7
## 4431   2006-11 16:55:14Z        7
## 4432   2006-11 04:48:45Z        7
## 4433   2006-11 07:26:00Z        7
## 4434   2006-11 16:28:42Z        7
## 4435   2006-11 16:44:11Z        7
## 4436   2006-11 05:47:17Z        7
## 4437   2006-11 05:40:08Z        7
## 4438   2006-11 05:43:28Z        7
## 4439   2006-11 16:44:35Z        7
## 4440   2006-11 16:46:51Z        7
## 4441   2006-11 16:53:41Z        7
## 4442   2006-11 17:58:43Z        7
## 4443   2006-11 10:47:44Z        7
## 4444   2006-11 14:56:36Z        7
## 4445   2006-11 15:03:19Z        7
## 4446   2006-11 18:15:42Z        7
## 4447   2006-11 05:43:31Z        7
## 4448   2006-11 05:44:07Z        7
## 4449   2006-12 08:06:43Z        7
## 4450   2006-12 15:27:06Z        7
## 4451   2006-12 16:19:20Z        7
## 4452   2006-12 21:48:48Z        7
## 4453   2006-12 16:38:14Z        7
## 4454   2006-12 02:05:30Z        7
## 4455   2006-12 02:43:11Z        7
## 4456   2006-12 03:58:59Z        7
## 4457   2006-12 05:26:20Z        7
## 4458   2006-12 05:46:55Z        7
## 4459   2006-12 15:10:53Z        7
## 4460   2006-12 15:13:08Z        7
## 4461   2006-12 15:15:37Z        7
## 4462   2006-12 15:17:26Z        7
## 4463   2006-12 15:19:58Z        7
## 4464   2006-12 23:26:56Z        7
## 4465   2006-12 03:45:07Z        7
## 4466   2006-12 04:26:45Z        7
## 4467   2006-12 09:42:36Z        7
## 4468   2006-12 09:44:11Z        7
## 4469   2006-12 11:21:44Z        7
## 4470   2006-12 11:40:41Z        7
## 4471   2006-12 11:42:15Z        7
## 4472   2006-12 11:46:35Z        7
## 4473   2006-12 11:52:05Z        7
## 4474   2006-12 12:00:14Z        7
## 4475   2006-12 19:14:45Z        7
## 4476   2006-12 16:43:02Z        7
## 4477   2006-12 16:43:50Z        7
## 4478   2006-12 16:56:39Z        7
## 4479   2006-12 17:04:39Z        7
## 4480   2006-12 18:51:08Z        7
## 4481   2006-12 20:26:09Z        7
## 4482   2006-12 22:31:50Z        7
## 4483   2006-12 01:40:54Z        7
## 4484   2006-12 01:41:05Z        7
## 4485   2006-12 01:43:43Z        7
## 4486   2007-01 22:15:52Z        7
## 4487   2007-01 22:54:28Z        7
## 4488   2007-01 21:05:22Z        7
## 4489   2007-01 21:06:14Z        7
## 4490   2007-01 20:45:09Z        7
## 4491   2007-01 20:45:42Z        7
## 4492   2007-01 21:14:26Z        7
## 4493   2007-01 15:30:46Z        7
## 4494   2007-01 18:51:48Z        7
## 4495   2007-01 18:58:06Z        7
## 4496   2007-01 15:57:33Z        7
## 4497   2007-01 19:32:16Z        7
## 4498   2007-01 19:32:51Z        7
## 4499   2007-01 19:57:42Z        7
## 4500   2007-01 01:23:48Z        7
## 4501   2007-01 01:50:12Z        7
## 4502   2007-01 17:12:24Z        7
## 4503   2007-01 17:13:58Z        7
## 4504   2007-01 17:39:19Z        7
## 4505   2007-01 18:34:05Z        7
## 4506   2007-01 02:05:01Z        7
## 4507   2007-01 02:06:33Z        7
## 4508   2007-01 02:09:21Z        7
## 4509   2007-01 02:14:34Z        7
## 4510   2007-01 17:42:47Z        7
## 4511   2007-01 18:33:48Z        7
## 4512   2007-01 08:43:04Z        7
## 4513   2007-01 00:17:26Z        7
## 4514   2007-01 00:21:08Z        7
## 4515   2007-01 00:26:24Z        7
## 4516   2007-01 16:26:34Z        7
## 4517   2007-01 16:29:25Z        7
## 4518   2007-01 16:30:28Z        7
## 4519   2007-01 16:30:51Z        7
## 4520   2007-01 16:31:14Z        7
## 4521   2007-01 18:51:44Z        7
## 4522   2007-01 19:01:42Z        7
## 4523   2007-01 21:11:37Z        7
## 4524   2007-01 04:39:01Z        7
## 4525   2007-01 06:29:36Z        7
## 4526   2007-01 19:21:53Z        7
## 4527   2007-01 19:49:21Z        7
## 4528   2007-01 20:04:06Z        7
## 4529   2007-01 20:26:39Z        7
## 4530   2007-01 20:40:15Z        7
## 4531   2007-01 20:53:21Z        7
## 4532   2007-01 22:26:08Z        7
## 4533   2007-01 22:26:55Z        7
## 4534   2007-01 22:55:25Z        7
## 4535   2007-01 22:58:16Z        7
## 4536   2007-01 23:07:32Z        7
## 4537   2007-01 01:39:50Z        7
## 4538   2007-01 03:36:30Z        7
## 4539   2007-01 04:47:48Z        7
## 4540   2007-01 05:00:11Z        7
## 4541   2007-01 05:23:45Z        7
## 4542   2007-01 21:04:26Z        7
## 4543   2007-01 22:40:39Z        7
## 4544   2007-02 01:24:20Z        7
## 4545   2007-02 22:07:59Z        7
## 4546   2007-02 22:33:04Z        7
## 4547   2007-02 01:49:00Z        7
## 4548   2007-02 01:50:43Z        7
## 4549   2007-02 22:23:37Z        7
## 4550   2007-02 02:20:17Z        7
## 4551   2007-02 23:45:31Z        7
## 4552   2007-02 23:47:16Z        7
## 4553   2007-02 23:47:46Z        7
## 4554   2007-02 17:38:43Z        7
## 4555   2007-02 20:49:55Z        7
## 4556   2007-02 21:03:29Z        7
## 4557   2007-02 02:38:10Z        7
## 4558   2007-02 19:52:21Z        7
## 4559   2007-02 04:12:29Z        7
## 4560   2007-02 18:36:51Z        7
## 4561   2007-02 18:37:31Z        7
## 4562   2007-02 18:43:34Z        7
## 4563   2007-02 01:53:34Z        7
## 4564   2007-02 15:52:31Z        7
## 4565   2007-03 23:03:14Z        7
## 4566   2007-03 23:24:39Z        7
## 4567   2007-03 23:45:32Z        7
## 4568   2007-03 00:29:26Z        7
## 4569   2007-03 01:06:29Z        7
## 4570   2007-03 00:41:20Z        7
## 4571   2007-03 03:04:41Z        7
## 4572   2007-03 16:51:13Z        7
## 4573   2007-03 18:57:06Z        7
## 4574   2007-03 19:09:39Z        7
## 4575   2007-03 19:54:53Z        7
## 4576   2007-03 14:50:29Z        7
## 4577   2007-03 14:51:12Z        7
## 4578   2007-03 14:52:27Z        7
## 4579   2007-03 14:53:32Z        7
## 4580   2007-03 14:55:32Z        7
## 4581   2007-03 14:58:56Z        7
## 4582   2007-03 15:02:19Z        7
## 4583   2007-03 14:07:37Z        7
## 4584   2007-03 14:55:01Z        7
## 4585   2007-03 01:36:02Z        7
## 4586   2007-03 01:37:12Z        7
## 4587   2007-03 03:49:12Z        7
## 4588   2007-03 20:35:13Z        7
## 4589   2007-03 13:53:22Z        7
## 4590   2007-03 13:20:31Z        7
## 4591   2007-03 19:00:24Z        7
## 4592   2007-03 19:00:31Z        7
## 4593   2007-03 19:02:00Z        7
## 4594   2007-03 19:06:31Z        7
## 4595   2007-03 19:14:09Z        7
## 4596   2007-03 10:03:46Z        7
## 4597   2007-03 13:49:37Z        7
## 4598   2007-03 13:50:08Z        7
## 4599   2007-03 13:50:45Z        7
## 4600   2007-03 13:56:48Z        7
## 4601   2007-03 14:02:04Z        7
## 4602   2007-03 14:02:31Z        7
## 4603   2007-03 14:03:22Z        7
## 4604   2007-03 14:16:08Z        7
## 4605   2007-03 14:16:43Z        7
## 4606   2007-03 14:17:16Z        7
## 4607   2007-03 21:35:25Z        7
## 4608   2007-03 03:22:12Z        7
## 4609   2007-03 03:28:33Z        7
## 4610   2007-03 03:50:50Z        7
## 4611   2007-03 03:56:47Z        7
## 4612   2007-03 06:38:03Z        7
## 4613   2007-03 06:41:14Z        7
## 4614   2007-03 07:21:18Z        7
## 4615   2007-03 07:25:48Z        7
## 4616   2007-03 07:29:40Z        7
## 4617   2007-03 07:39:07Z        7
## 4618   2007-03 12:53:47Z        7
## 4619   2007-03 15:57:47Z        7
## 4620   2007-03 15:58:48Z        7
## 4621   2007-03 16:02:45Z        7
## 4622   2007-03 00:46:49Z        7
## 4623   2007-03 16:48:02Z        7
## 4624   2007-03 16:48:22Z        7
## 4625   2007-03 16:48:58Z        7
## 4626   2007-03 02:39:25Z        7
## 4627   2007-03 18:12:16Z        7
## 4628   2007-03 18:17:16Z        7
## 4629   2007-03 18:23:34Z        7
## 4630   2007-03 18:28:17Z        7
## 4631   2007-04 01:03:55Z        7
## 4632   2007-04 01:07:27Z        7
## 4633   2007-04 01:21:41Z        7
## 4634   2007-04 11:53:41Z        7
## 4635   2007-04 15:12:06Z        7
## 4636   2007-04 20:32:58Z        7
## 4637   2007-04 21:24:46Z        7
## 4638   2007-04 17:33:33Z        7
## 4639   2007-04 17:36:47Z        7
## 4640   2007-04 17:45:14Z        7
## 4641   2007-04 17:47:52Z        7
## 4642   2007-04 20:51:29Z        7
## 4643   2007-04 00:19:08Z        7
## 4644   2007-04 01:07:47Z        7
## 4645   2007-04 16:32:47Z        7
## 4646   2007-04 16:47:18Z        7
## 4647   2007-04 17:01:30Z        7
## 4648   2007-04 17:01:52Z        7
## 4649   2007-04 03:38:37Z        7
## 4650   2007-04 21:23:28Z        7
## 4651   2007-04 15:21:08Z        7
## 4652   2007-04 15:27:07Z        7
## 4653   2007-04 15:32:58Z        7
## 4654   2007-04 15:41:36Z        7
## 4655   2007-04 15:47:37Z        7
## 4656   2007-04 16:22:52Z        7
## 4657   2007-04 21:40:28Z        7
## 4658   2007-04 04:12:04Z        7
## 4659   2007-04 00:14:42Z        7
## 4660   2007-04 00:15:25Z        7
## 4661   2007-04 15:51:47Z        7
## 4662   2007-04 19:05:01Z        7
## 4663   2007-04 22:51:52Z        7
## 4664   2007-04 20:17:39Z        7
## 4665   2007-04 20:18:01Z        7
## 4666   2007-04 20:18:28Z        7
## 4667   2007-04 18:27:03Z        7
## 4668   2007-04 18:34:54Z        7
## 4669   2007-04 18:38:27Z        7
## 4670   2007-04 01:20:32Z        7
## 4671   2007-04 16:05:49Z        7
## 4672   2007-04 18:20:31Z        7
## 4673   2007-04 19:34:24Z        7
## 4674   2007-04 20:17:11Z        7
## 4675   2007-04 20:17:35Z        7
## 4676   2007-04 02:10:56Z        7
## 4677   2007-04 01:13:30Z        7
## 4678   2007-04 01:22:54Z        7
## 4679   2007-04 06:31:57Z        7
## 4680   2007-04 08:55:24Z        7
## 4681   2007-04 13:01:13Z        7
## 4682   2007-04 18:58:25Z        7
## 4683   2007-04 18:59:53Z        7
## 4684   2007-04 19:14:33Z        7
## 4685   2007-04 19:58:46Z        7
## 4686   2007-05 00:00:08Z        7
## 4687   2007-05 04:04:21Z        7
## 4688   2007-05 04:26:36Z        7
## 4689   2007-05 13:06:36Z        7
## 4690   2007-05 13:12:14Z        7
## 4691   2007-05 13:17:38Z        7
## 4692   2007-05 15:45:28Z        7
## 4693   2007-05 16:05:36Z        7
## 4694   2007-05 13:10:35Z        7
## 4695   2007-05 14:34:26Z        7
## 4696   2007-05 19:37:52Z        7
## 4697   2007-05 01:08:00Z        7
## 4698   2007-05 01:10:16Z        7
## 4699   2007-05 01:10:35Z        7
## 4700   2007-05 01:12:50Z        7
## 4701   2007-05 17:14:14Z        7
## 4702   2007-05 17:15:35Z        7
## 4703   2007-05 14:27:09Z        7
## 4704   2007-05 02:01:41Z        7
## 4705   2007-05 02:36:12Z        7
## 4706   2007-05 14:13:34Z        7
## 4707   2007-05 22:40:40Z        7
## 4708   2007-05 01:39:50Z        7
## 4709   2007-05 01:42:03Z        7
## 4710   2007-05 19:44:42Z        7
## 4711   2007-05 19:45:26Z        7
## 4712   2007-05 19:46:01Z        7
## 4713   2007-05 19:55:34Z        7
## 4714   2007-05 22:14:01Z        7
## 4715   2007-05 00:45:26Z        7
## 4716   2007-05 06:50:27Z        7
## 4717   2007-05 07:20:04Z        7
## 4718   2007-05 11:53:16Z        7
## 4719   2007-05 11:58:33Z        7
## 4720   2007-05 17:55:28Z        7
## 4721   2007-05 18:42:38Z        7
## 4722   2007-06 22:09:52Z        7
## 4723   2007-06 05:38:34Z        7
## 4724   2007-06 14:03:06Z        7
## 4725   2007-06 14:05:06Z        7
## 4726   2007-06 17:51:15Z        7
## 4727   2007-06 05:38:29Z        7
## 4728   2007-06 23:29:47Z        7
## 4729   2007-06 13:11:19Z        7
## 4730   2007-06 16:40:40Z        7
## 4731   2007-06 23:02:36Z        7
## 4732   2007-06 05:24:23Z        7
## 4733   2007-06 07:24:48Z        7
## 4734   2007-06 12:15:49Z        7
## 4735   2007-06 12:19:50Z        7
## 4736   2007-06 15:29:02Z        7
## 4737   2007-06 03:55:49Z        7
## 4738   2007-06 04:26:47Z        7
## 4739   2007-06 14:07:12Z        7
## 4740   2007-06 14:08:42Z        7
## 4741   2007-06 16:46:21Z        7
## 4742   2007-06 11:20:28Z        7
## 4743   2007-06 20:15:18Z        7
## 4744   2007-06 23:39:31Z        7
## 4745   2007-06 00:28:06Z        7
## 4746   2007-06 01:02:30Z        7
## 4747   2007-06 15:11:12Z        7
## 4748   2007-06 19:27:47Z        7
## 4749   2007-06 20:18:14Z        7
## 4750   2007-06 20:20:13Z        7
## 4751   2007-07 03:49:44Z        7
## 4752   2007-07 04:29:52Z        7
## 4753   2007-07 13:19:53Z        7
## 4754   2007-07 14:43:29Z        7
## 4755   2007-07 05:47:17Z        7
## 4756   2007-07 06:09:26Z        7
## 4757   2007-07 21:47:03Z        7
## 4758   2007-07 04:50:14Z        7
## 4759   2007-07 16:20:04Z        7
## 4760   2007-07 20:50:14Z        7
## 4761   2007-07 02:31:09Z        7
## 4762   2007-07 17:15:42Z        7
## 4763   2007-07 17:16:37Z        7
## 4764   2007-07 17:27:57Z        7
## 4765   2007-07 23:50:52Z        7
## 4766   2007-07 23:52:11Z        7
## 4767   2007-07 06:34:46Z        7
## 4768   2007-08 22:37:31Z        7
## 4769   2007-08 09:09:45Z        7
## 4770   2007-08 22:32:03Z        7
## 4771   2007-08 06:16:32Z        7
## 4772   2007-08 20:35:27Z        7
## 4773   2007-08 17:36:57Z        7
## 4774   2007-08 17:42:11Z        7
## 4775   2007-08 16:47:21Z        7
## 4776   2007-08 05:18:20Z        7
## 4777   2007-08 05:27:00Z        7
## 4778   2007-08 19:57:17Z        7
## 4779   2007-08 20:06:38Z        7
## 4780   2007-08 05:17:30Z        7
## 4781   2007-08 05:19:22Z        7
## 4782   2007-08 05:22:14Z        7
## 4783   2007-08 05:25:58Z        7
## 4784   2007-08 04:35:01Z        7
## 4785   2007-08 04:40:31Z        7
## 4786   2007-08 06:53:07Z        7
## 4787   2007-08 13:09:32Z        7
## 4788   2007-08 14:56:58Z        7
## 4789   2007-08 03:17:30Z        7
## 4790   2007-08 14:42:31Z        7
## 4791   2007-08 14:43:00Z        7
## 4792   2007-09 20:02:43Z        7
## 4793   2007-09 01:52:01Z        7
## 4794   2007-09 01:57:35Z        7
## 4795   2007-09 18:33:40Z        7
## 4796   2007-09 18:40:33Z        7
## 4797   2007-09 18:41:01Z        7
## 4798   2007-09 18:41:41Z        7
## 4799   2007-09 18:42:05Z        7
## 4800   2007-09 18:43:22Z        7
## 4801   2007-09 18:48:21Z        7
## 4802   2007-09 18:56:11Z        7
## 4803   2007-09 18:56:41Z        7
## 4804   2007-09 19:02:30Z        7
## 4805   2007-09 19:03:16Z        7
## 4806   2007-09 19:04:24Z        7
## 4807   2007-09 19:10:53Z        7
## 4808   2007-09 02:52:11Z        7
## 4809   2007-09 02:58:38Z        7
## 4810   2007-09 03:10:09Z        7
## 4811   2007-09 11:22:23Z        7
## 4812   2007-09 12:56:41Z        7
## 4813   2007-09 01:39:31Z        7
## 4814   2007-09 07:40:26Z        7
## 4815   2007-09 15:05:04Z        7
## 4816   2007-09 17:55:14Z        7
## 4817   2007-09 18:05:08Z        7
## 4818   2007-09 16:43:07Z        7
## 4819   2007-09 17:07:37Z        7
## 4820   2007-09 02:35:11Z        7
## 4821   2007-09 02:39:39Z        7
## 4822   2007-09 05:14:31Z        7
## 4823   2007-09 05:27:27Z        7
## 4824   2007-09 19:43:03Z        7
## 4825   2007-09 22:19:44Z        7
## 4826   2007-09 17:11:23Z        7
## 4827   2007-09 04:32:12Z        7
## 4828   2007-09 05:10:18Z        7
## 4829   2007-09 04:19:44Z        7
## 4830   2007-09 04:39:16Z        7
## 4831   2007-09 07:33:22Z        7
## 4832   2007-09 21:43:31Z        7
## 4833   2007-09 10:48:44Z        7
## 4834   2007-09 11:33:42Z        7
## 4835   2007-09 14:41:54Z        7
## 4836   2007-09 16:21:38Z        7
## 4837   2007-09 02:55:34Z        7
## 4838   2007-10 02:29:54Z        7
## 4839   2007-10 02:33:02Z        7
## 4840   2007-10 02:37:30Z        7
## 4841   2007-10 02:49:57Z        7
## 4842   2007-10 02:54:30Z        7
## 4843   2007-10 02:59:46Z        7
## 4844   2007-10 03:02:12Z        7
## 4845   2007-10 03:03:55Z        7
## 4846   2007-10 08:02:51Z        7
## 4847   2007-10 08:08:37Z        7
## 4848   2007-10 16:50:56Z        7
## 4849   2007-10 16:57:27Z        7
## 4850   2007-10 17:01:26Z        7
## 4851   2007-10 17:02:46Z        7
## 4852   2007-10 02:34:28Z        7
## 4853   2007-10 04:07:22Z        7
## 4854   2007-10 10:59:43Z        7
## 4855   2007-10 14:14:05Z        7
## 4856   2007-10 17:32:19Z        7
## 4857   2007-10 02:29:44Z        7
## 4858   2007-10 03:04:42Z        7
## 4859   2007-10 12:44:37Z        7
## 4860   2007-10 19:38:21Z        7
## 4861   2007-10 13:17:44Z        7
## 4862   2007-10 13:26:27Z        7
## 4863   2007-10 05:20:35Z        7
## 4864   2007-10 05:21:22Z        7
## 4865   2007-10 20:24:13Z        7
## 4866   2007-10 20:24:44Z        7
## 4867   2007-10 14:36:17Z        7
## 4868   2007-10 15:50:02Z        7
## 4869   2007-10 11:58:48Z        7
## 4870   2007-10 16:08:47Z        7
## 4871   2007-10 19:13:34Z        7
## 4872   2007-10 19:49:58Z        7
## 4873   2007-10 19:55:24Z        7
## 4874   2007-10 20:57:21Z        7
## 4875   2007-10 05:25:05Z        7
## 4876   2007-10 05:52:43Z        7
## 4877   2007-10 06:19:21Z        7
## 4878   2007-10 13:55:14Z        7
## 4879   2007-10 03:17:39Z        7
## 4880   2007-11 02:49:03Z        7
## 4881   2007-11 02:58:56Z        7
## 4882   2007-11 14:27:37Z        7
## 4883   2007-11 14:28:54Z        7
## 4884   2007-11 16:44:29Z        7
## 4885   2007-11 14:52:55Z        7
## 4886   2007-11 14:55:46Z        7
## 4887   2007-11 16:54:11Z        7
## 4888   2007-11 03:12:40Z        7
## 4889   2007-11 03:14:31Z        7
## 4890   2007-11 03:18:01Z        7
## 4891   2007-11 03:20:50Z        7
## 4892   2007-11 03:21:38Z        7
## 4893   2007-11 03:22:43Z        7
## 4894   2007-11 03:25:01Z        7
## 4895   2007-11 03:27:32Z        7
## 4896   2007-11 18:44:21Z        7
## 4897   2007-11 19:06:37Z        7
## 4898   2007-11 01:56:34Z        7
## 4899   2007-11 22:29:30Z        7
## 4900   2007-11 18:48:25Z        7
## 4901   2007-11 18:49:19Z        7
## 4902   2007-11 20:44:18Z        7
## 4903   2007-11 20:45:02Z        7
## 4904   2007-11 17:16:55Z        7
## 4905   2007-11 17:26:58Z        7
## 4906   2007-11 17:31:05Z        7
## 4907   2007-11 12:21:55Z        7
## 4908   2007-11 00:01:58Z        7
## 4909   2007-11 00:06:44Z        7
## 4910   2007-11 00:10:02Z        7
## 4911   2007-11 00:12:38Z        7
## 4912   2007-11 00:49:47Z        7
## 4913   2007-11 01:04:28Z        7
## 4914   2007-11 16:17:46Z        7
## 4915   2007-11 17:33:16Z        7
## 4916   2007-11 17:35:14Z        7
## 4917   2007-11 17:51:43Z        7
## 4918   2007-11 11:22:34Z        7
## 4919   2007-11 17:04:12Z        7
## 4920   2007-11 15:51:47Z        7
## 4921   2007-11 15:53:02Z        7
## 4922   2007-11 16:53:21Z        7
## 4923   2007-11 20:28:21Z        7
## 4924   2007-11 02:22:15Z        7
## 4925   2007-11 02:28:57Z        7
## 4926   2007-11 02:37:47Z        7
## 4927   2007-11 13:00:46Z        7
## 4928   2007-11 17:31:10Z        7
## 4929   2007-11 15:54:49Z        7
## 4930   2007-11 17:57:49Z        7
## 4931   2007-11 11:51:11Z        7
## 4932   2007-11 12:00:06Z        7
## 4933   2007-11 13:29:18Z        7
## 4934   2007-12 07:26:56Z        7
## 4935   2007-12 16:49:27Z        7
## 4936   2007-12 17:00:40Z        7
## 4937   2007-12 00:23:44Z        7
## 4938   2007-12 05:00:23Z        7
## 4939   2007-12 05:02:46Z        7
## 4940   2007-12 05:03:16Z        7
## 4941   2007-12 05:06:11Z        7
## 4942   2007-12 04:24:25Z        7
## 4943   2007-12 04:39:23Z        7
## 4944   2007-12 15:44:01Z        7
## 4945   2007-12 03:04:40Z        7
## 4946   2007-12 03:05:41Z        7
## 4947   2007-12 07:32:56Z        7
## 4948   2007-12 02:41:29Z        7
## 4949   2007-12 01:29:50Z        7
## 4950   2007-12 15:23:03Z        7
## 4951   2007-12 15:43:00Z        7
## 4952   2007-12 15:43:22Z        7
## 4953   2007-12 15:45:40Z        7
## 4954   2007-12 15:46:06Z        7
## 4955   2007-12 15:46:44Z        7
## 4956   2007-12 00:40:42Z        7
## 4957   2007-12 18:22:00Z        7
## 4958   2007-12 22:42:32Z        7
## 4959   2007-12 22:50:56Z        7
## 4960   2007-12 22:52:14Z        7
## 4961   2008-01 12:41:35Z        7
## 4962   2002-10 16:32:30Z        8
## 4963   2002-10 17:07:04Z        8
## 4964   2002-10 17:29:26Z        8
## 4965   2003-06 09:51:59Z        8
## 4966   2003-10 18:00:24Z        8
## 4967   2004-11 19:36:59Z        8
## 4968   2004-12 00:31:26Z        8
## 4969   2005-01 12:33:52Z        8
## 4970   2005-02 06:49:43Z        8
## 4971   2005-03 17:34:05Z        8
## 4972   2005-03 17:34:37Z        8
## 4973   2005-04 09:02:44Z        8
## 4974   2005-06 01:38:29Z        8
## 4975   2005-07 19:18:42Z        8
## 4976   2005-07 12:16:14Z        8
## 4977   2005-09 01:44:12Z        8
## 4978   2005-10 10:30:55Z        8
## 4979   2005-10 22:35:00Z        8
## 4980   2005-11 06:13:03Z        8
## 4981   2005-11 09:15:39Z        8
## 4982   2005-12 12:17:45Z        8
## 4983   2005-12 12:18:43Z        8
## 4984   2005-12 12:18:57Z        8
## 4985   2005-12 12:20:44Z        8
## 4986   2005-12 12:21:19Z        8
## 4987   2005-12 12:24:41Z        8
## 4988   2006-01 14:42:17Z        8
## 4989   2006-04 18:53:15Z        8
## 4990   2006-06 22:19:26Z        8
## 4991   2006-06 19:04:37Z        8
## 4992   2006-07 22:56:41Z        8
## 4993   2006-08 08:40:33Z        8
## 4994   2006-08 09:29:49Z        8
## 4995   2006-08 13:43:09Z        8
## 4996   2006-10 13:42:04Z        8
## 4997   2006-10 19:34:22Z        8
## 4998   2006-12 11:12:17Z        8
## 4999   2007-03 15:25:15Z        8
## 5000   2007-03 15:27:47Z        8
## 5001   2007-03 15:40:07Z        8
## 5002   2007-03 15:40:55Z        8
## 5003   2007-03 15:44:09Z        8
## 5004   2007-03 15:44:56Z        8
## 5005   2007-03 15:55:40Z        8
## 5006   2007-04 11:51:00Z        8
## 5007   2007-05 16:56:53Z        8
## 5008   2007-05 21:27:21Z        8
## 5009   2007-07 20:07:12Z        8
## 5010   2007-07 20:12:14Z        8
## 5011   2007-07 20:16:16Z        8
## 5012   2007-07 11:40:54Z        8
## 5013   2007-07 11:23:09Z        8
## 5014   2007-07 15:41:54Z        8
## 5015   2007-08 11:53:37Z        8
## 5016   2007-08 21:21:43Z        8
## 5017   2007-10 12:10:40Z        8
## 5018   2007-10 15:12:03Z        8
## 5019   2007-10 17:05:02Z        8
## 5020   2007-11 20:43:08Z        8
## 5021   2007-11 22:02:03Z        8
## 5022   2007-11 15:42:54Z        8
## 5023   2007-12 19:50:13Z        8
## 5024   2007-12 19:52:48Z        8
## 5025   2007-12 19:53:44Z        8
## 5026   2002-10 23:35:04Z        9
## 5027   2004-06 19:21:40Z        9
## 5028   2004-07 17:56:24Z        9
## 5029   2004-10 19:55:56Z        9
## 5030   2004-11 13:34:52Z        9
## 5031   2004-12 06:45:04Z        9
## 5032   2004-12 00:11:24Z        9
## 5033   2004-12 15:53:27Z        9
## 5034   2005-10 20:12:11Z        9
## 5035   2006-01 01:30:01Z        9
## 5036   2006-01 02:49:45Z        9
## 5037   2006-01 03:12:25Z        9
## 5038   2006-01 03:13:43Z        9
## 5039   2006-01 03:15:03Z        9
## 5040   2006-01 02:06:48Z        9
## 5041   2006-01 02:13:56Z        9
## 5042   2006-01 02:14:32Z        9
## 5043   2006-01 02:18:15Z        9
## 5044   2006-01 17:51:00Z        9
## 5045   2006-03 22:35:39Z        9
## 5046   2006-03 22:38:31Z        9
## 5047   2006-04 15:58:37Z        9
## 5048   2006-05 15:56:57Z        9
## 5049   2006-05 02:42:51Z        9
## 5050   2006-06 01:30:03Z        9
## 5051   2006-06 01:36:55Z        9
## 5052   2006-06 18:34:50Z        9
## 5053   2006-07 20:30:04Z        9
## 5054   2006-07 17:36:49Z        9
## 5055   2006-07 17:37:30Z        9
## 5056   2006-07 17:38:44Z        9
## 5057   2006-07 06:59:14Z        9
## 5058   2006-08 11:55:25Z        9
## 5059   2006-08 20:34:01Z        9
## 5060   2006-08 20:42:24Z        9
## 5061   2006-08 14:18:25Z        9
## 5062   2006-10 11:10:05Z        9
## 5063   2006-10 11:23:10Z        9
## 5064   2006-12 18:18:41Z        9
## 5065   2006-12 19:39:25Z        9
## 5066   2006-12 19:45:59Z        9
## 5067   2006-12 04:49:19Z        9
## 5068   2006-12 13:26:16Z        9
## 5069   2006-12 13:29:15Z        9
## 5070   2007-01 01:16:14Z        9
## 5071   2007-01 19:18:43Z        9
## 5072   2007-01 19:56:42Z        9
## 5073   2007-02 01:49:15Z        9
## 5074   2007-03 23:25:34Z        9
## 5075   2007-06 20:45:02Z        9
## 5076   2007-06 21:01:11Z        9
## 5077   2007-06 21:03:25Z        9
## 5078   2007-06 21:05:32Z        9
## 5079   2007-06 06:27:48Z        9
## 5080   2007-08 05:46:29Z        9
## 5081   2007-08 17:07:35Z        9
## 5082   2007-08 15:04:19Z        9
## 5083   2007-08 13:49:37Z        9
## 5084   2007-09 12:39:56Z        9
## 5085   2007-09 13:01:29Z        9
## 5086   2007-11 01:18:41Z        9
## 5087   2007-11 01:20:22Z        9
## 5088   2007-11 02:32:02Z        9
## 5089   2002-02 15:08:29Z        3
## 5090   2002-02 15:51:15Z        3
## 5091   2002-10 13:17:20Z        3
## 5092   2003-11 06:31:19Z        3
## 5093   2004-07 20:42:16Z        3
## 5094   2004-11 13:02:17Z        3
## 5095   2005-01 10:52:05Z        3
## 5096   2005-02 18:17:53Z        3
## 5097   2005-05 13:21:34Z        3
## 5098   2005-05 22:04:17Z        3
## 5099   2005-08 08:52:27Z        3
## 5100   2005-08 08:57:14Z        3
## 5101   2005-09 13:37:47Z        3
## 5102   2005-10 12:56:49Z        3
## 5103   2005-11 06:25:27Z        3
## 5104   2005-11 08:07:13Z        3
## 5105   2005-11 08:17:15Z        3
## 5106   2005-11 22:41:41Z        3
## 5107   2005-12 21:52:50Z        3
## 5108   2005-12 21:55:47Z        3
## 5109   2005-12 21:57:36Z        3
## 5110   2005-12 22:00:31Z        3
## 5111   2005-12 01:59:51Z        3
## 5112   2006-01 05:44:50Z        3
## 5113   2006-01 05:46:02Z        3
## 5114   2006-01 05:46:22Z        3
## 5115   2006-01 05:46:41Z        3
## 5116   2006-01 05:47:18Z        3
## 5117   2006-02 22:04:09Z        3
## 5118   2006-02 13:59:55Z        3
## 5119   2006-03 11:23:53Z        3
## 5120   2006-03 21:17:36Z        3
## 5121   2006-04 15:25:12Z        3
## 5122   2006-04 15:27:37Z        3
## 5123   2006-04 19:43:46Z        3
## 5124   2006-04 01:03:25Z        3
## 5125   2006-05 01:17:23Z        3
## 5126   2006-05 02:12:29Z        3
## 5127   2006-06 18:58:10Z        3
## 5128   2006-06 23:33:15Z        3
## 5129   2006-12 00:32:50Z        3
## 5130   2007-05 14:48:58Z        3
## 5131   2007-05 17:02:56Z        3
## 5132   2007-05 10:13:52Z        3
## 5133   2007-06 07:43:26Z        3
## 5134   2007-07 10:43:24Z        3
## 5135   2007-08 10:31:05Z        3
## 5136   2007-08 11:02:42Z        3
## 5137   2007-08 21:30:52Z        3
## 5138   2007-08 21:43:52Z        3
## 5139   2007-09 20:03:23Z        3
## 5140   2007-11 20:37:32Z        3
## 5141   2007-12 00:52:35Z        3
## 5142   2008-01 02:24:16Z        3
## 5143   2002-10 19:50:59Z        4
## 5144   2004-06 05:45:15Z        4
## 5145   2004-10 18:33:31Z        4
## 5146   2004-12 06:02:45Z        4
## 5147   2004-12 00:59:26Z        4
## 5148   2004-12 04:25:41Z        4
## 5149   2004-12 15:46:35Z        4
## 5150   2005-10 20:20:12Z        4
## 5151   2006-01 01:02:29Z        4
## 5152   2006-01 13:09:22Z        4
## 5153   2006-01 23:57:28Z        4
## 5154   2006-01 23:58:32Z        4
## 5155   2006-01 03:11:13Z        4
## 5156   2006-01 18:14:16Z        4
## 5157   2006-04 17:10:36Z        4
## 5158   2006-04 17:11:08Z        4
## 5159   2006-04 16:56:56Z        4
## 5160   2006-04 02:45:58Z        4
## 5161   2006-06 02:46:17Z        4
## 5162   2006-06 02:12:16Z        4
## 5163   2006-06 20:52:39Z        4
## 5164   2006-07 18:25:49Z        4
## 5165   2006-07 07:02:27Z        4
## 5166   2006-08 01:45:24Z        4
## 5167   2006-08 01:48:53Z        4
## 5168   2006-08 01:49:09Z        4
## 5169   2006-08 19:57:26Z        4
## 5170   2006-08 21:16:07Z        4
## 5171   2006-08 21:17:55Z        4
## 5172   2006-08 21:18:25Z        4
## 5173   2006-08 21:41:25Z        4
## 5174   2006-09 01:37:28Z        4
## 5175   2006-09 01:38:23Z        4
## 5176   2006-09 00:18:31Z        4
## 5177   2006-09 23:58:27Z        4
## 5178   2006-09 23:42:47Z        4
## 5179   2006-09 23:44:38Z        4
## 5180   2006-09 23:55:01Z        4
## 5181   2006-10 11:13:25Z        4
## 5182   2006-10 11:28:46Z        4
## 5183   2007-01 01:20:31Z        4
## 5184   2007-01 17:00:30Z        4
## 5185   2007-01 17:05:31Z        4
## 5186   2007-01 17:09:25Z        4
## 5187   2007-01 19:25:29Z        4
## 5188   2007-03 16:10:25Z        4
## 5189   2007-03 21:24:10Z        4
## 5190   2007-03 21:24:59Z        4
## 5191   2007-03 16:36:04Z        4
## 5192   2007-04 02:05:34Z        4
## 5193   2007-05 13:36:11Z        4
## 5194   2007-05 13:41:16Z        4
## 5195   2007-05 13:41:45Z        4
## 5196   2007-05 13:42:37Z        4
## 5197   2007-05 13:43:12Z        4
## 5198   2007-05 10:38:58Z        4
## 5199   2007-05 04:00:33Z        4
## 5200   2007-06 16:14:02Z        4
## 5201   2007-07 20:19:25Z        4
## 5202   2007-07 20:17:43Z        4
## 5203   2007-07 20:19:12Z        4
## 5204   2007-07 20:21:22Z        4
## 5205   2007-08 18:38:10Z        4
## 5206   2007-08 00:09:36Z        4
## 5207   2007-08 08:58:25Z        4
## 5208   2007-09 02:02:52Z        4
## 5209   2007-09 01:30:28Z        4
## 5210   2007-09 15:47:10Z        4
## 5211   2007-09 18:38:59Z        4
## 5212   2007-09 18:49:35Z        4
## 5213   2007-09 18:58:21Z        4
## 5214   2007-09 09:08:09Z        4
## 5215   2007-09 01:56:22Z        4
## 5216   2007-11 18:47:17Z        4
## 5217   2007-11 18:47:56Z        4
## 5218   2002-10 19:55:20Z        4
## 5219   2004-06 16:10:31Z        4
## 5220   2004-08 06:28:34Z        4
## 5221   2005-03 05:51:02Z        4
## 5222   2005-03 01:30:53Z        4
## 5223   2005-06 23:01:49Z        4
## 5224   2005-09 19:43:55Z        4
## 5225   2006-05 15:57:24Z        4
## 5226   2006-08 21:04:53Z        4
## 5227   2002-10 22:28:53Z        5
## 5228   2002-10 22:31:45Z        5
## 5229   2004-02 09:01:05Z        5
## 5230   2004-02 09:01:31Z        5
## 5231   2004-10 17:45:18Z        5
## 5232   2005-01 03:50:23Z        5
## 5233   2005-04 21:18:01Z        5
## 5234   2005-06 16:07:50Z        5
## 5235   2005-07 17:07:44Z        5
## 5236   2005-08 04:48:52Z        5
## 5237   2005-08 15:05:03Z        5
## 5238   2005-08 15:29:00Z        5
## 5239   2005-08 19:58:10Z        5
## 5240   2005-08 20:46:48Z        5
## 5241   2005-10 00:55:55Z        5
## 5242   2005-10 02:32:43Z        5
## 5243   2005-11 06:10:54Z        5
## 5244   2005-11 05:04:23Z        5
## 5245   2006-01 14:31:34Z        5
## 5246   2006-01 00:51:50Z        5
## 5247   2006-01 00:54:22Z        5
## 5248   2006-01 03:17:06Z        5
## 5249   2006-01 11:03:32Z        5
## 5250   2006-02 01:17:03Z        5
## 5251   2006-02 21:16:25Z        5
## 5252   2006-02 03:59:16Z        5
## 5253   2006-03 04:18:41Z        5
## 5254   2006-03 22:48:56Z        5
## 5255   2006-04 11:42:38Z        5
## 5256   2006-04 11:46:38Z        5
## 5257   2006-04 03:51:24Z        5
## 5258   2006-04 10:08:52Z        5
## 5259   2006-05 02:06:01Z        5
## 5260   2006-05 15:24:52Z        5
## 5261   2006-05 15:25:53Z        5
## 5262   2006-06 05:09:47Z        5
## 5263   2006-07 22:52:12Z        5
## 5264   2006-07 22:53:18Z        5
## 5265   2006-07 09:25:31Z        5
## 5266   2006-07 13:04:46Z        5
## 5267   2006-08 15:06:25Z        5
## 5268   2006-09 16:55:34Z        5
## 5269   2006-11 06:02:37Z        5
## 5270   2007-04 21:14:21Z        5
## 5271   2007-05 20:46:09Z        5
## 5272   2007-06 12:20:22Z        5
## 5273   2007-06 12:21:29Z        5
## 5274   2007-06 12:22:09Z        5
## 5275   2007-06 12:23:04Z        5
## 5276   2007-07 04:13:06Z        5
## 5277   2007-09 15:07:59Z        5
## 5278   2007-10 08:00:54Z        5
## 5279   2002-10 17:55:23Z        2
## 5280   2002-10 17:56:32Z        2
## 5281   2002-10 18:02:22Z        2
## 5282   2002-10 19:33:09Z        2
## 5283   2002-10 19:34:03Z        2
## 5284   2002-10 04:56:34Z        2
## 5285   2002-10 04:56:52Z        2
## 5286   2002-10 04:57:26Z        2
## 5287   2002-10 05:05:05Z        2
## 5288   2002-10 05:05:37Z        2
## 5289   2002-10 10:39:06Z        2
## 5290   2002-10 11:15:28Z        2
## 5291   2002-10 01:03:11Z        2
## 5292   2002-10 10:22:48Z        2
## 5293   2002-10 10:49:46Z        2
## 5294   2002-10 16:38:03Z        2
## 5295   2002-10 16:39:35Z        2
## 5296   2002-10 18:40:23Z        2
## 5297   2002-10 21:10:46Z        2
## 5298   2002-11 20:28:11Z        2
## 5299   2002-11 23:51:32Z        2
## 5300   2002-11 09:57:15Z        2
## 5301   2002-11 11:34:05Z        2
## 5302   2002-11 05:53:09Z        2
## 5303   2002-12 00:33:09Z        2
## 5304   2002-12 15:16:14Z        2
## 5305   2002-12 15:18:04Z        2
## 5306   2003-01 23:58:43Z        2
## 5307   2003-01 09:11:17Z        2
## 5308   2003-02 07:09:40Z        2
## 5309   2003-02 07:28:12Z        2
## 5310   2003-02 11:15:45Z        2
## 5311   2003-02 11:37:35Z        2
## 5312   2003-02 03:23:17Z        2
## 5313   2003-02 07:18:11Z        2
## 5314   2003-02 08:06:22Z        2
## 5315   2003-04 10:21:33Z        2
## 5316   2003-04 01:13:22Z        2
## 5317   2003-04 21:34:05Z        2
## 5318   2003-05 18:12:39Z        2
## 5319   2003-05 17:19:28Z        2
## 5320   2003-05 16:15:04Z        2
## 5321   2003-05 08:41:50Z        2
## 5322   2003-06 00:10:10Z        2
## 5323   2003-06 06:36:09Z        2
## 5324   2003-06 23:21:10Z        2
## 5325   2003-06 23:28:51Z        2
## 5326   2003-06 23:52:39Z        2
## 5327   2003-06 00:18:27Z        2
## 5328   2003-06 00:31:40Z        2
## 5329   2003-06 21:14:59Z        2
## 5330   2003-06 04:45:39Z        2
## 5331   2003-06 22:58:16Z        2
## 5332   2003-07 04:14:16Z        2
## 5333   2003-08 20:29:43Z        2
## 5334   2003-08 18:18:49Z        2
## 5335   2003-08 15:02:32Z        2
## 5336   2003-08 18:19:43Z        2
## 5337   2003-08 03:57:17Z        2
## 5338   2003-08 16:12:50Z        2
## 5339   2003-08 16:13:48Z        2
## 5340   2003-08 16:15:10Z        2
## 5341   2003-09 07:01:24Z        2
## 5342   2003-09 16:45:01Z        2
## 5343   2003-09 11:43:16Z        2
## 5344   2003-09 22:05:58Z        2
## 5345   2003-09 22:11:33Z        2
## 5346   2003-09 09:48:39Z        2
## 5347   2003-09 19:30:28Z        2
## 5348   2003-09 21:19:30Z        2
## 5349   2003-09 21:23:41Z        2
## 5350   2003-09 12:04:36Z        2
## 5351   2003-10 13:24:34Z        2
## 5352   2003-10 13:11:33Z        2
## 5353   2003-10 20:30:28Z        2
## 5354   2003-10 21:09:27Z        2
## 5355   2003-10 03:27:55Z        2
## 5356   2003-11 00:25:27Z        2
## 5357   2003-11 21:06:12Z        2
## 5358   2003-11 06:22:09Z        2
## 5359   2003-11 23:55:34Z        2
## 5360   2003-11 08:07:29Z        2
## 5361   2003-11 10:09:49Z        2
## 5362   2003-11 18:30:10Z        2
## 5363   2003-11 18:48:56Z        2
## 5364   2003-11 18:50:00Z        2
## 5365   2003-11 15:31:20Z        2
## 5366   2003-11 15:36:55Z        2
## 5367   2003-11 15:45:19Z        2
## 5368   2003-11 15:54:15Z        2
## 5369   2003-11 15:56:56Z        2
## 5370   2003-11 15:59:25Z        2
## 5371   2003-11 16:02:08Z        2
## 5372   2003-11 01:47:38Z        2
## 5373   2003-11 21:44:53Z        2
## 5374   2003-11 21:45:18Z        2
## 5375   2003-12 04:59:51Z        2
## 5376   2003-12 05:02:05Z        2
## 5377   2003-12 05:05:40Z        2
## 5378   2003-12 02:41:55Z        2
## 5379   2003-12 18:08:54Z        2
## 5380   2003-12 22:18:20Z        2
## 5381   2003-12 18:00:28Z        2
## 5382   2003-12 18:03:13Z        2
## 5383   2003-12 18:03:31Z        2
## 5384   2003-12 23:40:48Z        2
## 5385   2003-12 23:45:41Z        2
## 5386   2003-12 22:23:18Z        2
## 5387   2003-12 08:04:28Z        2
## 5388   2003-12 01:12:10Z        2
## 5389   2003-12 16:38:20Z        2
## 5390   2003-12 22:46:28Z        2
## 5391   2003-12 20:57:50Z        2
## 5392   2004-01 02:01:29Z        2
## 5393   2004-01 00:50:46Z        2
## 5394   2004-01 18:18:27Z        2
## 5395   2004-01 19:14:36Z        2
## 5396   2004-01 19:35:42Z        2
## 5397   2004-01 19:47:53Z        2
## 5398   2004-01 20:01:20Z        2
## 5399   2004-01 20:02:34Z        2
## 5400   2004-01 10:23:34Z        2
## 5401   2004-01 20:54:01Z        2
## 5402   2004-01 21:59:17Z        2
## 5403   2004-02 20:52:06Z        2
## 5404   2004-02 13:26:00Z        2
## 5405   2004-02 13:35:40Z        2
## 5406   2004-02 13:37:56Z        2
## 5407   2004-02 13:42:43Z        2
## 5408   2004-02 13:53:36Z        2
## 5409   2004-02 14:01:20Z        2
## 5410   2004-02 14:08:28Z        2
## 5411   2004-02 01:22:41Z        2
## 5412   2004-02 01:25:40Z        2
## 5413   2004-02 14:48:49Z        2
## 5414   2004-02 06:55:22Z        2
## 5415   2004-02 06:56:54Z        2
## 5416   2004-02 04:40:50Z        2
## 5417   2004-02 12:20:20Z        2
## 5418   2004-02 16:40:26Z        2
## 5419   2004-03 20:50:56Z        2
## 5420   2004-03 21:15:47Z        2
## 5421   2004-03 02:15:20Z        2
## 5422   2004-03 02:15:51Z        2
## 5423   2004-03 02:17:57Z        2
## 5424   2004-03 16:51:23Z        2
## 5425   2004-03 08:13:59Z        2
## 5426   2004-03 05:15:23Z        2
## 5427   2004-03 06:34:01Z        2
## 5428   2004-03 18:54:29Z        2
## 5429   2004-04 21:29:15Z        2
## 5430   2004-04 03:42:26Z        2
## 5431   2004-04 03:44:13Z        2
## 5432   2004-04 03:45:26Z        2
## 5433   2004-04 01:57:19Z        2
## 5434   2004-04 02:08:19Z        2
## 5435   2004-04 02:08:52Z        2
## 5436   2004-04 02:25:53Z        2
## 5437   2004-04 15:33:45Z        2
## 5438   2004-04 15:58:45Z        2
## 5439   2004-04 21:31:49Z        2
## 5440   2004-04 21:33:32Z        2
## 5441   2004-04 09:15:26Z        2
## 5442   2004-04 12:37:15Z        2
## 5443   2004-04 15:13:02Z        2
## 5444   2004-04 15:19:37Z        2
## 5445   2004-04 15:33:11Z        2
## 5446   2004-04 15:37:35Z        2
## 5447   2004-04 15:43:34Z        2
## 5448   2004-04 17:57:48Z        2
## 5449   2004-04 12:17:05Z        2
## 5450   2004-04 12:30:00Z        2
## 5451   2004-04 12:31:48Z        2
## 5452   2004-04 07:05:04Z        2
## 5453   2004-04 07:11:22Z        2
## 5454   2004-04 02:31:19Z        2
## 5455   2004-04 03:03:30Z        2
## 5456   2004-04 00:58:59Z        2
## 5457   2004-04 01:20:28Z        2
## 5458   2004-04 01:34:59Z        2
## 5459   2004-04 02:37:32Z        2
## 5460   2004-05 16:12:47Z        2
## 5461   2004-05 16:18:29Z        2
## 5462   2004-05 22:02:44Z        2
## 5463   2004-05 22:44:02Z        2
## 5464   2004-05 17:37:38Z        2
## 5465   2004-05 20:20:46Z        2
## 5466   2004-05 02:12:19Z        2
## 5467   2004-05 04:55:10Z        2
## 5468   2004-05 23:12:56Z        2
## 5469   2004-05 05:13:51Z        2
## 5470   2004-05 22:48:14Z        2
## 5471   2004-06 17:33:44Z        2
## 5472   2004-06 17:38:19Z        2
## 5473   2004-06 16:47:11Z        2
## 5474   2004-06 23:16:26Z        2
## 5475   2004-06 04:11:10Z        2
## 5476   2004-06 03:03:45Z        2
## 5477   2004-06 05:08:02Z        2
## 5478   2004-06 03:56:51Z        2
## 5479   2004-07 10:27:31Z        2
## 5480   2004-07 11:14:25Z        2
## 5481   2004-07 21:17:48Z        2
## 5482   2004-07 20:41:19Z        2
## 5483   2004-07 16:45:35Z        2
## 5484   2004-07 03:44:47Z        2
## 5485   2004-07 05:04:07Z        2
## 5486   2004-07 05:11:44Z        2
## 5487   2004-07 10:11:19Z        2
## 5488   2004-07 12:23:07Z        2
## 5489   2004-08 07:40:57Z        2
## 5490   2004-08 23:31:54Z        2
## 5491   2004-08 16:55:55Z        2
## 5492   2004-08 04:20:44Z        2
## 5493   2004-08 04:22:12Z        2
## 5494   2004-08 08:32:56Z        2
## 5495   2004-08 02:20:48Z        2
## 5496   2004-08 16:50:10Z        2
## 5497   2004-08 07:42:41Z        2
## 5498   2004-08 07:53:18Z        2
## 5499   2004-08 14:12:15Z        2
## 5500   2004-08 18:44:17Z        2
## 5501   2004-08 18:46:33Z        2
## 5502   2004-08 18:47:37Z        2
## 5503   2004-08 02:02:01Z        2
## 5504   2004-08 07:44:39Z        2
## 5505   2004-08 16:06:51Z        2
## 5506   2004-08 20:54:30Z        2
## 5507   2004-08 20:59:33Z        2
## 5508   2004-08 21:03:24Z        2
## 5509   2004-08 21:07:51Z        2
## 5510   2004-09 02:52:54Z        2
## 5511   2004-09 06:06:43Z        2
## 5512   2004-09 06:07:44Z        2
## 5513   2004-09 06:09:20Z        2
## 5514   2004-09 21:49:32Z        2
## 5515   2004-09 10:10:34Z        2
## 5516   2004-09 09:10:28Z        2
## 5517   2004-09 14:22:51Z        2
## 5518   2004-09 10:48:10Z        2
## 5519   2004-09 10:58:38Z        2
## 5520   2004-09 11:18:52Z        2
## 5521   2004-09 15:02:24Z        2
## 5522   2004-09 15:53:48Z        2
## 5523   2004-09 15:57:15Z        2
## 5524   2004-09 16:04:13Z        2
## 5525   2004-09 16:29:54Z        2
## 5526   2004-09 16:59:06Z        2
## 5527   2004-09 17:06:27Z        2
## 5528   2004-10 18:01:11Z        2
## 5529   2004-10 22:53:27Z        2
## 5530   2004-10 11:10:48Z        2
## 5531   2004-10 16:29:01Z        2
## 5532   2004-10 19:14:46Z        2
## 5533   2004-10 07:59:17Z        2
## 5534   2004-10 01:32:12Z        2
## 5535   2004-10 10:59:38Z        2
## 5536   2004-10 11:03:52Z        2
## 5537   2004-11 03:19:06Z        2
## 5538   2004-11 03:32:38Z        2
## 5539   2004-11 07:06:05Z        2
## 5540   2004-11 01:28:09Z        2
## 5541   2004-11 03:34:51Z        2
## 5542   2004-11 17:14:45Z        2
## 5543   2004-11 12:07:01Z        2
## 5544   2004-11 01:10:20Z        2
## 5545   2004-11 01:12:59Z        2
## 5546   2004-11 15:35:27Z        2
## 5547   2004-11 15:44:58Z        2
## 5548   2004-11 17:07:29Z        2
## 5549   2004-11 02:30:59Z        2
## 5550   2004-12 21:01:48Z        2
## 5551   2004-12 01:31:35Z        2
## 5552   2004-12 21:04:26Z        2
## 5553   2004-12 16:48:28Z        2
## 5554   2004-12 16:56:32Z        2
## 5555   2004-12 17:03:58Z        2
## 5556   2004-12 17:04:48Z        2
## 5557   2004-12 17:08:08Z        2
## 5558   2004-12 17:14:00Z        2
## 5559   2004-12 17:42:55Z        2
## 5560   2004-12 23:36:58Z        2
## 5561   2004-12 17:51:11Z        2
## 5562   2004-12 17:53:13Z        2
## 5563   2004-12 10:51:39Z        2
## 5564   2005-01 20:23:35Z        2
## 5565   2005-01 14:04:18Z        2
## 5566   2005-01 16:42:19Z        2
## 5567   2005-01 16:50:47Z        2
## 5568   2005-01 13:59:39Z        2
## 5569   2005-01 14:07:14Z        2
## 5570   2005-01 21:28:26Z        2
## 5571   2005-01 06:45:03Z        2
## 5572   2005-01 06:46:46Z        2
## 5573   2005-01 07:57:31Z        2
## 5574   2005-01 00:58:54Z        2
## 5575   2005-02 04:23:06Z        2
## 5576   2005-02 04:24:25Z        2
## 5577   2005-02 04:25:56Z        2
## 5578   2005-02 23:17:10Z        2
## 5579   2005-02 23:26:39Z        2
## 5580   2005-02 15:36:07Z        2
## 5581   2005-02 15:37:05Z        2
## 5582   2005-02 15:38:33Z        2
## 5583   2005-02 11:45:49Z        2
## 5584   2005-02 11:51:53Z        2
## 5585   2005-02 11:54:06Z        2
## 5586   2005-02 11:57:00Z        2
## 5587   2005-02 12:04:22Z        2
## 5588   2005-02 15:54:31Z        2
## 5589   2005-02 09:11:54Z        2
## 5590   2005-02 08:13:50Z        2
## 5591   2005-02 08:16:32Z        2
## 5592   2005-02 08:21:52Z        2
## 5593   2005-02 08:57:28Z        2
## 5594   2005-02 09:00:31Z        2
## 5595   2005-02 17:57:01Z        2
## 5596   2005-02 19:30:19Z        2
## 5597   2005-03 00:57:34Z        2
## 5598   2005-03 15:37:05Z        2
## 5599   2005-03 20:31:59Z        2
## 5600   2005-03 20:06:10Z        2
## 5601   2005-03 19:37:39Z        2
## 5602   2005-03 20:04:07Z        2
## 5603   2005-03 04:03:45Z        2
## 5604   2005-03 13:09:51Z        2
## 5605   2005-03 06:10:33Z        2
## 5606   2005-03 09:12:52Z        2
## 5607   2005-03 21:17:49Z        2
## 5608   2005-03 21:18:31Z        2
## 5609   2005-03 05:57:28Z        2
## 5610   2005-03 23:10:28Z        2
## 5611   2005-03 07:38:36Z        2
## 5612   2005-03 08:10:41Z        2
## 5613   2005-03 11:05:42Z        2
## 5614   2005-04 07:09:52Z        2
## 5615   2005-04 17:32:11Z        2
## 5616   2005-04 12:50:22Z        2
## 5617   2005-04 13:13:30Z        2
## 5618   2005-04 13:16:37Z        2
## 5619   2005-04 04:12:42Z        2
## 5620   2005-04 04:12:42Z        2
## 5621   2005-04 00:17:23Z        2
## 5622   2005-04 20:06:11Z        2
## 5623   2005-04 00:09:09Z        2
## 5624   2005-04 00:11:01Z        2
## 5625   2005-04 00:13:44Z        2
## 5626   2005-04 05:13:07Z        2
## 5627   2005-04 23:43:47Z        2
## 5628   2005-04 23:56:47Z        2
## 5629   2005-04 05:57:38Z        2
## 5630   2005-04 01:36:56Z        2
## 5631   2005-04 03:33:11Z        2
## 5632   2005-04 04:47:08Z        2
## 5633   2005-04 04:54:08Z        2
## 5634   2005-04 04:28:05Z        2
## 5635   2005-04 04:28:53Z        2
## 5636   2005-04 07:11:10Z        2
## 5637   2005-04 19:34:52Z        2
## 5638   2005-04 01:25:26Z        2
## 5639   2005-04 19:08:47Z        2
## 5640   2005-05 02:05:31Z        2
## 5641   2005-05 04:43:34Z        2
## 5642   2005-05 05:25:46Z        2
## 5643   2005-05 05:34:14Z        2
## 5644   2005-05 05:35:33Z        2
## 5645   2005-05 05:36:15Z        2
## 5646   2005-05 01:04:36Z        2
## 5647   2005-05 09:48:47Z        2
## 5648   2005-05 13:04:33Z        2
## 5649   2005-05 13:05:50Z        2
## 5650   2005-05 00:02:44Z        2
## 5651   2005-05 17:00:03Z        2
## 5652   2005-05 18:50:17Z        2
## 5653   2005-05 00:23:33Z        2
## 5654   2005-05 21:04:12Z        2
## 5655   2005-05 06:17:06Z        2
## 5656   2005-05 06:18:59Z        2
## 5657   2005-05 05:54:18Z        2
## 5658   2005-05 06:01:26Z        2
## 5659   2005-05 02:15:14Z        2
## 5660   2005-05 10:47:52Z        2
## 5661   2005-05 10:53:22Z        2
## 5662   2005-05 00:15:22Z        2
## 5663   2005-06 08:02:15Z        2
## 5664   2005-06 08:04:55Z        2
## 5665   2005-06 22:33:48Z        2
## 5666   2005-06 23:06:15Z        2
## 5667   2005-06 15:46:53Z        2
## 5668   2005-06 21:34:24Z        2
## 5669   2005-06 00:11:15Z        2
## 5670   2005-06 00:48:09Z        2
## 5671   2005-06 00:21:36Z        2
## 5672   2005-06 04:58:29Z        2
## 5673   2005-06 05:34:37Z        2
## 5674   2005-06 05:36:01Z        2
## 5675   2005-06 06:11:07Z        2
## 5676   2005-06 06:24:52Z        2
## 5677   2005-06 09:24:21Z        2
## 5678   2005-06 09:47:09Z        2
## 5679   2005-06 22:33:43Z        2
## 5680   2005-06 07:42:38Z        2
## 5681   2005-06 07:45:38Z        2
## 5682   2005-06 15:43:39Z        2
## 5683   2005-06 16:18:05Z        2
## 5684   2005-06 20:25:26Z        2
## 5685   2005-06 00:51:45Z        2
## 5686   2005-06 00:52:14Z        2
## 5687   2005-06 21:06:29Z        2
## 5688   2005-06 00:10:37Z        2
## 5689   2005-06 09:44:17Z        2
## 5690   2005-06 11:33:13Z        2
## 5691   2005-06 00:23:44Z        2
## 5692   2005-06 02:27:47Z        2
## 5693   2005-06 04:47:28Z        2
## 5694   2005-06 09:38:14Z        2
## 5695   2005-06 09:40:43Z        2
## 5696   2005-06 05:37:49Z        2
## 5697   2005-06 15:56:13Z        2
## 5698   2005-06 16:03:56Z        2
## 5699   2005-06 16:14:40Z        2
## 5700   2005-06 03:44:43Z        2
## 5701   2005-06 03:58:14Z        2
## 5702   2005-07 09:28:05Z        2
## 5703   2005-07 21:43:00Z        2
## 5704   2005-07 19:59:51Z        2
## 5705   2005-07 19:34:15Z        2
## 5706   2005-07 03:15:11Z        2
## 5707   2005-07 04:49:09Z        2
## 5708   2005-07 23:33:28Z        2
## 5709   2005-07 23:36:58Z        2
## 5710   2005-07 00:20:08Z        2
## 5711   2005-07 13:49:25Z        2
## 5712   2005-07 13:53:11Z        2
## 5713   2005-07 14:13:53Z        2
## 5714   2005-07 19:49:17Z        2
## 5715   2005-07 16:31:43Z        2
## 5716   2005-07 19:28:31Z        2
## 5717   2005-07 14:54:22Z        2
## 5718   2005-07 10:56:12Z        2
## 5719   2005-07 15:42:39Z        2
## 5720   2005-07 03:49:17Z        2
## 5721   2005-07 03:52:00Z        2
## 5722   2005-07 18:32:32Z        2
## 5723   2005-07 01:00:54Z        2
## 5724   2005-07 01:13:02Z        2
## 5725   2005-08 04:48:26Z        2
## 5726   2005-08 21:42:53Z        2
## 5727   2005-08 20:18:26Z        2
## 5728   2005-08 11:13:25Z        2
## 5729   2005-08 11:17:27Z        2
## 5730   2005-08 11:16:05Z        2
## 5731   2005-08 12:40:54Z        2
## 5732   2005-08 17:19:51Z        2
## 5733   2005-08 17:23:25Z        2
## 5734   2005-08 17:26:03Z        2
## 5735   2005-08 21:29:46Z        2
## 5736   2005-08 23:29:03Z        2
## 5737   2005-08 17:40:05Z        2
## 5738   2005-08 17:43:03Z        2
## 5739   2005-08 14:48:32Z        2
## 5740   2005-08 03:45:56Z        2
## 5741   2005-08 13:03:05Z        2
## 5742   2005-09 20:05:00Z        2
## 5743   2005-09 00:37:53Z        2
## 5744   2005-09 19:30:46Z        2
## 5745   2005-09 06:56:36Z        2
## 5746   2005-09 07:18:09Z        2
## 5747   2005-09 16:27:12Z        2
## 5748   2005-09 16:31:14Z        2
## 5749   2005-09 04:17:50Z        2
## 5750   2005-09 04:49:53Z        2
## 5751   2005-09 16:38:32Z        2
## 5752   2005-09 20:36:11Z        2
## 5753   2005-09 01:14:04Z        2
## 5754   2005-09 01:15:10Z        2
## 5755   2005-09 07:23:16Z        2
## 5756   2005-09 07:25:10Z        2
## 5757   2005-09 07:26:27Z        2
## 5758   2005-09 07:27:45Z        2
## 5759   2005-09 07:29:09Z        2
## 5760   2005-09 07:30:19Z        2
## 5761   2005-09 04:08:26Z        2
## 5762   2005-10 00:39:04Z        2
## 5763   2005-10 02:31:19Z        2
## 5764   2005-10 04:26:45Z        2
## 5765   2005-10 02:10:56Z        2
## 5766   2005-10 11:32:30Z        2
## 5767   2005-10 14:29:14Z        2
## 5768   2005-10 04:22:59Z        2
## 5769   2005-10 05:28:45Z        2
## 5770   2005-10 05:29:48Z        2
## 5771   2005-10 05:31:40Z        2
## 5772   2005-10 20:51:01Z        2
## 5773   2005-10 04:18:39Z        2
## 5774   2005-10 17:14:36Z        2
## 5775   2005-10 20:15:58Z        2
## 5776   2005-10 20:35:21Z        2
## 5777   2005-10 03:41:37Z        2
## 5778   2005-10 12:03:50Z        2
## 5779   2005-10 21:54:40Z        2
## 5780   2005-10 17:17:44Z        2
## 5781   2005-10 22:30:08Z        2
## 5782   2005-10 00:27:28Z        2
## 5783   2005-10 00:29:03Z        2
## 5784   2005-10 01:09:43Z        2
## 5785   2005-10 01:10:09Z        2
## 5786   2005-10 15:08:49Z        2
## 5787   2005-10 17:32:30Z        2
## 5788   2005-10 18:25:13Z        2
## 5789   2005-11 15:08:18Z        2
## 5790   2005-11 03:27:02Z        2
## 5791   2005-11 02:28:50Z        2
## 5792   2005-11 03:26:43Z        2
## 5793   2005-11 13:23:53Z        2
## 5794   2005-11 13:14:49Z        2
## 5795   2005-11 13:20:18Z        2
## 5796   2005-11 16:33:01Z        2
## 5797   2005-11 19:49:15Z        2
## 5798   2005-12 21:23:39Z        2
## 5799   2005-12 21:24:45Z        2
## 5800   2005-12 21:26:03Z        2
## 5801   2005-12 21:27:10Z        2
## 5802   2005-12 21:28:03Z        2
## 5803   2005-12 21:28:50Z        2
## 5804   2005-12 22:20:43Z        2
## 5805   2005-12 01:07:37Z        2
## 5806   2005-12 01:43:26Z        2
## 5807   2005-12 23:12:46Z        2
## 5808   2005-12 23:13:44Z        2
## 5809   2005-12 01:23:25Z        2
## 5810   2005-12 01:36:04Z        2
## 5811   2005-12 21:45:40Z        2
## 5812   2005-12 21:50:32Z        2
## 5813   2006-01 21:30:47Z        2
## 5814   2006-01 21:31:42Z        2
## 5815   2006-01 11:06:18Z        2
## 5816   2006-01 17:35:27Z        2
## 5817   2006-01 18:47:27Z        2
## 5818   2006-01 02:39:14Z        2
## 5819   2006-01 18:43:36Z        2
## 5820   2006-01 18:47:21Z        2
## 5821   2006-01 23:41:00Z        2
## 5822   2006-01 23:38:27Z        2
## 5823   2006-01 23:39:25Z        2
## 5824   2006-01 23:40:29Z        2
## 5825   2006-01 23:41:08Z        2
## 5826   2006-01 10:10:55Z        2
## 5827   2006-01 00:55:20Z        2
## 5828   2006-01 00:56:18Z        2
## 5829   2006-01 11:06:35Z        2
## 5830   2006-01 13:10:32Z        2
## 5831   2006-01 13:19:25Z        2
## 5832   2006-01 20:23:08Z        2
## 5833   2006-01 15:20:17Z        2
## 5834   2006-01 10:46:27Z        2
## 5835   2006-01 10:48:26Z        2
## 5836   2006-01 10:57:58Z        2
## 5837   2006-01 11:00:19Z        2
## 5838   2006-01 11:15:23Z        2
## 5839   2006-01 11:16:56Z        2
## 5840   2006-01 11:21:50Z        2
## 5841   2006-01 23:10:17Z        2
## 5842   2006-01 21:14:33Z        2
## 5843   2006-01 21:15:00Z        2
## 5844   2006-01 01:51:09Z        2
## 5845   2006-02 18:43:02Z        2
## 5846   2006-02 20:08:49Z        2
## 5847   2006-02 20:37:21Z        2
## 5848   2006-02 22:22:29Z        2
## 5849   2006-02 23:55:10Z        2
## 5850   2006-02 23:59:17Z        2
## 5851   2006-02 00:00:26Z        2
## 5852   2006-02 00:01:37Z        2
## 5853   2006-02 17:19:55Z        2
## 5854   2006-02 10:02:30Z        2
## 5855   2006-03 00:59:27Z        2
## 5856   2006-03 01:02:19Z        2
## 5857   2006-03 20:34:17Z        2
## 5858   2006-03 10:10:56Z        2
## 5859   2006-03 09:56:24Z        2
## 5860   2006-03 11:11:23Z        2
## 5861   2006-03 11:11:50Z        2
## 5862   2006-03 11:12:59Z        2
## 5863   2006-03 17:58:00Z        2
## 5864   2006-03 20:41:46Z        2
## 5865   2006-03 21:03:52Z        2
## 5866   2006-03 17:40:51Z        2
## 5867   2006-03 17:42:52Z        2
## 5868   2006-03 17:46:05Z        2
## 5869   2006-03 17:47:41Z        2
## 5870   2006-03 23:13:42Z        2
## 5871   2006-03 04:29:52Z        2
## 5872   2006-03 04:31:18Z        2
## 5873   2006-03 04:33:07Z        2
## 5874   2006-03 04:35:53Z        2
## 5875   2006-03 04:39:04Z        2
## 5876   2006-03 04:40:42Z        2
## 5877   2006-03 04:44:17Z        2
## 5878   2006-03 04:46:59Z        2
## 5879   2006-03 04:50:01Z        2
## 5880   2006-03 04:53:28Z        2
## 5881   2006-03 04:54:25Z        2
## 5882   2006-03 04:56:54Z        2
## 5883   2006-03 04:57:24Z        2
## 5884   2006-03 05:00:46Z        2
## 5885   2006-03 05:03:40Z        2
## 5886   2006-03 05:06:14Z        2
## 5887   2006-03 06:45:30Z        2
## 5888   2006-03 01:09:30Z        2
## 5889   2006-03 20:37:20Z        2
## 5890   2006-03 01:39:05Z        2
## 5891   2006-03 02:17:45Z        2
## 5892   2006-03 06:23:38Z        2
## 5893   2006-03 13:06:41Z        2
## 5894   2006-03 17:48:47Z        2
## 5895   2006-03 10:28:57Z        2
## 5896   2006-03 00:46:38Z        2
## 5897   2006-03 04:19:40Z        2
## 5898   2006-03 19:10:06Z        2
## 5899   2006-03 19:14:09Z        2
## 5900   2006-03 00:49:13Z        2
## 5901   2006-03 00:50:04Z        2
## 5902   2006-03 05:48:24Z        2
## 5903   2006-03 22:58:15Z        2
## 5904   2006-03 18:41:29Z        2
## 5905   2006-04 02:59:46Z        2
## 5906   2006-04 10:39:53Z        2
## 5907   2006-04 16:55:28Z        2
## 5908   2006-04 12:05:07Z        2
## 5909   2006-04 16:19:03Z        2
## 5910   2006-04 23:32:42Z        2
## 5911   2006-04 23:33:40Z        2
## 5912   2006-04 17:07:36Z        2
## 5913   2006-04 18:34:35Z        2
## 5914   2006-04 12:32:10Z        2
## 5915   2006-04 02:48:40Z        2
## 5916   2006-04 02:49:02Z        2
## 5917   2006-04 05:29:52Z        2
## 5918   2006-04 00:20:33Z        2
## 5919   2006-05 03:43:25Z        2
## 5920   2006-05 11:11:21Z        2
## 5921   2006-05 01:06:36Z        2
## 5922   2006-05 03:29:17Z        2
## 5923   2006-05 22:17:42Z        2
## 5924   2006-05 17:34:07Z        2
## 5925   2006-05 23:24:30Z        2
## 5926   2006-05 20:53:47Z        2
## 5927   2006-05 09:44:16Z        2
## 5928   2006-05 19:53:03Z        2
## 5929   2006-05 12:40:47Z        2
## 5930   2006-05 11:15:07Z        2
## 5931   2006-05 12:43:05Z        2
## 5932   2006-05 12:45:04Z        2
## 5933   2006-05 12:46:31Z        2
## 5934   2006-05 12:48:28Z        2
## 5935   2006-05 13:12:10Z        2
## 5936   2006-05 03:30:50Z        2
## 5937   2006-05 03:31:35Z        2
## 5938   2006-06 09:51:25Z        2
## 5939   2006-06 09:59:45Z        2
## 5940   2006-06 20:11:57Z        2
## 5941   2006-06 17:14:20Z        2
## 5942   2006-06 00:41:32Z        2
## 5943   2006-06 14:27:19Z        2
## 5944   2006-06 21:58:13Z        2
## 5945   2006-06 09:37:35Z        2
## 5946   2006-06 22:16:35Z        2
## 5947   2006-07 05:46:59Z        2
## 5948   2006-07 06:03:44Z        2
## 5949   2006-07 18:08:25Z        2
## 5950   2006-07 18:09:00Z        2
## 5951   2006-07 00:00:18Z        2
## 5952   2006-07 18:39:30Z        2
## 5953   2006-07 04:29:15Z        2
## 5954   2006-07 00:11:47Z        2
## 5955   2006-07 14:42:20Z        2
## 5956   2006-07 15:45:49Z        2
## 5957   2006-07 19:58:41Z        2
## 5958   2006-07 00:40:15Z        2
## 5959   2006-07 00:59:04Z        2
## 5960   2006-07 20:34:12Z        2
## 5961   2006-07 20:49:41Z        2
## 5962   2006-08 11:21:10Z        2
## 5963   2006-08 10:57:03Z        2
## 5964   2006-08 23:04:12Z        2
## 5965   2006-08 23:24:02Z        2
## 5966   2006-08 01:00:34Z        2
## 5967   2006-08 01:01:52Z        2
## 5968   2006-08 18:10:07Z        2
## 5969   2006-08 06:22:23Z        2
## 5970   2006-08 18:29:53Z        2
## 5971   2006-08 23:28:58Z        2
## 5972   2006-08 12:38:23Z        2
## 5973   2006-08 10:17:13Z        2
## 5974   2006-08 17:15:07Z        2
## 5975   2006-08 19:26:30Z        2
## 5976   2006-08 11:26:39Z        2
## 5977   2006-08 14:35:49Z        2
## 5978   2006-09 23:23:39Z        2
## 5979   2006-09 04:45:03Z        2
## 5980   2006-09 22:21:04Z        2
## 5981   2006-09 18:52:00Z        2
## 5982   2006-09 19:34:58Z        2
## 5983   2006-09 22:09:27Z        2
## 5984   2006-09 22:09:53Z        2
## 5985   2006-09 23:15:02Z        2
## 5986   2006-09 23:27:27Z        2
## 5987   2006-09 23:28:42Z        2
## 5988   2006-09 00:19:57Z        2
## 5989   2006-09 04:22:44Z        2
## 5990   2006-09 16:05:03Z        2
## 5991   2006-09 18:53:53Z        2
## 5992   2006-09 17:33:48Z        2
## 5993   2006-09 19:54:29Z        2
## 5994   2006-09 11:40:04Z        2
## 5995   2006-10 22:56:20Z        2
## 5996   2006-10 10:03:35Z        2
## 5997   2006-10 15:44:59Z        2
## 5998   2006-10 06:11:30Z        2
## 5999   2006-10 09:34:43Z        2
## 6000   2006-10 15:40:38Z        2
## 6001   2006-10 21:26:08Z        2
## 6002   2006-10 13:34:35Z        2
## 6003   2006-10 06:58:08Z        2
## 6004   2006-10 02:18:18Z        2
## 6005   2006-10 11:05:53Z        2
## 6006   2006-10 15:44:00Z        2
## 6007   2006-11 13:37:30Z        2
## 6008   2006-11 11:24:14Z        2
## 6009   2006-11 03:58:57Z        2
## 6010   2006-11 06:29:09Z        2
## 6011   2006-11 08:16:37Z        2
## 6012   2006-11 16:01:37Z        2
## 6013   2006-11 20:06:23Z        2
## 6014   2006-11 18:56:01Z        2
## 6015   2006-11 22:27:13Z        2
## 6016   2006-11 09:08:55Z        2
## 6017   2006-11 12:18:05Z        2
## 6018   2006-11 14:31:17Z        2
## 6019   2006-11 03:45:55Z        2
## 6020   2006-11 09:19:53Z        2
## 6021   2006-11 10:56:31Z        2
## 6022   2006-11 05:37:15Z        2
## 6023   2006-12 17:17:33Z        2
## 6024   2006-12 15:11:17Z        2
## 6025   2006-12 14:46:18Z        2
## 6026   2006-12 14:46:57Z        2
## 6027   2006-12 06:21:06Z        2
## 6028   2006-12 16:04:32Z        2
## 6029   2006-12 20:24:27Z        2
## 6030   2006-12 22:29:52Z        2
## 6031   2006-12 23:48:36Z        2
## 6032   2006-12 10:32:16Z        2
## 6033   2006-12 11:01:47Z        2
## 6034   2006-12 11:02:29Z        2
## 6035   2006-12 19:02:22Z        2
## 6036   2006-12 19:05:39Z        2
## 6037   2006-12 19:14:01Z        2
## 6038   2006-12 19:16:11Z        2
## 6039   2006-12 19:17:03Z        2
## 6040   2006-12 19:20:53Z        2
## 6041   2006-12 19:22:09Z        2
## 6042   2006-12 19:22:48Z        2
## 6043   2006-12 19:35:09Z        2
## 6044   2006-12 19:37:02Z        2
## 6045   2006-12 19:40:16Z        2
## 6046   2006-12 19:40:42Z        2
## 6047   2006-12 19:41:11Z        2
## 6048   2006-12 10:40:38Z        2
## 6049   2006-12 22:46:24Z        2
## 6050   2006-12 09:59:45Z        2
## 6051   2006-12 21:04:55Z        2
## 6052   2006-12 23:38:50Z        2
## 6053   2007-01 00:51:48Z        2
## 6054   2007-01 14:22:43Z        2
## 6055   2007-01 21:44:18Z        2
## 6056   2007-01 22:55:38Z        2
## 6057   2007-01 02:15:42Z        2
## 6058   2007-01 22:38:20Z        2
## 6059   2007-01 22:38:48Z        2
## 6060   2007-01 19:30:54Z        2
## 6061   2007-01 19:31:13Z        2
## 6062   2007-01 22:52:08Z        2
## 6063   2007-02 21:20:20Z        2
## 6064   2007-02 21:41:41Z        2
## 6065   2007-02 16:59:41Z        2
## 6066   2007-02 17:01:42Z        2
## 6067   2007-02 02:51:12Z        2
## 6068   2007-02 19:46:48Z        2
## 6069   2007-02 22:36:19Z        2
## 6070   2007-03 03:24:02Z        2
## 6071   2007-03 03:24:48Z        2
## 6072   2007-03 11:34:54Z        2
## 6073   2007-03 08:18:15Z        2
## 6074   2007-03 09:11:37Z        2
## 6075   2007-03 09:12:38Z        2
## 6076   2007-03 17:12:20Z        2
## 6077   2007-03 17:12:37Z        2
## 6078   2007-03 17:13:01Z        2
## 6079   2007-03 19:31:51Z        2
## 6080   2007-03 19:34:20Z        2
## 6081   2007-03 14:17:03Z        2
## 6082   2007-03 14:20:50Z        2
## 6083   2007-03 23:45:23Z        2
## 6084   2007-03 15:44:12Z        2
## 6085   2007-03 20:05:02Z        2
## 6086   2007-03 16:25:31Z        2
## 6087   2007-04 11:19:56Z        2
## 6088   2007-04 21:59:18Z        2
## 6089   2007-04 22:00:43Z        2
## 6090   2007-04 22:01:38Z        2
## 6091   2007-04 22:02:41Z        2
## 6092   2007-04 22:03:54Z        2
## 6093   2007-04 22:05:27Z        2
## 6094   2007-04 22:07:03Z        2
## 6095   2007-04 22:08:09Z        2
## 6096   2007-04 22:11:07Z        2
## 6097   2007-04 22:12:15Z        2
## 6098   2007-04 22:13:21Z        2
## 6099   2007-04 22:14:03Z        2
## 6100   2007-04 22:17:15Z        2
## 6101   2007-04 22:18:56Z        2
## 6102   2007-04 22:21:17Z        2
## 6103   2007-04 22:22:52Z        2
## 6104   2007-04 22:24:32Z        2
## 6105   2007-04 22:25:28Z        2
## 6106   2007-04 22:26:28Z        2
## 6107   2007-04 22:26:55Z        2
## 6108   2007-04 22:27:15Z        2
## 6109   2007-04 22:30:26Z        2
## 6110   2007-04 22:31:21Z        2
## 6111   2007-04 22:32:10Z        2
## 6112   2007-04 22:32:55Z        2
## 6113   2007-04 00:11:07Z        2
## 6114   2007-04 00:36:26Z        2
## 6115   2007-04 00:39:14Z        2
## 6116   2007-04 00:43:12Z        2
## 6117   2007-04 00:46:47Z        2
## 6118   2007-04 00:52:59Z        2
## 6119   2007-04 01:18:14Z        2
## 6120   2007-04 01:21:06Z        2
## 6121   2007-04 01:22:18Z        2
## 6122   2007-04 07:24:51Z        2
## 6123   2007-04 18:59:37Z        2
## 6124   2007-04 01:48:39Z        2
## 6125   2007-04 22:37:38Z        2
## 6126   2007-04 22:39:27Z        2
## 6127   2007-05 17:41:06Z        2
## 6128   2007-05 07:14:04Z        2
## 6129   2007-05 10:20:58Z        2
## 6130   2007-06 10:20:05Z        2
## 6131   2007-06 19:46:49Z        2
## 6132   2007-06 17:47:55Z        2
## 6133   2007-06 15:28:48Z        2
## 6134   2007-06 02:18:02Z        2
## 6135   2007-07 05:59:45Z        2
## 6136   2007-07 16:49:58Z        2
## 6137   2007-07 05:18:20Z        2
## 6138   2007-07 22:06:30Z        2
## 6139   2007-07 23:20:38Z        2
## 6140   2007-07 05:14:00Z        2
## 6141   2007-08 13:00:39Z        2
## 6142   2007-08 13:46:58Z        2
## 6143   2007-08 13:50:09Z        2
## 6144   2007-08 14:12:54Z        2
## 6145   2007-08 14:14:34Z        2
## 6146   2007-08 14:16:31Z        2
## 6147   2007-08 14:18:12Z        2
## 6148   2007-08 14:22:35Z        2
## 6149   2007-08 14:25:00Z        2
## 6150   2007-08 14:26:44Z        2
## 6151   2007-08 14:27:54Z        2
## 6152   2007-08 14:30:18Z        2
## 6153   2007-08 14:34:37Z        2
## 6154   2007-08 14:38:33Z        2
## 6155   2007-08 14:57:19Z        2
## 6156   2007-08 14:59:44Z        2
## 6157   2007-08 15:01:25Z        2
## 6158   2007-08 15:02:49Z        2
## 6159   2007-08 15:06:03Z        2
## 6160   2007-08 08:01:20Z        2
## 6161   2007-08 08:18:47Z        2
## 6162   2007-08 08:30:34Z        2
## 6163   2007-08 09:18:40Z        2
## 6164   2007-08 10:16:13Z        2
## 6165   2007-08 20:06:09Z        2
## 6166   2007-08 20:10:23Z        2
## 6167   2007-08 20:12:03Z        2
## 6168   2007-08 10:45:52Z        2
## 6169   2007-08 09:31:05Z        2
## 6170   2007-08 09:34:09Z        2
## 6171   2007-08 09:35:10Z        2
## 6172   2007-08 09:38:37Z        2
## 6173   2007-08 09:39:31Z        2
## 6174   2007-08 09:44:14Z        2
## 6175   2007-08 09:45:22Z        2
## 6176   2007-08 09:51:21Z        2
## 6177   2007-08 09:52:36Z        2
## 6178   2007-08 14:50:54Z        2
## 6179   2007-08 14:53:14Z        2
## 6180   2007-08 15:31:14Z        2
## 6181   2007-08 02:33:21Z        2
## 6182   2007-08 14:08:34Z        2
## 6183   2007-08 14:10:26Z        2
## 6184   2007-08 16:02:54Z        2
## 6185   2007-08 16:05:53Z        2
## 6186   2007-08 09:15:56Z        2
## 6187   2007-08 09:18:21Z        2
## 6188   2007-08 23:39:29Z        2
## 6189   2007-08 08:53:17Z        2
## 6190   2007-09 16:25:31Z        2
## 6191   2007-09 16:27:55Z        2
## 6192   2007-09 16:31:10Z        2
## 6193   2007-09 14:25:43Z        2
## 6194   2007-09 22:09:53Z        2
## 6195   2007-09 23:54:53Z        2
## 6196   2007-09 22:28:14Z        2
## 6197   2007-09 22:52:00Z        2
## 6198   2007-10 14:48:06Z        2
## 6199   2007-10 14:50:01Z        2
## 6200   2007-10 14:54:47Z        2
## 6201   2007-10 17:38:24Z        2
## 6202   2007-10 17:38:55Z        2
## 6203   2007-10 01:54:05Z        2
## 6204   2007-10 01:55:02Z        2
## 6205   2007-10 01:58:33Z        2
## 6206   2007-10 16:19:57Z        2
## 6207   2007-10 16:21:57Z        2
## 6208   2007-10 21:44:22Z        2
## 6209   2007-10 15:07:54Z        2
## 6210   2007-10 23:04:52Z        2
## 6211   2007-10 09:59:42Z        2
## 6212   2007-10 22:27:29Z        2
## 6213   2007-11 13:41:08Z        2
## 6214   2007-11 01:09:22Z        2
## 6215   2007-11 08:54:31Z        2
## 6216   2007-11 13:19:09Z        2
## 6217   2007-11 22:48:29Z        2
## 6218   2007-11 22:48:46Z        2
## 6219   2007-11 18:01:17Z        2
## 6220   2007-11 18:02:19Z        2
## 6221   2007-11 18:03:35Z        2
## 6222   2007-11 18:04:27Z        2
## 6223   2007-11 23:39:57Z        2
## 6224   2007-12 22:22:24Z        2
## 6225   2007-12 23:31:04Z        2
## 6226   2007-12 23:32:46Z        2
## 6227   2007-12 23:34:37Z        2
## 6228   2007-12 23:35:34Z        2
## 6229   2007-12 23:38:36Z        2
## 6230   2007-12 23:39:45Z        2
## 6231   2007-12 07:53:07Z        2
## 6232   2007-12 07:54:59Z        2
## 6233   2007-12 08:00:33Z        2
## 6234   2007-12 08:03:31Z        2
## 6235   2007-12 08:06:01Z        2
## 6236   2007-12 04:19:22Z        2
## 6237   2007-12 04:31:03Z        2
## 6238   2007-12 18:23:11Z        2
## 6239   2007-12 18:27:02Z        2
## 6240   2007-12 18:31:57Z        2
## 6241   2007-12 20:57:08Z        2
## 6242   2007-12 20:33:10Z        2
## 6243   2007-12 20:33:53Z        2
## 6244   2007-12 20:37:39Z        2
## 6245   2007-12 23:15:43Z        2
## 6246   2008-01 18:42:48Z        2
## 6247   2008-01 10:32:20Z        2
## 6248   2008-01 10:34:21Z        2
## 6249   2008-01 14:28:10Z        2
## 6250   2008-01 14:40:36Z        2
## 6251   2008-01 15:53:29Z        2
## 6252   2002-10 01:09:36Z        5
## 6253   2002-12 05:15:54Z        5
## 6254   2002-12 05:37:08Z        5
## 6255   2002-12 23:15:43Z        5
## 6256   2003-07 00:35:36Z        5
## 6257   2004-03 21:21:38Z        5
## 6258   2004-07 16:25:42Z        5
## 6259   2004-11 13:05:54Z        5
## 6260   2004-11 13:06:07Z        5
## 6261   2004-11 19:17:47Z        5
## 6262   2004-11 20:44:26Z        5
## 6263   2004-11 21:21:15Z        5
## 6264   2004-12 09:28:55Z        5
## 6265   2005-01 15:58:49Z        5
## 6266   2005-09 08:38:48Z        5
## 6267   2006-03 12:58:13Z        5
## 6268   2006-04 12:41:40Z        5
## 6269   2006-05 00:51:49Z        5
## 6270   2007-05 14:00:07Z        5
## 6271   2007-05 16:10:37Z        5
## 6272   2007-06 11:32:17Z        5
## 6273   2007-08 00:37:11Z        5
## 6274   2007-09 23:30:41Z        5
## 6275   2007-10 03:37:01Z        5
## 6276   2007-10 09:20:23Z        5
## 6277   2007-10 17:32:37Z        5
## 6278   2007-10 09:21:36Z        5
## 6279   2007-11 13:39:50Z        5
## 6280   2007-12 03:05:20Z        5
## 6281   2002-10 01:14:31Z        5
## 6282   2002-12 02:05:02Z        5
## 6283   2002-12 05:48:16Z        5
## 6284   2002-12 23:17:07Z        5
## 6285   2003-06 01:25:54Z        5
## 6286   2003-07 00:37:28Z        5
## 6287   2004-03 03:37:59Z        5
## 6288   2004-07 17:28:25Z        5
## 6289   2004-11 19:19:35Z        5
## 6290   2004-11 20:45:53Z        5
## 6291   2004-11 21:24:30Z        5
## 6292   2004-12 13:28:18Z        5
## 6293   2005-09 15:07:29Z        5
## 6294   2006-03 05:19:07Z        5
## 6295   2006-04 15:40:44Z        5
## 6296   2006-05 18:25:11Z        5
## 6297   2006-10 20:49:43Z        5
## 6298   2007-01 07:00:33Z        5
## 6299   2007-05 04:56:35Z        5
## 6300   2007-05 21:53:19Z        5
## 6301   2007-06 12:32:00Z        5
## 6302   2007-08 05:48:17Z        5
## 6303   2007-09 00:52:44Z        5
## 6304   2007-10 07:11:44Z        5
## 6305   2007-10 10:17:14Z        5
## 6306   2007-10 10:48:21Z        5
## 6307   2007-12 03:19:49Z        5
## 6308   2007-12 06:26:22Z        5
## 6309   2002-10 01:21:01Z        6
## 6310   2002-12 03:07:20Z        6
## 6311   2002-12 06:05:12Z        6
## 6312   2002-12 23:19:23Z        6
## 6313   2003-07 00:55:35Z        6
## 6314   2004-03 01:34:16Z        6
## 6315   2004-07 16:55:36Z        6
## 6316   2004-11 21:51:30Z        6
## 6317   2004-11 21:51:43Z        6
## 6318   2004-11 19:27:06Z        6
## 6319   2004-11 20:48:14Z        6
## 6320   2004-11 21:30:09Z        6
## 6321   2004-12 04:12:09Z        6
## 6322   2005-09 09:45:09Z        6
## 6323   2006-03 16:02:52Z        6
## 6324   2006-04 13:37:57Z        6
## 6325   2006-05 04:17:01Z        6
## 6326   2007-03 04:21:11Z        6
## 6327   2007-05 15:32:56Z        6
## 6328   2007-05 19:44:39Z        6
## 6329   2007-06 08:59:01Z        6
## 6330   2007-08 02:46:48Z        6
## 6331   2007-09 00:07:09Z        6
## 6332   2007-10 05:50:00Z        6
## 6333   2007-10 09:55:24Z        6
## 6334   2007-10 01:20:41Z        6
## 6335   2007-10 10:04:06Z        6
## 6336   2007-12 03:11:04Z        6
## 6337   2007-12 17:32:40Z        6
## 6338   2002-10 01:59:00Z        6
## 6339   2002-12 03:17:24Z        6
## 6340   2002-12 06:11:08Z        6
## 6341   2002-12 23:20:45Z        6
## 6342   2003-07 00:57:04Z        6
## 6343   2004-03 14:31:41Z        6
## 6344   2004-07 17:20:15Z        6
## 6345   2004-11 19:28:22Z        6
## 6346   2004-11 20:49:28Z        6
## 6347   2004-11 21:33:55Z        6
## 6348   2004-12 06:04:43Z        6
## 6349   2005-09 12:25:29Z        6
## 6350   2006-03 06:19:01Z        6
## 6351   2006-04 14:57:21Z        6
## 6352   2006-05 20:08:42Z        6
## 6353   2007-05 02:19:19Z        6
## 6354   2007-05 19:55:36Z        6
## 6355   2007-06 12:14:17Z        6
## 6356   2007-08 05:07:45Z        6
## 6357   2007-10 06:51:42Z        6
## 6358   2007-10 10:12:30Z        6
## 6359   2007-10 16:19:27Z        6
## 6360   2007-10 10:47:05Z        6
## 6361   2007-10 11:22:13Z        6
## 6362   2007-12 03:18:01Z        6
## 6363   2007-12 19:28:18Z        6
## 6364   2002-10 02:03:38Z        6
## 6365   2002-12 03:31:26Z        6
## 6366   2002-12 06:21:59Z        6
## 6367   2002-12 23:21:56Z        6
## 6368   2003-07 00:58:43Z        6
## 6369   2004-03 01:08:20Z        6
## 6370   2004-06 20:20:07Z        6
## 6371   2004-07 10:50:39Z        6
## 6372   2004-10 03:01:39Z        6
## 6373   2004-10 01:26:26Z        6
## 6374   2004-11 19:29:46Z        6
## 6375   2004-11 20:50:40Z        6
## 6376   2004-11 21:36:53Z        6
## 6377   2004-12 09:15:57Z        6
## 6378   2004-12 20:38:50Z        6
## 6379   2004-12 15:03:57Z        6
## 6380   2005-06 02:30:46Z        6
## 6381   2005-08 01:52:35Z        6
## 6382   2005-09 06:53:11Z        6
## 6383   2005-12 23:41:51Z        6
## 6384   2006-02 17:55:59Z        6
## 6385   2006-03 03:44:07Z        6
## 6386   2006-04 11:25:30Z        6
## 6387   2006-05 04:37:48Z        6
## 6388   2006-05 04:43:57Z        6
## 6389   2006-05 17:56:25Z        6
## 6390   2006-07 19:11:34Z        6
## 6391   2006-07 19:25:27Z        6
## 6392   2006-07 20:12:59Z        6
## 6393   2006-07 20:13:47Z        6
## 6394   2006-07 00:46:07Z        6
## 6395   2006-07 00:53:16Z        6
## 6396   2006-07 00:54:25Z        6
## 6397   2006-07 02:18:05Z        6
## 6398   2006-08 22:01:22Z        6
## 6399   2006-08 22:07:35Z        6
## 6400   2006-08 15:30:30Z        6
## 6401   2006-08 04:37:43Z        6
## 6402   2006-08 20:58:13Z        6
## 6403   2006-09 13:01:35Z        6
## 6404   2006-10 00:38:48Z        6
## 6405   2006-11 10:51:18Z        6
## 6406   2006-12 09:09:07Z        6
## 6407   2007-01 11:51:07Z        6
## 6408   2007-01 17:38:29Z        6
## 6409   2007-02 15:54:03Z        6
## 6410   2007-02 15:55:13Z        6
## 6411   2007-02 18:58:01Z        6
## 6412   2007-02 03:36:45Z        6
## 6413   2007-02 17:56:05Z        6
## 6414   2007-02 17:58:05Z        6
## 6415   2007-04 09:41:47Z        6
## 6416   2007-04 09:42:11Z        6
## 6417   2007-05 23:47:59Z        6
## 6418   2007-06 19:41:34Z        6
## 6419   2007-06 02:41:01Z        6
## 6420   2007-07 22:34:35Z        6
## 6421   2007-07 22:42:27Z        6
## 6422   2007-08 21:02:00Z        6
## 6423   2007-08 18:59:00Z        6
## 6424   2007-08 18:59:51Z        6
## 6425   2007-09 11:13:47Z        6
## 6426   2007-09 22:20:13Z        6
## 6427   2007-09 05:50:12Z        6
## 6428   2007-10 10:11:27Z        6
## 6429   2007-10 08:12:04Z        6
## 6430   2007-10 08:08:00Z        6
## 6431   2007-12 02:37:52Z        6
## 6432   2007-12 07:09:39Z        6
## 6433   2002-02 10:22:10Z        0
## 6434   2002-01 07:19:54Z        0
## 6435   2002-01 07:35:31Z        0
## 6436   2002-01 07:36:38Z        0
## 6437   2002-02 15:51:15Z        0
## 6438   2003-05 09:31:16Z        0
## 6439   2003-05 10:00:24Z        0
## 6440   2003-05 10:01:28Z        0
## 6441   2003-06 15:49:13Z        0
## 6442   2003-06 15:49:49Z        0
## 6443   2003-07 07:27:39Z        0
## 6444   2003-07 11:40:09Z        0
## 6445   2003-07 11:40:55Z        0
## 6446   2003-07 11:41:56Z        0
## 6447   2003-08 12:20:14Z        0
## 6448   2003-08 12:24:58Z        0
## 6449   2003-08 12:30:30Z        0
## 6450   2003-10 17:34:07Z        0
## 6451   2003-10 14:15:09Z        0
## 6452   2003-10 20:17:39Z        0
## 6453   2003-10 14:03:42Z        0
## 6454   2003-10 14:05:56Z        0
## 6455   2003-12 06:49:57Z        0
## 6456   2003-12 08:13:02Z        0
## 6457   2003-12 17:46:58Z        0
## 6458   2004-01 06:18:06Z        0
## 6459   2004-02 17:07:33Z        0
## 6460   2004-02 17:27:48Z        0
## 6461   2004-02 19:09:41Z        0
## 6462   2004-02 19:10:25Z        0
## 6463   2004-02 13:05:52Z        0
## 6464   2004-02 14:03:19Z        0
## 6465   2004-02 23:21:59Z        0
## 6466   2004-03 21:47:46Z        0
## 6467   2004-03 09:41:53Z        0
## 6468   2004-03 18:31:51Z        0
## 6469   2004-03 18:32:40Z        0
## 6470   2004-04 14:21:22Z        0
## 6471   2004-04 10:32:28Z        0
## 6472   2004-05 20:16:38Z        0
## 6473   2004-05 20:17:00Z        0
## 6474   2004-05 00:15:48Z        0
## 6475   2004-05 21:23:53Z        0
## 6476   2004-05 21:24:46Z        0
## 6477   2004-06 20:46:05Z        0
## 6478   2004-06 17:34:49Z        0
## 6479   2004-07 10:47:28Z        0
## 6480   2004-07 17:44:55Z        0
## 6481   2004-08 12:18:28Z        0
## 6482   2004-08 15:08:45Z        0
## 6483   2004-08 18:59:12Z        0
## 6484   2004-08 19:22:06Z        0
## 6485   2004-08 15:22:54Z        0
## 6486   2004-08 10:46:27Z        0
## 6487   2004-08 06:10:01Z        0
## 6488   2004-09 17:13:20Z        0
## 6489   2004-09 12:01:39Z        0
## 6490   2004-10 11:40:13Z        0
## 6491   2004-11 02:13:53Z        0
## 6492   2004-12 16:56:52Z        0
## 6493   2004-12 17:02:55Z        0
## 6494   2004-12 15:18:05Z        0
## 6495   2005-04 22:23:19Z        0
## 6496   2005-04 11:17:22Z        0
## 6497   2005-04 07:18:39Z        0
## 6498   2005-04 14:39:32Z        0
## 6499   2005-05 05:46:40Z        0
## 6500   2005-05 06:40:32Z        0
## 6501   2005-07 22:49:54Z        0
## 6502   2005-08 00:35:12Z        0
## 6503   2005-09 21:03:33Z        0
## 6504   2005-10 10:46:17Z        0
## 6505   2005-10 00:39:46Z        0
## 6506   2005-11 17:13:46Z        0
## 6507   2005-11 19:26:17Z        0
## 6508   2005-12 17:31:36Z        0
## 6509   2006-01 01:11:45Z        0
## 6510   2006-02 13:36:33Z        0
## 6511   2006-02 20:14:43Z        0
## 6512   2006-03 14:47:59Z        0
## 6513   2006-03 23:15:57Z        0
## 6514   2006-04 11:27:43Z        0
## 6515   2006-04 19:08:49Z        0
## 6516   2006-05 09:31:23Z        0
## 6517   2006-06 23:48:16Z        0
## 6518   2006-06 23:56:13Z        0
## 6519   2006-07 02:42:01Z        0
## 6520   2006-07 20:21:17Z        0
## 6521   2006-07 20:21:39Z        0
## 6522   2006-08 19:32:29Z        0
## 6523   2006-08 12:48:50Z        0
## 6524   2006-08 17:26:58Z        0
## 6525   2006-09 10:59:27Z        0
## 6526   2006-09 12:56:53Z        0
## 6527   2006-09 12:57:34Z        0
## 6528   2006-09 23:42:49Z        0
## 6529   2006-09 08:22:08Z        0
## 6530   2006-09 21:44:17Z        0
## 6531   2006-10 21:34:55Z        0
## 6532   2006-11 11:24:53Z        0
## 6533   2006-11 23:02:53Z        0
## 6534   2006-11 00:37:59Z        0
## 6535   2006-11 12:56:48Z        0
## 6536   2006-11 18:07:56Z        0
## 6537   2006-11 18:10:26Z        0
## 6538   2006-11 19:19:57Z        0
## 6539   2006-11 07:38:53Z        0
## 6540   2006-12 07:35:18Z        0
## 6541   2006-12 07:54:08Z        0
## 6542   2007-01 09:44:11Z        0
## 6543   2007-01 09:44:26Z        0
## 6544   2007-02 21:05:20Z        0
## 6545   2007-02 19:21:58Z        0
## 6546   2007-02 22:31:11Z        0
## 6547   2007-02 22:31:33Z        0
## 6548   2007-02 18:22:16Z        0
## 6549   2007-02 18:23:49Z        0
## 6550   2007-02 19:24:06Z        0
## 6551   2007-02 21:46:54Z        0
## 6552   2007-02 01:00:41Z        0
## 6553   2007-02 01:01:07Z        0
## 6554   2007-02 01:01:27Z        0
## 6555   2007-02 01:04:37Z        0
## 6556   2007-02 03:26:16Z        0
## 6557   2007-03 14:42:02Z        0
## 6558   2007-03 19:24:06Z        0
## 6559   2007-03 15:15:12Z        0
## 6560   2007-03 21:45:25Z        0
## 6561   2007-03 15:57:05Z        0
## 6562   2007-03 15:57:32Z        0
## 6563   2007-03 16:43:12Z        0
## 6564   2007-03 17:00:15Z        0
## 6565   2007-03 18:48:27Z        0
## 6566   2007-03 19:14:32Z        0
## 6567   2007-03 18:01:36Z        0
## 6568   2007-03 19:26:17Z        0
## 6569   2007-03 11:02:43Z        0
## 6570   2007-03 12:32:16Z        0
## 6571   2007-03 12:36:38Z        0
## 6572   2007-03 12:48:30Z        0
## 6573   2007-03 12:48:45Z        0
## 6574   2007-04 03:13:38Z        0
## 6575   2007-04 21:39:28Z        0
## 6576   2007-04 22:10:53Z        0
## 6577   2007-04 20:16:03Z        0
## 6578   2007-04 20:16:40Z        0
## 6579   2007-04 12:08:56Z        0
## 6580   2007-04 12:09:39Z        0
## 6581   2007-05 09:54:44Z        0
## 6582   2007-05 09:55:34Z        0
## 6583   2007-05 10:15:43Z        0
## 6584   2007-05 11:54:16Z        0
## 6585   2007-05 12:00:42Z        0
## 6586   2007-05 21:48:31Z        0
## 6587   2007-05 21:48:57Z        0
## 6588   2007-05 23:15:47Z        0
## 6589   2007-05 23:22:25Z        0
## 6590   2007-05 17:10:13Z        0
## 6591   2007-05 21:32:53Z        0
## 6592   2007-05 22:34:26Z        0
## 6593   2007-05 04:13:08Z        0
## 6594   2007-05 04:28:41Z        0
## 6595   2007-05 21:34:23Z        0
## 6596   2007-05 21:34:33Z        0
## 6597   2007-05 21:40:24Z        0
## 6598   2007-05 21:40:27Z        0
## 6599   2007-05 21:41:01Z        0
## 6600   2007-05 21:41:12Z        0
## 6601   2007-05 17:41:53Z        0
## 6602   2007-05 17:41:59Z        0
## 6603   2007-06 10:08:03Z        0
## 6604   2007-06 10:08:48Z        0
## 6605   2007-06 04:00:55Z        0
## 6606   2007-06 04:02:33Z        0
## 6607   2007-06 17:09:28Z        0
## 6608   2007-06 18:08:40Z        0
## 6609   2007-07 15:09:56Z        0
## 6610   2007-07 20:25:42Z        0
## 6611   2007-07 21:37:36Z        0
## 6612   2007-08 01:38:52Z        0
## 6613   2007-08 08:24:34Z        0
## 6614   2007-08 08:25:07Z        0
## 6615   2007-08 08:26:12Z        0
## 6616   2007-08 08:26:34Z        0
## 6617   2007-08 08:27:22Z        0
## 6618   2007-08 08:27:32Z        0
## 6619   2007-08 08:28:26Z        0
## 6620   2007-08 08:28:42Z        0
## 6621   2007-08 08:28:57Z        0
## 6622   2007-08 08:29:37Z        0
## 6623   2007-08 19:52:51Z        0
## 6624   2007-08 21:10:51Z        0
## 6625   2007-09 02:37:53Z        0
## 6626   2007-09 01:13:29Z        0
## 6627   2007-09 06:11:59Z        0
## 6628   2007-09 02:44:33Z        0
## 6629   2007-10 17:10:05Z        0
## 6630   2007-10 23:28:04Z        0
## 6631   2007-10 23:33:48Z        0
## 6632   2007-10 16:14:13Z        0
## 6633   2007-10 15:44:06Z        0
## 6634   2007-10 00:55:59Z        0
## 6635   2007-10 00:56:44Z        0
## 6636   2007-11 00:42:31Z        0
## 6637   2007-11 00:43:01Z        0
## 6638   2007-11 12:03:37Z        0
## 6639   2007-11 20:33:30Z        0
## 6640   2007-11 22:42:01Z        0
## 6641   2007-11 21:40:25Z        0
## 6642   2007-11 09:53:05Z        0
## 6643   2007-11 09:57:38Z        0
## 6644   2007-11 01:11:27Z        0
## 6645   2007-11 14:00:43Z        0
## 6646   2007-11 14:01:01Z        0
## 6647   2007-11 19:33:39Z        0
## 6648   2007-11 19:38:09Z        0
## 6649   2007-12 11:18:42Z        0
## 6650   2007-12 18:28:32Z        0
## 6651   2007-12 18:28:54Z        0
## 6652   2007-12 15:53:22Z        0
## 6653   2007-12 21:21:29Z        0
## 6654   2007-12 21:41:25Z        0
## 6655   2007-12 18:07:38Z        0
## 6656   2007-12 18:07:49Z        0
## 6657   2007-12 17:29:38Z        0
## 6658   2007-12 23:39:11Z        0
## 6659   2007-12 23:54:13Z        0
## 6660   2007-12 23:55:11Z        0
## 6661   2007-12 13:09:52Z        0
## 6662   2007-12 20:59:46Z        0
## 6663   2007-12 21:00:24Z        0
## 6664   2007-12 21:00:49Z        0
## 6665   2002-10 16:00:39Z        2
## 6666   2005-03 16:47:32Z        2
## 6667   2005-07 06:13:02Z        2
## 6668   2005-07 20:04:42Z        2
## 6669   2005-08 17:32:10Z        2
## 6670   2005-12 15:30:41Z        2
## 6671   2005-12 15:37:23Z        2
## 6672   2005-12 12:22:01Z        2
## 6673   2005-12 13:13:24Z        2
## 6674   2006-01 00:46:37Z        2
## 6675   2006-01 17:53:47Z        2
## 6676   2006-02 23:35:06Z        2
## 6677   2006-05 18:34:50Z        2
## 6678   2006-05 23:52:04Z        2
## 6679   2006-05 03:23:30Z        2
## 6680   2006-05 03:24:20Z        2
## 6681   2006-05 03:25:37Z        2
## 6682   2006-05 03:30:54Z        2
## 6683   2006-06 20:06:02Z        2
## 6684   2006-07 06:03:33Z        2
## 6685   2006-07 15:52:12Z        2
## 6686   2006-07 13:30:17Z        2
## 6687   2006-09 14:25:20Z        2
## 6688   2006-09 03:01:39Z        2
## 6689   2006-10 20:55:53Z        2
## 6690   2006-12 21:48:30Z        2
## 6691   2006-12 21:50:31Z        2
## 6692   2007-01 22:11:52Z        2
## 6693   2007-01 22:33:57Z        2
## 6694   2007-02 20:13:54Z        2
## 6695   2007-02 23:05:46Z        2
## 6696   2007-04 10:50:35Z        2
## 6697   2007-07 13:31:53Z        2
## 6698   2007-07 13:33:28Z        2
## 6699   2007-07 13:49:21Z        2
## 6700   2007-08 15:16:28Z        2
## 6701   2007-10 01:02:47Z        2
## 6702   2007-10 01:04:34Z        2
## 6703   2007-10 01:04:56Z        2
## 6704   2007-10 01:07:17Z        2
## 6705   2007-10 01:07:45Z        2
## 6706   2007-10 21:10:17Z        2
## 6707   2007-12 12:13:16Z        2
## 6708   2008-01 14:37:02Z        2
## 6709   2002-10 16:15:32Z        2
## 6710   2002-12 06:36:56Z        2
## 6711   2002-12 08:59:44Z        2
## 6712   2003-07 01:36:44Z        2
## 6713   2004-05 02:51:05Z        2
## 6714   2004-07 17:12:35Z        2
## 6715   2004-10 20:06:13Z        2
## 6716   2004-11 21:13:17Z        2
## 6717   2004-11 04:48:03Z        2
## 6718   2004-11 22:39:44Z        2
## 6719   2004-12 21:36:36Z        2
## 6720   2005-12 13:21:22Z        2
## 6721   2006-01 19:33:46Z        2
## 6722   2006-03 03:39:39Z        2
## 6723   2006-03 17:05:08Z        2
## 6724   2006-04 07:17:45Z        2
## 6725   2006-05 17:46:37Z        2
## 6726   2006-06 05:15:01Z        2
## 6727   2006-09 17:26:08Z        2
## 6728   2006-09 05:06:53Z        2
## 6729   2006-09 04:45:57Z        2
## 6730   2006-09 04:46:37Z        2
## 6731   2006-09 04:48:59Z        2
## 6732   2006-09 04:51:50Z        2
## 6733   2006-09 04:55:23Z        2
## 6734   2006-11 23:02:10Z        2
## 6735   2006-11 23:02:49Z        2
## 6736   2007-01 03:54:33Z        2
## 6737   2007-01 03:54:49Z        2
## 6738   2007-02 22:23:41Z        2
## 6739   2007-02 11:15:28Z        2
## 6740   2007-06 22:04:54Z        2
## 6741   2007-09 23:34:34Z        2
## 6742   2007-09 18:11:20Z        2
## 6743   2007-10 03:05:46Z        2
## 6744   2007-10 03:16:43Z        2
## 6745   2007-12 04:35:37Z        2
## 6746   2002-10 02:13:18Z        6
## 6747   2002-12 08:22:42Z        6
## 6748   2002-12 10:52:50Z        6
## 6749   2003-07 02:16:23Z        6
## 6750   2004-05 02:08:09Z        6
## 6751   2004-07 20:29:09Z        6
## 6752   2004-11 21:31:56Z        6
## 6753   2004-11 06:14:08Z        6
## 6754   2004-11 23:05:55Z        6
## 6755   2004-11 01:47:31Z        6
## 6756   2004-12 01:54:14Z        6
## 6757   2006-03 22:35:19Z        6
## 6758   2006-03 17:54:49Z        6
## 6759   2006-05 19:04:17Z        6
## 6760   2006-07 02:05:46Z        6
## 6761   2007-01 23:01:52Z        6
## 6762   2007-02 11:49:58Z        6
## 6763   2007-07 03:23:03Z        6
## 6764   2007-09 23:41:17Z        6
## 6765   2007-09 17:05:04Z        6
## 6766   2007-10 03:31:56Z        6
## 6767   2007-10 05:27:23Z        6
## 6768   2007-12 04:23:51Z        6
## 6769   2007-12 17:21:33Z        6
## 6770   2007-12 09:04:54Z        6
## 6771   2002-02 17:43:17Z        3
## 6772   2002-02 15:51:15Z        3
## 6773   2002-08 14:19:16Z        3
## 6774   2002-08 03:07:19Z        3
## 6775   2002-08 03:08:31Z        3
## 6776   2002-08 03:09:17Z        3
## 6777   2002-08 03:13:30Z        3
## 6778   2002-08 03:14:00Z        3
## 6779   2002-09 20:56:14Z        3
## 6780   2002-12 10:28:47Z        3
## 6781   2003-07 03:29:05Z        3
## 6782   2003-07 17:58:58Z        3
## 6783   2004-01 00:17:22Z        3
## 6784   2004-02 05:08:57Z        3
## 6785   2004-03 18:28:37Z        3
## 6786   2004-05 04:55:05Z        3
## 6787   2004-08 04:10:49Z        3
## 6788   2004-08 05:03:07Z        3
## 6789   2004-08 11:27:27Z        3
## 6790   2004-08 11:29:24Z        3
## 6791   2004-12 07:17:43Z        3
## 6792   2005-01 03:54:30Z        3
## 6793   2005-01 04:16:47Z        3
## 6794   2005-02 02:45:17Z        3
## 6795   2005-02 03:33:12Z        3
## 6796   2005-02 11:40:35Z        3
## 6797   2005-03 23:30:03Z        3
## 6798   2005-03 15:56:54Z        3
## 6799   2005-03 08:55:33Z        3
## 6800   2005-03 22:48:39Z        3
## 6801   2005-03 21:43:19Z        3
## 6802   2005-04 05:24:13Z        3
## 6803   2005-04 14:19:30Z        3
## 6804   2005-04 16:06:31Z        3
## 6805   2005-04 03:18:21Z        3
## 6806   2005-04 03:30:09Z        3
## 6807   2005-04 03:32:24Z        3
## 6808   2005-05 19:47:40Z        3
## 6809   2005-05 03:19:44Z        3
## 6810   2005-07 15:00:31Z        3
## 6811   2005-10 06:17:08Z        3
## 6812   2005-10 06:34:50Z        3
## 6813   2005-11 18:34:39Z        3
## 6814   2005-12 19:41:31Z        3
## 6815   2006-01 19:00:13Z        3
## 6816   2006-04 11:19:20Z        3
## 6817   2006-04 00:08:50Z        3
## 6818   2006-05 13:01:14Z        3
## 6819   2006-05 15:18:25Z        3
## 6820   2006-05 01:23:37Z        3
## 6821   2006-05 23:48:52Z        3
## 6822   2006-06 16:29:50Z        3
## 6823   2006-06 16:38:54Z        3
## 6824   2006-07 01:43:09Z        3
## 6825   2006-09 20:21:01Z        3
## 6826   2006-09 20:22:10Z        3
## 6827   2006-10 01:23:24Z        3
## 6828   2006-10 06:23:36Z        3
## 6829   2006-11 16:30:00Z        3
## 6830   2006-11 22:52:46Z        3
## 6831   2006-11 22:53:36Z        3
## 6832   2006-11 02:56:45Z        3
## 6833   2006-11 02:57:01Z        3
## 6834   2006-12 05:45:04Z        3
## 6835   2007-02 11:13:04Z        3
## 6836   2007-02 13:11:06Z        3
## 6837   2007-03 23:53:25Z        3
## 6838   2007-03 13:08:33Z        3
## 6839   2007-03 13:10:16Z        3
## 6840   2007-03 13:11:00Z        3
## 6841   2007-04 11:08:25Z        3
## 6842   2007-04 22:44:13Z        3
## 6843   2007-05 14:25:31Z        3
## 6844   2007-05 19:27:54Z        3
## 6845   2007-05 20:15:17Z        3
## 6846   2007-06 03:16:13Z        3
## 6847   2007-06 16:08:03Z        3
## 6848   2007-06 16:08:06Z        3
## 6849   2007-06 16:00:52Z        3
## 6850   2007-06 02:44:50Z        3
## 6851   2007-06 17:26:07Z        3
## 6852   2007-07 20:22:29Z        3
## 6853   2007-08 16:06:34Z        3
## 6854   2007-08 16:06:44Z        3
## 6855   2007-08 00:53:34Z        3
## 6856   2007-08 00:54:38Z        3
## 6857   2007-08 00:55:24Z        3
## 6858   2007-09 11:01:55Z        3
## 6859   2007-10 00:01:38Z        3
## 6860   2007-11 18:54:23Z        3
## 6861   2007-11 18:56:03Z        3
## 6862   2007-11 03:06:08Z        3
## 6863   2007-11 03:06:29Z        3
## 6864   2007-12 12:53:13Z        3
## 6865   2002-10 13:09:31Z        7
## 6866   2002-12 10:34:01Z        7
## 6867   2002-12 12:48:00Z        7
## 6868   2003-07 02:37:37Z        7
## 6869   2004-06 00:33:37Z        7
## 6870   2004-07 20:26:09Z        7
## 6871   2004-11 21:47:45Z        7
## 6872   2004-11 23:33:38Z        7
## 6873   2004-11 01:56:24Z        7
## 6874   2004-11 02:40:00Z        7
## 6875   2004-12 16:23:17Z        7
## 6876   2005-12 03:51:48Z        7
## 6877   2006-03 09:45:41Z        7
## 6878   2006-03 19:06:21Z        7
## 6879   2006-05 05:20:11Z        7
## 6880   2006-07 14:03:49Z        7
## 6881   2006-12 07:41:14Z        7
## 6882   2007-02 23:06:05Z        7
## 6883   2007-04 19:08:41Z        7
## 6884   2007-07 01:29:46Z        7
## 6885   2007-08 07:03:12Z        7
## 6886   2007-09 09:31:22Z        7
## 6887   2007-10 05:56:23Z        7
## 6888   2007-10 13:49:08Z        7
## 6889   2007-11 00:02:01Z        7
## 6890   2007-12 17:01:41Z        7
## 6891   2002-10 13:32:51Z        8
## 6892   2002-12 11:23:17Z        8
## 6893   2002-12 13:33:53Z        8
## 6894   2003-03 17:58:19Z        8
## 6895   2003-06 02:30:41Z        8
## 6896   2003-07 20:35:49Z        8
## 6897   2003-07 02:45:07Z        8
## 6898   2003-09 01:01:33Z        8
## 6899   2003-09 01:03:19Z        8
## 6900   2003-11 15:12:33Z        8
## 6901   2004-07 19:22:04Z        8
## 6902   2004-08 18:10:24Z        8
## 6903   2004-10 15:48:43Z        8
## 6904   2004-10 15:49:33Z        8
## 6905   2004-11 14:55:05Z        8
## 6906   2004-11 14:56:51Z        8
## 6907   2004-11 14:57:06Z        8
## 6908   2004-11 14:58:04Z        8
## 6909   2004-11 14:58:52Z        8
## 6910   2004-11 15:01:02Z        8
## 6911   2004-11 02:10:13Z        8
## 6912   2004-11 21:36:10Z        8
## 6913   2004-12 21:08:48Z        8
## 6914   2004-12 21:09:08Z        8
## 6915   2005-01 04:21:00Z        8
## 6916   2005-01 04:21:53Z        8
## 6917   2005-01 01:15:04Z        8
## 6918   2005-03 13:10:26Z        8
## 6919   2005-03 19:41:57Z        8
## 6920   2005-03 00:01:46Z        8
## 6921   2005-04 04:20:29Z        8
## 6922   2005-05 08:08:52Z        8
## 6923   2005-05 08:10:27Z        8
## 6924   2005-05 08:10:57Z        8
## 6925   2005-05 08:11:55Z        8
## 6926   2005-05 08:12:44Z        8
## 6927   2005-05 22:43:29Z        8
## 6928   2005-05 22:44:38Z        8
## 6929   2005-05 21:04:55Z        8
## 6930   2005-06 03:14:46Z        8
## 6931   2005-06 03:15:58Z        8
## 6932   2005-06 03:20:54Z        8
## 6933   2005-06 03:26:41Z        8
## 6934   2005-06 12:12:28Z        8
## 6935   2005-06 19:41:11Z        8
## 6936   2005-06 01:49:40Z        8
## 6937   2005-06 11:13:57Z        8
## 6938   2005-06 01:54:01Z        8
## 6939   2005-07 21:10:23Z        8
## 6940   2005-08 05:39:34Z        8
## 6941   2005-08 16:18:10Z        8
## 6942   2005-08 05:06:15Z        8
## 6943   2005-09 13:24:32Z        8
## 6944   2005-09 13:25:12Z        8
## 6945   2005-09 20:50:43Z        8
## 6946   2005-09 07:49:45Z        8
## 6947   2005-11 00:30:05Z        8
## 6948   2005-11 15:52:23Z        8
## 6949   2005-11 18:47:07Z        8
## 6950   2005-12 14:02:05Z        8
## 6951   2005-12 23:49:32Z        8
## 6952   2005-12 23:50:12Z        8
## 6953   2006-02 16:27:40Z        8
## 6954   2006-02 16:28:18Z        8
## 6955   2006-02 00:50:20Z        8
## 6956   2006-02 23:41:00Z        8
## 6957   2006-03 01:38:11Z        8
## 6958   2006-04 00:38:06Z        8
## 6959   2006-04 00:28:42Z        8
## 6960   2006-04 13:44:42Z        8
## 6961   2006-04 05:36:58Z        8
## 6962   2006-05 20:09:01Z        8
## 6963   2006-05 10:36:34Z        8
## 6964   2006-06 20:16:15Z        8
## 6965   2006-06 20:20:56Z        8
## 6966   2006-07 17:14:31Z        8
## 6967   2006-07 17:22:38Z        8
## 6968   2006-08 16:02:39Z        8
## 6969   2006-08 16:55:57Z        8
## 6970   2006-08 16:58:19Z        8
## 6971   2006-08 16:59:20Z        8
## 6972   2006-08 06:27:00Z        8
## 6973   2006-08 22:21:19Z        8
## 6974   2006-08 22:27:40Z        8
## 6975   2006-08 22:34:39Z        8
## 6976   2006-08 22:34:54Z        8
## 6977   2006-08 22:35:18Z        8
## 6978   2006-09 19:55:48Z        8
## 6979   2006-09 19:56:27Z        8
## 6980   2006-09 20:07:24Z        8
## 6981   2006-09 20:07:47Z        8
## 6982   2006-09 20:08:08Z        8
## 6983   2006-09 20:08:33Z        8
## 6984   2006-09 23:55:14Z        8
## 6985   2006-09 01:15:50Z        8
## 6986   2006-09 01:44:54Z        8
## 6987   2006-09 20:44:24Z        8
## 6988   2006-09 07:07:13Z        8
## 6989   2006-10 19:41:17Z        8
## 6990   2006-10 01:10:07Z        8
## 6991   2006-11 18:06:34Z        8
## 6992   2006-11 17:45:00Z        8
## 6993   2006-11 02:56:58Z        8
## 6994   2006-11 06:50:00Z        8
## 6995   2006-11 22:43:47Z        8
## 6996   2006-12 21:46:30Z        8
## 6997   2006-12 23:03:06Z        8
## 6998   2006-12 06:32:17Z        8
## 6999   2007-01 11:52:11Z        8
## 7000   2007-01 02:10:14Z        8
## 7001   2007-01 06:41:00Z        8
## 7002   2007-01 21:41:25Z        8
## 7003   2007-01 18:19:08Z        8
## 7004   2007-01 02:54:14Z        8
## 7005   2007-01 02:55:01Z        8
## 7006   2007-01 09:21:13Z        8
## 7007   2007-01 20:51:04Z        8
## 7008   2007-01 20:51:49Z        8
## 7009   2007-01 20:53:52Z        8
## 7010   2007-03 03:41:13Z        8
## 7011   2007-03 11:25:20Z        8
## 7012   2007-04 15:54:57Z        8
## 7013   2007-04 15:56:59Z        8
## 7014   2007-04 16:00:52Z        8
## 7015   2007-04 19:27:32Z        8
## 7016   2007-04 01:08:48Z        8
## 7017   2007-04 17:50:47Z        8
## 7018   2007-04 17:51:04Z        8
## 7019   2007-04 22:22:35Z        8
## 7020   2007-05 18:39:59Z        8
## 7021   2007-05 14:49:56Z        8
## 7022   2007-05 16:42:25Z        8
## 7023   2007-05 17:16:20Z        8
## 7024   2007-05 20:28:27Z        8
## 7025   2007-05 20:29:23Z        8
## 7026   2007-05 20:29:44Z        8
## 7027   2007-06 14:01:09Z        8
## 7028   2007-06 02:08:57Z        8
## 7029   2007-06 02:09:58Z        8
## 7030   2007-07 05:28:50Z        8
## 7031   2007-07 21:10:42Z        8
## 7032   2007-07 17:39:25Z        8
## 7033   2007-08 12:04:29Z        8
## 7034   2007-08 21:28:30Z        8
## 7035   2007-08 02:40:34Z        8
## 7036   2007-08 18:19:25Z        8
## 7037   2007-08 22:13:54Z        8
## 7038   2007-08 16:53:50Z        8
## 7039   2007-09 14:51:03Z        8
## 7040   2007-09 05:46:17Z        8
## 7041   2007-10 14:34:47Z        8
## 7042   2007-10 19:24:38Z        8
## 7043   2007-10 22:40:40Z        8
## 7044   2007-10 19:39:20Z        8
## 7045   2007-11 21:09:38Z        8
## 7046   2007-11 21:35:43Z        8
## 7047   2007-11 21:46:54Z        8
## 7048   2007-11 22:24:10Z        8
## 7049   2007-11 16:51:34Z        8
## 7050   2007-11 16:52:58Z        8
## 7051   2007-11 17:27:31Z        8
## 7052   2007-11 04:08:32Z        8
## 7053   2007-11 04:10:08Z        8
## 7054   2007-11 04:11:37Z        8
## 7055   2007-11 00:49:04Z        8
## 7056   2007-11 00:54:07Z        8
## 7057   2007-11 07:21:28Z        8
## 7058   2007-11 07:24:08Z        8
## 7059   2007-11 07:31:15Z        8
## 7060   2007-11 04:40:01Z        8
## 7061   2007-12 21:08:11Z        8
## 7062   2007-12 17:34:51Z        8
## 7063   2002-10 13:37:10Z        9
## 7064   2002-12 12:13:05Z        9
## 7065   2002-12 14:28:15Z        9
## 7066   2003-07 23:57:53Z        9
## 7067   2004-07 19:39:53Z        9
## 7068   2004-11 09:00:01Z        9
## 7069   2004-11 09:00:14Z        9
## 7070   2004-11 21:59:37Z        9
## 7071   2004-11 23:49:45Z        9
## 7072   2004-12 06:37:30Z        9
## 7073   2005-02 02:14:59Z        9
## 7074   2006-03 04:18:57Z        9
## 7075   2006-03 19:51:39Z        9
## 7076   2006-05 17:19:38Z        9
## 7077   2006-08 16:18:22Z        9
## 7078   2006-08 16:20:20Z        9
## 7079   2007-03 14:42:50Z        9
## 7080   2007-06 20:23:30Z        9
## 7081   2007-07 11:23:29Z        9
## 7082   2007-08 02:17:09Z        9
## 7083   2007-09 22:50:21Z        9
## 7084   2007-09 19:25:55Z        9
## 7085   2007-10 19:54:35Z        9
## 7086   2007-10 22:16:45Z        9
## 7087   2007-12 17:54:14Z        9
## 7088   2007-12 21:31:23Z        9
## 7089   2002-06 16:39:58Z        0
## 7090   2002-06 16:39:58Z        0
## 7091   2002-06 16:39:58Z        0
## 7092   2002-10 13:47:21Z        1
## 7093   2002-12 14:21:41Z        1
## 7094   2002-12 17:12:10Z        1
## 7095   2003-07 01:36:02Z        1
## 7096   2004-07 20:38:59Z        1
## 7097   2004-11 07:42:52Z        1
## 7098   2004-11 07:43:06Z        1
## 7099   2004-11 22:14:49Z        1
## 7100   2004-11 00:12:05Z        1
## 7101   2004-12 16:09:25Z        1
## 7102   2005-02 23:34:36Z        1
## 7103   2005-05 13:45:44Z        1
## 7104   2006-03 13:11:33Z        1
## 7105   2006-03 20:47:03Z        1
## 7106   2006-05 13:46:58Z        1
## 7107   2007-07 19:07:03Z        1
## 7108   2007-08 21:42:20Z        1
## 7109   2007-09 14:36:32Z        1
## 7110   2007-10 19:50:11Z        1
## 7111   2007-10 19:27:18Z        1
## 7112   2007-10 17:58:19Z        1
## 7113   2002-02 15:51:15Z        3
## 7114   2002-06 13:13:12Z        3
## 7115   2002-10 14:08:52Z        5
## 7116   2002-12 19:00:53Z        5
## 7117   2002-12 23:22:10Z        5
## 7118   2004-07 04:42:20Z        5
## 7119   2004-11 17:26:43Z        5
## 7120   2004-11 17:26:56Z        5
## 7121   2004-11 22:48:53Z        5
## 7122   2004-11 03:18:03Z        5
## 7123   2004-12 07:19:21Z        5
## 7124   2005-01 10:18:02Z        5
## 7125   2005-06 21:17:40Z        5
## 7126   2005-07 06:20:32Z        5
## 7127   2005-07 20:30:54Z        5
## 7128   2005-09 16:06:18Z        5
## 7129   2006-03 02:42:55Z        5
## 7130   2006-03 22:36:53Z        5
## 7131   2006-05 20:25:32Z        5
## 7132   2006-07 16:42:47Z        5
## 7133   2007-05 17:59:38Z        5
## 7134   2007-06 16:03:04Z        5
## 7135   2007-07 21:11:31Z        5
## 7136   2007-07 20:07:53Z        5
## 7137   2007-08 22:51:15Z        5
## 7138   2007-09 20:04:40Z        5
## 7139   2007-09 15:11:59Z        5
## 7140   2007-10 21:11:24Z        5
## 7141   2007-10 04:09:09Z        5
## 7142   2007-11 19:26:14Z        5
## 7143   2007-12 02:41:45Z        5
## 7144   2007-12 15:13:03Z        5
## 7145   2002-10 14:08:58Z        5
## 7146   2002-12 19:01:00Z        5
## 7147   2002-12 23:22:16Z        5
## 7148   2004-07 23:08:12Z        5
## 7149   2004-11 05:57:11Z        5
## 7150   2004-11 05:57:23Z        5
## 7151   2004-11 22:49:02Z        5
## 7152   2004-11 03:18:09Z        5
## 7153   2004-12 20:49:54Z        5
## 7154   2005-01 10:21:38Z        5
## 7155   2005-07 06:21:14Z        5
## 7156   2006-03 10:13:51Z        5
## 7157   2006-03 22:37:36Z        5
## 7158   2006-05 05:42:05Z        5
## 7159   2007-02 00:04:16Z        5
## 7160   2007-02 00:05:37Z        5
## 7161   2007-02 00:06:14Z        5
## 7162   2007-05 18:00:15Z        5
## 7163   2007-07 00:23:28Z        5
## 7164   2007-07 00:23:31Z        5
## 7165   2007-07 20:08:30Z        5
## 7166   2007-08 01:32:20Z        5
## 7167   2007-09 20:53:01Z        5
## 7168   2007-09 12:00:08Z        5
## 7169   2007-09 18:08:13Z        5
## 7170   2007-10 21:38:42Z        5
## 7171   2007-10 20:43:10Z        5
## 7172   2007-12 02:54:49Z        5
## 7173   2002-10 14:15:57Z        7
## 7174   2002-12 20:32:30Z        7
## 7175   2002-12 00:46:56Z        7
## 7176   2004-06 03:44:10Z        7
## 7177   2004-08 20:15:53Z        7
## 7178   2004-09 23:20:16Z        7
## 7179   2004-09 23:24:52Z        7
## 7180   2004-09 23:27:28Z        7
## 7181   2004-09 23:32:37Z        7
## 7182   2004-11 16:49:24Z        7
## 7183   2004-11 16:49:37Z        7
## 7184   2004-11 23:04:09Z        7
## 7185   2004-11 02:53:57Z        7
## 7186   2004-11 13:33:41Z        7
## 7187   2004-11 13:39:49Z        7
## 7188   2004-12 20:20:42Z        7
## 7189   2004-12 08:06:30Z        7
## 7190   2004-12 05:32:13Z        7
## 7191   2005-01 02:51:00Z        7
## 7192   2005-01 06:30:42Z        7
## 7193   2005-01 16:04:32Z        7
## 7194   2005-02 21:23:53Z        7
## 7195   2005-02 21:28:43Z        7
## 7196   2005-03 04:14:02Z        7
## 7197   2005-03 00:51:39Z        7
## 7198   2005-04 19:36:47Z        7
## 7199   2005-04 14:09:23Z        7
## 7200   2005-04 18:17:35Z        7
## 7201   2005-05 09:50:01Z        7
## 7202   2005-06 01:26:29Z        7
## 7203   2005-06 04:07:27Z        7
## 7204   2005-06 08:45:09Z        7
## 7205   2005-06 01:34:20Z        7
## 7206   2005-06 00:53:14Z        7
## 7207   2005-06 00:53:46Z        7
## 7208   2005-07 19:56:42Z        7
## 7209   2005-07 16:50:47Z        7
## 7210   2005-07 09:47:28Z        7
## 7211   2005-07 20:22:39Z        7
## 7212   2005-09 16:22:21Z        7
## 7213   2005-09 16:23:12Z        7
## 7214   2005-09 16:25:55Z        7
## 7215   2005-09 16:26:47Z        7
## 7216   2005-09 16:32:24Z        7
## 7217   2005-09 16:35:46Z        7
## 7218   2005-09 16:39:03Z        7
## 7219   2005-09 16:40:19Z        7
## 7220   2005-09 16:41:09Z        7
## 7221   2005-09 17:33:25Z        7
## 7222   2005-09 17:40:04Z        7
## 7223   2005-09 17:49:19Z        7
## 7224   2005-09 17:53:33Z        7
## 7225   2005-09 17:54:50Z        7
## 7226   2005-09 18:00:02Z        7
## 7227   2005-10 07:06:45Z        7
## 7228   2005-10 07:13:22Z        7
## 7229   2005-10 07:43:23Z        7
## 7230   2005-10 07:44:30Z        7
## 7231   2005-10 07:46:33Z        7
## 7232   2005-10 07:47:05Z        7
## 7233   2005-10 07:47:38Z        7
## 7234   2005-11 21:53:10Z        7
## 7235   2005-11 22:01:40Z        7
## 7236   2005-11 22:08:49Z        7
## 7237   2005-11 00:44:30Z        7
## 7238   2005-12 01:41:21Z        7
## 7239   2005-12 20:14:45Z        7
## 7240   2005-12 20:15:03Z        7
## 7241   2005-12 23:19:46Z        7
## 7242   2005-12 23:21:22Z        7
## 7243   2005-12 06:01:44Z        7
## 7244   2005-12 23:05:43Z        7
## 7245   2005-12 23:07:06Z        7
## 7246   2005-12 00:06:54Z        7
## 7247   2006-01 18:42:12Z        7
## 7248   2006-01 18:42:49Z        7
## 7249   2006-01 02:48:06Z        7
## 7250   2006-01 02:48:25Z        7
## 7251   2006-01 03:33:41Z        7
## 7252   2006-02 05:15:48Z        7
## 7253   2006-02 01:31:11Z        7
## 7254   2006-02 09:11:59Z        7
## 7255   2006-02 09:12:31Z        7
## 7256   2006-02 09:13:12Z        7
## 7257   2006-02 14:20:22Z        7
## 7258   2006-02 23:19:35Z        7
## 7259   2006-02 19:58:08Z        7
## 7260   2006-02 20:00:03Z        7
## 7261   2006-03 21:31:15Z        7
## 7262   2006-03 03:11:23Z        7
## 7263   2006-03 17:32:20Z        7
## 7264   2006-03 19:05:57Z        7
## 7265   2006-04 20:13:28Z        7
## 7266   2006-05 08:17:33Z        7
## 7267   2006-05 08:18:00Z        7
## 7268   2006-05 15:41:07Z        7
## 7269   2006-05 20:48:18Z        7
## 7270   2006-05 00:08:54Z        7
## 7271   2006-05 16:25:13Z        7
## 7272   2006-05 05:09:06Z        7
## 7273   2006-06 08:45:22Z        7
## 7274   2006-06 05:50:39Z        7
## 7275   2006-06 22:33:36Z        7
## 7276   2006-07 19:46:59Z        7
## 7277   2006-07 19:50:35Z        7
## 7278   2006-08 19:16:20Z        7
## 7279   2006-09 09:09:02Z        7
## 7280   2006-09 09:13:34Z        7
## 7281   2006-09 18:34:10Z        7
## 7282   2006-09 18:34:42Z        7
## 7283   2006-09 18:35:06Z        7
## 7284   2006-09 18:35:53Z        7
## 7285   2006-09 15:28:32Z        7
## 7286   2006-09 15:33:24Z        7
## 7287   2006-10 16:29:14Z        7
## 7288   2006-10 17:08:12Z        7
## 7289   2006-10 02:27:41Z        7
## 7290   2006-10 23:18:30Z        7
## 7291   2006-10 23:26:42Z        7
## 7292   2006-10 22:33:02Z        7
## 7293   2006-11 20:35:02Z        7
## 7294   2006-11 20:59:38Z        7
## 7295   2006-11 01:39:58Z        7
## 7296   2006-11 07:28:26Z        7
## 7297   2006-11 21:09:02Z        7
## 7298   2006-11 21:17:24Z        7
## 7299   2006-11 21:18:05Z        7
## 7300   2006-11 22:04:36Z        7
## 7301   2006-11 21:22:56Z        7
## 7302   2006-11 04:32:59Z        7
## 7303   2006-12 01:18:27Z        7
## 7304   2006-12 01:21:43Z        7
## 7305   2006-12 22:16:02Z        7
## 7306   2006-12 00:58:01Z        7
## 7307   2006-12 08:03:29Z        7
## 7308   2006-12 08:04:03Z        7
## 7309   2006-12 08:04:35Z        7
## 7310   2006-12 08:19:42Z        7
## 7311   2006-12 03:03:24Z        7
## 7312   2006-12 03:16:40Z        7
## 7313   2007-01 03:43:15Z        7
## 7314   2007-01 03:44:15Z        7
## 7315   2007-01 10:27:08Z        7
## 7316   2007-01 14:55:06Z        7
## 7317   2007-01 21:57:42Z        7
## 7318   2007-01 06:05:21Z        7
## 7319   2007-02 16:41:06Z        7
## 7320   2007-02 16:43:13Z        7
## 7321   2007-02 16:44:30Z        7
## 7322   2007-02 16:45:19Z        7
## 7323   2007-02 16:46:34Z        7
## 7324   2007-03 04:05:54Z        7
## 7325   2007-03 04:05:56Z        7
## 7326   2007-03 15:29:23Z        7
## 7327   2007-03 15:31:37Z        7
## 7328   2007-03 15:36:01Z        7
## 7329   2007-03 15:37:45Z        7
## 7330   2007-03 15:45:16Z        7
## 7331   2007-03 16:17:18Z        7
## 7332   2007-03 16:32:51Z        7
## 7333   2007-03 13:36:47Z        7
## 7334   2007-03 21:45:36Z        7
## 7335   2007-04 07:26:10Z        7
## 7336   2007-04 09:36:16Z        7
## 7337   2007-04 09:08:04Z        7
## 7338   2007-04 09:11:33Z        7
## 7339   2007-04 09:13:06Z        7
## 7340   2007-04 04:15:01Z        7
## 7341   2007-04 18:49:03Z        7
## 7342   2007-04 07:44:54Z        7
## 7343   2007-04 09:18:14Z        7
## 7344   2007-04 03:41:47Z        7
## 7345   2007-04 03:53:31Z        7
## 7346   2007-04 05:17:13Z        7
## 7347   2007-04 05:24:12Z        7
## 7348   2007-04 05:26:55Z        7
## 7349   2007-04 05:28:27Z        7
## 7350   2007-04 05:29:36Z        7
## 7351   2007-04 05:30:08Z        7
## 7352   2007-04 05:31:27Z        7
## 7353   2007-04 05:32:15Z        7
## 7354   2007-04 05:33:59Z        7
## 7355   2007-04 05:35:07Z        7
## 7356   2007-04 05:43:41Z        7
## 7357   2007-04 05:49:11Z        7
## 7358   2007-04 05:57:27Z        7
## 7359   2007-04 05:58:00Z        7
## 7360   2007-04 05:58:44Z        7
## 7361   2007-04 06:00:28Z        7
## 7362   2007-04 06:01:34Z        7
## 7363   2007-04 10:55:30Z        7
## 7364   2007-04 10:56:58Z        7
## 7365   2007-04 11:40:26Z        7
## 7366   2007-04 13:19:57Z        7
## 7367   2007-04 01:05:24Z        7
## 7368   2007-04 01:11:58Z        7
## 7369   2007-05 16:45:58Z        7
## 7370   2007-05 20:48:54Z        7
## 7371   2007-05 15:57:31Z        7
## 7372   2007-05 17:30:53Z        7
## 7373   2007-06 16:15:11Z        7
## 7374   2007-06 16:41:01Z        7
## 7375   2007-06 16:42:58Z        7
## 7376   2007-06 16:48:03Z        7
## 7377   2007-06 16:49:05Z        7
## 7378   2007-06 16:49:47Z        7
## 7379   2007-06 16:53:34Z        7
## 7380   2007-06 16:54:36Z        7
## 7381   2007-06 16:55:55Z        7
## 7382   2007-06 16:57:25Z        7
## 7383   2007-06 16:57:50Z        7
## 7384   2007-06 18:34:24Z        7
## 7385   2007-06 18:34:54Z        7
## 7386   2007-06 18:35:31Z        7
## 7387   2007-06 09:06:57Z        7
## 7388   2007-06 19:26:44Z        7
## 7389   2007-06 20:17:26Z        7
## 7390   2007-06 20:27:36Z        7
## 7391   2007-06 03:30:58Z        7
## 7392   2007-06 10:03:17Z        7
## 7393   2007-06 01:11:51Z        7
## 7394   2007-06 18:18:54Z        7
## 7395   2007-07 00:10:28Z        7
## 7396   2007-07 00:11:32Z        7
## 7397   2007-07 00:12:12Z        7
## 7398   2007-07 00:12:32Z        7
## 7399   2007-07 00:13:09Z        7
## 7400   2007-07 00:38:15Z        7
## 7401   2007-07 15:25:12Z        7
## 7402   2007-07 23:46:13Z        7
## 7403   2007-07 23:20:39Z        7
## 7404   2007-07 20:33:42Z        7
## 7405   2007-08 03:39:41Z        7
## 7406   2007-08 03:22:52Z        7
## 7407   2007-08 17:11:39Z        7
## 7408   2007-08 06:25:46Z        7
## 7409   2007-08 16:58:17Z        7
## 7410   2007-08 23:30:08Z        7
## 7411   2007-08 08:05:13Z        7
## 7412   2007-09 21:38:15Z        7
## 7413   2007-09 01:47:44Z        7
## 7414   2007-09 06:23:05Z        7
## 7415   2007-09 23:44:12Z        7
## 7416   2007-10 22:13:14Z        7
## 7417   2007-10 10:14:26Z        7
## 7418   2007-11 01:22:03Z        7
## 7419   2007-11 01:27:27Z        7
## 7420   2007-11 01:28:57Z        7
## 7421   2007-11 00:49:36Z        7
## 7422   2007-12 17:30:24Z        7
## 7423   2007-12 21:29:13Z        7
## 7424   2007-12 20:31:19Z        7
## 7425   2007-12 00:44:14Z        7
## 7426   2007-12 00:55:01Z        7
## 7427   2008-01 18:57:03Z        7
## 7428   2002-02 15:43:11Z        8
## 7429   2002-03 11:47:06Z        8
## 7430   2002-05 13:46:41Z        8
## 7431   2002-05 14:09:06Z        8
## 7432   2002-05 14:15:25Z        8
## 7433   2002-05 23:26:01Z        8
## 7434   2002-05 11:29:44Z        8
## 7435   2002-05 11:30:13Z        8
## 7436   2002-05 11:30:46Z        8
## 7437   2002-05 13:05:55Z        8
## 7438   2002-06 09:05:09Z        8
## 7439   2002-06 09:08:31Z        8
## 7440   2002-06 14:55:29Z        8
## 7441   2002-06 22:35:50Z        8
## 7442   2002-06 22:39:32Z        8
## 7443   2002-06 01:25:40Z        8
## 7444   2002-06 13:57:45Z        8
## 7445   2002-06 14:32:23Z        8
## 7446   2002-07 15:47:03Z        8
## 7447   2002-07 15:56:52Z        8
## 7448   2002-07 00:16:05Z        8
## 7449   2002-07 08:31:03Z        8
## 7450   2002-07 08:34:55Z        8
## 7451   2002-07 08:39:06Z        8
## 7452   2002-07 17:50:48Z        8
## 7453   2002-07 07:07:57Z        8
## 7454   2002-08 09:37:26Z        8
## 7455   2002-08 09:57:30Z        8
## 7456   2002-08 09:59:06Z        8
## 7457   2002-08 09:46:35Z        8
## 7458   2002-08 11:28:29Z        8
## 7459   2002-08 11:37:38Z        8
## 7460   2002-08 12:28:21Z        8
## 7461   2002-08 12:29:15Z        8
## 7462   2002-08 13:44:21Z        8
## 7463   2002-08 12:39:17Z        8
## 7464   2002-08 06:52:08Z        8
## 7465   2002-08 07:28:22Z        8
## 7466   2002-08 11:58:33Z        8
## 7467   2002-08 09:34:01Z        8
## 7468   2002-08 09:37:10Z        8
## 7469   2002-08 09:38:15Z        8
## 7470   2002-08 07:29:17Z        8
## 7471   2002-08 21:04:47Z        8
## 7472   2002-08 12:52:42Z        8
## 7473   2002-08 12:56:58Z        8
## 7474   2002-09 10:59:51Z        8
## 7475   2002-09 12:36:40Z        8
## 7476   2002-09 12:57:10Z        8
## 7477   2002-09 13:36:27Z        8
## 7478   2002-09 13:53:23Z        8
## 7479   2002-09 13:55:46Z        8
## 7480   2002-09 15:31:52Z        8
## 7481   2002-09 19:19:20Z        8
## 7482   2002-09 15:38:50Z        8
## 7483   2002-09 15:39:25Z        8
## 7484   2002-09 15:49:53Z        8
## 7485   2002-09 14:13:05Z        8
## 7486   2002-09 14:36:04Z        8
## 7487   2002-09 18:53:00Z        8
## 7488   2002-09 19:41:26Z        8
## 7489   2002-09 07:27:43Z        8
## 7490   2002-09 13:58:23Z        8
## 7491   2002-09 00:37:11Z        8
## 7492   2001-11 22:24:47Z        8
## 7493   2001-12 20:19:50Z        8
## 7494   2001-12 21:36:33Z        8
## 7495   2001-12 22:42:06Z        8
## 7496   2001-12 23:36:29Z        8
## 7497   2001-12 00:04:13Z        8
## 7498   2001-12 12:54:46Z        8
## 7499   2001-12 20:16:16Z        8
## 7500   2001-12 20:17:08Z        8
## 7501   2001-12 20:30:43Z        8
## 7502   2001-12 20:37:29Z        8
## 7503   2001-12 22:02:01Z        8
## 7504   2002-01 23:11:24Z        8
## 7505   2002-09 00:29:04Z        8
## 7506   2002-10 15:46:09Z        8
## 7507   2002-11 11:43:12Z        8
## 7508   2002-11 19:12:50Z        8
## 7509   2002-11 20:26:53Z        8
## 7510   2002-11 20:53:19Z        8
## 7511   2002-11 21:35:40Z        8
## 7512   2002-11 23:31:31Z        8
## 7513   2002-12 10:20:06Z        8
## 7514   2002-12 17:55:07Z        8
## 7515   2002-12 02:02:03Z        8
## 7516   2003-01 02:11:58Z        8
## 7517   2003-01 02:52:27Z        8
## 7518   2003-01 03:18:22Z        8
## 7519   2003-01 17:05:21Z        8
## 7520   2003-01 11:05:13Z        8
## 7521   2003-01 22:58:10Z        8
## 7522   2003-01 13:29:51Z        8
## 7523   2003-01 14:16:40Z        8
## 7524   2003-01 03:50:54Z        8
## 7525   2003-01 04:09:01Z        8
## 7526   2003-01 04:11:41Z        8
## 7527   2003-01 15:04:53Z        8
## 7528   2003-01 13:02:40Z        8
## 7529   2003-01 12:08:25Z        8
## 7530   2003-01 14:10:58Z        8
## 7531   2003-01 14:25:48Z        8
## 7532   2003-01 15:01:54Z        8
## 7533   2003-01 23:14:47Z        8
## 7534   2003-01 23:23:12Z        8
## 7535   2003-01 23:35:00Z        8
## 7536   2003-01 01:33:08Z        8
## 7537   2003-01 03:57:46Z        8
## 7538   2003-01 10:55:39Z        8
## 7539   2003-01 12:51:12Z        8
## 7540   2003-01 13:22:10Z        8
## 7541   2003-01 15:07:43Z        8
## 7542   2003-01 15:35:12Z        8
## 7543   2003-01 15:57:22Z        8
## 7544   2003-01 16:06:38Z        8
## 7545   2003-01 16:23:01Z        8
## 7546   2003-01 16:50:56Z        8
## 7547   2003-01 16:56:43Z        8
## 7548   2003-01 10:39:28Z        8
## 7549   2003-01 11:37:05Z        8
## 7550   2003-01 11:58:56Z        8
## 7551   2003-01 12:00:27Z        8
## 7552   2003-01 02:28:14Z        8
## 7553   2003-01 02:28:45Z        8
## 7554   2003-01 03:02:53Z        8
## 7555   2003-01 03:39:26Z        8
## 7556   2003-01 11:14:53Z        8
## 7557   2003-01 11:23:27Z        8
## 7558   2003-01 22:57:16Z        8
## 7559   2003-01 23:06:03Z        8
## 7560   2003-01 01:40:40Z        8
## 7561   2003-01 10:01:02Z        8
## 7562   2003-02 15:31:29Z        8
## 7563   2003-02 15:33:03Z        8
## 7564   2003-02 15:41:19Z        8
## 7565   2003-02 17:11:33Z        8
## 7566   2003-02 17:11:57Z        8
## 7567   2003-02 17:18:02Z        8
## 7568   2003-02 14:13:43Z        8
## 7569   2003-02 14:22:51Z        8
## 7570   2003-02 23:37:00Z        8
## 7571   2003-02 13:31:42Z        8
## 7572   2003-02 13:34:41Z        8
## 7573   2003-02 09:16:20Z        8
## 7574   2003-03 21:44:55Z        8
## 7575   2003-03 21:48:43Z        8
## 7576   2003-03 21:57:53Z        8
## 7577   2003-03 22:14:16Z        8
## 7578   2003-03 22:27:12Z        8
## 7579   2003-03 23:28:42Z        8
## 7580   2003-03 23:35:42Z        8
## 7581   2003-03 01:31:18Z        8
## 7582   2003-03 11:44:14Z        8
## 7583   2003-04 12:18:00Z        8
## 7584   2003-04 02:49:39Z        8
## 7585   2003-04 03:32:27Z        8
## 7586   2003-04 14:11:49Z        8
## 7587   2003-04 04:19:15Z        8
## 7588   2003-04 21:08:23Z        8
## 7589   2003-04 00:21:40Z        8
## 7590   2003-04 15:08:56Z        8
## 7591   2003-04 17:31:22Z        8
## 7592   2003-05 10:59:54Z        8
## 7593   2003-05 11:03:34Z        8
## 7594   2003-05 21:56:11Z        8
## 7595   2003-05 20:47:19Z        8
## 7596   2003-05 09:23:16Z        8
## 7597   2003-05 09:33:22Z        8
## 7598   2003-05 22:00:06Z        8
## 7599   2003-05 22:33:22Z        8
## 7600   2003-05 23:24:29Z        8
## 7601   2003-05 00:05:27Z        8
## 7602   2003-05 00:22:39Z        8
## 7603   2003-05 00:43:12Z        8
## 7604   2003-05 00:48:31Z        8
## 7605   2003-05 00:52:47Z        8
## 7606   2003-05 13:11:06Z        8
## 7607   2003-05 13:17:39Z        8
## 7608   2003-05 16:51:51Z        8
## 7609   2003-05 18:01:49Z        8
## 7610   2003-05 18:26:42Z        8
## 7611   2003-05 19:05:22Z        8
## 7612   2003-05 19:06:40Z        8
## 7613   2003-05 19:27:17Z        8
## 7614   2003-05 19:42:58Z        8
## 7615   2003-05 07:14:19Z        8
## 7616   2003-05 08:47:43Z        8
## 7617   2003-05 09:35:02Z        8
## 7618   2003-05 10:49:24Z        8
## 7619   2003-05 20:21:13Z        8
## 7620   2003-05 23:25:43Z        8
## 7621   2003-05 08:48:58Z        8
## 7622   2003-05 10:17:21Z        8
## 7623   2003-05 10:51:10Z        8
## 7624   2003-05 12:26:16Z        8
## 7625   2003-05 12:54:20Z        8
## 7626   2003-05 13:06:17Z        8
## 7627   2003-05 13:26:26Z        8
## 7628   2003-05 23:05:31Z        8
## 7629   2003-05 12:01:22Z        8
## 7630   2003-05 07:54:54Z        8
## 7631   2003-05 08:00:11Z        8
## 7632   2003-05 08:09:57Z        8
## 7633   2003-06 05:03:32Z        8
## 7634   2003-06 01:02:17Z        8
## 7635   2003-06 01:09:29Z        8
## 7636   2003-06 08:06:02Z        8
## 7637   2003-06 08:18:32Z        8
## 7638   2003-06 17:49:34Z        8
## 7639   2003-06 04:28:31Z        8
## 7640   2003-07 12:16:49Z        8
## 7641   2003-07 19:15:19Z        8
## 7642   2003-08 15:10:41Z        8
## 7643   2003-08 17:10:04Z        8
## 7644   2003-08 23:15:13Z        8
## 7645   2003-08 00:07:53Z        8
## 7646   2003-08 23:54:57Z        8
## 7647   2003-08 04:55:34Z        8
## 7648   2003-08 13:53:09Z        8
## 7649   2003-08 14:10:58Z        8
## 7650   2003-08 14:30:38Z        8
## 7651   2003-08 14:45:41Z        8
## 7652   2003-08 15:26:55Z        8
## 7653   2003-08 15:28:04Z        8
## 7654   2003-08 15:29:26Z        8
## 7655   2003-08 17:02:48Z        8
## 7656   2003-08 13:04:53Z        8
## 7657   2003-08 23:35:33Z        8
## 7658   2003-08 23:59:11Z        8
## 7659   2003-08 07:20:21Z        8
## 7660   2003-08 08:46:49Z        8
## 7661   2003-09 14:40:13Z        8
## 7662   2003-09 19:51:22Z        8
## 7663   2003-09 08:50:50Z        8
## 7664   2003-09 00:39:38Z        8
## 7665   2003-09 17:15:32Z        8
## 7666   2003-09 00:08:51Z        8
## 7667   2003-09 00:33:24Z        8
## 7668   2003-09 06:59:50Z        8
## 7669   2003-09 07:01:29Z        8
## 7670   2003-09 07:02:09Z        8
## 7671   2003-09 07:02:34Z        8
## 7672   2003-09 07:03:04Z        8
## 7673   2003-09 07:03:37Z        8
## 7674   2003-09 07:04:32Z        8
## 7675   2003-09 03:16:32Z        8
## 7676   2003-09 03:33:44Z        8
## 7677   2003-09 04:05:45Z        8
## 7678   2003-09 22:50:24Z        8
## 7679   2003-09 02:22:20Z        8
## 7680   2003-09 21:18:34Z        8
## 7681   2003-09 19:22:29Z        8
## 7682   2003-10 10:06:29Z        8
## 7683   2003-10 10:09:54Z        8
## 7684   2003-10 10:13:49Z        8
## 7685   2003-10 11:18:54Z        8
## 7686   2003-10 17:08:19Z        8
## 7687   2003-10 17:09:25Z        8
## 7688   2003-10 21:00:38Z        8
## 7689   2003-10 22:55:04Z        8
## 7690   2003-10 22:58:47Z        8
## 7691   2003-10 03:19:57Z        8
## 7692   2003-10 03:20:53Z        8
## 7693   2003-10 03:30:37Z        8
## 7694   2003-10 03:34:51Z        8
## 7695   2003-10 16:08:37Z        8
## 7696   2003-10 13:44:00Z        8
## 7697   2003-10 13:48:00Z        8
## 7698   2003-10 22:28:50Z        8
## 7699   2003-10 17:21:39Z        8
## 7700   2003-10 19:28:28Z        8
## 7701   2003-10 17:18:20Z        8
## 7702   2003-10 17:33:30Z        8
## 7703   2003-10 17:34:49Z        8
## 7704   2003-10 21:11:26Z        8
## 7705   2003-10 13:30:45Z        8
## 7706   2003-10 13:35:20Z        8
## 7707   2003-10 15:50:00Z        8
## 7708   2003-10 03:35:16Z        8
## 7709   2003-10 00:59:09Z        8
## 7710   2003-10 01:05:20Z        8
## 7711   2003-10 01:07:42Z        8
## 7712   2003-10 01:44:19Z        8
## 7713   2003-10 03:03:14Z        8
## 7714   2003-10 03:57:13Z        8
## 7715   2003-10 13:06:24Z        8
## 7716   2003-10 13:08:01Z        8
## 7717   2003-10 13:09:02Z        8
## 7718   2003-10 13:12:24Z        8
## 7719   2003-10 15:10:04Z        8
## 7720   2003-10 15:30:36Z        8
## 7721   2003-10 16:15:05Z        8
## 7722   2003-10 16:31:09Z        8
## 7723   2003-10 19:25:09Z        8
## 7724   2003-10 19:32:06Z        8
## 7725   2003-10 21:18:33Z        8
## 7726   2003-10 21:47:06Z        8
## 7727   2003-10 21:52:27Z        8
## 7728   2003-10 21:55:33Z        8
## 7729   2003-10 22:00:52Z        8
## 7730   2003-10 22:01:54Z        8
## 7731   2003-10 22:03:21Z        8
## 7732   2003-10 01:56:03Z        8
## 7733   2003-10 02:51:16Z        8
## 7734   2003-10 02:53:57Z        8
## 7735   2003-10 02:59:59Z        8
## 7736   2003-10 03:09:54Z        8
## 7737   2003-10 03:11:43Z        8
## 7738   2003-10 03:23:21Z        8
## 7739   2003-10 03:32:20Z        8
## 7740   2003-10 03:43:05Z        8
## 7741   2003-10 04:04:35Z        8
## 7742   2003-10 04:05:25Z        8
## 7743   2003-10 20:06:10Z        8
## 7744   2003-10 23:35:16Z        8
## 7745   2003-11 11:42:29Z        8
## 7746   2003-11 12:09:28Z        8
## 7747   2003-11 16:43:59Z        8
## 7748   2003-11 00:47:54Z        8
## 7749   2003-11 00:51:39Z        8
## 7750   2003-11 01:28:07Z        8
## 7751   2003-11 17:49:16Z        8
## 7752   2003-11 02:59:41Z        8
## 7753   2003-11 15:18:51Z        8
## 7754   2003-11 20:41:03Z        8
## 7755   2003-11 05:41:46Z        8
## 7756   2003-11 07:51:49Z        8
## 7757   2003-11 19:21:39Z        8
## 7758   2003-11 19:23:10Z        8
## 7759   2003-11 19:24:30Z        8
## 7760   2003-11 19:26:13Z        8
## 7761   2003-11 19:26:57Z        8
## 7762   2003-11 19:28:13Z        8
## 7763   2003-11 19:28:35Z        8
## 7764   2003-11 19:29:04Z        8
## 7765   2003-11 19:31:30Z        8
## 7766   2003-11 19:32:52Z        8
## 7767   2003-11 19:33:40Z        8
## 7768   2003-11 19:34:54Z        8
## 7769   2003-11 19:37:30Z        8
## 7770   2003-11 19:38:18Z        8
## 7771   2003-11 19:38:49Z        8
## 7772   2003-11 19:39:06Z        8
## 7773   2003-11 19:39:49Z        8
## 7774   2003-11 19:42:15Z        8
## 7775   2003-11 20:10:54Z        8
## 7776   2003-11 02:36:55Z        8
## 7777   2003-11 12:25:54Z        8
## 7778   2003-11 12:53:25Z        8
## 7779   2003-11 15:14:19Z        8
## 7780   2003-11 21:32:43Z        8
## 7781   2003-11 21:34:44Z        8
## 7782   2003-11 21:34:46Z        8
## 7783   2003-11 21:39:12Z        8
## 7784   2003-11 22:23:40Z        8
## 7785   2003-11 01:09:17Z        8
## 7786   2003-11 01:19:27Z        8
## 7787   2003-11 01:25:04Z        8
## 7788   2003-11 01:39:17Z        8
## 7789   2003-11 01:41:30Z        8
## 7790   2003-11 01:56:07Z        8
## 7791   2003-11 14:03:08Z        8
## 7792   2003-11 17:01:24Z        8
## 7793   2003-11 05:02:56Z        8
## 7794   2003-11 05:04:08Z        8
## 7795   2003-11 05:12:38Z        8
## 7796   2003-11 05:13:28Z        8
## 7797   2003-11 05:16:47Z        8
## 7798   2003-11 05:17:28Z        8
## 7799   2003-11 05:18:25Z        8
## 7800   2003-11 05:19:37Z        8
## 7801   2003-11 15:09:35Z        8
## 7802   2003-11 15:12:45Z        8
## 7803   2003-11 22:34:19Z        8
## 7804   2003-11 22:35:55Z        8
## 7805   2003-11 23:01:13Z        8
## 7806   2003-11 02:05:37Z        8
## 7807   2003-11 02:09:07Z        8
## 7808   2003-11 01:13:09Z        8
## 7809   2003-11 13:01:21Z        8
## 7810   2003-11 13:05:17Z        8
## 7811   2003-11 13:07:29Z        8
## 7812   2003-11 16:45:42Z        8
## 7813   2003-11 16:47:39Z        8
## 7814   2003-12 15:40:23Z        8
## 7815   2003-12 11:52:47Z        8
## 7816   2003-12 17:38:35Z        8
## 7817   2003-12 08:05:56Z        8
## 7818   2003-12 19:42:21Z        8
## 7819   2003-12 00:28:03Z        8
## 7820   2003-12 14:29:32Z        8
## 7821   2003-12 09:38:51Z        8
## 7822   2003-12 10:21:20Z        8
## 7823   2003-12 23:30:16Z        8
## 7824   2003-12 00:58:09Z        8
## 7825   2003-12 02:46:24Z        8
## 7826   2003-12 17:11:14Z        8
## 7827   2003-12 21:11:52Z        8
## 7828   2003-12 21:18:23Z        8
## 7829   2003-12 21:18:45Z        8
## 7830   2003-12 18:42:48Z        8
## 7831   2004-01 11:48:52Z        8
## 7832   2004-01 11:49:55Z        8
## 7833   2004-01 16:40:41Z        8
## 7834   2004-01 00:18:13Z        8
## 7835   2004-01 08:35:40Z        8
## 7836   2004-01 14:21:13Z        8
## 7837   2004-01 15:09:50Z        8
## 7838   2004-01 15:24:39Z        8
## 7839   2004-01 13:19:47Z        8
## 7840   2004-01 14:25:31Z        8
## 7841   2004-01 15:12:00Z        8
## 7842   2004-01 16:57:38Z        8
## 7843   2004-01 17:03:41Z        8
## 7844   2004-01 17:21:18Z        8
## 7845   2004-01 17:32:06Z        8
## 7846   2004-01 17:54:24Z        8
## 7847   2004-01 19:46:43Z        8
## 7848   2004-01 20:14:51Z        8
## 7849   2004-01 20:20:31Z        8
## 7850   2004-01 20:24:05Z        8
## 7851   2004-01 20:48:34Z        8
## 7852   2004-01 21:13:49Z        8
## 7853   2004-01 08:21:17Z        8
## 7854   2004-01 08:50:56Z        8
## 7855   2004-01 08:55:16Z        8
## 7856   2004-01 10:51:31Z        8
## 7857   2004-01 15:05:05Z        8
## 7858   2004-01 12:40:16Z        8
## 7859   2004-01 15:31:18Z        8
## 7860   2004-01 16:25:45Z        8
## 7861   2004-01 16:35:23Z        8
## 7862   2004-01 14:46:26Z        8
## 7863   2004-01 14:50:53Z        8
## 7864   2004-01 19:23:06Z        8
## 7865   2004-01 20:50:54Z        8
## 7866   2004-01 21:15:48Z        8
## 7867   2004-01 21:22:35Z        8
## 7868   2004-01 21:30:03Z        8
## 7869   2004-01 21:36:14Z        8
## 7870   2004-01 01:14:51Z        8
## 7871   2004-01 01:19:19Z        8
## 7872   2004-01 01:20:03Z        8
## 7873   2004-01 01:24:24Z        8
## 7874   2004-01 05:34:16Z        8
## 7875   2004-01 05:41:06Z        8
## 7876   2004-01 05:45:06Z        8
## 7877   2004-01 06:07:11Z        8
## 7878   2004-01 06:10:18Z        8
## 7879   2004-01 06:28:58Z        8
## 7880   2004-01 08:56:47Z        8
## 7881   2004-01 13:24:22Z        8
## 7882   2004-01 02:35:09Z        8
## 7883   2004-01 09:37:08Z        8
## 7884   2004-01 03:35:56Z        8
## 7885   2004-01 03:38:29Z        8
## 7886   2004-01 11:13:45Z        8
## 7887   2004-01 11:15:10Z        8
## 7888   2004-01 19:28:29Z        8
## 7889   2004-01 13:59:05Z        8
## 7890   2004-01 19:10:10Z        8
## 7891   2004-01 01:29:37Z        8
## 7892   2004-01 02:09:05Z        8
## 7893   2004-01 09:17:13Z        8
## 7894   2004-01 09:18:44Z        8
## 7895   2004-01 09:45:15Z        8
## 7896   2004-01 14:43:40Z        8
## 7897   2004-01 09:01:01Z        8
## 7898   2004-01 18:03:28Z        8
## 7899   2004-01 14:02:28Z        8
## 7900   2004-02 00:09:19Z        8
## 7901   2004-02 23:32:06Z        8
## 7902   2004-02 04:40:33Z        8
## 7903   2004-02 04:45:50Z        8
## 7904   2004-02 18:08:20Z        8
## 7905   2004-02 22:38:58Z        8
## 7906   2004-02 16:44:28Z        8
## 7907   2004-02 18:23:38Z        8
## 7908   2004-02 18:46:41Z        8
## 7909   2004-02 18:47:05Z        8
## 7910   2004-02 21:31:39Z        8
## 7911   2004-02 05:02:17Z        8
## 7912   2004-02 16:11:12Z        8
## 7913   2004-02 16:30:51Z        8
## 7914   2004-02 16:42:40Z        8
## 7915   2004-02 20:12:25Z        8
## 7916   2004-02 20:46:47Z        8
## 7917   2004-02 21:00:41Z        8
## 7918   2004-02 21:05:54Z        8
## 7919   2004-02 21:13:54Z        8
## 7920   2004-02 21:32:20Z        8
## 7921   2004-02 21:58:23Z        8
## 7922   2004-02 22:09:13Z        8
## 7923   2004-02 22:34:18Z        8
## 7924   2004-02 23:22:45Z        8
## 7925   2004-02 13:02:34Z        8
## 7926   2004-02 00:15:22Z        8
## 7927   2004-02 00:18:29Z        8
## 7928   2004-02 00:28:08Z        8
## 7929   2004-02 08:23:58Z        8
## 7930   2004-02 07:35:20Z        8
## 7931   2004-02 09:53:29Z        8
## 7932   2004-02 20:52:13Z        8
## 7933   2004-02 07:14:45Z        8
## 7934   2004-02 10:37:29Z        8
## 7935   2004-02 00:09:17Z        8
## 7936   2004-02 00:22:05Z        8
## 7937   2004-02 00:35:12Z        8
## 7938   2004-02 00:43:39Z        8
## 7939   2004-02 01:01:22Z        8
## 7940   2004-02 01:19:14Z        8
## 7941   2004-02 01:20:30Z        8
## 7942   2004-02 02:08:24Z        8
## 7943   2004-03 13:50:23Z        8
## 7944   2004-03 02:58:20Z        8
## 7945   2004-03 01:51:27Z        8
## 7946   2004-03 01:14:33Z        8
## 7947   2004-03 03:48:39Z        8
## 7948   2004-03 06:10:34Z        8
## 7949   2004-03 06:12:47Z        8
## 7950   2004-03 17:59:22Z        8
## 7951   2004-03 01:26:11Z        8
## 7952   2004-03 02:11:31Z        8
## 7953   2004-03 02:14:10Z        8
## 7954   2004-03 00:55:41Z        8
## 7955   2004-03 00:59:28Z        8
## 7956   2004-03 03:28:59Z        8
## 7957   2004-03 03:31:36Z        8
## 7958   2004-03 03:44:03Z        8
## 7959   2004-03 23:17:58Z        8
## 7960   2004-03 10:30:08Z        8
## 7961   2004-03 12:22:26Z        8
## 7962   2004-03 12:34:03Z        8
## 7963   2004-03 15:02:24Z        8
## 7964   2004-03 07:03:19Z        8
## 7965   2004-04 05:36:48Z        8
## 7966   2004-04 05:37:54Z        8
## 7967   2004-04 05:50:05Z        8
## 7968   2004-04 05:50:23Z        8
## 7969   2004-04 12:48:13Z        8
## 7970   2004-04 14:42:44Z        8
## 7971   2004-04 14:48:40Z        8
## 7972   2004-04 17:42:03Z        8
## 7973   2004-04 18:23:40Z        8
## 7974   2004-04 12:42:55Z        8
## 7975   2004-04 21:09:11Z        8
## 7976   2004-04 14:09:40Z        8
## 7977   2004-04 14:56:59Z        8
## 7978   2004-04 15:01:29Z        8
## 7979   2004-04 02:45:22Z        8
## 7980   2004-04 14:28:28Z        8
## 7981   2004-04 19:27:40Z        8
## 7982   2004-04 19:35:13Z        8
## 7983   2004-04 19:36:18Z        8
## 7984   2004-04 19:39:31Z        8
## 7985   2004-04 14:03:20Z        8
## 7986   2004-04 00:09:20Z        8
## 7987   2004-04 04:46:47Z        8
## 7988   2004-04 02:36:11Z        8
## 7989   2004-04 04:12:14Z        8
## 7990   2004-04 15:29:48Z        8
## 7991   2004-04 15:31:52Z        8
## 7992   2004-04 16:09:05Z        8
## 7993   2004-04 16:59:37Z        8
## 7994   2004-04 23:04:03Z        8
## 7995   2004-04 19:02:49Z        8
## 7996   2004-04 19:31:12Z        8
## 7997   2004-04 20:00:53Z        8
## 7998   2004-04 13:42:26Z        8
## 7999   2004-04 13:52:46Z        8
## 8000   2004-04 13:58:15Z        8
## 8001   2004-04 14:28:50Z        8
## 8002   2004-04 14:33:29Z        8
## 8003   2004-04 14:40:31Z        8
## 8004   2004-04 14:41:41Z        8
## 8005   2004-04 18:13:18Z        8
## 8006   2004-04 19:26:05Z        8
## 8007   2004-04 00:59:30Z        8
## 8008   2004-04 02:21:14Z        8
## 8009   2004-04 18:06:56Z        8
## 8010   2004-04 06:09:22Z        8
## 8011   2004-04 06:55:41Z        8
## 8012   2004-04 09:09:04Z        8
## 8013   2004-04 18:30:57Z        8
## 8014   2004-04 21:13:34Z        8
## 8015   2004-04 17:35:00Z        8
## 8016   2004-04 02:52:18Z        8
## 8017   2004-04 02:53:40Z        8
## 8018   2004-04 05:02:42Z        8
## 8019   2004-04 05:03:45Z        8
## 8020   2004-04 20:42:47Z        8
## 8021   2004-04 20:45:34Z        8
## 8022   2004-04 20:46:15Z        8
## 8023   2004-04 20:48:27Z        8
## 8024   2004-04 20:51:19Z        8
## 8025   2004-04 20:54:20Z        8
## 8026   2004-04 21:54:35Z        8
## 8027   2004-04 19:40:28Z        8
## 8028   2004-04 23:35:07Z        8
## 8029   2004-05 12:18:40Z        8
## 8030   2004-05 17:58:50Z        8
## 8031   2004-05 18:03:19Z        8
## 8032   2004-05 18:08:58Z        8
## 8033   2004-05 18:16:01Z        8
## 8034   2004-05 18:16:46Z        8
## 8035   2004-05 18:52:03Z        8
## 8036   2004-05 18:56:49Z        8
## 8037   2004-05 18:59:18Z        8
## 8038   2004-05 19:01:03Z        8
## 8039   2004-05 19:22:36Z        8
## 8040   2004-05 23:33:06Z        8
## 8041   2004-05 01:56:09Z        8
## 8042   2004-05 02:02:35Z        8
## 8043   2004-05 08:39:47Z        8
## 8044   2004-05 08:52:10Z        8
## 8045   2004-05 18:48:19Z        8
## 8046   2004-05 19:29:14Z        8
## 8047   2004-05 20:35:01Z        8
## 8048   2004-05 09:21:52Z        8
## 8049   2004-05 09:31:32Z        8
## 8050   2004-05 09:38:46Z        8
## 8051   2004-05 15:07:05Z        8
## 8052   2004-05 03:13:44Z        8
## 8053   2004-05 05:10:36Z        8
## 8054   2004-05 05:44:00Z        8
## 8055   2004-05 05:52:02Z        8
## 8056   2004-05 09:45:22Z        8
## 8057   2004-05 09:53:48Z        8
## 8058   2004-05 23:05:29Z        8
## 8059   2004-05 23:09:15Z        8
## 8060   2004-05 00:35:41Z        8
## 8061   2004-05 08:54:07Z        8
## 8062   2004-05 17:57:34Z        8
## 8063   2004-05 18:04:35Z        8
## 8064   2004-05 11:03:36Z        8
## 8065   2004-05 11:06:32Z        8
## 8066   2004-05 14:25:38Z        8
## 8067   2004-05 14:28:03Z        8
## 8068   2004-05 14:31:15Z        8
## 8069   2004-05 01:16:53Z        8
## 8070   2004-05 01:28:54Z        8
## 8071   2004-05 10:23:45Z        8
## 8072   2004-05 10:24:00Z        8
## 8073   2004-05 10:24:37Z        8
## 8074   2004-06 03:54:08Z        8
## 8075   2004-06 05:25:47Z        8
## 8076   2004-06 05:57:43Z        8
## 8077   2004-06 05:58:58Z        8
## 8078   2004-06 06:12:47Z        8
## 8079   2004-06 06:14:27Z        8
## 8080   2004-06 10:10:40Z        8
## 8081   2004-06 13:31:19Z        8
## 8082   2004-06 19:31:31Z        8
## 8083   2004-06 14:13:09Z        8
## 8084   2004-06 15:20:49Z        8
## 8085   2004-06 01:57:07Z        8
## 8086   2004-06 19:04:28Z        8
## 8087   2004-06 22:59:23Z        8
## 8088   2004-06 23:00:29Z        8
## 8089   2004-06 23:04:33Z        8
## 8090   2004-06 23:07:33Z        8
## 8091   2004-06 23:18:28Z        8
## 8092   2004-06 23:20:28Z        8
## 8093   2004-06 23:30:41Z        8
## 8094   2004-06 00:21:23Z        8
## 8095   2004-06 00:22:52Z        8
## 8096   2004-06 00:24:23Z        8
## 8097   2004-06 00:28:03Z        8
## 8098   2004-06 00:35:09Z        8
## 8099   2004-06 00:57:09Z        8
## 8100   2004-06 00:58:43Z        8
## 8101   2004-06 01:11:55Z        8
## 8102   2004-06 01:13:20Z        8
## 8103   2004-06 12:44:30Z        8
## 8104   2004-06 13:36:16Z        8
## 8105   2004-06 13:38:27Z        8
## 8106   2004-06 13:39:04Z        8
## 8107   2004-06 17:27:12Z        8
## 8108   2004-06 17:28:04Z        8
## 8109   2004-06 01:51:15Z        8
## 8110   2004-06 15:20:31Z        8
## 8111   2004-06 14:28:09Z        8
## 8112   2004-06 20:46:59Z        8
## 8113   2004-06 22:33:49Z        8
## 8114   2004-06 14:06:32Z        8
## 8115   2004-06 17:28:10Z        8
## 8116   2004-06 18:08:50Z        8
## 8117   2004-06 18:11:36Z        8
## 8118   2004-06 18:20:00Z        8
## 8119   2004-06 05:43:13Z        8
## 8120   2004-06 06:12:26Z        8
## 8121   2004-06 07:09:25Z        8
## 8122   2004-06 08:26:43Z        8
## 8123   2004-06 08:37:49Z        8
## 8124   2004-06 10:02:42Z        8
## 8125   2004-06 10:23:09Z        8
## 8126   2004-06 10:25:40Z        8
## 8127   2004-06 11:12:01Z        8
## 8128   2004-06 17:35:33Z        8
## 8129   2004-06 19:03:24Z        8
## 8130   2004-06 19:07:54Z        8
## 8131   2004-06 19:09:43Z        8
## 8132   2004-06 00:42:23Z        8
## 8133   2004-06 00:47:12Z        8
## 8134   2004-06 00:50:48Z        8
## 8135   2004-06 00:53:20Z        8
## 8136   2004-06 00:54:40Z        8
## 8137   2004-06 00:59:08Z        8
## 8138   2004-06 01:12:22Z        8
## 8139   2004-06 20:32:34Z        8
## 8140   2004-06 20:59:56Z        8
## 8141   2004-06 21:05:38Z        8
## 8142   2004-06 23:06:30Z        8
## 8143   2004-06 00:32:41Z        8
## 8144   2004-06 01:47:35Z        8
## 8145   2004-06 01:51:14Z        8
## 8146   2004-07 05:23:56Z        8
## 8147   2004-07 00:14:18Z        8
## 8148   2004-07 23:00:23Z        8
## 8149   2004-07 23:06:07Z        8
## 8150   2004-07 23:07:12Z        8
## 8151   2004-07 23:47:13Z        8
## 8152   2004-07 14:22:18Z        8
## 8153   2004-07 14:29:24Z        8
## 8154   2004-07 16:25:19Z        8
## 8155   2004-07 17:18:49Z        8
## 8156   2004-07 19:22:03Z        8
## 8157   2004-07 19:24:20Z        8
## 8158   2004-07 22:09:14Z        8
## 8159   2004-07 22:37:25Z        8
## 8160   2004-07 23:57:14Z        8
## 8161   2004-07 01:54:21Z        8
## 8162   2004-07 03:37:07Z        8
## 8163   2004-07 16:55:52Z        8
## 8164   2004-07 17:00:11Z        8
## 8165   2004-07 01:14:11Z        8
## 8166   2004-07 17:46:44Z        8
## 8167   2004-07 18:07:57Z        8
## 8168   2004-07 19:55:15Z        8
## 8169   2004-07 20:47:56Z        8
## 8170   2004-07 20:55:21Z        8
## 8171   2004-07 21:12:28Z        8
## 8172   2004-07 21:19:36Z        8
## 8173   2004-07 21:24:38Z        8
## 8174   2004-07 21:36:46Z        8
## 8175   2004-07 22:42:18Z        8
## 8176   2004-07 23:00:28Z        8
## 8177   2004-07 23:16:29Z        8
## 8178   2004-07 23:25:58Z        8
## 8179   2004-07 00:16:08Z        8
## 8180   2004-07 00:19:06Z        8
## 8181   2004-07 00:43:48Z        8
## 8182   2004-07 00:50:46Z        8
## 8183   2004-07 01:22:56Z        8
## 8184   2004-07 01:34:06Z        8
## 8185   2004-07 01:37:48Z        8
## 8186   2004-07 01:48:10Z        8
## 8187   2004-07 02:03:29Z        8
## 8188   2004-07 02:07:02Z        8
## 8189   2004-07 02:08:28Z        8
## 8190   2004-07 02:45:48Z        8
## 8191   2004-07 12:03:23Z        8
## 8192   2004-07 12:18:41Z        8
## 8193   2004-07 12:22:39Z        8
## 8194   2004-07 12:23:47Z        8
## 8195   2004-07 12:30:20Z        8
## 8196   2004-07 12:36:55Z        8
## 8197   2004-07 12:40:42Z        8
## 8198   2004-07 12:42:30Z        8
## 8199   2004-07 12:53:26Z        8
## 8200   2004-07 17:03:30Z        8
## 8201   2004-07 17:58:06Z        8
## 8202   2004-07 18:23:13Z        8
## 8203   2004-07 19:07:56Z        8
## 8204   2004-07 19:13:29Z        8
## 8205   2004-07 19:20:49Z        8
## 8206   2004-07 19:24:00Z        8
## 8207   2004-07 19:24:10Z        8
## 8208   2004-07 19:33:32Z        8
## 8209   2004-07 19:36:03Z        8
## 8210   2004-07 19:39:12Z        8
## 8211   2004-07 19:40:58Z        8
## 8212   2004-07 19:42:37Z        8
## 8213   2004-07 19:43:52Z        8
## 8214   2004-07 19:45:05Z        8
## 8215   2004-07 19:48:36Z        8
## 8216   2004-07 19:50:58Z        8
## 8217   2004-07 03:58:02Z        8
## 8218   2004-07 20:05:08Z        8
## 8219   2004-07 20:16:48Z        8
## 8220   2004-07 20:27:10Z        8
## 8221   2004-07 20:29:46Z        8
## 8222   2004-07 20:46:55Z        8
## 8223   2004-07 18:31:40Z        8
## 8224   2004-07 18:32:14Z        8
## 8225   2004-07 18:55:11Z        8
## 8226   2004-07 18:56:48Z        8
## 8227   2004-07 04:19:15Z        8
## 8228   2004-07 04:20:43Z        8
## 8229   2004-07 04:21:52Z        8
## 8230   2004-07 04:23:19Z        8
## 8231   2004-07 04:24:05Z        8
## 8232   2004-07 04:40:51Z        8
## 8233   2004-07 05:37:33Z        8
## 8234   2004-07 05:56:30Z        8
## 8235   2004-07 06:14:40Z        8
## 8236   2004-07 06:29:29Z        8
## 8237   2004-08 13:38:07Z        8
## 8238   2004-08 19:30:35Z        8
## 8239   2004-08 17:39:48Z        8
## 8240   2004-08 17:40:52Z        8
## 8241   2004-08 17:47:21Z        8
## 8242   2004-08 07:01:26Z        8
## 8243   2004-08 04:30:34Z        8
## 8244   2004-08 18:53:01Z        8
## 8245   2004-08 07:52:58Z        8
## 8246   2004-08 09:29:50Z        8
## 8247   2004-08 12:11:57Z        8
## 8248   2004-08 12:26:26Z        8
## 8249   2004-08 13:13:37Z        8
## 8250   2004-08 13:16:38Z        8
## 8251   2004-08 13:18:45Z        8
## 8252   2004-08 13:19:35Z        8
## 8253   2004-08 13:20:33Z        8
## 8254   2004-08 13:23:23Z        8
## 8255   2004-08 13:24:42Z        8
## 8256   2004-08 13:33:36Z        8
## 8257   2004-08 16:36:03Z        8
## 8258   2004-08 22:40:02Z        8
## 8259   2004-08 18:30:21Z        8
## 8260   2004-08 19:44:26Z        8
## 8261   2004-08 19:47:22Z        8
## 8262   2004-08 08:34:47Z        8
## 8263   2004-08 09:03:57Z        8
## 8264   2004-08 15:25:08Z        8
## 8265   2004-08 20:00:54Z        8
## 8266   2004-08 20:56:20Z        8
## 8267   2004-08 19:50:04Z        8
## 8268   2004-08 03:47:41Z        8
## 8269   2004-08 03:57:55Z        8
## 8270   2004-08 10:41:28Z        8
## 8271   2004-08 13:49:28Z        8
## 8272   2004-08 20:43:52Z        8
## 8273   2004-08 04:46:02Z        8
## 8274   2004-08 06:08:26Z        8
## 8275   2004-08 07:02:54Z        8
## 8276   2004-08 01:14:52Z        8
## 8277   2004-08 02:11:06Z        8
## 8278   2004-08 03:18:43Z        8
## 8279   2004-08 07:12:26Z        8
## 8280   2004-08 07:20:31Z        8
## 8281   2004-08 02:55:54Z        8
## 8282   2004-08 03:18:52Z        8
## 8283   2004-09 19:25:04Z        8
## 8284   2004-09 04:58:14Z        8
## 8285   2004-09 22:59:14Z        8
## 8286   2004-09 23:00:44Z        8
## 8287   2004-09 23:01:39Z        8
## 8288   2004-09 23:03:19Z        8
## 8289   2004-09 23:04:30Z        8
## 8290   2004-09 00:45:56Z        8
## 8291   2004-09 11:14:44Z        8
## 8292   2004-09 15:27:07Z        8
## 8293   2004-09 00:42:14Z        8
## 8294   2004-09 13:30:32Z        8
## 8295   2004-09 13:54:54Z        8
## 8296   2004-09 14:19:55Z        8
## 8297   2004-09 15:17:00Z        8
## 8298   2004-09 15:26:22Z        8
## 8299   2004-09 15:51:49Z        8
## 8300   2004-09 15:55:28Z        8
## 8301   2004-09 15:58:02Z        8
## 8302   2004-09 16:16:31Z        8
## 8303   2004-09 16:31:52Z        8
## 8304   2004-09 16:39:55Z        8
## 8305   2004-09 01:52:35Z        8
## 8306   2004-09 01:53:07Z        8
## 8307   2004-09 03:14:53Z        8
## 8308   2004-09 10:24:18Z        8
## 8309   2004-09 10:31:21Z        8
## 8310   2004-09 15:16:01Z        8
## 8311   2004-09 15:21:21Z        8
## 8312   2004-09 18:01:23Z        8
## 8313   2004-10 17:25:34Z        8
## 8314   2004-10 17:27:03Z        8
## 8315   2004-10 20:21:40Z        8
## 8316   2004-10 20:22:22Z        8
## 8317   2004-10 04:43:28Z        8
## 8318   2004-10 08:08:20Z        8
## 8319   2004-10 08:43:02Z        8
## 8320   2004-10 09:28:37Z        8
## 8321   2004-10 09:37:58Z        8
## 8322   2004-10 22:59:30Z        8
## 8323   2004-10 17:30:42Z        8
## 8324   2004-10 17:32:17Z        8
## 8325   2004-10 20:51:23Z        8
## 8326   2004-10 02:03:08Z        8
## 8327   2004-10 15:28:35Z        8
## 8328   2004-10 18:26:42Z        8
## 8329   2004-10 08:46:22Z        8
## 8330   2004-10 20:06:35Z        8
## 8331   2004-10 20:08:40Z        8
## 8332   2004-10 20:13:46Z        8
## 8333   2004-10 01:47:20Z        8
## 8334   2004-10 01:50:53Z        8
## 8335   2004-10 01:51:48Z        8
## 8336   2004-10 20:12:00Z        8
## 8337   2004-10 20:14:55Z        8
## 8338   2004-10 20:26:30Z        8
## 8339   2004-10 20:31:31Z        8
## 8340   2004-10 08:39:04Z        8
## 8341   2004-10 03:59:07Z        8
## 8342   2004-10 09:21:39Z        8
## 8343   2004-10 01:31:30Z        8
## 8344   2004-10 01:33:35Z        8
## 8345   2004-10 01:36:13Z        8
## 8346   2004-10 01:37:18Z        8
## 8347   2004-10 01:44:12Z        8
## 8348   2004-10 16:18:36Z        8
## 8349   2004-10 20:07:40Z        8
## 8350   2004-10 19:01:44Z        8
## 8351   2004-10 22:00:56Z        8
## 8352   2004-10 22:19:56Z        8
## 8353   2004-10 22:32:20Z        8
## 8354   2004-10 22:33:16Z        8
## 8355   2004-10 22:34:17Z        8
## 8356   2004-10 19:13:49Z        8
## 8357   2004-10 19:15:07Z        8
## 8358   2004-10 19:57:01Z        8
## 8359   2004-10 20:00:22Z        8
## 8360   2004-10 18:46:01Z        8
## 8361   2004-10 19:17:46Z        8
## 8362   2004-10 08:47:37Z        8
## 8363   2004-10 10:21:05Z        8
## 8364   2004-10 10:21:52Z        8
## 8365   2004-10 01:58:43Z        8
## 8366   2004-10 02:02:38Z        8
## 8367   2004-10 03:03:36Z        8
## 8368   2004-10 06:34:22Z        8
## 8369   2004-11 01:05:05Z        8
## 8370   2004-11 18:13:48Z        8
## 8371   2004-11 18:18:00Z        8
## 8372   2004-11 08:38:36Z        8
## 8373   2004-11 08:50:26Z        8
## 8374   2004-11 20:47:11Z        8
## 8375   2004-11 23:15:58Z        8
## 8376   2004-11 22:36:17Z        8
## 8377   2004-11 06:08:17Z        8
## 8378   2004-11 06:08:33Z        8
## 8379   2004-11 07:33:33Z        8
## 8380   2004-11 15:58:50Z        8
## 8381   2004-11 16:27:18Z        8
## 8382   2004-11 05:21:43Z        8
## 8383   2004-11 00:36:47Z        8
## 8384   2004-11 00:48:51Z        8
## 8385   2004-11 02:34:12Z        8
## 8386   2004-11 15:43:52Z        8
## 8387   2004-11 01:25:13Z        8
## 8388   2004-11 01:32:54Z        8
## 8389   2004-11 02:22:12Z        8
## 8390   2004-11 02:22:55Z        8
## 8391   2004-11 02:23:28Z        8
## 8392   2004-11 02:23:40Z        8
## 8393   2004-11 02:24:20Z        8
## 8394   2004-11 02:24:36Z        8
## 8395   2004-11 02:24:49Z        8
## 8396   2004-11 02:25:05Z        8
## 8397   2004-11 02:25:30Z        8
## 8398   2004-11 02:25:47Z        8
## 8399   2004-11 02:26:22Z        8
## 8400   2004-11 02:26:37Z        8
## 8401   2004-11 02:26:53Z        8
## 8402   2004-11 02:27:05Z        8
## 8403   2004-11 02:27:17Z        8
## 8404   2004-11 02:27:35Z        8
## 8405   2004-11 02:28:36Z        8
## 8406   2004-11 02:27:58Z        8
## 8407   2004-11 02:28:19Z        8
## 8408   2004-11 02:31:31Z        8
## 8409   2004-11 02:32:05Z        8
## 8410   2004-11 15:34:08Z        8
## 8411   2004-11 15:35:21Z        8
## 8412   2004-11 15:35:54Z        8
## 8413   2004-11 15:38:41Z        8
## 8414   2004-11 08:12:18Z        8
## 8415   2004-11 10:43:59Z        8
## 8416   2004-11 02:54:09Z        8
## 8417   2004-11 04:24:05Z        8
## 8418   2004-11 14:36:48Z        8
## 8419   2004-11 14:58:05Z        8
## 8420   2004-11 15:10:20Z        8
## 8421   2004-12 19:19:51Z        8
## 8422   2004-12 09:09:33Z        8
## 8423   2004-12 09:12:24Z        8
## 8424   2004-12 21:49:29Z        8
## 8425   2004-12 21:50:59Z        8
## 8426   2004-12 04:47:12Z        8
## 8427   2004-12 02:18:49Z        8
## 8428   2004-12 15:36:20Z        8
## 8429   2004-12 15:38:01Z        8
## 8430   2004-12 15:43:39Z        8
## 8431   2004-12 02:20:28Z        8
## 8432   2004-12 02:21:47Z        8
## 8433   2004-12 02:22:42Z        8
## 8434   2004-12 03:34:36Z        8
## 8435   2004-12 09:22:26Z        8
## 8436   2004-12 09:52:38Z        8
## 8437   2004-12 19:28:47Z        8
## 8438   2004-12 19:31:32Z        8
## 8439   2004-12 03:50:43Z        8
## 8440   2004-12 03:51:40Z        8
## 8441   2004-12 03:53:46Z        8
## 8442   2004-12 03:54:51Z        8
## 8443   2004-12 04:00:36Z        8
## 8444   2004-12 04:01:29Z        8
## 8445   2004-12 04:04:50Z        8
## 8446   2004-12 04:05:30Z        8
## 8447   2004-12 04:05:54Z        8
## 8448   2004-12 04:41:17Z        8
## 8449   2004-12 11:50:13Z        8
## 8450   2004-12 15:31:18Z        8
## 8451   2004-12 15:34:26Z        8
## 8452   2004-12 00:33:31Z        8
## 8453   2004-12 00:48:47Z        8
## 8454   2004-12 15:09:25Z        8
## 8455   2004-12 15:10:04Z        8
## 8456   2004-12 15:15:23Z        8
## 8457   2004-12 22:55:50Z        8
## 8458   2004-12 09:13:26Z        8
## 8459   2004-12 23:15:15Z        8
## 8460   2004-12 23:21:19Z        8
## 8461   2005-01 00:13:14Z        8
## 8462   2005-01 00:16:02Z        8
## 8463   2005-01 04:15:50Z        8
## 8464   2005-01 17:28:36Z        8
## 8465   2005-01 20:39:08Z        8
## 8466   2005-01 21:44:23Z        8
## 8467   2005-01 22:19:29Z        8
## 8468   2005-01 22:31:31Z        8
## 8469   2005-01 21:07:32Z        8
## 8470   2005-01 00:33:07Z        8
## 8471   2005-01 21:41:03Z        8
## 8472   2005-01 21:59:08Z        8
## 8473   2005-01 22:54:50Z        8
## 8474   2005-01 23:23:17Z        8
## 8475   2005-01 23:38:25Z        8
## 8476   2005-01 23:46:16Z        8
## 8477   2005-01 00:03:43Z        8
## 8478   2005-01 00:20:49Z        8
## 8479   2005-01 00:25:16Z        8
## 8480   2005-01 01:43:21Z        8
## 8481   2005-01 19:03:17Z        8
## 8482   2005-01 19:34:48Z        8
## 8483   2005-01 03:29:31Z        8
## 8484   2005-01 03:30:25Z        8
## 8485   2005-01 04:01:09Z        8
## 8486   2005-01 04:17:30Z        8
## 8487   2005-01 04:25:09Z        8
## 8488   2005-01 01:10:08Z        8
## 8489   2005-01 06:42:13Z        8
## 8490   2005-01 06:58:52Z        8
## 8491   2005-01 07:18:55Z        8
## 8492   2005-01 07:29:05Z        8
## 8493   2005-01 07:35:33Z        8
## 8494   2005-01 09:55:48Z        8
## 8495   2005-01 10:20:35Z        8
## 8496   2005-01 10:47:15Z        8
## 8497   2005-01 17:23:23Z        8
## 8498   2005-01 19:35:22Z        8
## 8499   2005-01 19:56:28Z        8
## 8500   2005-01 06:18:28Z        8
## 8501   2005-01 14:42:16Z        8
## 8502   2005-01 02:52:28Z        8
## 8503   2005-01 10:30:59Z        8
## 8504   2005-01 19:11:58Z        8
## 8505   2005-01 19:26:41Z        8
## 8506   2005-01 19:50:22Z        8
## 8507   2005-01 16:21:10Z        8
## 8508   2005-01 20:43:59Z        8
## 8509   2005-01 16:28:40Z        8
## 8510   2005-01 14:25:02Z        8
## 8511   2005-01 16:18:31Z        8
## 8512   2005-01 16:21:58Z        8
## 8513   2005-01 16:54:15Z        8
## 8514   2005-01 16:57:17Z        8
## 8515   2005-01 17:16:46Z        8
## 8516   2005-01 02:01:17Z        8
## 8517   2005-01 02:03:19Z        8
## 8518   2005-01 02:03:52Z        8
## 8519   2005-01 03:40:56Z        8
## 8520   2005-01 04:21:12Z        8
## 8521   2005-01 20:17:49Z        8
## 8522   2005-01 20:20:01Z        8
## 8523   2005-01 10:52:36Z        8
## 8524   2005-01 11:22:53Z        8
## 8525   2005-01 19:52:03Z        8
## 8526   2005-01 19:54:49Z        8
## 8527   2005-01 11:57:29Z        8
## 8528   2005-01 11:59:25Z        8
## 8529   2005-01 19:08:01Z        8
## 8530   2005-01 20:35:43Z        8
## 8531   2005-01 01:04:52Z        8
## 8532   2005-01 03:11:03Z        8
## 8533   2005-01 03:13:27Z        8
## 8534   2005-01 03:15:41Z        8
## 8535   2005-01 08:32:59Z        8
## 8536   2005-01 00:31:35Z        8
## 8537   2005-01 02:25:33Z        8
## 8538   2005-01 02:30:05Z        8
## 8539   2005-01 20:41:34Z        8
## 8540   2005-01 07:18:41Z        8
## 8541   2005-01 11:06:59Z        8
## 8542   2005-01 12:24:15Z        8
## 8543   2005-01 12:23:39Z        8
## 8544   2005-01 12:37:11Z        8
## 8545   2005-01 13:47:29Z        8
## 8546   2005-01 14:32:29Z        8
## 8547   2005-01 16:19:34Z        8
## 8548   2005-01 17:51:22Z        8
## 8549   2005-01 19:30:19Z        8
## 8550   2005-01 20:11:09Z        8
## 8551   2005-01 20:16:21Z        8
## 8552   2005-01 20:44:14Z        8
## 8553   2005-01 21:03:24Z        8
## 8554   2005-01 21:10:45Z        8
## 8555   2005-01 21:37:24Z        8
## 8556   2005-02 07:41:21Z        8
## 8557   2005-02 07:52:47Z        8
## 8558   2005-02 20:06:01Z        8
## 8559   2005-02 20:11:10Z        8
## 8560   2005-02 18:53:33Z        8
## 8561   2005-02 18:55:19Z        8
## 8562   2005-02 19:09:55Z        8
## 8563   2005-02 23:20:11Z        8
## 8564   2005-02 23:30:39Z        8
## 8565   2005-02 00:47:25Z        8
## 8566   2005-02 00:48:31Z        8
## 8567   2005-02 02:16:13Z        8
## 8568   2005-02 06:24:49Z        8
## 8569   2005-02 06:26:18Z        8
## 8570   2005-02 06:27:17Z        8
## 8571   2005-02 06:31:42Z        8
## 8572   2005-02 06:40:11Z        8
## 8573   2005-02 03:36:44Z        8
## 8574   2005-02 09:34:55Z        8
## 8575   2005-02 10:19:18Z        8
## 8576   2005-02 17:09:50Z        8
## 8577   2005-02 17:13:02Z        8
## 8578   2005-02 22:46:02Z        8
## 8579   2005-02 23:24:57Z        8
## 8580   2005-02 08:02:21Z        8
## 8581   2005-02 09:18:58Z        8
## 8582   2005-02 09:24:45Z        8
## 8583   2005-02 10:17:54Z        8
## 8584   2005-02 13:09:38Z        8
## 8585   2005-02 15:39:38Z        8
## 8586   2005-02 15:56:21Z        8
## 8587   2005-02 15:57:46Z        8
## 8588   2005-02 15:59:50Z        8
## 8589   2005-02 16:03:19Z        8
## 8590   2005-02 16:05:53Z        8
## 8591   2005-02 16:13:16Z        8
## 8592   2005-02 16:20:26Z        8
## 8593   2005-02 16:31:41Z        8
## 8594   2005-02 16:40:31Z        8
## 8595   2005-02 16:52:05Z        8
## 8596   2005-02 16:55:42Z        8
## 8597   2005-02 17:39:47Z        8
## 8598   2005-02 20:15:13Z        8
## 8599   2005-02 20:42:43Z        8
## 8600   2005-02 22:04:40Z        8
## 8601   2005-02 04:33:56Z        8
## 8602   2005-02 04:42:40Z        8
## 8603   2005-02 04:44:55Z        8
## 8604   2005-02 12:16:25Z        8
## 8605   2005-02 12:25:12Z        8
## 8606   2005-02 05:26:46Z        8
## 8607   2005-02 16:25:41Z        8
## 8608   2005-02 17:09:34Z        8
## 8609   2005-02 17:12:13Z        8
## 8610   2005-02 17:14:33Z        8
## 8611   2005-02 17:17:25Z        8
## 8612   2005-02 17:18:01Z        8
## 8613   2005-02 07:01:33Z        8
## 8614   2005-02 07:04:35Z        8
## 8615   2005-02 08:11:23Z        8
## 8616   2005-02 08:28:41Z        8
## 8617   2005-02 12:26:21Z        8
## 8618   2005-02 16:23:15Z        8
## 8619   2005-02 17:52:46Z        8
## 8620   2005-02 01:53:57Z        8
## 8621   2005-02 02:26:00Z        8
## 8622   2005-02 02:32:50Z        8
## 8623   2005-02 02:48:15Z        8
## 8624   2005-02 04:05:59Z        8
## 8625   2005-02 04:31:59Z        8
## 8626   2005-02 18:58:56Z        8
## 8627   2005-02 20:04:07Z        8
## 8628   2005-02 23:00:28Z        8
## 8629   2005-02 16:33:48Z        8
## 8630   2005-02 18:29:22Z        8
## 8631   2005-02 03:22:09Z        8
## 8632   2005-02 03:51:21Z        8
## 8633   2005-02 04:11:30Z        8
## 8634   2005-02 16:23:52Z        8
## 8635   2005-02 21:43:57Z        8
## 8636   2005-02 22:39:14Z        8
## 8637   2005-02 22:44:52Z        8
## 8638   2005-02 10:22:56Z        8
## 8639   2005-02 15:52:36Z        8
## 8640   2005-03 07:16:34Z        8
## 8641   2005-03 15:56:40Z        8
## 8642   2005-03 07:36:06Z        8
## 8643   2005-03 22:22:17Z        8
## 8644   2005-03 19:47:54Z        8
## 8645   2005-03 14:11:21Z        8
## 8646   2005-03 13:54:03Z        8
## 8647   2005-03 15:57:46Z        8
## 8648   2005-03 10:34:34Z        8
## 8649   2005-03 13:20:39Z        8
## 8650   2005-03 23:47:10Z        8
## 8651   2005-03 20:27:49Z        8
## 8652   2005-03 02:08:46Z        8
## 8653   2005-03 02:18:25Z        8
## 8654   2005-03 07:30:27Z        8
## 8655   2005-03 07:31:33Z        8
## 8656   2005-03 07:33:16Z        8
## 8657   2005-03 07:35:48Z        8
## 8658   2005-03 07:37:52Z        8
## 8659   2005-03 08:03:40Z        8
## 8660   2005-03 08:28:21Z        8
## 8661   2005-03 08:31:19Z        8
## 8662   2005-03 08:36:13Z        8
## 8663   2005-03 08:38:30Z        8
## 8664   2005-03 08:45:05Z        8
## 8665   2005-03 08:53:06Z        8
## 8666   2005-03 08:56:08Z        8
## 8667   2005-03 09:14:07Z        8
## 8668   2005-03 10:34:44Z        8
## 8669   2005-03 10:39:13Z        8
## 8670   2005-03 12:14:58Z        8
## 8671   2005-03 12:17:00Z        8
## 8672   2005-03 12:18:50Z        8
## 8673   2005-03 12:50:37Z        8
## 8674   2005-03 12:56:29Z        8
## 8675   2005-03 12:59:38Z        8
## 8676   2005-03 13:03:40Z        8
## 8677   2005-03 15:18:24Z        8
## 8678   2005-03 15:28:05Z        8
## 8679   2005-03 15:29:32Z        8
## 8680   2005-03 15:29:46Z        8
## 8681   2005-03 15:31:10Z        8
## 8682   2005-03 15:31:28Z        8
## 8683   2005-03 15:32:08Z        8
## 8684   2005-03 15:32:36Z        8
## 8685   2005-03 15:36:53Z        8
## 8686   2005-03 15:37:33Z        8
## 8687   2005-03 15:42:08Z        8
## 8688   2005-03 15:51:26Z        8
## 8689   2005-03 22:32:50Z        8
## 8690   2005-03 04:55:26Z        8
## 8691   2005-03 23:43:09Z        8
## 8692   2005-03 23:49:18Z        8
## 8693   2005-03 01:25:36Z        8
## 8694   2005-03 01:28:59Z        8
## 8695   2005-03 05:07:41Z        8
## 8696   2005-03 05:13:26Z        8
## 8697   2005-03 05:14:32Z        8
## 8698   2005-03 05:18:52Z        8
## 8699   2005-03 05:33:37Z        8
## 8700   2005-03 05:36:09Z        8
## 8701   2005-03 05:40:29Z        8
## 8702   2005-03 05:42:42Z        8
## 8703   2005-03 05:59:19Z        8
## 8704   2005-03 06:21:49Z        8
## 8705   2005-03 11:11:20Z        8
## 8706   2005-03 15:54:46Z        8
## 8707   2005-03 16:09:49Z        8
## 8708   2005-04 02:28:56Z        8
## 8709   2005-04 16:13:06Z        8
## 8710   2005-04 21:35:23Z        8
## 8711   2005-04 11:36:31Z        8
## 8712   2005-04 12:28:24Z        8
## 8713   2005-04 19:21:19Z        8
## 8714   2005-04 20:03:55Z        8
## 8715   2005-04 00:02:26Z        8
## 8716   2005-04 00:06:02Z        8
## 8717   2005-04 01:25:14Z        8
## 8718   2005-04 02:44:53Z        8
## 8719   2005-04 08:36:18Z        8
## 8720   2005-04 10:29:12Z        8
## 8721   2005-04 10:33:23Z        8
## 8722   2005-04 12:29:55Z        8
## 8723   2005-04 12:37:36Z        8
## 8724   2005-04 21:53:24Z        8
## 8725   2005-04 21:59:04Z        8
## 8726   2005-04 22:11:19Z        8
## 8727   2005-04 23:35:07Z        8
## 8728   2005-04 02:11:17Z        8
## 8729   2005-04 02:12:27Z        8
## 8730   2005-04 02:20:56Z        8
## 8731   2005-04 03:51:36Z        8
## 8732   2005-04 03:53:04Z        8
## 8733   2005-04 15:05:56Z        8
## 8734   2005-04 15:10:11Z        8
## 8735   2005-04 16:48:48Z        8
## 8736   2005-04 16:58:46Z        8
## 8737   2005-04 17:21:03Z        8
## 8738   2005-04 18:54:05Z        8
## 8739   2005-04 02:15:52Z        8
## 8740   2005-04 21:34:16Z        8
## 8741   2005-04 23:36:54Z        8
## 8742   2005-04 10:23:29Z        8
## 8743   2005-04 06:25:01Z        8
## 8744   2005-04 17:07:53Z        8
## 8745   2005-04 17:14:16Z        8
## 8746   2005-04 21:57:46Z        8
## 8747   2005-04 00:12:08Z        8
## 8748   2005-04 00:12:53Z        8
## 8749   2005-04 06:22:13Z        8
## 8750   2005-04 11:27:08Z        8
## 8751   2005-04 02:07:20Z        8
## 8752   2005-04 10:36:31Z        8
## 8753   2005-04 10:40:53Z        8
## 8754   2005-04 11:44:21Z        8
## 8755   2005-04 11:47:56Z        8
## 8756   2005-04 04:40:15Z        8
## 8757   2005-04 04:41:14Z        8
## 8758   2005-04 05:09:31Z        8
## 8759   2005-04 17:31:48Z        8
## 8760   2005-04 21:27:05Z        8
## 8761   2005-04 23:20:54Z        8
## 8762   2005-04 00:23:46Z        8
## 8763   2005-04 11:18:46Z        8
## 8764   2005-04 19:26:33Z        8
## 8765   2005-04 21:53:19Z        8
## 8766   2005-04 00:53:18Z        8
## 8767   2005-04 23:26:46Z        8
## 8768   2005-04 00:38:36Z        8
## 8769   2005-04 12:18:23Z        8
## 8770   2005-04 12:23:09Z        8
## 8771   2005-04 12:26:02Z        8
## 8772   2005-04 12:57:17Z        8
## 8773   2005-04 13:19:18Z        8
## 8774   2005-04 19:37:26Z        8
## 8775   2005-04 20:30:21Z        8
## 8776   2005-04 21:12:33Z        8
## 8777   2005-04 21:35:49Z        8
## 8778   2005-04 21:39:21Z        8
## 8779   2005-04 21:56:12Z        8
## 8780   2005-04 22:09:49Z        8
## 8781   2005-04 07:51:29Z        8
## 8782   2005-04 12:48:04Z        8
## 8783   2005-04 18:44:25Z        8
## 8784   2005-04 18:53:25Z        8
## 8785   2005-04 16:25:58Z        8
## 8786   2005-04 18:22:40Z        8
## 8787   2005-04 07:17:58Z        8
## 8788   2005-04 07:20:24Z        8
## 8789   2005-04 17:10:21Z        8
## 8790   2005-04 17:48:02Z        8
## 8791   2005-04 18:52:06Z        8
## 8792   2005-04 19:28:23Z        8
## 8793   2005-04 19:33:29Z        8
## 8794   2005-04 23:32:42Z        8
## 8795   2005-04 17:59:31Z        8
## 8796   2005-05 04:20:17Z        8
## 8797   2005-05 04:41:51Z        8
## 8798   2005-05 05:59:43Z        8
## 8799   2005-05 22:26:45Z        8
## 8800   2005-05 02:24:01Z        8
## 8801   2005-05 22:30:42Z        8
## 8802   2005-05 11:51:09Z        8
## 8803   2005-05 04:10:08Z        8
## 8804   2005-05 18:17:00Z        8
## 8805   2005-05 18:43:45Z        8
## 8806   2005-05 06:42:36Z        8
## 8807   2005-05 03:38:25Z        8
## 8808   2005-05 14:33:16Z        8
## 8809   2005-05 18:18:34Z        8
## 8810   2005-05 18:21:15Z        8
## 8811   2005-05 18:20:35Z        8
## 8812   2005-05 18:21:19Z        8
## 8813   2005-05 18:24:56Z        8
## 8814   2005-05 18:26:52Z        8
## 8815   2005-05 18:29:31Z        8
## 8816   2005-05 18:31:49Z        8
## 8817   2005-05 18:34:32Z        8
## 8818   2005-05 18:37:44Z        8
## 8819   2005-05 19:00:39Z        8
## 8820   2005-05 19:55:58Z        8
## 8821   2005-05 06:18:11Z        8
## 8822   2005-05 08:50:39Z        8
## 8823   2005-05 14:30:40Z        8
## 8824   2005-05 14:46:38Z        8
## 8825   2005-05 13:00:26Z        8
## 8826   2005-05 13:14:33Z        8
## 8827   2005-05 23:56:04Z        8
## 8828   2005-05 23:07:52Z        8
## 8829   2005-05 23:09:28Z        8
## 8830   2005-05 06:38:13Z        8
## 8831   2005-05 21:31:49Z        8
## 8832   2005-05 21:32:34Z        8
## 8833   2005-05 10:43:23Z        8
## 8834   2005-05 15:15:38Z        8
## 8835   2005-05 01:49:57Z        8
## 8836   2005-05 02:55:48Z        8
## 8837   2005-05 05:29:12Z        8
## 8838   2005-05 11:38:40Z        8
## 8839   2005-05 11:39:38Z        8
## 8840   2005-05 17:02:09Z        8
## 8841   2005-06 15:09:05Z        8
## 8842   2005-06 18:01:57Z        8
## 8843   2005-06 18:40:10Z        8
## 8844   2005-06 18:51:48Z        8
## 8845   2005-06 20:57:27Z        8
## 8846   2005-06 01:28:51Z        8
## 8847   2005-06 01:30:05Z        8
## 8848   2005-06 01:41:28Z        8
## 8849   2005-06 01:43:32Z        8
## 8850   2005-06 05:58:43Z        8
## 8851   2005-06 15:49:37Z        8
## 8852   2005-06 15:54:27Z        8
## 8853   2005-06 16:30:35Z        8
## 8854   2005-06 16:38:55Z        8
## 8855   2005-06 18:11:32Z        8
## 8856   2005-06 21:02:18Z        8
## 8857   2005-06 21:52:25Z        8
## 8858   2005-06 21:54:49Z        8
## 8859   2005-06 22:23:26Z        8
## 8860   2005-06 07:54:27Z        8
## 8861   2005-06 15:02:07Z        8
## 8862   2005-06 16:33:05Z        8
## 8863   2005-06 02:54:38Z        8
## 8864   2005-06 05:02:19Z        8
## 8865   2005-06 10:40:40Z        8
## 8866   2005-06 01:07:33Z        8
## 8867   2005-06 01:13:47Z        8
## 8868   2005-06 01:17:08Z        8
## 8869   2005-06 02:07:29Z        8
## 8870   2005-06 02:17:13Z        8
## 8871   2005-06 02:45:13Z        8
## 8872   2005-06 18:14:43Z        8
## 8873   2005-06 03:18:57Z        8
## 8874   2005-06 03:20:01Z        8
## 8875   2005-06 03:31:24Z        8
## 8876   2005-06 03:37:19Z        8
## 8877   2005-06 03:43:30Z        8
## 8878   2005-06 04:24:36Z        8
## 8879   2005-06 01:32:40Z        8
## 8880   2005-06 02:02:02Z        8
## 8881   2005-06 02:07:25Z        8
## 8882   2005-06 04:27:39Z        8
## 8883   2005-06 20:05:10Z        8
## 8884   2005-06 23:38:48Z        8
## 8885   2005-06 23:43:02Z        8
## 8886   2005-06 03:48:57Z        8
## 8887   2005-06 04:05:12Z        8
## 8888   2005-06 13:28:17Z        8
## 8889   2005-06 14:48:47Z        8
## 8890   2005-06 09:42:38Z        8
## 8891   2005-06 02:54:23Z        8
## 8892   2005-06 06:07:24Z        8
## 8893   2005-06 08:31:22Z        8
## 8894   2005-06 08:45:38Z        8
## 8895   2005-06 08:47:49Z        8
## 8896   2005-06 08:58:06Z        8
## 8897   2005-06 11:07:08Z        8
## 8898   2005-06 19:30:31Z        8
## 8899   2005-06 01:32:30Z        8
## 8900   2005-06 22:36:50Z        8
## 8901   2005-06 22:39:10Z        8
## 8902   2005-06 01:36:57Z        8
## 8903   2005-06 01:47:29Z        8
## 8904   2005-06 02:18:25Z        8
## 8905   2005-06 07:16:57Z        8
## 8906   2005-06 08:16:19Z        8
## 8907   2005-06 02:04:09Z        8
## 8908   2005-06 02:05:14Z        8
## 8909   2005-06 02:29:53Z        8
## 8910   2005-06 05:51:21Z        8
## 8911   2005-06 22:22:46Z        8
## 8912   2005-06 22:40:05Z        8
## 8913   2005-06 01:57:54Z        8
## 8914   2005-06 01:58:33Z        8
## 8915   2005-06 08:31:32Z        8
## 8916   2005-06 22:59:22Z        8
## 8917   2005-06 23:25:32Z        8
## 8918   2005-06 01:26:22Z        8
## 8919   2005-06 01:32:47Z        8
## 8920   2005-06 04:51:24Z        8
## 8921   2005-06 04:57:27Z        8
## 8922   2005-06 05:12:32Z        8
## 8923   2005-06 05:14:41Z        8
## 8924   2005-06 07:19:19Z        8
## 8925   2005-06 18:04:23Z        8
## 8926   2005-06 02:51:42Z        8
## 8927   2005-06 22:15:21Z        8
## 8928   2005-06 06:42:06Z        8
## 8929   2005-06 06:29:24Z        8
## 8930   2005-06 06:37:34Z        8
## 8931   2005-06 19:58:59Z        8
## 8932   2005-06 23:10:58Z        8
## 8933   2005-06 23:54:44Z        8
## 8934   2005-06 20:27:37Z        8
## 8935   2005-07 06:06:11Z        8
## 8936   2005-07 06:07:18Z        8
## 8937   2005-07 06:07:50Z        8
## 8938   2005-07 06:08:52Z        8
## 8939   2005-07 06:10:14Z        8
## 8940   2005-07 06:10:59Z        8
## 8941   2005-07 06:12:33Z        8
## 8942   2005-07 06:25:28Z        8
## 8943   2005-07 07:31:02Z        8
## 8944   2005-07 08:51:20Z        8
## 8945   2005-07 20:52:22Z        8
## 8946   2005-07 21:06:29Z        8
## 8947   2005-07 17:05:52Z        8
## 8948   2005-07 04:51:08Z        8
## 8949   2005-07 16:07:15Z        8
## 8950   2005-07 16:14:52Z        8
## 8951   2005-07 17:35:35Z        8
## 8952   2005-07 17:39:03Z        8
## 8953   2005-07 17:40:48Z        8
## 8954   2005-07 18:08:43Z        8
## 8955   2005-07 18:11:11Z        8
## 8956   2005-07 18:17:43Z        8
## 8957   2005-07 18:22:21Z        8
## 8958   2005-07 18:42:28Z        8
## 8959   2005-07 03:17:52Z        8
## 8960   2005-07 03:18:33Z        8
## 8961   2005-07 04:27:02Z        8
## 8962   2005-07 19:31:13Z        8
## 8963   2005-07 19:32:02Z        8
## 8964   2005-07 21:15:44Z        8
## 8965   2005-07 22:53:28Z        8
## 8966   2005-07 09:26:20Z        8
## 8967   2005-07 12:23:24Z        8
## 8968   2005-07 12:28:50Z        8
## 8969   2005-07 12:32:32Z        8
## 8970   2005-07 12:42:10Z        8
## 8971   2005-07 12:47:32Z        8
## 8972   2005-07 12:48:45Z        8
## 8973   2005-07 12:53:34Z        8
## 8974   2005-07 16:58:46Z        8
## 8975   2005-07 17:02:21Z        8
## 8976   2005-07 17:11:41Z        8
## 8977   2005-07 17:20:11Z        8
## 8978   2005-07 17:20:53Z        8
## 8979   2005-07 06:51:45Z        8
## 8980   2005-07 14:19:25Z        8
## 8981   2005-07 15:23:06Z        8
## 8982   2005-07 15:24:43Z        8
## 8983   2005-07 17:13:35Z        8
## 8984   2005-07 17:19:40Z        8
## 8985   2005-07 17:38:43Z        8
## 8986   2005-07 17:42:29Z        8
## 8987   2005-07 17:54:41Z        8
## 8988   2005-07 20:13:52Z        8
## 8989   2005-07 20:17:11Z        8
## 8990   2005-07 22:30:36Z        8
## 8991   2005-07 08:59:01Z        8
## 8992   2005-07 09:01:05Z        8
## 8993   2005-07 09:05:15Z        8
## 8994   2005-07 17:58:32Z        8
## 8995   2005-07 03:27:10Z        8
## 8996   2005-07 05:01:52Z        8
## 8997   2005-07 12:06:44Z        8
## 8998   2005-07 16:05:03Z        8
## 8999   2005-07 22:22:45Z        8
## 9000   2005-07 22:25:06Z        8
## 9001   2005-07 22:54:14Z        8
## 9002   2005-07 02:12:49Z        8
## 9003   2005-07 02:25:37Z        8
## 9004   2005-07 04:26:39Z        8
## 9005   2005-07 08:57:41Z        8
## 9006   2005-07 09:00:14Z        8
## 9007   2005-07 09:01:30Z        8
## 9008   2005-07 11:49:55Z        8
## 9009   2005-07 08:55:20Z        8
## 9010   2005-07 15:08:44Z        8
## 9011   2005-07 15:22:52Z        8
## 9012   2005-07 15:23:45Z        8
## 9013   2005-07 17:25:12Z        8
## 9014   2005-07 19:01:33Z        8
## 9015   2005-07 19:20:13Z        8
## 9016   2005-07 19:30:05Z        8
## 9017   2005-07 18:54:32Z        8
## 9018   2005-07 19:10:25Z        8
## 9019   2005-07 17:36:13Z        8
## 9020   2005-07 17:38:03Z        8
## 9021   2005-07 17:41:20Z        8
## 9022   2005-07 03:07:00Z        8
## 9023   2005-07 01:19:17Z        8
## 9024   2005-07 03:13:57Z        8
## 9025   2005-07 05:48:43Z        8
## 9026   2005-07 04:09:26Z        8
## 9027   2005-07 07:27:22Z        8
## 9028   2005-07 08:44:52Z        8
## 9029   2005-07 20:18:21Z        8
## 9030   2005-07 20:22:21Z        8
## 9031   2005-07 20:30:56Z        8
## 9032   2005-07 20:34:08Z        8
## 9033   2005-07 20:35:23Z        8
## 9034   2005-07 20:39:53Z        8
## 9035   2005-07 20:44:15Z        8
## 9036   2005-07 22:10:55Z        8
## 9037   2005-07 22:23:48Z        8
## 9038   2005-07 07:30:19Z        8
## 9039   2005-07 07:53:46Z        8
## 9040   2005-07 10:30:31Z        8
## 9041   2005-07 11:20:17Z        8
## 9042   2005-07 12:48:43Z        8
## 9043   2005-07 12:50:22Z        8
## 9044   2005-07 12:56:24Z        8
## 9045   2005-07 13:01:26Z        8
## 9046   2005-07 13:04:11Z        8
## 9047   2005-07 13:08:12Z        8
## 9048   2005-07 13:16:37Z        8
## 9049   2005-07 13:26:19Z        8
## 9050   2005-07 13:31:51Z        8
## 9051   2005-07 13:41:40Z        8
## 9052   2005-07 13:44:54Z        8
## 9053   2005-07 17:42:56Z        8
## 9054   2005-07 17:46:19Z        8
## 9055   2005-07 17:50:52Z        8
## 9056   2005-07 20:40:19Z        8
## 9057   2005-07 22:34:45Z        8
## 9058   2005-07 22:42:37Z        8
## 9059   2005-07 00:00:54Z        8
## 9060   2005-07 02:33:45Z        8
## 9061   2005-07 02:52:50Z        8
## 9062   2005-07 04:46:09Z        8
## 9063   2005-07 06:05:59Z        8
## 9064   2005-07 06:37:28Z        8
## 9065   2005-07 06:38:47Z        8
## 9066   2005-07 06:47:19Z        8
## 9067   2005-07 08:15:31Z        8
## 9068   2005-07 08:31:22Z        8
## 9069   2005-07 09:45:59Z        8
## 9070   2005-07 09:54:49Z        8
## 9071   2005-07 10:13:32Z        8
## 9072   2005-07 10:36:30Z        8
## 9073   2005-07 10:38:49Z        8
## 9074   2005-07 11:07:39Z        8
## 9075   2005-07 11:08:50Z        8
## 9076   2005-07 11:34:54Z        8
## 9077   2005-07 13:38:36Z        8
## 9078   2005-07 17:21:06Z        8
## 9079   2005-07 17:29:53Z        8
## 9080   2005-07 17:51:30Z        8
## 9081   2005-07 20:27:38Z        8
## 9082   2005-07 01:32:12Z        8
## 9083   2005-07 01:40:54Z        8
## 9084   2005-07 07:34:04Z        8
## 9085   2005-07 14:38:21Z        8
## 9086   2005-07 22:39:54Z        8
## 9087   2005-07 22:42:03Z        8
## 9088   2005-07 03:48:42Z        8
## 9089   2005-07 08:01:57Z        8
## 9090   2005-07 08:03:32Z        8
## 9091   2005-07 08:14:56Z        8
## 9092   2005-07 08:44:38Z        8
## 9093   2005-07 10:13:44Z        8
## 9094   2005-07 12:19:30Z        8
## 9095   2005-07 23:34:21Z        8
## 9096   2005-07 23:39:47Z        8
## 9097   2005-07 23:45:46Z        8
## 9098   2005-07 00:13:34Z        8
## 9099   2005-07 00:14:10Z        8
## 9100   2005-07 02:19:57Z        8
## 9101   2005-07 10:40:02Z        8
## 9102   2005-07 15:39:58Z        8
## 9103   2005-07 20:35:03Z        8
## 9104   2005-07 20:39:53Z        8
## 9105   2005-07 09:52:09Z        8
## 9106   2005-07 10:12:44Z        8
## 9107   2005-07 12:07:24Z        8
## 9108   2005-07 23:22:33Z        8
## 9109   2005-07 23:26:27Z        8
## 9110   2005-07 23:37:37Z        8
## 9111   2005-08 00:20:25Z        8
## 9112   2005-08 00:23:43Z        8
## 9113   2005-08 00:46:11Z        8
## 9114   2005-08 01:05:53Z        8
## 9115   2005-08 01:35:14Z        8
## 9116   2005-08 23:48:36Z        8
## 9117   2005-08 23:52:23Z        8
## 9118   2005-08 03:16:45Z        8
## 9119   2005-08 22:03:10Z        8
## 9120   2005-08 22:24:18Z        8
## 9121   2005-08 22:31:32Z        8
## 9122   2005-08 22:46:11Z        8
## 9123   2005-08 22:48:18Z        8
## 9124   2005-08 22:49:24Z        8
## 9125   2005-08 22:50:01Z        8
## 9126   2005-08 22:50:20Z        8
## 9127   2005-08 22:51:50Z        8
## 9128   2005-08 22:52:38Z        8
## 9129   2005-08 22:55:51Z        8
## 9130   2005-08 23:03:12Z        8
## 9131   2005-08 23:11:49Z        8
## 9132   2005-08 23:13:21Z        8
## 9133   2005-08 23:13:59Z        8
## 9134   2005-08 23:16:17Z        8
## 9135   2005-08 23:17:07Z        8
## 9136   2005-08 23:21:22Z        8
## 9137   2005-08 23:25:47Z        8
## 9138   2005-08 23:31:14Z        8
## 9139   2005-08 23:33:59Z        8
## 9140   2005-08 23:35:08Z        8
## 9141   2005-08 23:36:47Z        8
## 9142   2005-08 23:55:04Z        8
## 9143   2005-08 00:08:13Z        8
## 9144   2005-08 00:11:42Z        8
## 9145   2005-08 00:13:52Z        8
## 9146   2005-08 02:26:02Z        8
## 9147   2005-08 02:27:24Z        8
## 9148   2005-08 02:31:12Z        8
## 9149   2005-08 10:45:29Z        8
## 9150   2005-08 13:34:02Z        8
## 9151   2005-08 06:22:22Z        8
## 9152   2005-08 06:26:41Z        8
## 9153   2005-08 15:00:14Z        8
## 9154   2005-08 01:49:02Z        8
## 9155   2005-08 02:09:08Z        8
## 9156   2005-08 02:12:28Z        8
## 9157   2005-08 17:04:56Z        8
## 9158   2005-08 17:07:29Z        8
## 9159   2005-08 18:11:25Z        8
## 9160   2005-08 18:58:44Z        8
## 9161   2005-08 19:02:56Z        8
## 9162   2005-08 22:14:27Z        8
## 9163   2005-08 22:23:06Z        8
## 9164   2005-08 22:24:31Z        8
## 9165   2005-08 22:31:32Z        8
## 9166   2005-08 23:49:05Z        8
## 9167   2005-08 00:24:52Z        8
## 9168   2005-08 02:17:32Z        8
## 9169   2005-08 16:35:13Z        8
## 9170   2005-08 16:44:50Z        8
## 9171   2005-08 16:55:03Z        8
## 9172   2005-08 17:24:07Z        8
## 9173   2005-08 19:25:35Z        8
## 9174   2005-08 19:42:44Z        8
## 9175   2005-08 20:03:23Z        8
## 9176   2005-08 20:07:13Z        8
## 9177   2005-08 20:10:15Z        8
## 9178   2005-08 20:22:02Z        8
## 9179   2005-08 07:44:18Z        8
## 9180   2005-08 07:51:52Z        8
## 9181   2005-08 08:42:52Z        8
## 9182   2005-08 22:12:46Z        8
## 9183   2005-08 22:14:31Z        8
## 9184   2005-08 08:47:46Z        8
## 9185   2005-08 11:54:44Z        8
## 9186   2005-08 12:02:51Z        8
## 9187   2005-08 21:08:57Z        8
## 9188   2005-08 05:04:10Z        8
## 9189   2005-08 05:05:19Z        8
## 9190   2005-08 12:19:29Z        8
## 9191   2005-08 17:32:40Z        8
## 9192   2005-08 18:17:43Z        8
## 9193   2005-08 04:51:43Z        8
## 9194   2005-08 04:55:36Z        8
## 9195   2005-08 22:52:20Z        8
## 9196   2005-08 22:54:25Z        8
## 9197   2005-08 04:10:38Z        8
## 9198   2005-08 04:16:13Z        8
## 9199   2005-08 06:20:52Z        8
## 9200   2005-08 18:32:09Z        8
## 9201   2005-08 13:04:00Z        8
## 9202   2005-08 15:14:37Z        8
## 9203   2005-08 17:24:03Z        8
## 9204   2005-08 03:07:53Z        8
## 9205   2005-08 03:13:49Z        8
## 9206   2005-08 10:23:45Z        8
## 9207   2005-08 14:48:28Z        8
## 9208   2005-08 14:49:59Z        8
## 9209   2005-08 15:05:02Z        8
## 9210   2005-08 15:05:47Z        8
## 9211   2005-08 15:09:45Z        8
## 9212   2005-08 15:47:12Z        8
## 9213   2005-08 15:54:55Z        8
## 9214   2005-08 21:52:38Z        8
## 9215   2005-08 21:54:34Z        8
## 9216   2005-08 23:47:38Z        8
## 9217   2005-08 02:22:31Z        8
## 9218   2005-08 03:49:04Z        8
## 9219   2005-08 04:22:25Z        8
## 9220   2005-08 05:04:05Z        8
## 9221   2005-08 01:16:23Z        8
## 9222   2005-08 02:08:49Z        8
## 9223   2005-08 02:52:48Z        8
## 9224   2005-08 03:11:25Z        8
## 9225   2005-08 22:32:57Z        8
## 9226   2005-08 23:04:02Z        8
## 9227   2005-08 03:37:52Z        8
## 9228   2005-08 04:51:48Z        8
## 9229   2005-08 11:22:46Z        8
## 9230   2005-08 11:23:43Z        8
## 9231   2005-08 11:26:19Z        8
## 9232   2005-08 14:28:19Z        8
## 9233   2005-08 14:36:22Z        8
## 9234   2005-08 14:36:46Z        8
## 9235   2005-08 14:41:33Z        8
## 9236   2005-08 14:49:49Z        8
## 9237   2005-08 14:52:31Z        8
## 9238   2005-08 15:07:49Z        8
## 9239   2005-08 15:12:23Z        8
## 9240   2005-08 15:18:15Z        8
## 9241   2005-08 15:19:36Z        8
## 9242   2005-08 19:14:17Z        8
## 9243   2005-08 22:11:22Z        8
## 9244   2005-08 05:09:47Z        8
## 9245   2005-08 05:13:22Z        8
## 9246   2005-08 20:06:51Z        8
## 9247   2005-08 20:11:31Z        8
## 9248   2005-08 20:52:27Z        8
## 9249   2005-08 16:40:47Z        8
## 9250   2005-08 04:08:30Z        8
## 9251   2005-08 19:34:45Z        8
## 9252   2005-08 20:19:26Z        8
## 9253   2005-08 20:26:16Z        8
## 9254   2005-08 22:14:49Z        8
## 9255   2005-08 09:30:12Z        8
## 9256   2005-08 09:33:03Z        8
## 9257   2005-08 09:40:24Z        8
## 9258   2005-08 09:42:37Z        8
## 9259   2005-08 09:42:54Z        8
## 9260   2005-08 09:46:12Z        8
## 9261   2005-08 09:47:10Z        8
## 9262   2005-08 09:50:53Z        8
## 9263   2005-08 09:56:16Z        8
## 9264   2005-08 01:18:09Z        8
## 9265   2005-08 01:18:25Z        8
## 9266   2005-08 01:19:27Z        8
## 9267   2005-08 01:19:59Z        8
## 9268   2005-08 01:34:40Z        8
## 9269   2005-09 12:44:17Z        8
## 9270   2005-09 15:11:38Z        8
## 9271   2005-09 15:12:59Z        8
## 9272   2005-09 18:00:58Z        8
## 9273   2005-09 18:04:58Z        8
## 9274   2005-09 18:09:27Z        8
## 9275   2005-09 18:41:45Z        8
## 9276   2005-09 19:02:27Z        8
## 9277   2005-09 19:08:14Z        8
## 9278   2005-09 20:03:27Z        8
## 9279   2005-09 20:06:13Z        8
## 9280   2005-09 20:25:26Z        8
## 9281   2005-09 03:20:31Z        8
## 9282   2005-09 03:28:47Z        8
## 9283   2005-09 03:32:12Z        8
## 9284   2005-09 03:34:36Z        8
## 9285   2005-09 03:36:35Z        8
## 9286   2005-09 03:58:02Z        8
## 9287   2005-09 15:22:12Z        8
## 9288   2005-09 18:30:55Z        8
## 9289   2005-09 18:53:26Z        8
## 9290   2005-09 18:56:27Z        8
## 9291   2005-09 22:53:57Z        8
## 9292   2005-09 05:33:34Z        8
## 9293   2005-09 20:59:28Z        8
## 9294   2005-09 21:01:33Z        8
## 9295   2005-09 21:07:00Z        8
## 9296   2005-09 03:12:38Z        8
## 9297   2005-09 08:19:52Z        8
## 9298   2005-09 08:20:07Z        8
## 9299   2005-09 08:21:03Z        8
## 9300   2005-09 08:22:57Z        8
## 9301   2005-09 01:49:34Z        8
## 9302   2005-09 01:52:09Z        8
## 9303   2005-09 01:56:05Z        8
## 9304   2005-09 01:58:41Z        8
## 9305   2005-09 03:19:28Z        8
## 9306   2005-09 03:27:20Z        8
## 9307   2005-09 03:28:38Z        8
## 9308   2005-09 03:33:07Z        8
## 9309   2005-09 03:36:09Z        8
## 9310   2005-09 03:37:59Z        8
## 9311   2005-09 03:49:35Z        8
## 9312   2005-09 04:00:44Z        8
## 9313   2005-09 22:46:41Z        8
## 9314   2005-09 22:47:49Z        8
## 9315   2005-09 23:35:31Z        8
## 9316   2005-09 14:33:40Z        8
## 9317   2005-09 16:01:35Z        8
## 9318   2005-09 19:41:06Z        8
## 9319   2005-09 00:23:38Z        8
## 9320   2005-09 02:03:33Z        8
## 9321   2005-09 03:57:44Z        8
## 9322   2005-09 03:58:52Z        8
## 9323   2005-09 04:19:54Z        8
## 9324   2005-09 05:10:33Z        8
## 9325   2005-09 05:13:59Z        8
## 9326   2005-09 05:37:14Z        8
## 9327   2005-09 05:44:01Z        8
## 9328   2005-09 16:41:13Z        8
## 9329   2005-09 16:47:39Z        8
## 9330   2005-09 02:23:59Z        8
## 9331   2005-09 02:28:00Z        8
## 9332   2005-09 02:32:55Z        8
## 9333   2005-09 02:41:06Z        8
## 9334   2005-09 02:47:13Z        8
## 9335   2005-09 03:35:12Z        8
## 9336   2005-09 03:36:18Z        8
## 9337   2005-09 13:25:07Z        8
## 9338   2005-09 14:31:48Z        8
## 9339   2005-09 14:19:47Z        8
## 9340   2005-09 14:23:48Z        8
## 9341   2005-09 08:11:20Z        8
## 9342   2005-09 08:13:08Z        8
## 9343   2005-09 08:27:24Z        8
## 9344   2005-09 18:47:48Z        8
## 9345   2005-09 23:41:54Z        8
## 9346   2005-09 04:53:19Z        8
## 9347   2005-09 05:11:08Z        8
## 9348   2005-09 05:13:01Z        8
## 9349   2005-09 05:14:15Z        8
## 9350   2005-09 05:18:39Z        8
## 9351   2005-09 04:12:21Z        8
## 9352   2005-09 04:15:52Z        8
## 9353   2005-09 05:12:37Z        8
## 9354   2005-09 11:16:32Z        8
## 9355   2005-09 19:58:32Z        8
## 9356   2005-09 23:18:49Z        8
## 9357   2005-09 23:32:05Z        8
## 9358   2005-09 02:13:52Z        8
## 9359   2005-09 02:27:56Z        8
## 9360   2005-09 02:32:40Z        8
## 9361   2005-09 02:38:59Z        8
## 9362   2005-09 03:40:02Z        8
## 9363   2005-09 09:36:23Z        8
## 9364   2005-09 11:49:34Z        8
## 9365   2005-09 20:26:56Z        8
## 9366   2005-09 20:39:29Z        8
## 9367   2005-09 14:43:00Z        8
## 9368   2005-09 20:10:00Z        8
## 9369   2005-09 22:51:06Z        8
## 9370   2005-09 10:00:49Z        8
## 9371   2005-09 10:22:42Z        8
## 9372   2005-09 05:31:55Z        8
## 9373   2005-09 06:10:07Z        8
## 9374   2005-09 09:49:55Z        8
## 9375   2005-09 03:11:55Z        8
## 9376   2005-09 03:24:51Z        8
## 9377   2005-09 12:58:21Z        8
## 9378   2005-09 21:29:52Z        8
## 9379   2005-09 21:32:06Z        8
## 9380   2005-09 23:38:04Z        8
## 9381   2005-09 23:55:51Z        8
## 9382   2005-09 23:59:50Z        8
## 9383   2005-09 00:30:48Z        8
## 9384   2005-09 03:14:38Z        8
## 9385   2005-09 03:33:29Z        8
## 9386   2005-09 03:48:29Z        8
## 9387   2005-09 03:50:40Z        8
## 9388   2005-09 03:52:20Z        8
## 9389   2005-09 03:53:14Z        8
## 9390   2005-09 03:55:38Z        8
## 9391   2005-09 03:58:08Z        8
## 9392   2005-09 04:02:57Z        8
## 9393   2005-09 03:33:13Z        8
## 9394   2005-09 14:20:46Z        8
## 9395   2005-09 14:26:37Z        8
## 9396   2005-09 14:32:48Z        8
## 9397   2005-09 17:08:14Z        8
## 9398   2005-09 17:43:50Z        8
## 9399   2005-09 11:25:15Z        8
## 9400   2005-09 15:20:25Z        8
## 9401   2005-09 15:21:35Z        8
## 9402   2005-10 14:07:33Z        8
## 9403   2005-10 21:12:10Z        8
## 9404   2005-10 21:20:10Z        8
## 9405   2005-10 00:47:41Z        8
## 9406   2005-10 00:59:41Z        8
## 9407   2005-10 07:45:34Z        8
## 9408   2005-10 08:07:14Z        8
## 9409   2005-10 20:28:38Z        8
## 9410   2005-10 18:13:48Z        8
## 9411   2005-10 18:15:54Z        8
## 9412   2005-10 18:58:53Z        8
## 9413   2005-10 13:54:03Z        8
## 9414   2005-10 14:13:44Z        8
## 9415   2005-10 20:43:00Z        8
## 9416   2005-10 20:44:33Z        8
## 9417   2005-10 20:54:15Z        8
## 9418   2005-10 00:58:57Z        8
## 9419   2005-10 01:37:41Z        8
## 9420   2005-10 13:08:07Z        8
## 9421   2005-10 22:28:20Z        8
## 9422   2005-10 05:39:17Z        8
## 9423   2005-10 02:15:30Z        8
## 9424   2005-10 09:46:50Z        8
## 9425   2005-10 19:43:40Z        8
## 9426   2005-10 19:52:19Z        8
## 9427   2005-10 00:39:45Z        8
## 9428   2005-10 00:40:42Z        8
## 9429   2005-10 03:58:19Z        8
## 9430   2005-10 03:59:04Z        8
## 9431   2005-10 15:11:35Z        8
## 9432   2005-10 15:56:04Z        8
## 9433   2005-10 18:27:07Z        8
## 9434   2005-10 08:22:04Z        8
## 9435   2005-10 12:46:39Z        8
## 9436   2005-10 12:48:03Z        8
## 9437   2005-10 05:41:25Z        8
## 9438   2005-10 16:28:33Z        8
## 9439   2005-10 06:50:12Z        8
## 9440   2005-10 18:58:58Z        8
## 9441   2005-10 18:59:12Z        8
## 9442   2005-10 22:31:54Z        8
## 9443   2005-10 02:42:46Z        8
## 9444   2005-10 02:58:00Z        8
## 9445   2005-10 00:10:55Z        8
## 9446   2005-10 00:20:36Z        8
## 9447   2005-10 04:38:00Z        8
## 9448   2005-10 04:51:01Z        8
## 9449   2005-10 05:20:54Z        8
## 9450   2005-10 05:25:40Z        8
## 9451   2005-10 05:26:26Z        8
## 9452   2005-10 05:27:00Z        8
## 9453   2005-10 18:58:14Z        8
## 9454   2005-10 21:09:57Z        8
## 9455   2005-10 03:00:56Z        8
## 9456   2005-10 03:01:12Z        8
## 9457   2005-10 05:38:10Z        8
## 9458   2005-10 15:02:10Z        8
## 9459   2005-10 01:25:10Z        8
## 9460   2005-10 14:47:50Z        8
## 9461   2005-10 15:13:08Z        8
## 9462   2005-10 15:24:26Z        8
## 9463   2005-10 23:27:32Z        8
## 9464   2005-10 00:57:45Z        8
## 9465   2005-10 10:14:35Z        8
## 9466   2005-10 10:15:03Z        8
## 9467   2005-10 10:17:03Z        8
## 9468   2005-10 10:18:36Z        8
## 9469   2005-10 10:29:03Z        8
## 9470   2005-10 10:41:47Z        8
## 9471   2005-10 13:23:02Z        8
## 9472   2005-10 13:44:53Z        8
## 9473   2005-10 13:45:18Z        8
## 9474   2005-10 13:50:37Z        8
## 9475   2005-10 14:05:11Z        8
## 9476   2005-10 14:05:36Z        8
## 9477   2005-10 14:06:45Z        8
## 9478   2005-10 14:08:47Z        8
## 9479   2005-10 14:09:22Z        8
## 9480   2005-10 14:19:09Z        8
## 9481   2005-10 14:20:47Z        8
## 9482   2005-10 15:00:46Z        8
## 9483   2005-11 10:37:45Z        8
## 9484   2005-11 10:40:53Z        8
## 9485   2005-11 10:43:20Z        8
## 9486   2005-11 01:25:19Z        8
## 9487   2005-11 05:01:15Z        8
## 9488   2005-11 06:27:15Z        8
## 9489   2005-11 11:36:47Z        8
## 9490   2005-11 02:12:44Z        8
## 9491   2005-11 02:47:35Z        8
## 9492   2005-11 02:49:43Z        8
## 9493   2005-11 05:27:08Z        8
## 9494   2005-11 09:02:42Z        8
## 9495   2005-11 10:17:44Z        8
## 9496   2005-11 10:38:59Z        8
## 9497   2005-11 10:48:46Z        8
## 9498   2005-11 11:06:22Z        8
## 9499   2005-11 11:58:07Z        8
## 9500   2005-11 18:01:18Z        8
## 9501   2005-11 18:37:59Z        8
## 9502   2005-11 18:43:41Z        8
## 9503   2005-11 18:46:06Z        8
## 9504   2005-11 19:19:43Z        8
## 9505   2005-11 19:30:55Z        8
## 9506   2005-11 23:48:47Z        8
## 9507   2005-11 23:53:46Z        8
## 9508   2005-11 23:55:19Z        8
## 9509   2005-11 23:56:29Z        8
## 9510   2005-11 00:01:27Z        8
## 9511   2005-11 04:01:57Z        8
## 9512   2005-11 13:20:17Z        8
## 9513   2005-11 13:42:44Z        8
## 9514   2005-11 14:18:03Z        8
## 9515   2005-11 14:33:41Z        8
## 9516   2005-11 05:04:46Z        8
## 9517   2005-11 04:50:17Z        8
## 9518   2005-11 19:52:58Z        8
## 9519   2005-11 19:53:12Z        8
## 9520   2005-11 03:15:02Z        8
## 9521   2005-11 04:07:35Z        8
## 9522   2005-11 22:25:00Z        8
## 9523   2005-11 22:26:30Z        8
## 9524   2005-11 03:04:34Z        8
## 9525   2005-11 07:09:11Z        8
## 9526   2005-11 07:47:07Z        8
## 9527   2005-11 01:42:59Z        8
## 9528   2005-11 02:00:42Z        8
## 9529   2005-11 01:21:33Z        8
## 9530   2005-11 02:52:45Z        8
## 9531   2005-11 02:59:55Z        8
## 9532   2005-11 03:06:58Z        8
## 9533   2005-11 03:34:17Z        8
## 9534   2005-11 19:07:05Z        8
## 9535   2005-11 19:08:24Z        8
## 9536   2005-11 19:08:26Z        8
## 9537   2005-11 19:48:07Z        8
## 9538   2005-11 19:49:08Z        8
## 9539   2005-11 12:49:11Z        8
## 9540   2005-11 13:10:13Z        8
## 9541   2005-11 13:11:09Z        8
## 9542   2005-11 20:31:24Z        8
## 9543   2005-11 20:58:58Z        8
## 9544   2005-11 20:00:58Z        8
## 9545   2005-11 20:03:37Z        8
## 9546   2005-11 12:55:33Z        8
## 9547   2005-11 21:29:40Z        8
## 9548   2005-11 11:14:04Z        8
## 9549   2005-11 15:13:01Z        8
## 9550   2005-11 03:25:49Z        8
## 9551   2005-11 03:27:52Z        8
## 9552   2005-11 16:50:55Z        8
## 9553   2005-11 16:51:38Z        8
## 9554   2005-11 23:24:56Z        8
## 9555   2005-11 10:17:08Z        8
## 9556   2005-11 13:03:13Z        8
## 9557   2005-11 15:34:32Z        8
## 9558   2005-11 16:34:19Z        8
## 9559   2005-11 17:12:35Z        8
## 9560   2005-11 18:05:49Z        8
## 9561   2005-11 18:08:35Z        8
## 9562   2005-12 04:41:35Z        8
## 9563   2005-12 04:55:42Z        8
## 9564   2005-12 15:50:52Z        8
## 9565   2005-12 18:29:08Z        8
## 9566   2005-12 20:33:30Z        8
## 9567   2005-12 20:35:03Z        8
## 9568   2005-12 02:25:03Z        8
## 9569   2005-12 10:09:45Z        8
## 9570   2005-12 10:12:53Z        8
## 9571   2005-12 10:13:01Z        8
## 9572   2005-12 10:14:48Z        8
## 9573   2005-12 10:15:26Z        8
## 9574   2005-12 10:16:03Z        8
## 9575   2005-12 10:16:25Z        8
## 9576   2005-12 10:16:51Z        8
## 9577   2005-12 10:17:15Z        8
## 9578   2005-12 10:17:19Z        8
## 9579   2005-12 10:19:41Z        8
## 9580   2005-12 10:19:52Z        8
## 9581   2005-12 15:51:47Z        8
## 9582   2005-12 00:56:23Z        8
## 9583   2005-12 00:56:34Z        8
## 9584   2005-12 00:56:58Z        8
## 9585   2005-12 17:06:41Z        8
## 9586   2005-12 00:42:20Z        8
## 9587   2005-12 01:19:49Z        8
## 9588   2005-12 04:13:11Z        8
## 9589   2005-12 02:24:41Z        8
## 9590   2005-12 02:42:29Z        8
## 9591   2005-12 02:50:47Z        8
## 9592   2005-12 02:18:07Z        8
## 9593   2005-12 02:21:09Z        8
## 9594   2005-12 16:10:19Z        8
## 9595   2005-12 19:25:05Z        8
## 9596   2005-12 19:30:03Z        8
## 9597   2005-12 05:16:43Z        8
## 9598   2005-12 06:28:49Z        8
## 9599   2005-12 14:14:56Z        8
## 9600   2005-12 14:16:16Z        8
## 9601   2005-12 14:20:04Z        8
## 9602   2005-12 14:29:04Z        8
## 9603   2005-12 19:38:27Z        8
## 9604   2005-12 19:40:58Z        8
## 9605   2005-12 15:52:13Z        8
## 9606   2005-12 16:05:09Z        8
## 9607   2005-12 20:39:12Z        8
## 9608   2005-12 20:39:39Z        8
## 9609   2005-12 21:23:22Z        8
## 9610   2005-12 21:24:17Z        8
## 9611   2005-12 21:26:11Z        8
## 9612   2005-12 21:28:03Z        8
## 9613   2005-12 01:01:40Z        8
## 9614   2005-12 01:01:59Z        8
## 9615   2005-12 04:17:07Z        8
## 9616   2005-12 07:27:50Z        8
## 9617   2005-12 07:43:33Z        8
## 9618   2005-12 07:58:36Z        8
## 9619   2005-12 07:59:21Z        8
## 9620   2005-12 08:00:18Z        8
## 9621   2005-12 08:05:19Z        8
## 9622   2005-12 08:24:26Z        8
## 9623   2005-12 08:24:45Z        8
## 9624   2005-12 08:25:54Z        8
## 9625   2005-12 08:27:08Z        8
## 9626   2005-12 08:46:59Z        8
## 9627   2005-12 08:48:21Z        8
## 9628   2005-12 08:50:37Z        8
## 9629   2005-12 08:56:33Z        8
## 9630   2005-12 09:09:21Z        8
## 9631   2005-12 13:12:18Z        8
## 9632   2005-12 13:12:43Z        8
## 9633   2005-12 22:22:44Z        8
## 9634   2005-12 22:41:05Z        8
## 9635   2005-12 06:52:35Z        8
## 9636   2005-12 06:54:18Z        8
## 9637   2005-12 06:54:55Z        8
## 9638   2005-12 07:21:49Z        8
## 9639   2005-12 19:35:39Z        8
## 9640   2005-12 19:40:35Z        8
## 9641   2005-12 19:41:28Z        8
## 9642   2005-12 22:29:22Z        8
## 9643   2005-12 00:45:42Z        8
## 9644   2005-12 00:46:42Z        8
## 9645   2005-12 15:46:59Z        8
## 9646   2005-12 17:39:22Z        8
## 9647   2005-12 18:01:19Z        8
## 9648   2005-12 01:16:36Z        8
## 9649   2005-12 01:17:33Z        8
## 9650   2005-12 04:37:29Z        8
## 9651   2005-12 04:47:10Z        8
## 9652   2005-12 07:02:55Z        8
## 9653   2005-12 19:07:10Z        8
## 9654   2005-12 19:08:21Z        8
## 9655   2005-12 19:25:56Z        8
## 9656   2005-12 19:26:56Z        8
## 9657   2005-12 03:10:34Z        8
## 9658   2005-12 03:20:52Z        8
## 9659   2005-12 13:47:59Z        8
## 9660   2005-12 22:38:06Z        8
## 9661   2005-12 22:39:14Z        8
## 9662   2005-12 22:40:39Z        8
## 9663   2005-12 22:42:14Z        8
## 9664   2005-12 03:43:12Z        8
## 9665   2005-12 03:54:06Z        8
## 9666   2005-12 18:35:46Z        8
## 9667   2005-12 02:39:02Z        8
## 9668   2005-12 02:39:32Z        8
## 9669   2005-12 17:57:18Z        8
## 9670   2005-12 16:23:17Z        8
## 9671   2005-12 22:51:21Z        8
## 9672   2005-12 21:17:08Z        8
## 9673   2005-12 21:59:57Z        8
## 9674   2005-12 22:03:03Z        8
## 9675   2005-12 01:35:57Z        8
## 9676   2005-12 01:57:35Z        8
## 9677   2005-12 02:02:20Z        8
## 9678   2005-12 00:27:11Z        8
## 9679   2005-12 00:27:46Z        8
## 9680   2005-12 00:29:48Z        8
## 9681   2005-12 00:37:29Z        8
## 9682   2005-12 00:39:15Z        8
## 9683   2005-12 00:40:35Z        8
## 9684   2005-12 00:43:47Z        8
## 9685   2005-12 00:46:09Z        8
## 9686   2005-12 00:51:00Z        8
## 9687   2005-12 00:53:27Z        8
## 9688   2005-12 01:11:21Z        8
## 9689   2005-12 01:14:18Z        8
## 9690   2005-12 18:30:25Z        8
## 9691   2005-12 18:36:59Z        8
## 9692   2005-12 19:17:27Z        8
## 9693   2005-12 20:21:33Z        8
## 9694   2006-01 03:59:49Z        8
## 9695   2006-01 10:55:42Z        8
## 9696   2006-01 17:22:15Z        8
## 9697   2006-01 22:41:39Z        8
## 9698   2006-01 23:44:41Z        8
## 9699   2006-01 04:33:44Z        8
## 9700   2006-01 08:53:07Z        8
## 9701   2006-01 08:55:46Z        8
## 9702   2006-01 10:45:03Z        8
## 9703   2006-01 10:24:54Z        8
## 9704   2006-01 19:11:08Z        8
## 9705   2006-01 00:24:05Z        8
## 9706   2006-01 02:38:55Z        8
## 9707   2006-01 05:03:49Z        8
## 9708   2006-01 05:11:38Z        8
## 9709   2006-01 05:33:49Z        8
## 9710   2006-01 05:50:02Z        8
## 9711   2006-01 05:53:46Z        8
## 9712   2006-01 06:20:03Z        8
## 9713   2006-01 06:45:41Z        8
## 9714   2006-01 02:23:12Z        8
## 9715   2006-01 23:09:43Z        8
## 9716   2006-01 03:12:17Z        8
## 9717   2006-01 05:08:24Z        8
## 9718   2006-01 05:09:34Z        8
## 9719   2006-01 05:12:43Z        8
## 9720   2006-01 05:17:28Z        8
## 9721   2006-01 05:20:04Z        8
## 9722   2006-01 07:12:29Z        8
## 9723   2006-01 07:23:32Z        8
## 9724   2006-01 07:31:59Z        8
## 9725   2006-01 23:28:46Z        8
## 9726   2006-01 09:42:37Z        8
## 9727   2006-01 09:44:48Z        8
## 9728   2006-01 19:24:04Z        8
## 9729   2006-01 22:47:47Z        8
## 9730   2006-01 05:56:18Z        8
## 9731   2006-01 15:22:07Z        8
## 9732   2006-01 15:22:47Z        8
## 9733   2006-01 15:36:28Z        8
## 9734   2006-01 17:55:20Z        8
## 9735   2006-01 18:36:42Z        8
## 9736   2006-01 04:18:40Z        8
## 9737   2006-01 12:58:52Z        8
## 9738   2006-01 02:41:55Z        8
## 9739   2006-01 02:54:31Z        8
## 9740   2006-01 04:40:15Z        8
## 9741   2006-01 05:25:25Z        8
## 9742   2006-01 22:00:24Z        8
## 9743   2006-01 22:35:42Z        8
## 9744   2006-01 22:53:09Z        8
## 9745   2006-01 22:53:44Z        8
## 9746   2006-01 22:55:35Z        8
## 9747   2006-01 01:22:42Z        8
## 9748   2006-01 19:30:31Z        8
## 9749   2006-01 21:25:17Z        8
## 9750   2006-01 21:52:28Z        8
## 9751   2006-01 01:16:14Z        8
## 9752   2006-01 04:03:24Z        8
## 9753   2006-01 04:12:07Z        8
## 9754   2006-01 10:03:58Z        8
## 9755   2006-01 10:05:58Z        8
## 9756   2006-01 10:07:07Z        8
## 9757   2006-01 14:03:23Z        8
## 9758   2006-01 14:06:41Z        8
## 9759   2006-01 15:15:28Z        8
## 9760   2006-01 15:16:30Z        8
## 9761   2006-01 15:19:28Z        8
## 9762   2006-01 15:20:08Z        8
## 9763   2006-01 15:24:17Z        8
## 9764   2006-01 15:26:56Z        8
## 9765   2006-01 15:34:04Z        8
## 9766   2006-01 15:36:53Z        8
## 9767   2006-01 00:19:58Z        8
## 9768   2006-01 22:02:47Z        8
## 9769   2006-01 22:10:38Z        8
## 9770   2006-01 02:16:42Z        8
## 9771   2006-01 18:57:40Z        8
## 9772   2006-01 18:58:07Z        8
## 9773   2006-01 18:58:21Z        8
## 9774   2006-01 18:58:47Z        8
## 9775   2006-01 19:40:54Z        8
## 9776   2006-01 19:42:48Z        8
## 9777   2006-01 10:21:58Z        8
## 9778   2006-01 11:58:35Z        8
## 9779   2006-01 11:58:57Z        8
## 9780   2006-01 03:18:37Z        8
## 9781   2006-01 03:31:25Z        8
## 9782   2006-01 03:37:26Z        8
## 9783   2006-01 05:35:01Z        8
## 9784   2006-01 19:05:49Z        8
## 9785   2006-01 19:42:07Z        8
## 9786   2006-01 10:08:03Z        8
## 9787   2006-01 10:46:14Z        8
## 9788   2006-01 04:09:17Z        8
## 9789   2006-01 04:20:16Z        8
## 9790   2006-01 12:01:39Z        8
## 9791   2006-01 06:56:42Z        8
## 9792   2006-01 22:23:17Z        8
## 9793   2006-01 08:50:05Z        8
## 9794   2006-01 08:50:37Z        8
## 9795   2006-01 08:52:03Z        8
## 9796   2006-01 08:57:37Z        8
## 9797   2006-01 09:04:15Z        8
## 9798   2006-01 18:28:05Z        8
## 9799   2006-01 23:04:59Z        8
## 9800   2006-01 23:08:25Z        8
## 9801   2006-01 23:09:36Z        8
## 9802   2006-01 23:10:51Z        8
## 9803   2006-01 23:11:08Z        8
## 9804   2006-01 23:12:38Z        8
## 9805   2006-01 23:14:48Z        8
## 9806   2006-01 23:16:01Z        8
## 9807   2006-01 23:17:05Z        8
## 9808   2006-01 10:44:00Z        8
## 9809   2006-01 21:57:51Z        8
## 9810   2006-01 21:58:22Z        8
## 9811   2006-01 03:38:54Z        8
## 9812   2006-01 08:25:01Z        8
## 9813   2006-01 08:34:49Z        8
## 9814   2006-01 09:54:30Z        8
## 9815   2006-01 22:41:25Z        8
## 9816   2006-01 01:59:49Z        8
## 9817   2006-01 15:17:08Z        8
## 9818   2006-01 15:25:51Z        8
## 9819   2006-01 20:29:11Z        8
## 9820   2006-01 08:32:00Z        8
## 9821   2006-01 08:51:09Z        8
## 9822   2006-02 00:48:21Z        8
## 9823   2006-02 14:52:45Z        8
## 9824   2006-02 16:13:10Z        8
## 9825   2006-02 16:20:57Z        8
## 9826   2006-02 05:48:46Z        8
## 9827   2006-02 23:38:16Z        8
## 9828   2006-02 07:02:14Z        8
## 9829   2006-02 07:03:06Z        8
## 9830   2006-02 10:43:30Z        8
## 9831   2006-02 11:14:17Z        8
## 9832   2006-02 11:18:42Z        8
## 9833   2006-02 18:50:28Z        8
## 9834   2006-02 01:41:48Z        8
## 9835   2006-02 06:43:10Z        8
## 9836   2006-02 23:39:45Z        8
## 9837   2006-02 20:00:03Z        8
## 9838   2006-02 20:06:57Z        8
## 9839   2006-02 21:34:56Z        8
## 9840   2006-02 21:37:57Z        8
## 9841   2006-02 06:51:58Z        8
## 9842   2006-02 08:47:40Z        8
## 9843   2006-02 15:34:09Z        8
## 9844   2006-02 18:27:25Z        8
## 9845   2006-02 18:07:59Z        8
## 9846   2006-02 18:09:40Z        8
## 9847   2006-02 20:05:56Z        8
## 9848   2006-02 11:44:38Z        8
## 9849   2006-02 12:21:08Z        8
## 9850   2006-02 14:50:05Z        8
## 9851   2006-02 14:50:27Z        8
## 9852   2006-02 18:07:58Z        8
## 9853   2006-02 03:33:54Z        8
## 9854   2006-02 03:34:58Z        8
## 9855   2006-02 03:36:08Z        8
## 9856   2006-02 07:01:33Z        8
## 9857   2006-02 19:05:50Z        8
## 9858   2006-02 22:36:37Z        8
## 9859   2006-02 04:16:04Z        8
## 9860   2006-02 06:40:01Z        8
## 9861   2006-02 07:15:05Z        8
## 9862   2006-02 21:34:00Z        8
## 9863   2006-02 21:49:03Z        8
## 9864   2006-02 03:08:19Z        8
## 9865   2006-02 03:45:10Z        8
## 9866   2006-02 03:45:34Z        8
## 9867   2006-02 07:05:51Z        8
## 9868   2006-02 22:29:59Z        8
## 9869   2006-02 22:36:27Z        8
## 9870   2006-02 22:37:32Z        8
## 9871   2006-02 23:01:25Z        8
## 9872   2006-02 23:03:05Z        8
## 9873   2006-02 23:14:32Z        8
## 9874   2006-02 23:15:26Z        8
## 9875   2006-02 23:17:15Z        8
## 9876   2006-02 23:29:14Z        8
## 9877   2006-02 23:33:19Z        8
## 9878   2006-02 15:31:29Z        8
## 9879   2006-02 20:39:34Z        8
## 9880   2006-02 22:15:53Z        8
## 9881   2006-02 22:18:51Z        8
## 9882   2006-02 22:24:27Z        8
## 9883   2006-02 22:28:44Z        8
## 9884   2006-02 22:41:29Z        8
## 9885   2006-02 22:42:32Z        8
## 9886   2006-02 22:43:37Z        8
## 9887   2006-02 22:44:18Z        8
## 9888   2006-02 22:45:37Z        8
## 9889   2006-02 22:49:12Z        8
## 9890   2006-02 22:56:39Z        8
## 9891   2006-02 23:00:46Z        8
## 9892   2006-02 23:11:41Z        8
## 9893   2006-02 23:14:48Z        8
## 9894   2006-02 23:16:16Z        8
## 9895   2006-02 23:19:54Z        8
## 9896   2006-02 23:22:21Z        8
## 9897   2006-02 23:26:00Z        8
## 9898   2006-02 23:26:34Z        8
## 9899   2006-02 23:33:00Z        8
## 9900   2006-02 23:39:20Z        8
## 9901   2006-02 23:41:18Z        8
## 9902   2006-02 23:42:12Z        8
## 9903   2006-02 23:42:25Z        8
## 9904   2006-02 16:06:46Z        8
## 9905   2006-02 17:55:32Z        8
## 9906   2006-02 23:18:06Z        8
## 9907   2006-02 02:20:27Z        8
## 9908   2006-02 15:51:36Z        8
## 9909   2006-02 05:00:49Z        8
## 9910   2006-02 05:01:19Z        8
## 9911   2006-02 05:05:20Z        8
## 9912   2006-02 05:05:41Z        8
## 9913   2006-02 05:06:41Z        8
## 9914   2006-02 06:38:03Z        8
## 9915   2006-02 22:49:40Z        8
## 9916   2006-02 06:11:51Z        8
## 9917   2006-02 06:17:55Z        8
## 9918   2006-02 21:44:26Z        8
## 9919   2006-02 21:48:52Z        8
## 9920   2006-02 13:50:25Z        8
## 9921   2006-02 13:50:50Z        8
## 9922   2006-02 16:19:13Z        8
## 9923   2006-02 04:51:01Z        8
## 9924   2006-02 04:52:33Z        8
## 9925   2006-02 05:07:33Z        8
## 9926   2006-02 05:07:59Z        8
## 9927   2006-02 22:27:01Z        8
## 9928   2006-03 19:07:09Z        8
## 9929   2006-03 01:15:08Z        8
## 9930   2006-03 11:25:43Z        8
## 9931   2006-03 05:26:24Z        8
## 9932   2006-03 05:30:35Z        8
## 9933   2006-03 09:23:10Z        8
## 9934   2006-03 14:40:10Z        8
## 9935   2006-03 20:15:58Z        8
## 9936   2006-03 20:16:56Z        8
## 9937   2006-03 00:27:37Z        8
## 9938   2006-03 00:31:20Z        8
## 9939   2006-03 02:19:51Z        8
## 9940   2006-03 02:20:44Z        8
## 9941   2006-03 10:08:15Z        8
## 9942   2006-03 13:17:28Z        8
## 9943   2006-03 13:18:40Z        8
## 9944   2006-03 18:09:25Z        8
## 9945   2006-03 18:11:01Z        8
## 9946   2006-03 09:34:43Z        8
## 9947   2006-03 09:35:54Z        8
## 9948   2006-03 09:38:09Z        8
## 9949   2006-03 11:26:00Z        8
## 9950   2006-03 11:28:04Z        8
## 9951   2006-03 11:43:41Z        8
## 9952   2006-03 20:16:17Z        8
## 9953   2006-03 03:44:44Z        8
## 9954   2006-03 14:23:05Z        8
## 9955   2006-03 14:24:31Z        8
## 9956   2006-03 14:01:43Z        8
## 9957   2006-03 21:22:28Z        8
## 9958   2006-03 21:23:35Z        8
## 9959   2006-03 21:26:59Z        8
## 9960   2006-03 21:30:03Z        8
## 9961   2006-03 21:58:35Z        8
## 9962   2006-03 22:04:37Z        8
## 9963   2006-03 22:09:07Z        8
## 9964   2006-03 22:15:25Z        8
## 9965   2006-03 22:22:36Z        8
## 9966   2006-03 22:23:32Z        8
## 9967   2006-03 22:26:55Z        8
## 9968   2006-03 22:34:20Z        8
## 9969   2006-03 23:21:34Z        8
## 9970   2006-03 23:25:12Z        8
## 9971   2006-03 00:54:37Z        8
## 9972   2006-03 00:56:26Z        8
## 9973   2006-03 00:59:35Z        8
## 9974   2006-03 01:21:11Z        8
## 9975   2006-03 01:21:48Z        8
## 9976   2006-03 01:24:59Z        8
## 9977   2006-03 01:26:37Z        8
## 9978   2006-03 01:29:35Z        8
## 9979   2006-03 01:33:40Z        8
## 9980   2006-03 01:44:41Z        8
## 9981   2006-03 01:48:52Z        8
## 9982   2006-03 02:15:41Z        8
## 9983   2006-03 02:17:21Z        8
## 9984   2006-03 02:18:11Z        8
## 9985   2006-03 02:32:43Z        8
## 9986   2006-03 02:34:30Z        8
## 9987   2006-03 02:38:42Z        8
## 9988   2006-03 02:39:43Z        8
## 9989   2006-03 02:46:38Z        8
## 9990   2006-03 02:47:30Z        8
## 9991   2006-03 02:51:12Z        8
## 9992   2006-03 02:51:20Z        8
## 9993   2006-03 02:53:14Z        8
## 9994   2006-03 02:56:44Z        8
## 9995   2006-03 03:16:53Z        8
## 9996   2006-03 03:27:48Z        8
## 9997   2006-03 03:46:21Z        8
## 9998   2006-03 03:53:08Z        8
## 9999   2006-03 03:55:10Z        8
## 10000  2006-03 04:35:13Z        8
## 10001  2006-03 04:38:12Z        8
## 10002  2006-03 04:40:50Z        8
## 10003  2006-03 04:48:07Z        8
## 10004  2006-03 05:02:41Z        8
## 10005  2006-03 05:20:47Z        8
## 10006  2006-03 05:22:23Z        8
## 10007  2006-03 05:44:49Z        8
## 10008  2006-03 05:47:00Z        8
## 10009  2006-03 05:48:20Z        8
## 10010  2006-03 05:57:58Z        8
## 10011  2006-03 06:04:03Z        8
## 10012  2006-03 06:09:38Z        8
## 10013  2006-03 06:12:48Z        8
## 10014  2006-03 06:13:46Z        8
## 10015  2006-03 06:16:14Z        8
## 10016  2006-03 06:20:01Z        8
## 10017  2006-03 06:21:03Z        8
## 10018  2006-03 06:22:25Z        8
## 10019  2006-03 06:25:36Z        8
## 10020  2006-03 06:27:09Z        8
## 10021  2006-03 06:31:30Z        8
## 10022  2006-03 06:34:47Z        8
## 10023  2006-03 06:37:30Z        8
## 10024  2006-03 07:06:01Z        8
## 10025  2006-03 07:16:16Z        8
## 10026  2006-03 07:18:29Z        8
## 10027  2006-03 07:19:27Z        8
## 10028  2006-03 07:29:13Z        8
## 10029  2006-03 07:53:51Z        8
## 10030  2006-03 07:54:59Z        8
## 10031  2006-03 08:01:59Z        8
## 10032  2006-03 08:02:35Z        8
## 10033  2006-03 08:12:41Z        8
## 10034  2006-03 08:18:46Z        8
## 10035  2006-03 08:20:41Z        8
## 10036  2006-03 08:22:50Z        8
## 10037  2006-03 08:26:44Z        8
## 10038  2006-03 03:22:26Z        8
## 10039  2006-03 03:23:33Z        8
## 10040  2006-03 03:23:41Z        8
## 10041  2006-03 03:23:58Z        8
## 10042  2006-03 08:57:00Z        8
## 10043  2006-03 13:14:35Z        8
## 10044  2006-03 16:37:46Z        8
## 10045  2006-03 16:44:37Z        8
## 10046  2006-03 17:11:50Z        8
## 10047  2006-03 17:19:02Z        8
## 10048  2006-03 17:25:05Z        8
## 10049  2006-03 22:42:09Z        8
## 10050  2006-03 13:46:30Z        8
## 10051  2006-03 13:49:35Z        8
## 10052  2006-03 18:11:19Z        8
## 10053  2006-03 18:13:12Z        8
## 10054  2006-03 18:14:33Z        8
## 10055  2006-03 23:39:03Z        8
## 10056  2006-03 21:07:32Z        8
## 10057  2006-03 01:24:02Z        8
## 10058  2006-03 06:38:58Z        8
## 10059  2006-03 17:30:55Z        8
## 10060  2006-03 20:37:56Z        8
## 10061  2006-03 02:25:40Z        8
## 10062  2006-03 02:29:43Z        8
## 10063  2006-03 02:36:59Z        8
## 10064  2006-03 02:38:56Z        8
## 10065  2006-03 02:39:53Z        8
## 10066  2006-03 02:41:02Z        8
## 10067  2006-03 02:43:08Z        8
## 10068  2006-03 09:45:38Z        8
## 10069  2006-03 03:37:10Z        8
## 10070  2006-03 03:39:11Z        8
## 10071  2006-03 02:24:24Z        8
## 10072  2006-03 07:15:05Z        8
## 10073  2006-03 21:59:49Z        8
## 10074  2006-03 22:00:36Z        8
## 10075  2006-03 22:02:54Z        8
## 10076  2006-03 22:03:19Z        8
## 10077  2006-03 23:15:46Z        8
## 10078  2006-03 03:49:46Z        8
## 10079  2006-03 04:39:07Z        8
## 10080  2006-03 20:59:33Z        8
## 10081  2006-03 22:57:26Z        8
## 10082  2006-03 08:38:10Z        8
## 10083  2006-03 08:48:33Z        8
## 10084  2006-03 16:23:40Z        8
## 10085  2006-03 00:11:17Z        8
## 10086  2006-03 07:35:57Z        8
## 10087  2006-03 07:36:29Z        8
## 10088  2006-03 04:07:56Z        8
## 10089  2006-03 04:10:16Z        8
## 10090  2006-03 14:55:34Z        8
## 10091  2006-03 14:56:41Z        8
## 10092  2006-03 14:59:40Z        8
## 10093  2006-03 15:03:32Z        8
## 10094  2006-03 15:03:50Z        8
## 10095  2006-04 10:44:00Z        8
## 10096  2006-04 18:56:33Z        8
## 10097  2006-04 19:02:35Z        8
## 10098  2006-04 19:04:50Z        8
## 10099  2006-04 20:01:53Z        8
## 10100  2006-04 00:04:50Z        8
## 10101  2006-04 00:05:29Z        8
## 10102  2006-04 00:06:14Z        8
## 10103  2006-04 00:09:39Z        8
## 10104  2006-04 00:15:52Z        8
## 10105  2006-04 00:57:11Z        8
## 10106  2006-04 02:03:09Z        8
## 10107  2006-04 02:05:19Z        8
## 10108  2006-04 04:37:45Z        8
## 10109  2006-04 22:06:24Z        8
## 10110  2006-04 22:10:56Z        8
## 10111  2006-04 22:12:06Z        8
## 10112  2006-04 22:12:52Z        8
## 10113  2006-04 22:13:55Z        8
## 10114  2006-04 22:48:09Z        8
## 10115  2006-04 22:49:51Z        8
## 10116  2006-04 11:33:29Z        8
## 10117  2006-04 14:42:26Z        8
## 10118  2006-04 09:31:21Z        8
## 10119  2006-04 09:36:50Z        8
## 10120  2006-04 09:42:59Z        8
## 10121  2006-04 09:47:03Z        8
## 10122  2006-04 09:52:23Z        8
## 10123  2006-04 10:04:43Z        8
## 10124  2006-04 10:34:51Z        8
## 10125  2006-04 10:37:49Z        8
## 10126  2006-04 11:13:27Z        8
## 10127  2006-04 23:07:06Z        8
## 10128  2006-04 03:04:45Z        8
## 10129  2006-04 03:05:34Z        8
## 10130  2006-04 03:09:48Z        8
## 10131  2006-04 13:25:53Z        8
## 10132  2006-04 13:26:38Z        8
## 10133  2006-04 14:10:42Z        8
## 10134  2006-04 21:06:48Z        8
## 10135  2006-04 21:07:45Z        8
## 10136  2006-04 21:08:55Z        8
## 10137  2006-04 21:10:40Z        8
## 10138  2006-04 21:11:01Z        8
## 10139  2006-04 21:13:03Z        8
## 10140  2006-04 21:14:31Z        8
## 10141  2006-04 21:15:36Z        8
## 10142  2006-04 21:46:05Z        8
## 10143  2006-04 21:47:07Z        8
## 10144  2006-04 21:52:12Z        8
## 10145  2006-04 21:53:00Z        8
## 10146  2006-04 00:52:32Z        8
## 10147  2006-04 20:47:22Z        8
## 10148  2006-04 21:12:10Z        8
## 10149  2006-04 21:16:32Z        8
## 10150  2006-04 21:18:38Z        8
## 10151  2006-04 05:27:33Z        8
## 10152  2006-04 06:56:53Z        8
## 10153  2006-04 08:51:58Z        8
## 10154  2006-04 11:40:01Z        8
## 10155  2006-04 11:40:23Z        8
## 10156  2006-04 17:54:56Z        8
## 10157  2006-04 17:55:21Z        8
## 10158  2006-04 03:05:36Z        8
## 10159  2006-04 15:13:17Z        8
## 10160  2006-04 16:36:59Z        8
## 10161  2006-04 04:13:37Z        8
## 10162  2006-04 04:38:32Z        8
## 10163  2006-04 07:39:22Z        8
## 10164  2006-04 08:57:06Z        8
## 10165  2006-04 12:51:13Z        8
## 10166  2006-04 16:38:14Z        8
## 10167  2006-04 16:38:34Z        8
## 10168  2006-04 02:34:14Z        8
## 10169  2006-04 04:33:41Z        8
## 10170  2006-04 06:22:32Z        8
## 10171  2006-04 19:04:32Z        8
## 10172  2006-04 19:04:46Z        8
## 10173  2006-04 19:19:32Z        8
## 10174  2006-04 22:09:41Z        8
## 10175  2006-04 01:03:29Z        8
## 10176  2006-04 10:36:19Z        8
## 10177  2006-04 11:42:14Z        8
## 10178  2006-04 12:15:39Z        8
## 10179  2006-04 14:51:51Z        8
## 10180  2006-04 14:54:23Z        8
## 10181  2006-04 14:54:51Z        8
## 10182  2006-04 14:55:07Z        8
## 10183  2006-04 14:59:24Z        8
## 10184  2006-04 14:59:55Z        8
## 10185  2006-04 15:00:41Z        8
## 10186  2006-04 15:01:23Z        8
## 10187  2006-04 21:27:56Z        8
## 10188  2006-04 21:28:04Z        8
## 10189  2006-04 21:11:39Z        8
## 10190  2006-04 02:04:02Z        8
## 10191  2006-04 02:04:24Z        8
## 10192  2006-04 23:48:04Z        8
## 10193  2006-04 23:49:29Z        8
## 10194  2006-04 23:50:35Z        8
## 10195  2006-04 23:51:35Z        8
## 10196  2006-04 23:51:55Z        8
## 10197  2006-04 04:48:19Z        8
## 10198  2006-04 14:20:25Z        8
## 10199  2006-04 14:21:13Z        8
## 10200  2006-04 14:22:15Z        8
## 10201  2006-04 14:22:29Z        8
## 10202  2006-04 14:23:20Z        8
## 10203  2006-04 14:29:43Z        8
## 10204  2006-04 14:44:55Z        8
## 10205  2006-04 21:42:07Z        8
## 10206  2006-04 21:43:49Z        8
## 10207  2006-04 21:44:35Z        8
## 10208  2006-04 21:44:48Z        8
## 10209  2006-04 21:46:57Z        8
## 10210  2006-04 21:48:34Z        8
## 10211  2006-04 21:48:48Z        8
## 10212  2006-04 21:49:13Z        8
## 10213  2006-04 21:49:18Z        8
## 10214  2006-04 21:49:51Z        8
## 10215  2006-04 21:50:09Z        8
## 10216  2006-04 21:50:44Z        8
## 10217  2006-04 21:50:57Z        8
## 10218  2006-04 21:51:46Z        8
## 10219  2006-04 22:10:17Z        8
## 10220  2006-04 08:22:54Z        8
## 10221  2006-04 08:23:57Z        8
## 10222  2006-04 13:33:47Z        8
## 10223  2006-04 13:41:23Z        8
## 10224  2006-04 15:19:53Z        8
## 10225  2006-04 15:36:07Z        8
## 10226  2006-04 22:20:27Z        8
## 10227  2006-04 22:28:13Z        8
## 10228  2006-04 22:42:17Z        8
## 10229  2006-05 01:10:04Z        8
## 10230  2006-05 21:56:55Z        8
## 10231  2006-05 22:24:04Z        8
## 10232  2006-05 07:27:23Z        8
## 10233  2006-05 07:28:37Z        8
## 10234  2006-05 17:36:54Z        8
## 10235  2006-05 17:37:47Z        8
## 10236  2006-05 22:53:42Z        8
## 10237  2006-05 23:06:38Z        8
## 10238  2006-05 17:12:45Z        8
## 10239  2006-05 17:13:58Z        8
## 10240  2006-05 17:20:33Z        8
## 10241  2006-05 17:23:23Z        8
## 10242  2006-05 19:24:54Z        8
## 10243  2006-05 22:28:41Z        8
## 10244  2006-05 15:20:50Z        8
## 10245  2006-05 16:41:05Z        8
## 10246  2006-05 16:42:49Z        8
## 10247  2006-05 16:49:06Z        8
## 10248  2006-05 17:50:05Z        8
## 10249  2006-05 20:29:23Z        8
## 10250  2006-05 20:42:41Z        8
## 10251  2006-05 05:49:12Z        8
## 10252  2006-05 05:59:58Z        8
## 10253  2006-05 17:29:00Z        8
## 10254  2006-05 17:30:24Z        8
## 10255  2006-05 17:30:58Z        8
## 10256  2006-05 17:31:54Z        8
## 10257  2006-05 21:24:14Z        8
## 10258  2006-05 17:12:38Z        8
## 10259  2006-05 20:42:03Z        8
## 10260  2006-05 04:55:07Z        8
## 10261  2006-05 03:17:35Z        8
## 10262  2006-05 03:18:35Z        8
## 10263  2006-05 18:53:19Z        8
## 10264  2006-05 18:54:19Z        8
## 10265  2006-05 18:56:25Z        8
## 10266  2006-05 18:56:32Z        8
## 10267  2006-05 19:59:00Z        8
## 10268  2006-05 20:02:29Z        8
## 10269  2006-05 02:18:32Z        8
## 10270  2006-05 02:18:41Z        8
## 10271  2006-05 04:12:34Z        8
## 10272  2006-05 04:15:19Z        8
## 10273  2006-05 04:16:20Z        8
## 10274  2006-05 04:17:47Z        8
## 10275  2006-05 04:18:34Z        8
## 10276  2006-05 20:14:24Z        8
## 10277  2006-05 18:59:10Z        8
## 10278  2006-05 20:05:09Z        8
## 10279  2006-05 20:05:53Z        8
## 10280  2006-05 20:07:10Z        8
## 10281  2006-05 20:07:35Z        8
## 10282  2006-05 06:20:35Z        8
## 10283  2006-05 06:21:09Z        8
## 10284  2006-05 06:22:14Z        8
## 10285  2006-05 13:50:34Z        8
## 10286  2006-05 13:50:42Z        8
## 10287  2006-05 02:43:38Z        8
## 10288  2006-05 03:43:44Z        8
## 10289  2006-05 04:11:36Z        8
## 10290  2006-05 09:37:12Z        8
## 10291  2006-05 21:29:18Z        8
## 10292  2006-05 21:43:48Z        8
## 10293  2006-05 21:44:17Z        8
## 10294  2006-05 13:59:19Z        8
## 10295  2006-05 14:07:19Z        8
## 10296  2006-05 16:37:24Z        8
## 10297  2006-05 16:40:03Z        8
## 10298  2006-05 21:21:11Z        8
## 10299  2006-05 14:49:12Z        8
## 10300  2006-05 20:57:58Z        8
## 10301  2006-05 21:12:29Z        8
## 10302  2006-05 21:53:26Z        8
## 10303  2006-05 22:08:17Z        8
## 10304  2006-05 18:16:22Z        8
## 10305  2006-05 20:03:16Z        8
## 10306  2006-05 20:05:39Z        8
## 10307  2006-05 00:23:30Z        8
## 10308  2006-05 09:42:10Z        8
## 10309  2006-05 09:42:29Z        8
## 10310  2006-05 10:48:51Z        8
## 10311  2006-05 16:45:09Z        8
## 10312  2006-05 16:45:18Z        8
## 10313  2006-06 17:36:32Z        8
## 10314  2006-06 17:38:51Z        8
## 10315  2006-06 00:44:01Z        8
## 10316  2006-06 20:28:06Z        8
## 10317  2006-06 20:29:26Z        8
## 10318  2006-06 23:06:19Z        8
## 10319  2006-06 23:46:36Z        8
## 10320  2006-06 18:58:45Z        8
## 10321  2006-06 09:03:19Z        8
## 10322  2006-06 09:05:03Z        8
## 10323  2006-06 09:35:57Z        8
## 10324  2006-06 12:40:36Z        8
## 10325  2006-06 14:44:53Z        8
## 10326  2006-06 16:04:45Z        8
## 10327  2006-06 16:25:09Z        8
## 10328  2006-06 23:32:52Z        8
## 10329  2006-06 23:34:26Z        8
## 10330  2006-06 23:35:02Z        8
## 10331  2006-06 23:47:10Z        8
## 10332  2006-06 23:48:49Z        8
## 10333  2006-06 00:02:55Z        8
## 10334  2006-06 03:43:35Z        8
## 10335  2006-06 03:44:07Z        8
## 10336  2006-06 03:54:51Z        8
## 10337  2006-06 04:00:38Z        8
## 10338  2006-06 04:01:25Z        8
## 10339  2006-06 06:45:21Z        8
## 10340  2006-06 21:01:30Z        8
## 10341  2006-06 21:01:55Z        8
## 10342  2006-06 21:15:40Z        8
## 10343  2006-06 21:22:34Z        8
## 10344  2006-06 21:26:03Z        8
## 10345  2006-06 07:28:49Z        8
## 10346  2006-06 07:41:33Z        8
## 10347  2006-06 04:00:18Z        8
## 10348  2006-06 04:00:48Z        8
## 10349  2006-06 04:01:08Z        8
## 10350  2006-06 05:21:39Z        8
## 10351  2006-06 19:21:28Z        8
## 10352  2006-06 08:39:01Z        8
## 10353  2006-06 23:18:41Z        8
## 10354  2006-06 23:57:21Z        8
## 10355  2006-06 18:55:09Z        8
## 10356  2006-06 17:11:58Z        8
## 10357  2006-06 17:12:59Z        8
## 10358  2006-06 18:39:59Z        8
## 10359  2006-06 19:26:05Z        8
## 10360  2006-06 19:26:48Z        8
## 10361  2006-06 20:22:38Z        8
## 10362  2006-06 19:24:36Z        8
## 10363  2006-06 20:34:00Z        8
## 10364  2006-06 01:05:08Z        8
## 10365  2006-06 03:42:50Z        8
## 10366  2006-06 03:44:28Z        8
## 10367  2006-06 04:09:52Z        8
## 10368  2006-06 09:20:49Z        8
## 10369  2006-06 09:22:07Z        8
## 10370  2006-06 09:26:10Z        8
## 10371  2006-06 13:59:09Z        8
## 10372  2006-06 14:03:08Z        8
## 10373  2006-06 05:02:15Z        8
## 10374  2006-06 05:02:27Z        8
## 10375  2006-06 14:39:02Z        8
## 10376  2006-06 12:07:16Z        8
## 10377  2006-06 12:24:18Z        8
## 10378  2006-06 22:48:41Z        8
## 10379  2006-06 15:57:38Z        8
## 10380  2006-06 16:06:15Z        8
## 10381  2006-06 18:44:34Z        8
## 10382  2006-06 21:16:29Z        8
## 10383  2006-06 21:40:22Z        8
## 10384  2006-06 21:43:18Z        8
## 10385  2006-06 21:52:01Z        8
## 10386  2006-06 09:04:27Z        8
## 10387  2006-06 09:04:55Z        8
## 10388  2006-06 09:33:20Z        8
## 10389  2006-06 10:38:40Z        8
## 10390  2006-06 10:39:31Z        8
## 10391  2006-06 10:39:47Z        8
## 10392  2006-06 10:40:04Z        8
## 10393  2006-06 10:41:15Z        8
## 10394  2006-06 11:10:00Z        8
## 10395  2006-06 11:23:23Z        8
## 10396  2006-06 11:24:55Z        8
## 10397  2006-06 11:26:59Z        8
## 10398  2006-07 00:36:25Z        8
## 10399  2006-07 08:41:57Z        8
## 10400  2006-07 08:42:49Z        8
## 10401  2006-07 09:30:52Z        8
## 10402  2006-07 21:03:50Z        8
## 10403  2006-07 18:23:42Z        8
## 10404  2006-07 18:24:11Z        8
## 10405  2006-07 00:37:19Z        8
## 10406  2006-07 20:15:30Z        8
## 10407  2006-07 01:37:36Z        8
## 10408  2006-07 02:30:48Z        8
## 10409  2006-07 02:31:55Z        8
## 10410  2006-07 02:32:53Z        8
## 10411  2006-07 02:33:25Z        8
## 10412  2006-07 02:33:37Z        8
## 10413  2006-07 02:42:55Z        8
## 10414  2006-07 02:43:07Z        8
## 10415  2006-07 13:10:25Z        8
## 10416  2006-07 13:33:42Z        8
## 10417  2006-07 14:27:48Z        8
## 10418  2006-07 20:10:19Z        8
## 10419  2006-07 04:13:06Z        8
## 10420  2006-07 04:14:11Z        8
## 10421  2006-07 04:16:54Z        8
## 10422  2006-07 11:16:37Z        8
## 10423  2006-07 17:25:33Z        8
## 10424  2006-07 15:35:04Z        8
## 10425  2006-07 23:10:28Z        8
## 10426  2006-07 01:45:10Z        8
## 10427  2006-07 01:47:40Z        8
## 10428  2006-07 01:49:16Z        8
## 10429  2006-07 01:55:17Z        8
## 10430  2006-07 16:52:23Z        8
## 10431  2006-07 16:59:06Z        8
## 10432  2006-07 17:16:28Z        8
## 10433  2006-07 23:40:53Z        8
## 10434  2006-07 23:45:21Z        8
## 10435  2006-07 02:23:34Z        8
## 10436  2006-07 02:48:00Z        8
## 10437  2006-07 02:49:31Z        8
## 10438  2006-07 02:51:37Z        8
## 10439  2006-07 03:26:46Z        8
## 10440  2006-07 03:42:32Z        8
## 10441  2006-07 02:10:40Z        8
## 10442  2006-07 02:16:39Z        8
## 10443  2006-07 08:58:00Z        8
## 10444  2006-07 09:56:05Z        8
## 10445  2006-07 13:38:45Z        8
## 10446  2006-07 14:58:29Z        8
## 10447  2006-07 18:41:38Z        8
## 10448  2006-07 23:47:55Z        8
## 10449  2006-07 04:49:44Z        8
## 10450  2006-07 15:18:47Z        8
## 10451  2006-07 16:24:47Z        8
## 10452  2006-07 16:28:34Z        8
## 10453  2006-07 18:20:25Z        8
## 10454  2006-07 18:48:35Z        8
## 10455  2006-07 19:39:37Z        8
## 10456  2006-07 15:47:24Z        8
## 10457  2006-07 15:48:43Z        8
## 10458  2006-07 16:09:01Z        8
## 10459  2006-07 16:09:52Z        8
## 10460  2006-07 16:11:59Z        8
## 10461  2006-07 16:19:13Z        8
## 10462  2006-07 16:20:47Z        8
## 10463  2006-07 16:21:41Z        8
## 10464  2006-07 16:33:21Z        8
## 10465  2006-07 16:43:58Z        8
## 10466  2006-07 16:44:32Z        8
## 10467  2006-07 19:38:06Z        8
## 10468  2006-07 06:53:50Z        8
## 10469  2006-07 16:33:09Z        8
## 10470  2006-07 04:35:38Z        8
## 10471  2006-07 19:59:05Z        8
## 10472  2006-07 20:03:26Z        8
## 10473  2006-07 20:07:03Z        8
## 10474  2006-07 00:48:56Z        8
## 10475  2006-07 01:51:13Z        8
## 10476  2006-07 03:06:51Z        8
## 10477  2006-07 13:22:39Z        8
## 10478  2006-07 14:25:40Z        8
## 10479  2006-07 23:49:40Z        8
## 10480  2006-07 13:04:44Z        8
## 10481  2006-07 13:41:33Z        8
## 10482  2006-07 13:47:23Z        8
## 10483  2006-07 13:50:53Z        8
## 10484  2006-07 13:57:31Z        8
## 10485  2006-07 13:58:12Z        8
## 10486  2006-07 11:53:07Z        8
## 10487  2006-07 15:49:45Z        8
## 10488  2006-07 18:20:26Z        8
## 10489  2006-07 15:08:34Z        8
## 10490  2006-07 15:09:11Z        8
## 10491  2006-07 18:54:30Z        8
## 10492  2006-07 18:54:36Z        8
## 10493  2006-07 04:34:10Z        8
## 10494  2006-07 15:36:36Z        8
## 10495  2006-07 02:33:50Z        8
## 10496  2006-07 08:09:50Z        8
## 10497  2006-07 08:12:05Z        8
## 10498  2006-07 08:18:23Z        8
## 10499  2006-07 08:27:56Z        8
## 10500  2006-07 14:00:20Z        8
## 10501  2006-07 14:02:52Z        8
## 10502  2006-07 14:14:11Z        8
## 10503  2006-07 14:15:36Z        8
## 10504  2006-07 14:17:44Z        8
## 10505  2006-07 14:34:04Z        8
## 10506  2006-07 02:54:43Z        8
## 10507  2006-07 03:53:28Z        8
## 10508  2006-07 06:03:53Z        8
## 10509  2006-07 10:31:13Z        8
## 10510  2006-07 10:32:52Z        8
## 10511  2006-07 14:42:42Z        8
## 10512  2006-07 15:37:07Z        8
## 10513  2006-07 15:38:31Z        8
## 10514  2006-07 15:39:34Z        8
## 10515  2006-07 16:19:19Z        8
## 10516  2006-07 16:29:02Z        8
## 10517  2006-07 16:29:28Z        8
## 10518  2006-07 18:46:22Z        8
## 10519  2006-07 20:21:55Z        8
## 10520  2006-07 20:59:20Z        8
## 10521  2006-08 03:30:04Z        8
## 10522  2006-08 03:30:37Z        8
## 10523  2006-08 04:31:09Z        8
## 10524  2006-08 09:22:06Z        8
## 10525  2006-08 09:23:14Z        8
## 10526  2006-08 17:09:21Z        8
## 10527  2006-08 17:44:08Z        8
## 10528  2006-08 17:46:24Z        8
## 10529  2006-08 18:21:38Z        8
## 10530  2006-08 22:45:48Z        8
## 10531  2006-08 00:48:54Z        8
## 10532  2006-08 01:02:13Z        8
## 10533  2006-08 01:08:27Z        8
## 10534  2006-08 01:19:54Z        8
## 10535  2006-08 14:16:44Z        8
## 10536  2006-08 15:57:51Z        8
## 10537  2006-08 16:12:50Z        8
## 10538  2006-08 16:40:48Z        8
## 10539  2006-08 17:39:41Z        8
## 10540  2006-08 18:00:58Z        8
## 10541  2006-08 18:01:52Z        8
## 10542  2006-08 22:56:18Z        8
## 10543  2006-08 23:03:26Z        8
## 10544  2006-08 12:54:18Z        8
## 10545  2006-08 12:55:46Z        8
## 10546  2006-08 12:57:11Z        8
## 10547  2006-08 13:56:34Z        8
## 10548  2006-08 00:03:28Z        8
## 10549  2006-08 13:07:21Z        8
## 10550  2006-08 13:08:24Z        8
## 10551  2006-08 13:09:59Z        8
## 10552  2006-08 13:12:04Z        8
## 10553  2006-08 13:15:20Z        8
## 10554  2006-08 20:58:12Z        8
## 10555  2006-08 22:44:12Z        8
## 10556  2006-08 23:06:36Z        8
## 10557  2006-08 08:05:02Z        8
## 10558  2006-08 13:38:21Z        8
## 10559  2006-08 13:39:44Z        8
## 10560  2006-08 04:50:43Z        8
## 10561  2006-08 06:07:33Z        8
## 10562  2006-08 06:48:16Z        8
## 10563  2006-08 08:40:34Z        8
## 10564  2006-08 09:05:31Z        8
## 10565  2006-08 09:09:45Z        8
## 10566  2006-08 14:22:53Z        8
## 10567  2006-08 14:23:42Z        8
## 10568  2006-08 14:27:28Z        8
## 10569  2006-08 14:28:38Z        8
## 10570  2006-08 14:30:56Z        8
## 10571  2006-08 20:07:39Z        8
## 10572  2006-08 20:32:48Z        8
## 10573  2006-08 23:47:55Z        8
## 10574  2006-08 21:11:57Z        8
## 10575  2006-08 21:41:25Z        8
## 10576  2006-08 21:44:05Z        8
## 10577  2006-08 18:53:14Z        8
## 10578  2006-08 18:29:43Z        8
## 10579  2006-08 19:29:58Z        8
## 10580  2006-08 01:28:13Z        8
## 10581  2006-08 18:13:35Z        8
## 10582  2006-08 12:21:32Z        8
## 10583  2006-08 13:24:44Z        8
## 10584  2006-08 20:56:29Z        8
## 10585  2006-08 21:01:54Z        8
## 10586  2006-08 21:42:06Z        8
## 10587  2006-08 22:20:27Z        8
## 10588  2006-08 22:36:40Z        8
## 10589  2006-08 23:00:07Z        8
## 10590  2006-08 23:14:04Z        8
## 10591  2006-08 09:15:27Z        8
## 10592  2006-08 02:54:09Z        8
## 10593  2006-08 21:40:14Z        8
## 10594  2006-08 19:30:46Z        8
## 10595  2006-08 19:31:29Z        8
## 10596  2006-08 21:09:54Z        8
## 10597  2006-08 03:09:03Z        8
## 10598  2006-08 08:05:36Z        8
## 10599  2006-08 08:05:53Z        8
## 10600  2006-08 08:06:06Z        8
## 10601  2006-08 08:06:23Z        8
## 10602  2006-08 08:06:42Z        8
## 10603  2006-08 08:06:54Z        8
## 10604  2006-08 14:53:41Z        8
## 10605  2006-08 15:23:56Z        8
## 10606  2006-08 15:28:10Z        8
## 10607  2006-08 16:04:11Z        8
## 10608  2006-08 16:29:38Z        8
## 10609  2006-08 18:20:56Z        8
## 10610  2006-08 00:59:49Z        8
## 10611  2006-08 01:00:21Z        8
## 10612  2006-08 01:00:54Z        8
## 10613  2006-08 23:17:42Z        8
## 10614  2006-08 02:38:36Z        8
## 10615  2006-08 18:02:08Z        8
## 10616  2006-08 18:11:43Z        8
## 10617  2006-08 20:57:29Z        8
## 10618  2006-08 20:58:15Z        8
## 10619  2006-08 21:24:28Z        8
## 10620  2006-08 23:35:57Z        8
## 10621  2006-08 22:47:37Z        8
## 10622  2006-08 19:51:46Z        8
## 10623  2006-08 19:53:58Z        8
## 10624  2006-08 13:39:45Z        8
## 10625  2006-08 19:28:58Z        8
## 10626  2006-08 11:25:31Z        8
## 10627  2006-08 11:39:58Z        8
## 10628  2006-08 00:35:38Z        8
## 10629  2006-08 06:22:11Z        8
## 10630  2006-08 07:01:25Z        8
## 10631  2006-08 09:48:48Z        8
## 10632  2006-08 18:49:39Z        8
## 10633  2006-08 19:06:54Z        8
## 10634  2006-08 19:07:12Z        8
## 10635  2006-08 19:37:36Z        8
## 10636  2006-08 21:01:20Z        8
## 10637  2006-08 21:08:41Z        8
## 10638  2006-09 07:41:07Z        8
## 10639  2006-09 08:04:32Z        8
## 10640  2006-09 08:10:22Z        8
## 10641  2006-09 09:52:14Z        8
## 10642  2006-09 08:36:10Z        8
## 10643  2006-09 09:16:47Z        8
## 10644  2006-09 22:24:23Z        8
## 10645  2006-09 23:04:15Z        8
## 10646  2006-09 17:16:17Z        8
## 10647  2006-09 17:17:28Z        8
## 10648  2006-09 17:20:06Z        8
## 10649  2006-09 11:01:42Z        8
## 10650  2006-09 11:04:14Z        8
## 10651  2006-09 02:49:52Z        8
## 10652  2006-09 02:51:25Z        8
## 10653  2006-09 02:52:14Z        8
## 10654  2006-09 12:14:03Z        8
## 10655  2006-09 14:12:05Z        8
## 10656  2006-09 17:20:32Z        8
## 10657  2006-09 17:22:04Z        8
## 10658  2006-09 18:33:47Z        8
## 10659  2006-09 01:08:57Z        8
## 10660  2006-09 01:09:01Z        8
## 10661  2006-09 01:10:37Z        8
## 10662  2006-09 01:11:10Z        8
## 10663  2006-09 18:15:41Z        8
## 10664  2006-09 18:59:56Z        8
## 10665  2006-09 22:07:08Z        8
## 10666  2006-09 02:25:03Z        8
## 10667  2006-09 02:36:06Z        8
## 10668  2006-09 15:17:49Z        8
## 10669  2006-09 16:01:09Z        8
## 10670  2006-09 16:04:06Z        8
## 10671  2006-09 16:17:33Z        8
## 10672  2006-09 12:59:19Z        8
## 10673  2006-09 13:12:47Z        8
## 10674  2006-09 13:13:41Z        8
## 10675  2006-09 23:32:04Z        8
## 10676  2006-09 22:50:25Z        8
## 10677  2006-09 01:33:40Z        8
## 10678  2006-09 01:35:12Z        8
## 10679  2006-09 17:06:15Z        8
## 10680  2006-09 20:34:41Z        8
## 10681  2006-09 23:29:17Z        8
## 10682  2006-09 20:59:15Z        8
## 10683  2006-09 21:02:51Z        8
## 10684  2006-09 04:59:51Z        8
## 10685  2006-09 05:49:46Z        8
## 10686  2006-09 05:59:41Z        8
## 10687  2006-09 06:37:12Z        8
## 10688  2006-09 06:46:57Z        8
## 10689  2006-09 18:46:33Z        8
## 10690  2006-09 01:00:15Z        8
## 10691  2006-09 02:32:11Z        8
## 10692  2006-09 02:32:21Z        8
## 10693  2006-09 09:39:47Z        8
## 10694  2006-09 00:29:54Z        8
## 10695  2006-09 00:31:29Z        8
## 10696  2006-09 00:37:12Z        8
## 10697  2006-09 16:21:23Z        8
## 10698  2006-09 16:41:41Z        8
## 10699  2006-09 22:43:08Z        8
## 10700  2006-09 22:45:44Z        8
## 10701  2006-09 00:28:52Z        8
## 10702  2006-09 00:29:22Z        8
## 10703  2006-09 02:41:05Z        8
## 10704  2006-09 07:09:22Z        8
## 10705  2006-09 00:37:07Z        8
## 10706  2006-09 00:43:28Z        8
## 10707  2006-09 00:44:08Z        8
## 10708  2006-09 01:47:45Z        8
## 10709  2006-09 12:55:12Z        8
## 10710  2006-09 19:56:02Z        8
## 10711  2006-09 20:03:10Z        8
## 10712  2006-09 20:14:15Z        8
## 10713  2006-09 20:49:00Z        8
## 10714  2006-09 20:50:13Z        8
## 10715  2006-09 20:58:32Z        8
## 10716  2006-09 21:11:34Z        8
## 10717  2006-09 21:13:26Z        8
## 10718  2006-09 00:48:07Z        8
## 10719  2006-09 00:50:38Z        8
## 10720  2006-09 11:17:12Z        8
## 10721  2006-09 14:02:39Z        8
## 10722  2006-09 15:52:25Z        8
## 10723  2006-09 20:26:32Z        8
## 10724  2006-09 09:10:20Z        8
## 10725  2006-09 00:20:58Z        8
## 10726  2006-09 21:52:44Z        8
## 10727  2006-09 21:54:29Z        8
## 10728  2006-09 21:55:51Z        8
## 10729  2006-09 21:57:29Z        8
## 10730  2006-09 21:59:50Z        8
## 10731  2006-09 22:03:30Z        8
## 10732  2006-09 02:33:30Z        8
## 10733  2006-09 05:17:55Z        8
## 10734  2006-09 05:19:00Z        8
## 10735  2006-09 05:42:00Z        8
## 10736  2006-09 12:43:58Z        8
## 10737  2006-09 19:05:55Z        8
## 10738  2006-09 19:14:00Z        8
## 10739  2006-09 20:34:19Z        8
## 10740  2006-09 20:34:25Z        8
## 10741  2006-09 21:58:44Z        8
## 10742  2006-09 16:17:53Z        8
## 10743  2006-09 19:22:46Z        8
## 10744  2006-09 21:54:46Z        8
## 10745  2006-09 21:57:11Z        8
## 10746  2006-09 02:20:34Z        8
## 10747  2006-09 10:52:08Z        8
## 10748  2006-09 23:41:45Z        8
## 10749  2006-09 23:42:44Z        8
## 10750  2006-09 23:54:58Z        8
## 10751  2006-10 00:06:09Z        8
## 10752  2006-10 00:09:31Z        8
## 10753  2006-10 00:15:58Z        8
## 10754  2006-10 00:16:57Z        8
## 10755  2006-10 00:28:33Z        8
## 10756  2006-10 01:08:08Z        8
## 10757  2006-10 10:28:50Z        8
## 10758  2006-10 18:55:56Z        8
## 10759  2006-10 01:30:13Z        8
## 10760  2006-10 01:57:48Z        8
## 10761  2006-10 09:56:08Z        8
## 10762  2006-10 09:56:49Z        8
## 10763  2006-10 09:59:16Z        8
## 10764  2006-10 10:26:58Z        8
## 10765  2006-10 20:59:18Z        8
## 10766  2006-10 21:15:08Z        8
## 10767  2006-10 15:38:28Z        8
## 10768  2006-10 15:48:52Z        8
## 10769  2006-10 18:52:53Z        8
## 10770  2006-10 21:20:23Z        8
## 10771  2006-10 23:43:36Z        8
## 10772  2006-10 23:48:12Z        8
## 10773  2006-10 23:49:10Z        8
## 10774  2006-10 14:49:06Z        8
## 10775  2006-10 14:57:27Z        8
## 10776  2006-10 16:15:15Z        8
## 10777  2006-10 16:16:58Z        8
## 10778  2006-10 16:23:46Z        8
## 10779  2006-10 16:36:55Z        8
## 10780  2006-10 16:43:45Z        8
## 10781  2006-10 16:44:11Z        8
## 10782  2006-10 21:03:30Z        8
## 10783  2006-10 21:05:10Z        8
## 10784  2006-10 00:58:35Z        8
## 10785  2006-10 02:32:53Z        8
## 10786  2006-10 02:39:36Z        8
## 10787  2006-10 04:28:33Z        8
## 10788  2006-10 04:32:03Z        8
## 10789  2006-10 04:33:01Z        8
## 10790  2006-10 04:33:56Z        8
## 10791  2006-10 04:36:04Z        8
## 10792  2006-10 04:44:10Z        8
## 10793  2006-10 04:55:42Z        8
## 10794  2006-10 04:56:58Z        8
## 10795  2006-10 04:59:10Z        8
## 10796  2006-10 05:01:56Z        8
## 10797  2006-10 05:09:46Z        8
## 10798  2006-10 05:12:51Z        8
## 10799  2006-10 08:42:31Z        8
## 10800  2006-10 09:57:31Z        8
## 10801  2006-10 12:47:02Z        8
## 10802  2006-10 19:44:31Z        8
## 10803  2006-10 19:54:58Z        8
## 10804  2006-10 19:55:41Z        8
## 10805  2006-10 07:01:09Z        8
## 10806  2006-10 19:49:48Z        8
## 10807  2006-10 16:58:22Z        8
## 10808  2006-10 05:50:03Z        8
## 10809  2006-10 05:50:33Z        8
## 10810  2006-10 08:54:52Z        8
## 10811  2006-10 08:55:34Z        8
## 10812  2006-10 08:56:18Z        8
## 10813  2006-10 18:09:21Z        8
## 10814  2006-10 18:11:23Z        8
## 10815  2006-10 18:44:40Z        8
## 10816  2006-10 19:23:31Z        8
## 10817  2006-10 19:30:08Z        8
## 10818  2006-10 19:40:04Z        8
## 10819  2006-10 19:53:50Z        8
## 10820  2006-10 19:55:42Z        8
## 10821  2006-10 19:59:54Z        8
## 10822  2006-10 23:22:17Z        8
## 10823  2006-10 03:57:30Z        8
## 10824  2006-10 04:02:33Z        8
## 10825  2006-10 04:39:53Z        8
## 10826  2006-10 04:53:36Z        8
## 10827  2006-10 02:10:12Z        8
## 10828  2006-10 02:10:55Z        8
## 10829  2006-10 04:13:32Z        8
## 10830  2006-10 14:56:09Z        8
## 10831  2006-10 06:53:42Z        8
## 10832  2006-10 23:36:32Z        8
## 10833  2006-10 11:46:50Z        8
## 10834  2006-10 13:51:40Z        8
## 10835  2006-10 13:51:46Z        8
## 10836  2006-10 18:04:09Z        8
## 10837  2006-10 18:16:13Z        8
## 10838  2006-10 19:49:26Z        8
## 10839  2006-10 19:50:06Z        8
## 10840  2006-10 21:02:24Z        8
## 10841  2006-10 00:00:42Z        8
## 10842  2006-10 17:07:00Z        8
## 10843  2006-10 17:19:21Z        8
## 10844  2006-10 12:13:07Z        8
## 10845  2006-10 21:07:31Z        8
## 10846  2006-10 21:08:48Z        8
## 10847  2006-10 21:10:59Z        8
## 10848  2006-10 21:13:52Z        8
## 10849  2006-10 10:22:47Z        8
## 10850  2006-10 12:53:57Z        8
## 10851  2006-10 16:15:08Z        8
## 10852  2006-10 16:16:05Z        8
## 10853  2006-10 16:17:25Z        8
## 10854  2006-10 16:45:17Z        8
## 10855  2006-10 17:10:49Z        8
## 10856  2006-10 17:11:31Z        8
## 10857  2006-10 01:25:59Z        8
## 10858  2006-10 01:26:35Z        8
## 10859  2006-10 01:27:19Z        8
## 10860  2006-10 01:27:56Z        8
## 10861  2006-10 01:28:18Z        8
## 10862  2006-10 01:28:45Z        8
## 10863  2006-10 12:54:38Z        8
## 10864  2006-10 15:16:15Z        8
## 10865  2006-10 15:38:24Z        8
## 10866  2006-10 18:04:23Z        8
## 10867  2006-10 18:10:42Z        8
## 10868  2006-10 20:29:36Z        8
## 10869  2006-10 01:06:54Z        8
## 10870  2006-10 08:35:55Z        8
## 10871  2006-10 09:46:25Z        8
## 10872  2006-10 09:52:22Z        8
## 10873  2006-10 10:34:43Z        8
## 10874  2006-10 00:04:09Z        8
## 10875  2006-10 00:07:45Z        8
## 10876  2006-10 00:07:16Z        8
## 10877  2006-10 00:40:35Z        8
## 10878  2006-10 02:36:57Z        8
## 10879  2006-10 16:13:38Z        8
## 10880  2006-10 04:14:51Z        8
## 10881  2006-10 09:10:24Z        8
## 10882  2006-10 09:11:52Z        8
## 10883  2006-10 09:18:06Z        8
## 10884  2006-10 09:21:42Z        8
## 10885  2006-10 09:24:03Z        8
## 10886  2006-10 09:26:39Z        8
## 10887  2006-10 19:51:12Z        8
## 10888  2006-10 19:51:20Z        8
## 10889  2006-10 00:45:48Z        8
## 10890  2006-10 17:38:19Z        8
## 10891  2006-10 17:41:09Z        8
## 10892  2006-10 17:51:46Z        8
## 10893  2006-10 17:54:15Z        8
## 10894  2006-10 19:41:07Z        8
## 10895  2006-10 21:59:55Z        8
## 10896  2006-10 01:45:00Z        8
## 10897  2006-10 01:48:35Z        8
## 10898  2006-10 03:26:25Z        8
## 10899  2006-11 22:26:06Z        8
## 10900  2006-11 10:06:01Z        8
## 10901  2006-11 15:29:27Z        8
## 10902  2006-11 15:33:45Z        8
## 10903  2006-11 20:28:03Z        8
## 10904  2006-11 21:16:41Z        8
## 10905  2006-11 21:46:30Z        8
## 10906  2006-11 23:03:39Z        8
## 10907  2006-11 23:05:19Z        8
## 10908  2006-11 23:38:40Z        8
## 10909  2006-11 23:40:07Z        8
## 10910  2006-11 02:12:40Z        8
## 10911  2006-11 17:06:45Z        8
## 10912  2006-11 17:09:48Z        8
## 10913  2006-11 17:21:10Z        8
## 10914  2006-11 17:40:18Z        8
## 10915  2006-11 20:54:13Z        8
## 10916  2006-11 00:02:11Z        8
## 10917  2006-11 00:04:38Z        8
## 10918  2006-11 01:33:07Z        8
## 10919  2006-11 23:40:26Z        8
## 10920  2006-11 23:40:55Z        8
## 10921  2006-11 01:57:39Z        8
## 10922  2006-11 19:03:35Z        8
## 10923  2006-11 20:16:22Z        8
## 10924  2006-11 20:17:34Z        8
## 10925  2006-11 20:22:02Z        8
## 10926  2006-11 20:24:47Z        8
## 10927  2006-11 20:25:56Z        8
## 10928  2006-11 20:30:24Z        8
## 10929  2006-11 01:34:30Z        8
## 10930  2006-11 09:36:46Z        8
## 10931  2006-11 14:28:03Z        8
## 10932  2006-11 14:32:45Z        8
## 10933  2006-11 08:43:50Z        8
## 10934  2006-11 08:44:34Z        8
## 10935  2006-11 08:46:05Z        8
## 10936  2006-11 08:46:54Z        8
## 10937  2006-11 18:53:06Z        8
## 10938  2006-11 19:36:14Z        8
## 10939  2006-11 18:49:09Z        8
## 10940  2006-11 19:01:46Z        8
## 10941  2006-11 22:14:13Z        8
## 10942  2006-11 22:22:40Z        8
## 10943  2006-11 22:23:31Z        8
## 10944  2006-11 22:35:05Z        8
## 10945  2006-11 22:39:20Z        8
## 10946  2006-11 23:19:55Z        8
## 10947  2006-11 04:56:19Z        8
## 10948  2006-11 05:02:23Z        8
## 10949  2006-11 04:05:55Z        8
## 10950  2006-11 04:30:59Z        8
## 10951  2006-11 19:02:41Z        8
## 10952  2006-11 08:47:13Z        8
## 10953  2006-11 08:47:49Z        8
## 10954  2006-11 08:51:44Z        8
## 10955  2006-11 08:52:12Z        8
## 10956  2006-11 18:24:30Z        8
## 10957  2006-11 19:20:05Z        8
## 10958  2006-11 04:33:22Z        8
## 10959  2006-11 08:20:25Z        8
## 10960  2006-11 08:21:54Z        8
## 10961  2006-11 23:02:56Z        8
## 10962  2006-11 05:42:17Z        8
## 10963  2006-11 07:06:43Z        8
## 10964  2006-11 07:48:05Z        8
## 10965  2006-11 23:06:50Z        8
## 10966  2006-11 23:19:21Z        8
## 10967  2006-11 23:22:24Z        8
## 10968  2006-11 23:26:35Z        8
## 10969  2006-11 23:27:08Z        8
## 10970  2006-11 23:27:32Z        8
## 10971  2006-11 23:28:00Z        8
## 10972  2006-11 23:29:26Z        8
## 10973  2006-11 23:29:56Z        8
## 10974  2006-11 23:30:55Z        8
## 10975  2006-11 23:59:45Z        8
## 10976  2006-11 00:00:06Z        8
## 10977  2006-11 00:02:32Z        8
## 10978  2006-11 11:48:18Z        8
## 10979  2006-11 11:49:01Z        8
## 10980  2006-11 11:49:21Z        8
## 10981  2006-11 11:49:57Z        8
## 10982  2006-11 11:50:54Z        8
## 10983  2006-11 11:51:37Z        8
## 10984  2006-11 11:56:54Z        8
## 10985  2006-11 11:57:41Z        8
## 10986  2006-11 11:58:30Z        8
## 10987  2006-11 11:59:02Z        8
## 10988  2006-11 11:59:53Z        8
## 10989  2006-11 13:04:06Z        8
## 10990  2006-11 20:13:39Z        8
## 10991  2006-11 20:22:03Z        8
## 10992  2006-11 11:02:14Z        8
## 10993  2006-11 07:20:15Z        8
## 10994  2006-11 07:29:48Z        8
## 10995  2006-11 07:30:13Z        8
## 10996  2006-11 07:42:27Z        8
## 10997  2006-11 07:42:44Z        8
## 10998  2006-11 08:06:07Z        8
## 10999  2006-11 08:06:44Z        8
## 11000  2006-11 08:13:41Z        8
## 11001  2006-11 08:16:09Z        8
## 11002  2006-11 08:17:09Z        8
## 11003  2006-11 08:20:18Z        8
## 11004  2006-11 09:09:45Z        8
## 11005  2006-11 09:50:51Z        8
## 11006  2006-11 09:52:18Z        8
## 11007  2006-11 10:23:33Z        8
## 11008  2006-11 10:37:48Z        8
## 11009  2006-11 10:45:02Z        8
## 11010  2006-11 10:51:04Z        8
## 11011  2006-11 10:51:53Z        8
## 11012  2006-11 10:58:17Z        8
## 11013  2006-11 11:02:13Z        8
## 11014  2006-11 11:06:34Z        8
## 11015  2006-11 11:16:03Z        8
## 11016  2006-11 11:24:22Z        8
## 11017  2006-11 11:28:24Z        8
## 11018  2006-11 11:35:54Z        8
## 11019  2006-11 11:40:12Z        8
## 11020  2006-11 13:39:07Z        8
## 11021  2006-11 20:45:54Z        8
## 11022  2006-11 20:47:52Z        8
## 11023  2006-11 00:35:22Z        8
## 11024  2006-11 00:54:17Z        8
## 11025  2006-11 01:06:13Z        8
## 11026  2006-11 01:09:24Z        8
## 11027  2006-11 02:37:08Z        8
## 11028  2006-11 02:49:27Z        8
## 11029  2006-11 03:02:51Z        8
## 11030  2006-11 05:21:01Z        8
## 11031  2006-11 06:18:29Z        8
## 11032  2006-11 18:32:54Z        8
## 11033  2006-11 20:30:11Z        8
## 11034  2006-11 20:41:49Z        8
## 11035  2006-11 23:24:47Z        8
## 11036  2006-11 00:25:15Z        8
## 11037  2006-11 01:39:19Z        8
## 11038  2006-11 01:39:37Z        8
## 11039  2006-11 02:00:27Z        8
## 11040  2006-11 04:48:32Z        8
## 11041  2006-11 04:52:46Z        8
## 11042  2006-11 04:59:52Z        8
## 11043  2006-11 05:03:32Z        8
## 11044  2006-11 05:09:41Z        8
## 11045  2006-11 05:11:54Z        8
## 11046  2006-11 06:01:20Z        8
## 11047  2006-11 00:56:08Z        8
## 11048  2006-11 00:59:12Z        8
## 11049  2006-11 00:59:25Z        8
## 11050  2006-11 00:59:59Z        8
## 11051  2006-11 08:36:21Z        8
## 11052  2006-11 08:43:08Z        8
## 11053  2006-11 09:30:43Z        8
## 11054  2006-11 09:31:18Z        8
## 11055  2006-11 10:05:29Z        8
## 11056  2006-11 10:40:33Z        8
## 11057  2006-11 11:39:47Z        8
## 11058  2006-11 20:24:47Z        8
## 11059  2006-11 20:25:46Z        8
## 11060  2006-11 22:10:18Z        8
## 11061  2006-11 22:19:59Z        8
## 11062  2006-11 22:25:33Z        8
## 11063  2006-11 23:13:44Z        8
## 11064  2006-11 00:02:58Z        8
## 11065  2006-11 00:04:05Z        8
## 11066  2006-11 00:05:04Z        8
## 11067  2006-11 00:06:43Z        8
## 11068  2006-11 00:08:16Z        8
## 11069  2006-11 00:08:59Z        8
## 11070  2006-11 00:10:05Z        8
## 11071  2006-11 00:11:25Z        8
## 11072  2006-11 00:23:52Z        8
## 11073  2006-11 00:25:03Z        8
## 11074  2006-11 01:05:13Z        8
## 11075  2006-11 01:07:48Z        8
## 11076  2006-11 01:08:38Z        8
## 11077  2006-11 01:11:56Z        8
## 11078  2006-11 01:12:28Z        8
## 11079  2006-11 01:13:01Z        8
## 11080  2006-11 01:20:48Z        8
## 11081  2006-11 01:28:05Z        8
## 11082  2006-11 01:32:23Z        8
## 11083  2006-11 02:35:10Z        8
## 11084  2006-11 02:57:44Z        8
## 11085  2006-11 02:58:54Z        8
## 11086  2006-11 03:05:42Z        8
## 11087  2006-11 03:53:03Z        8
## 11088  2006-11 03:55:00Z        8
## 11089  2006-11 08:28:09Z        8
## 11090  2006-11 08:28:55Z        8
## 11091  2006-11 10:02:30Z        8
## 11092  2006-11 11:28:55Z        8
## 11093  2006-11 12:42:20Z        8
## 11094  2006-11 13:01:45Z        8
## 11095  2006-11 13:02:37Z        8
## 11096  2006-11 13:03:04Z        8
## 11097  2006-11 13:04:24Z        8
## 11098  2006-11 16:13:47Z        8
## 11099  2006-11 16:18:51Z        8
## 11100  2006-11 16:20:50Z        8
## 11101  2006-11 07:33:38Z        8
## 11102  2006-11 07:49:53Z        8
## 11103  2006-11 16:21:44Z        8
## 11104  2006-11 08:11:22Z        8
## 11105  2006-11 09:01:18Z        8
## 11106  2006-11 11:26:25Z        8
## 11107  2006-11 12:45:56Z        8
## 11108  2006-11 16:19:32Z        8
## 11109  2006-11 16:23:48Z        8
## 11110  2006-11 16:25:29Z        8
## 11111  2006-11 16:29:19Z        8
## 11112  2006-11 16:59:19Z        8
## 11113  2006-11 19:08:55Z        8
## 11114  2006-11 19:56:11Z        8
## 11115  2006-11 19:59:39Z        8
## 11116  2006-11 20:01:09Z        8
## 11117  2006-11 22:18:18Z        8
## 11118  2006-11 10:51:53Z        8
## 11119  2006-11 11:06:35Z        8
## 11120  2006-11 11:11:11Z        8
## 11121  2006-11 18:43:23Z        8
## 11122  2006-11 18:45:18Z        8
## 11123  2006-11 20:18:51Z        8
## 11124  2006-11 22:21:14Z        8
## 11125  2006-11 06:19:52Z        8
## 11126  2006-11 06:45:43Z        8
## 11127  2006-11 06:52:50Z        8
## 11128  2006-11 11:55:53Z        8
## 11129  2006-11 19:04:16Z        8
## 11130  2006-11 19:04:51Z        8
## 11131  2006-11 19:07:03Z        8
## 11132  2006-11 19:07:46Z        8
## 11133  2006-11 19:09:38Z        8
## 11134  2006-11 19:14:20Z        8
## 11135  2006-11 19:17:12Z        8
## 11136  2006-11 19:26:54Z        8
## 11137  2006-11 19:27:01Z        8
## 11138  2006-11 19:29:23Z        8
## 11139  2006-11 19:31:11Z        8
## 11140  2006-11 19:32:14Z        8
## 11141  2006-11 19:39:00Z        8
## 11142  2006-11 20:33:35Z        8
## 11143  2006-11 21:00:25Z        8
## 11144  2006-11 21:08:13Z        8
## 11145  2006-11 02:28:57Z        8
## 11146  2006-11 03:00:05Z        8
## 11147  2006-11 16:34:54Z        8
## 11148  2006-11 16:45:29Z        8
## 11149  2006-11 16:46:05Z        8
## 11150  2006-11 16:46:51Z        8
## 11151  2006-11 16:47:36Z        8
## 11152  2006-11 16:49:34Z        8
## 11153  2006-11 16:52:25Z        8
## 11154  2006-11 16:55:54Z        8
## 11155  2006-11 16:56:34Z        8
## 11156  2006-11 16:58:54Z        8
## 11157  2006-11 17:00:07Z        8
## 11158  2006-11 17:10:18Z        8
## 11159  2006-11 18:12:05Z        8
## 11160  2006-11 06:51:47Z        8
## 11161  2006-11 07:50:43Z        8
## 11162  2006-11 09:23:48Z        8
## 11163  2006-11 13:30:03Z        8
## 11164  2006-11 17:38:43Z        8
## 11165  2006-11 17:39:09Z        8
## 11166  2006-11 17:46:03Z        8
## 11167  2006-11 17:49:40Z        8
## 11168  2006-12 05:58:32Z        8
## 11169  2006-12 06:19:00Z        8
## 11170  2006-12 06:26:06Z        8
## 11171  2006-12 06:49:37Z        8
## 11172  2006-12 14:30:56Z        8
## 11173  2006-12 14:38:25Z        8
## 11174  2006-12 15:04:14Z        8
## 11175  2006-12 17:14:52Z        8
## 11176  2006-12 17:27:48Z        8
## 11177  2006-12 19:43:50Z        8
## 11178  2006-12 19:49:50Z        8
## 11179  2006-12 19:50:39Z        8
## 11180  2006-12 20:57:48Z        8
## 11181  2006-12 20:59:06Z        8
## 11182  2006-12 21:00:41Z        8
## 11183  2006-12 21:05:21Z        8
## 11184  2006-12 12:43:27Z        8
## 11185  2006-12 12:46:15Z        8
## 11186  2006-12 18:55:57Z        8
## 11187  2006-12 18:58:20Z        8
## 11188  2006-12 19:11:24Z        8
## 11189  2006-12 19:14:42Z        8
## 11190  2006-12 19:22:01Z        8
## 11191  2006-12 20:09:40Z        8
## 11192  2006-12 20:13:32Z        8
## 11193  2006-12 20:14:24Z        8
## 11194  2006-12 21:39:28Z        8
## 11195  2006-12 21:42:46Z        8
## 11196  2006-12 22:04:41Z        8
## 11197  2006-12 02:13:57Z        8
## 11198  2006-12 02:18:12Z        8
## 11199  2006-12 15:18:40Z        8
## 11200  2006-12 15:22:16Z        8
## 11201  2006-12 20:08:15Z        8
## 11202  2006-12 00:02:33Z        8
## 11203  2006-12 22:16:57Z        8
## 11204  2006-12 22:34:45Z        8
## 11205  2006-12 23:24:50Z        8
## 11206  2006-12 23:26:34Z        8
## 11207  2006-12 02:27:54Z        8
## 11208  2006-12 07:50:47Z        8
## 11209  2006-12 18:57:33Z        8
## 11210  2006-12 21:49:23Z        8
## 11211  2006-12 21:59:58Z        8
## 11212  2006-12 00:12:41Z        8
## 11213  2006-12 00:23:11Z        8
## 11214  2006-12 05:12:52Z        8
## 11215  2006-12 01:28:26Z        8
## 11216  2006-12 01:34:49Z        8
## 11217  2006-12 01:35:56Z        8
## 11218  2006-12 02:57:50Z        8
## 11219  2006-12 03:06:55Z        8
## 11220  2006-12 06:46:20Z        8
## 11221  2006-12 01:33:09Z        8
## 11222  2006-12 02:45:32Z        8
## 11223  2006-12 05:47:19Z        8
## 11224  2006-12 05:53:05Z        8
## 11225  2006-12 05:53:24Z        8
## 11226  2006-12 05:58:25Z        8
## 11227  2006-12 20:20:53Z        8
## 11228  2006-12 02:55:43Z        8
## 11229  2006-12 05:20:16Z        8
## 11230  2006-12 05:20:52Z        8
## 11231  2006-12 05:21:16Z        8
## 11232  2006-12 07:21:01Z        8
## 11233  2006-12 07:25:37Z        8
## 11234  2006-12 12:48:47Z        8
## 11235  2006-12 12:50:19Z        8
## 11236  2006-12 20:46:43Z        8
## 11237  2006-12 08:02:33Z        8
## 11238  2006-12 10:35:18Z        8
## 11239  2006-12 14:01:54Z        8
## 11240  2006-12 16:44:57Z        8
## 11241  2006-12 21:53:39Z        8
## 11242  2006-12 23:48:43Z        8
## 11243  2006-12 03:38:52Z        8
## 11244  2006-12 07:00:08Z        8
## 11245  2006-12 16:09:22Z        8
## 11246  2006-12 16:10:13Z        8
## 11247  2006-12 16:13:18Z        8
## 11248  2006-12 16:14:20Z        8
## 11249  2006-12 21:17:03Z        8
## 11250  2006-12 21:17:59Z        8
## 11251  2006-12 21:28:49Z        8
## 11252  2006-12 09:22:20Z        8
## 11253  2006-12 09:25:55Z        8
## 11254  2006-12 09:27:40Z        8
## 11255  2006-12 09:27:57Z        8
## 11256  2006-12 09:28:34Z        8
## 11257  2006-12 10:01:44Z        8
## 11258  2006-12 10:05:46Z        8
## 11259  2006-12 10:06:19Z        8
## 11260  2006-12 10:48:35Z        8
## 11261  2006-12 10:49:12Z        8
## 11262  2006-12 11:02:20Z        8
## 11263  2006-12 06:26:02Z        8
## 11264  2006-12 06:32:07Z        8
## 11265  2006-12 07:15:01Z        8
## 11266  2006-12 21:23:57Z        8
## 11267  2006-12 21:25:10Z        8
## 11268  2006-12 03:51:42Z        8
## 11269  2006-12 08:59:45Z        8
## 11270  2006-12 09:01:09Z        8
## 11271  2006-12 10:59:53Z        8
## 11272  2006-12 11:02:51Z        8
## 11273  2006-12 11:03:55Z        8
## 11274  2006-12 11:07:48Z        8
## 11275  2006-12 11:15:09Z        8
## 11276  2006-12 11:16:09Z        8
## 11277  2006-12 13:04:08Z        8
## 11278  2006-12 13:08:26Z        8
## 11279  2006-12 19:56:30Z        8
## 11280  2006-12 22:52:49Z        8
## 11281  2006-12 12:06:07Z        8
## 11282  2006-12 15:20:07Z        8
## 11283  2006-12 03:47:19Z        8
## 11284  2006-12 22:47:14Z        8
## 11285  2006-12 07:35:11Z        8
## 11286  2006-12 07:36:07Z        8
## 11287  2006-12 07:37:30Z        8
## 11288  2006-12 07:40:30Z        8
## 11289  2006-12 07:46:00Z        8
## 11290  2006-12 12:28:01Z        8
## 11291  2006-12 12:29:18Z        8
## 11292  2006-12 21:36:44Z        8
## 11293  2006-12 22:32:44Z        8
## 11294  2006-12 22:40:36Z        8
## 11295  2006-12 22:55:01Z        8
## 11296  2006-12 22:55:52Z        8
## 11297  2006-12 06:30:48Z        8
## 11298  2006-12 06:32:10Z        8
## 11299  2006-12 08:35:42Z        8
## 11300  2006-12 08:38:06Z        8
## 11301  2006-12 08:41:26Z        8
## 11302  2006-12 08:44:04Z        8
## 11303  2006-12 08:46:53Z        8
## 11304  2006-12 08:51:27Z        8
## 11305  2006-12 08:59:17Z        8
## 11306  2006-12 15:57:44Z        8
## 11307  2006-12 15:59:40Z        8
## 11308  2006-12 19:06:33Z        8
## 11309  2006-12 19:10:41Z        8
## 11310  2006-12 19:13:10Z        8
## 11311  2006-12 19:20:58Z        8
## 11312  2006-12 19:34:58Z        8
## 11313  2006-12 19:44:22Z        8
## 11314  2006-12 19:48:08Z        8
## 11315  2006-12 05:21:43Z        8
## 11316  2006-12 05:24:14Z        8
## 11317  2006-12 06:44:58Z        8
## 11318  2006-12 06:45:38Z        8
## 11319  2006-12 06:46:23Z        8
## 11320  2006-12 12:43:56Z        8
## 11321  2006-12 13:22:07Z        8
## 11322  2006-12 11:31:38Z        8
## 11323  2006-12 09:09:11Z        8
## 11324  2006-12 09:44:24Z        8
## 11325  2006-12 10:19:22Z        8
## 11326  2006-12 10:28:08Z        8
## 11327  2006-12 11:55:33Z        8
## 11328  2006-12 19:43:54Z        8
## 11329  2006-12 19:46:22Z        8
## 11330  2006-12 19:47:00Z        8
## 11331  2006-12 19:48:14Z        8
## 11332  2006-12 23:55:49Z        8
## 11333  2006-12 00:20:51Z        8
## 11334  2006-12 00:32:38Z        8
## 11335  2006-12 00:38:59Z        8
## 11336  2006-12 07:17:35Z        8
## 11337  2006-12 07:29:54Z        8
## 11338  2006-12 20:28:01Z        8
## 11339  2006-12 01:46:08Z        8
## 11340  2006-12 01:49:41Z        8
## 11341  2006-12 11:39:56Z        8
## 11342  2006-12 11:53:51Z        8
## 11343  2006-12 02:49:46Z        8
## 11344  2006-12 03:07:54Z        8
## 11345  2006-12 03:37:06Z        8
## 11346  2006-12 04:02:43Z        8
## 11347  2006-12 13:58:36Z        8
## 11348  2006-12 14:35:13Z        8
## 11349  2006-12 14:41:08Z        8
## 11350  2006-12 16:27:26Z        8
## 11351  2006-12 16:33:21Z        8
## 11352  2006-12 17:04:32Z        8
## 11353  2006-12 17:08:24Z        8
## 11354  2006-12 17:30:24Z        8
## 11355  2006-12 17:31:07Z        8
## 11356  2006-12 20:20:10Z        8
## 11357  2006-12 20:24:35Z        8
## 11358  2006-12 20:39:50Z        8
## 11359  2006-12 21:36:44Z        8
## 11360  2006-12 21:46:16Z        8
## 11361  2006-12 21:55:20Z        8
## 11362  2007-01 00:45:08Z        8
## 11363  2007-01 02:42:26Z        8
## 11364  2007-01 18:34:15Z        8
## 11365  2007-01 19:54:55Z        8
## 11366  2007-01 20:23:20Z        8
## 11367  2007-01 00:03:43Z        8
## 11368  2007-01 00:14:46Z        8
## 11369  2007-01 01:11:03Z        8
## 11370  2007-01 14:36:22Z        8
## 11371  2007-01 15:01:04Z        8
## 11372  2007-01 10:49:53Z        8
## 11373  2007-01 10:51:13Z        8
## 11374  2007-01 10:58:10Z        8
## 11375  2007-01 10:58:29Z        8
## 11376  2007-01 11:03:54Z        8
## 11377  2007-01 11:04:14Z        8
## 11378  2007-01 11:10:20Z        8
## 11379  2007-01 11:13:57Z        8
## 11380  2007-01 11:21:45Z        8
## 11381  2007-01 11:33:50Z        8
## 11382  2007-01 11:35:56Z        8
## 11383  2007-01 12:34:31Z        8
## 11384  2007-01 13:07:24Z        8
## 11385  2007-01 20:02:55Z        8
## 11386  2007-01 02:31:33Z        8
## 11387  2007-01 03:23:21Z        8
## 11388  2007-01 04:19:40Z        8
## 11389  2007-01 22:21:01Z        8
## 11390  2007-01 22:52:48Z        8
## 11391  2007-01 06:45:35Z        8
## 11392  2007-01 11:59:05Z        8
## 11393  2007-01 12:07:45Z        8
## 11394  2007-01 12:09:53Z        8
## 11395  2007-01 12:14:00Z        8
## 11396  2007-01 12:16:58Z        8
## 11397  2007-01 12:20:19Z        8
## 11398  2007-01 12:21:42Z        8
## 11399  2007-01 13:16:44Z        8
## 11400  2007-01 13:26:11Z        8
## 11401  2007-01 14:12:35Z        8
## 11402  2007-01 21:50:25Z        8
## 11403  2007-01 03:03:52Z        8
## 11404  2007-01 07:07:15Z        8
## 11405  2007-01 13:48:47Z        8
## 11406  2007-01 15:28:51Z        8
## 11407  2007-01 21:19:08Z        8
## 11408  2007-01 21:20:20Z        8
## 11409  2007-01 21:22:05Z        8
## 11410  2007-01 23:32:23Z        8
## 11411  2007-01 00:32:50Z        8
## 11412  2007-01 02:42:42Z        8
## 11413  2007-01 16:52:09Z        8
## 11414  2007-01 16:59:21Z        8
## 11415  2007-01 20:39:49Z        8
## 11416  2007-01 20:51:38Z        8
## 11417  2007-01 02:28:29Z        8
## 11418  2007-01 02:29:14Z        8
## 11419  2007-01 01:51:56Z        8
## 11420  2007-01 04:19:46Z        8
## 11421  2007-01 06:51:38Z        8
## 11422  2007-01 07:55:10Z        8
## 11423  2007-01 08:05:08Z        8
## 11424  2007-01 08:13:04Z        8
## 11425  2007-01 10:44:41Z        8
## 11426  2007-01 01:32:59Z        8
## 11427  2007-01 01:35:40Z        8
## 11428  2007-01 02:41:49Z        8
## 11429  2007-01 07:34:04Z        8
## 11430  2007-01 16:34:39Z        8
## 11431  2007-01 16:35:37Z        8
## 11432  2007-01 20:35:36Z        8
## 11433  2007-01 21:12:15Z        8
## 11434  2007-01 13:30:37Z        8
## 11435  2007-01 16:56:53Z        8
## 11436  2007-01 16:57:22Z        8
## 11437  2007-01 16:58:23Z        8
## 11438  2007-01 20:03:09Z        8
## 11439  2007-01 08:31:13Z        8
## 11440  2007-01 08:41:23Z        8
## 11441  2007-01 00:35:38Z        8
## 11442  2007-01 10:07:42Z        8
## 11443  2007-01 10:17:30Z        8
## 11444  2007-01 18:19:40Z        8
## 11445  2007-01 18:19:59Z        8
## 11446  2007-01 19:03:23Z        8
## 11447  2007-01 20:22:56Z        8
## 11448  2007-01 02:38:23Z        8
## 11449  2007-01 03:03:23Z        8
## 11450  2007-01 19:22:49Z        8
## 11451  2007-01 21:11:16Z        8
## 11452  2007-01 21:12:10Z        8
## 11453  2007-01 21:12:33Z        8
## 11454  2007-01 21:13:31Z        8
## 11455  2007-01 08:02:33Z        8
## 11456  2007-01 08:04:01Z        8
## 11457  2007-01 08:06:38Z        8
## 11458  2007-01 08:34:46Z        8
## 11459  2007-01 08:54:00Z        8
## 11460  2007-01 09:06:53Z        8
## 11461  2007-01 18:17:23Z        8
## 11462  2007-01 01:23:01Z        8
## 11463  2007-01 12:04:26Z        8
## 11464  2007-01 22:08:00Z        8
## 11465  2007-01 08:25:58Z        8
## 11466  2007-01 15:56:09Z        8
## 11467  2007-01 20:50:37Z        8
## 11468  2007-01 21:56:18Z        8
## 11469  2007-01 19:33:45Z        8
## 11470  2007-01 20:44:46Z        8
## 11471  2007-01 04:54:07Z        8
## 11472  2007-01 04:55:46Z        8
## 11473  2007-01 13:46:12Z        8
## 11474  2007-01 13:51:58Z        8
## 11475  2007-01 16:19:40Z        8
## 11476  2007-01 16:44:37Z        8
## 11477  2007-01 16:48:57Z        8
## 11478  2007-01 16:58:34Z        8
## 11479  2007-01 22:09:53Z        8
## 11480  2007-01 02:20:45Z        8
## 11481  2007-01 03:03:49Z        8
## 11482  2007-01 03:38:44Z        8
## 11483  2007-01 04:00:44Z        8
## 11484  2007-01 09:15:57Z        8
## 11485  2007-01 14:35:14Z        8
## 11486  2007-01 14:38:19Z        8
## 11487  2007-01 14:55:23Z        8
## 11488  2007-01 16:22:34Z        8
## 11489  2007-01 20:19:59Z        8
## 11490  2007-01 20:27:10Z        8
## 11491  2007-01 20:30:10Z        8
## 11492  2007-01 09:30:40Z        8
## 11493  2007-01 17:14:16Z        8
## 11494  2007-01 20:08:28Z        8
## 11495  2007-01 20:09:02Z        8
## 11496  2007-01 20:09:24Z        8
## 11497  2007-01 20:09:42Z        8
## 11498  2007-01 20:10:34Z        8
## 11499  2007-01 20:11:15Z        8
## 11500  2007-01 20:22:28Z        8
## 11501  2007-01 20:23:10Z        8
## 11502  2007-01 20:26:31Z        8
## 11503  2007-01 20:27:44Z        8
## 11504  2007-01 22:34:38Z        8
## 11505  2007-01 02:34:57Z        8
## 11506  2007-01 02:35:16Z        8
## 11507  2007-01 02:44:22Z        8
## 11508  2007-01 02:50:24Z        8
## 11509  2007-01 03:00:03Z        8
## 11510  2007-01 07:19:07Z        8
## 11511  2007-01 07:20:40Z        8
## 11512  2007-01 07:22:37Z        8
## 11513  2007-01 07:25:45Z        8
## 11514  2007-01 18:59:47Z        8
## 11515  2007-01 19:00:51Z        8
## 11516  2007-01 20:59:45Z        8
## 11517  2007-01 21:06:45Z        8
## 11518  2007-01 15:09:34Z        8
## 11519  2007-01 15:10:31Z        8
## 11520  2007-01 15:17:36Z        8
## 11521  2007-01 03:34:48Z        8
## 11522  2007-01 03:36:27Z        8
## 11523  2007-01 21:16:30Z        8
## 11524  2007-01 21:18:04Z        8
## 11525  2007-01 21:18:53Z        8
## 11526  2007-01 21:19:26Z        8
## 11527  2007-02 15:11:28Z        8
## 11528  2007-02 18:16:29Z        8
## 11529  2007-02 21:27:35Z        8
## 11530  2007-02 22:34:53Z        8
## 11531  2007-02 00:10:26Z        8
## 11532  2007-02 00:33:26Z        8
## 11533  2007-02 00:37:51Z        8
## 11534  2007-02 00:41:23Z        8
## 11535  2007-02 00:42:42Z        8
## 11536  2007-02 01:24:57Z        8
## 11537  2007-02 06:05:47Z        8
## 11538  2007-02 06:06:52Z        8
## 11539  2007-02 12:43:57Z        8
## 11540  2007-02 19:14:51Z        8
## 11541  2007-02 13:57:35Z        8
## 11542  2007-02 16:35:23Z        8
## 11543  2007-02 22:34:44Z        8
## 11544  2007-02 22:37:08Z        8
## 11545  2007-02 22:38:49Z        8
## 11546  2007-02 22:39:04Z        8
## 11547  2007-02 22:46:45Z        8
## 11548  2007-02 06:41:01Z        8
## 11549  2007-02 06:42:40Z        8
## 11550  2007-02 06:49:39Z        8
## 11551  2007-02 06:52:49Z        8
## 11552  2007-02 06:54:59Z        8
## 11553  2007-02 07:04:14Z        8
## 11554  2007-02 07:12:21Z        8
## 11555  2007-02 07:13:12Z        8
## 11556  2007-02 09:13:48Z        8
## 11557  2007-02 09:37:54Z        8
## 11558  2007-02 16:49:07Z        8
## 11559  2007-02 19:57:44Z        8
## 11560  2007-02 21:25:00Z        8
## 11561  2007-02 21:40:32Z        8
## 11562  2007-02 00:34:18Z        8
## 11563  2007-02 02:58:17Z        8
## 11564  2007-02 04:43:12Z        8
## 11565  2007-02 04:54:43Z        8
## 11566  2007-02 07:56:20Z        8
## 11567  2007-02 09:03:48Z        8
## 11568  2007-02 09:04:51Z        8
## 11569  2007-02 22:49:20Z        8
## 11570  2007-02 01:03:05Z        8
## 11571  2007-02 01:03:18Z        8
## 11572  2007-02 01:05:08Z        8
## 11573  2007-02 01:07:20Z        8
## 11574  2007-02 01:10:17Z        8
## 11575  2007-02 01:12:36Z        8
## 11576  2007-02 01:14:21Z        8
## 11577  2007-02 01:18:46Z        8
## 11578  2007-02 01:23:45Z        8
## 11579  2007-02 05:17:18Z        8
## 11580  2007-02 10:38:57Z        8
## 11581  2007-02 17:49:58Z        8
## 11582  2007-02 18:34:29Z        8
## 11583  2007-02 18:38:37Z        8
## 11584  2007-02 00:26:52Z        8
## 11585  2007-02 19:52:17Z        8
## 11586  2007-02 08:53:35Z        8
## 11587  2007-02 08:54:03Z        8
## 11588  2007-02 05:22:37Z        8
## 11589  2007-02 17:43:26Z        8
## 11590  2007-02 23:04:56Z        8
## 11591  2007-02 14:29:28Z        8
## 11592  2007-02 18:55:31Z        8
## 11593  2007-02 19:29:11Z        8
## 11594  2007-02 00:38:19Z        8
## 11595  2007-02 00:39:21Z        8
## 11596  2007-02 00:46:53Z        8
## 11597  2007-02 00:49:15Z        8
## 11598  2007-02 00:56:02Z        8
## 11599  2007-02 04:36:03Z        8
## 11600  2007-02 04:36:35Z        8
## 11601  2007-02 04:36:48Z        8
## 11602  2007-02 04:38:01Z        8
## 11603  2007-02 19:09:30Z        8
## 11604  2007-02 19:47:46Z        8
## 11605  2007-02 07:15:52Z        8
## 11606  2007-02 07:16:40Z        8
## 11607  2007-02 23:30:49Z        8
## 11608  2007-02 23:31:38Z        8
## 11609  2007-02 04:26:05Z        8
## 11610  2007-02 04:28:09Z        8
## 11611  2007-02 20:38:59Z        8
## 11612  2007-02 20:46:28Z        8
## 11613  2007-02 07:44:35Z        8
## 11614  2007-02 07:45:27Z        8
## 11615  2007-02 07:46:46Z        8
## 11616  2007-02 07:48:07Z        8
## 11617  2007-02 01:02:35Z        8
## 11618  2007-02 01:18:24Z        8
## 11619  2007-02 06:58:01Z        8
## 11620  2007-02 06:58:10Z        8
## 11621  2007-02 12:31:32Z        8
## 11622  2007-02 14:30:38Z        8
## 11623  2007-02 17:30:57Z        8
## 11624  2007-02 18:37:26Z        8
## 11625  2007-02 18:38:32Z        8
## 11626  2007-02 22:00:45Z        8
## 11627  2007-02 22:48:30Z        8
## 11628  2007-02 05:51:05Z        8
## 11629  2007-02 05:52:57Z        8
## 11630  2007-02 05:56:11Z        8
## 11631  2007-02 07:09:47Z        8
## 11632  2007-02 07:11:41Z        8
## 11633  2007-02 05:45:39Z        8
## 11634  2007-02 05:46:18Z        8
## 11635  2007-02 05:46:25Z        8
## 11636  2007-02 05:46:51Z        8
## 11637  2007-02 05:47:08Z        8
## 11638  2007-02 12:48:17Z        8
## 11639  2007-02 16:49:46Z        8
## 11640  2007-02 22:31:01Z        8
## 11641  2007-02 22:31:19Z        8
## 11642  2007-02 15:10:36Z        8
## 11643  2007-02 15:17:48Z        8
## 11644  2007-02 17:41:59Z        8
## 11645  2007-02 17:42:33Z        8
## 11646  2007-02 17:43:23Z        8
## 11647  2007-02 02:53:10Z        8
## 11648  2007-02 11:24:45Z        8
## 11649  2007-02 11:25:23Z        8
## 11650  2007-02 13:26:36Z        8
## 11651  2007-02 13:42:16Z        8
## 11652  2007-02 18:00:16Z        8
## 11653  2007-02 06:01:58Z        8
## 11654  2007-02 06:03:25Z        8
## 11655  2007-02 06:13:46Z        8
## 11656  2007-02 06:18:30Z        8
## 11657  2007-02 06:19:34Z        8
## 11658  2007-02 06:40:58Z        8
## 11659  2007-02 06:42:12Z        8
## 11660  2007-02 06:42:32Z        8
## 11661  2007-02 06:43:07Z        8
## 11662  2007-02 06:45:10Z        8
## 11663  2007-02 06:46:49Z        8
## 11664  2007-02 06:48:43Z        8
## 11665  2007-02 06:49:38Z        8
## 11666  2007-02 16:32:21Z        8
## 11667  2007-02 22:47:30Z        8
## 11668  2007-02 01:04:15Z        8
## 11669  2007-02 05:43:55Z        8
## 11670  2007-02 11:26:43Z        8
## 11671  2007-02 11:27:19Z        8
## 11672  2007-02 17:14:17Z        8
## 11673  2007-02 17:15:25Z        8
## 11674  2007-02 17:37:33Z        8
## 11675  2007-02 10:26:10Z        8
## 11676  2007-02 10:56:35Z        8
## 11677  2007-02 11:05:51Z        8
## 11678  2007-02 11:08:31Z        8
## 11679  2007-02 11:11:12Z        8
## 11680  2007-02 11:16:57Z        8
## 11681  2007-02 11:18:13Z        8
## 11682  2007-02 11:18:47Z        8
## 11683  2007-02 15:16:31Z        8
## 11684  2007-02 15:23:47Z        8
## 11685  2007-02 22:23:11Z        8
## 11686  2007-02 22:29:37Z        8
## 11687  2007-02 23:30:02Z        8
## 11688  2007-02 23:30:31Z        8
## 11689  2007-02 23:36:19Z        8
## 11690  2007-02 03:05:05Z        8
## 11691  2007-02 08:38:32Z        8
## 11692  2007-02 09:00:39Z        8
## 11693  2007-02 09:31:24Z        8
## 11694  2007-02 09:32:23Z        8
## 11695  2007-02 11:04:41Z        8
## 11696  2007-03 09:21:46Z        8
## 11697  2007-03 10:43:05Z        8
## 11698  2007-03 14:01:39Z        8
## 11699  2007-03 14:03:03Z        8
## 11700  2007-03 21:14:51Z        8
## 11701  2007-03 21:16:08Z        8
## 11702  2007-03 21:53:59Z        8
## 11703  2007-03 21:55:02Z        8
## 11704  2007-03 00:55:38Z        8
## 11705  2007-03 07:27:14Z        8
## 11706  2007-03 08:04:52Z        8
## 11707  2007-03 08:36:54Z        8
## 11708  2007-03 16:06:29Z        8
## 11709  2007-03 16:07:26Z        8
## 11710  2007-03 23:36:49Z        8
## 11711  2007-03 23:39:16Z        8
## 11712  2007-03 23:50:52Z        8
## 11713  2007-03 23:51:09Z        8
## 11714  2007-03 23:53:00Z        8
## 11715  2007-03 23:53:39Z        8
## 11716  2007-03 23:57:39Z        8
## 11717  2007-03 23:58:54Z        8
## 11718  2007-03 12:00:57Z        8
## 11719  2007-03 12:06:45Z        8
## 11720  2007-03 06:12:37Z        8
## 11721  2007-03 08:30:40Z        8
## 11722  2007-03 08:36:15Z        8
## 11723  2007-03 12:10:55Z        8
## 11724  2007-03 12:11:11Z        8
## 11725  2007-03 12:16:07Z        8
## 11726  2007-03 12:21:14Z        8
## 11727  2007-03 12:23:01Z        8
## 11728  2007-03 12:30:42Z        8
## 11729  2007-03 12:38:59Z        8
## 11730  2007-03 12:41:02Z        8
## 11731  2007-03 12:43:57Z        8
## 11732  2007-03 12:45:15Z        8
## 11733  2007-03 12:46:17Z        8
## 11734  2007-03 12:48:23Z        8
## 11735  2007-03 12:50:19Z        8
## 11736  2007-03 12:50:28Z        8
## 11737  2007-03 16:07:27Z        8
## 11738  2007-03 16:11:51Z        8
## 11739  2007-03 21:01:47Z        8
## 11740  2007-03 21:03:28Z        8
## 11741  2007-03 21:22:04Z        8
## 11742  2007-03 22:04:49Z        8
## 11743  2007-03 22:05:23Z        8
## 11744  2007-03 04:51:49Z        8
## 11745  2007-03 22:08:33Z        8
## 11746  2007-03 04:47:45Z        8
## 11747  2007-03 05:12:21Z        8
## 11748  2007-03 21:06:45Z        8
## 11749  2007-03 21:06:56Z        8
## 11750  2007-03 22:29:46Z        8
## 11751  2007-03 13:54:14Z        8
## 11752  2007-03 13:54:38Z        8
## 11753  2007-03 15:26:34Z        8
## 11754  2007-03 16:03:09Z        8
## 11755  2007-03 23:08:17Z        8
## 11756  2007-03 23:13:02Z        8
## 11757  2007-03 00:25:50Z        8
## 11758  2007-03 06:56:59Z        8
## 11759  2007-03 07:23:02Z        8
## 11760  2007-03 08:46:17Z        8
## 11761  2007-03 08:47:56Z        8
## 11762  2007-03 11:29:30Z        8
## 11763  2007-03 11:32:10Z        8
## 11764  2007-03 12:47:27Z        8
## 11765  2007-03 12:50:03Z        8
## 11766  2007-03 18:11:57Z        8
## 11767  2007-03 18:51:23Z        8
## 11768  2007-03 20:49:03Z        8
## 11769  2007-03 22:36:45Z        8
## 11770  2007-03 22:39:38Z        8
## 11771  2007-03 06:27:43Z        8
## 11772  2007-03 06:33:31Z        8
## 11773  2007-03 07:54:41Z        8
## 11774  2007-03 08:06:46Z        8
## 11775  2007-03 08:14:09Z        8
## 11776  2007-03 08:17:32Z        8
## 11777  2007-03 03:23:34Z        8
## 11778  2007-03 15:45:41Z        8
## 11779  2007-03 15:47:43Z        8
## 11780  2007-03 15:56:12Z        8
## 11781  2007-03 16:01:39Z        8
## 11782  2007-03 16:11:00Z        8
## 11783  2007-03 16:22:56Z        8
## 11784  2007-03 16:47:09Z        8
## 11785  2007-03 18:46:07Z        8
## 11786  2007-03 18:52:28Z        8
## 11787  2007-03 18:55:07Z        8
## 11788  2007-03 19:02:42Z        8
## 11789  2007-03 19:28:48Z        8
## 11790  2007-03 19:43:36Z        8
## 11791  2007-03 19:43:48Z        8
## 11792  2007-03 20:04:53Z        8
## 11793  2007-03 20:13:58Z        8
## 11794  2007-03 20:26:48Z        8
## 11795  2007-03 20:28:16Z        8
## 11796  2007-03 20:34:19Z        8
## 11797  2007-03 20:38:15Z        8
## 11798  2007-03 21:23:09Z        8
## 11799  2007-03 21:29:27Z        8
## 11800  2007-03 21:32:35Z        8
## 11801  2007-03 09:32:16Z        8
## 11802  2007-03 09:32:32Z        8
## 11803  2007-03 09:33:09Z        8
## 11804  2007-03 09:33:26Z        8
## 11805  2007-03 18:08:23Z        8
## 11806  2007-03 10:45:29Z        8
## 11807  2007-03 10:46:51Z        8
## 11808  2007-03 18:27:45Z        8
## 11809  2007-03 02:59:41Z        8
## 11810  2007-03 13:12:20Z        8
## 11811  2007-03 20:32:47Z        8
## 11812  2007-03 06:57:56Z        8
## 11813  2007-03 06:59:06Z        8
## 11814  2007-03 06:59:45Z        8
## 11815  2007-03 16:15:53Z        8
## 11816  2007-03 16:20:01Z        8
## 11817  2007-03 16:26:49Z        8
## 11818  2007-03 16:27:39Z        8
## 11819  2007-03 16:35:57Z        8
## 11820  2007-03 20:52:52Z        8
## 11821  2007-03 20:52:59Z        8
## 11822  2007-03 19:15:26Z        8
## 11823  2007-03 21:58:50Z        8
## 11824  2007-03 21:59:54Z        8
## 11825  2007-03 00:12:12Z        8
## 11826  2007-03 12:10:40Z        8
## 11827  2007-03 12:11:54Z        8
## 11828  2007-03 18:49:22Z        8
## 11829  2007-03 18:50:49Z        8
## 11830  2007-03 18:56:11Z        8
## 11831  2007-03 19:18:03Z        8
## 11832  2007-03 19:19:31Z        8
## 11833  2007-03 19:23:04Z        8
## 11834  2007-03 14:38:40Z        8
## 11835  2007-03 14:43:36Z        8
## 11836  2007-03 15:37:27Z        8
## 11837  2007-03 16:10:20Z        8
## 11838  2007-03 16:49:00Z        8
## 11839  2007-03 16:50:15Z        8
## 11840  2007-03 18:19:42Z        8
## 11841  2007-03 18:20:58Z        8
## 11842  2007-03 20:01:15Z        8
## 11843  2007-03 20:12:52Z        8
## 11844  2007-03 01:47:46Z        8
## 11845  2007-03 01:55:34Z        8
## 11846  2007-03 01:04:00Z        8
## 11847  2007-03 01:28:24Z        8
## 11848  2007-03 04:14:08Z        8
## 11849  2007-03 04:19:06Z        8
## 11850  2007-03 04:38:44Z        8
## 11851  2007-03 12:59:18Z        8
## 11852  2007-03 13:03:29Z        8
## 11853  2007-03 00:55:04Z        8
## 11854  2007-03 04:14:32Z        8
## 11855  2007-03 04:24:41Z        8
## 11856  2007-03 13:13:20Z        8
## 11857  2007-03 13:22:42Z        8
## 11858  2007-03 03:45:07Z        8
## 11859  2007-03 03:45:26Z        8
## 11860  2007-03 03:47:15Z        8
## 11861  2007-03 03:47:47Z        8
## 11862  2007-03 03:50:17Z        8
## 11863  2007-03 03:50:41Z        8
## 11864  2007-03 23:24:44Z        8
## 11865  2007-03 23:36:38Z        8
## 11866  2007-03 00:06:19Z        8
## 11867  2007-03 02:44:37Z        8
## 11868  2007-03 02:48:19Z        8
## 11869  2007-03 02:56:01Z        8
## 11870  2007-03 03:14:48Z        8
## 11871  2007-03 03:57:14Z        8
## 11872  2007-03 04:08:53Z        8
## 11873  2007-03 21:04:00Z        8
## 11874  2007-03 21:04:26Z        8
## 11875  2007-03 12:57:07Z        8
## 11876  2007-03 00:36:01Z        8
## 11877  2007-03 17:46:13Z        8
## 11878  2007-03 17:47:02Z        8
## 11879  2007-03 17:49:56Z        8
## 11880  2007-03 17:51:16Z        8
## 11881  2007-03 21:54:13Z        8
## 11882  2007-03 23:40:20Z        8
## 11883  2007-04 00:14:44Z        8
## 11884  2007-04 02:42:43Z        8
## 11885  2007-04 03:43:17Z        8
## 11886  2007-04 09:32:33Z        8
## 11887  2007-04 14:54:47Z        8
## 11888  2007-04 14:55:35Z        8
## 11889  2007-04 14:58:04Z        8
## 11890  2007-04 15:00:13Z        8
## 11891  2007-04 16:20:19Z        8
## 11892  2007-04 17:21:07Z        8
## 11893  2007-04 17:23:31Z        8
## 11894  2007-04 17:54:59Z        8
## 11895  2007-04 19:58:10Z        8
## 11896  2007-04 21:15:50Z        8
## 11897  2007-04 20:36:26Z        8
## 11898  2007-04 23:43:41Z        8
## 11899  2007-04 08:43:41Z        8
## 11900  2007-04 19:59:16Z        8
## 11901  2007-04 20:01:59Z        8
## 11902  2007-04 20:02:22Z        8
## 11903  2007-04 21:18:44Z        8
## 11904  2007-04 19:02:32Z        8
## 11905  2007-04 23:37:21Z        8
## 11906  2007-04 00:00:06Z        8
## 11907  2007-04 18:03:09Z        8
## 11908  2007-04 18:05:04Z        8
## 11909  2007-04 18:05:42Z        8
## 11910  2007-04 18:06:29Z        8
## 11911  2007-04 08:35:03Z        8
## 11912  2007-04 08:36:50Z        8
## 11913  2007-04 15:37:24Z        8
## 11914  2007-04 15:37:42Z        8
## 11915  2007-04 04:11:09Z        8
## 11916  2007-04 04:15:26Z        8
## 11917  2007-04 00:00:27Z        8
## 11918  2007-04 00:06:40Z        8
## 11919  2007-04 18:06:14Z        8
## 11920  2007-04 19:24:27Z        8
## 11921  2007-04 02:06:20Z        8
## 11922  2007-04 02:31:36Z        8
## 11923  2007-04 12:57:22Z        8
## 11924  2007-04 12:58:01Z        8
## 11925  2007-04 13:18:27Z        8
## 11926  2007-04 13:40:31Z        8
## 11927  2007-04 19:57:01Z        8
## 11928  2007-04 01:58:42Z        8
## 11929  2007-04 03:00:38Z        8
## 11930  2007-04 03:14:34Z        8
## 11931  2007-04 03:54:44Z        8
## 11932  2007-04 03:55:14Z        8
## 11933  2007-04 16:25:04Z        8
## 11934  2007-04 16:26:51Z        8
## 11935  2007-04 17:50:13Z        8
## 11936  2007-04 18:00:23Z        8
## 11937  2007-04 20:14:04Z        8
## 11938  2007-04 20:16:49Z        8
## 11939  2007-04 13:23:46Z        8
## 11940  2007-04 13:24:19Z        8
## 11941  2007-04 13:31:44Z        8
## 11942  2007-04 13:32:21Z        8
## 11943  2007-04 15:47:17Z        8
## 11944  2007-04 20:07:05Z        8
## 11945  2007-04 20:15:23Z        8
## 11946  2007-04 20:35:26Z        8
## 11947  2007-04 20:40:35Z        8
## 11948  2007-04 00:33:56Z        8
## 11949  2007-04 18:17:44Z        8
## 11950  2007-04 18:20:57Z        8
## 11951  2007-04 19:08:55Z        8
## 11952  2007-04 19:09:22Z        8
## 11953  2007-04 19:10:39Z        8
## 11954  2007-04 19:11:02Z        8
## 11955  2007-04 00:12:56Z        8
## 11956  2007-04 02:33:47Z        8
## 11957  2007-04 09:19:19Z        8
## 11958  2007-04 20:38:10Z        8
## 11959  2007-04 20:38:16Z        8
## 11960  2007-04 19:01:04Z        8
## 11961  2007-04 19:14:45Z        8
## 11962  2007-04 19:16:52Z        8
## 11963  2007-04 19:25:17Z        8
## 11964  2007-04 01:25:59Z        8
## 11965  2007-04 01:53:02Z        8
## 11966  2007-04 20:08:27Z        8
## 11967  2007-04 01:44:23Z        8
## 11968  2007-04 02:31:56Z        8
## 11969  2007-04 05:42:50Z        8
## 11970  2007-04 12:54:50Z        8
## 11971  2007-04 12:57:05Z        8
## 11972  2007-04 13:42:00Z        8
## 11973  2007-04 13:44:41Z        8
## 11974  2007-04 14:10:37Z        8
## 11975  2007-04 14:12:24Z        8
## 11976  2007-04 15:10:14Z        8
## 11977  2007-04 15:12:07Z        8
## 11978  2007-04 15:35:13Z        8
## 11979  2007-04 16:02:02Z        8
## 11980  2007-04 16:12:42Z        8
## 11981  2007-04 16:31:47Z        8
## 11982  2007-04 16:38:58Z        8
## 11983  2007-04 16:59:42Z        8
## 11984  2007-04 17:08:34Z        8
## 11985  2007-04 17:09:16Z        8
## 11986  2007-04 17:17:27Z        8
## 11987  2007-04 17:23:50Z        8
## 11988  2007-04 17:24:44Z        8
## 11989  2007-04 17:33:41Z        8
## 11990  2007-04 01:35:48Z        8
## 11991  2007-04 01:36:40Z        8
## 11992  2007-04 01:36:58Z        8
## 11993  2007-04 01:37:41Z        8
## 11994  2007-04 06:11:11Z        8
## 11995  2007-04 06:12:21Z        8
## 11996  2007-04 11:06:40Z        8
## 11997  2007-04 22:07:28Z        8
## 11998  2007-04 22:12:28Z        8
## 11999  2007-04 00:43:55Z        8
## 12000  2007-04 00:50:37Z        8
## 12001  2007-04 21:01:44Z        8
## 12002  2007-04 21:02:12Z        8
## 12003  2007-04 21:05:10Z        8
## 12004  2007-04 21:05:38Z        8
## 12005  2007-04 22:07:13Z        8
## 12006  2007-04 22:13:24Z        8
## 12007  2007-04 10:10:41Z        8
## 12008  2007-04 15:26:35Z        8
## 12009  2007-04 02:54:50Z        8
## 12010  2007-04 23:28:07Z        8
## 12011  2007-04 23:59:37Z        8
## 12012  2007-04 14:04:51Z        8
## 12013  2007-04 15:45:40Z        8
## 12014  2007-05 00:45:40Z        8
## 12015  2007-05 01:15:41Z        8
## 12016  2007-05 01:18:28Z        8
## 12017  2007-05 21:52:12Z        8
## 12018  2007-05 23:58:27Z        8
## 12019  2007-05 00:04:26Z        8
## 12020  2007-05 00:04:51Z        8
## 12021  2007-05 00:05:47Z        8
## 12022  2007-05 00:54:32Z        8
## 12023  2007-05 00:57:01Z        8
## 12024  2007-05 00:57:50Z        8
## 12025  2007-05 01:09:32Z        8
## 12026  2007-05 01:11:54Z        8
## 12027  2007-05 01:14:52Z        8
## 12028  2007-05 01:16:24Z        8
## 12029  2007-05 01:26:34Z        8
## 12030  2007-05 01:27:03Z        8
## 12031  2007-05 01:27:42Z        8
## 12032  2007-05 01:37:50Z        8
## 12033  2007-05 11:05:40Z        8
## 12034  2007-05 11:12:14Z        8
## 12035  2007-05 00:37:28Z        8
## 12036  2007-05 07:23:08Z        8
## 12037  2007-05 07:35:03Z        8
## 12038  2007-05 08:52:18Z        8
## 12039  2007-05 10:48:28Z        8
## 12040  2007-05 11:47:08Z        8
## 12041  2007-05 12:16:31Z        8
## 12042  2007-05 13:15:54Z        8
## 12043  2007-05 13:41:46Z        8
## 12044  2007-05 15:31:38Z        8
## 12045  2007-05 17:31:30Z        8
## 12046  2007-05 17:40:00Z        8
## 12047  2007-05 17:41:44Z        8
## 12048  2007-05 18:35:23Z        8
## 12049  2007-05 18:51:59Z        8
## 12050  2007-05 18:56:57Z        8
## 12051  2007-05 19:00:29Z        8
## 12052  2007-05 19:01:30Z        8
## 12053  2007-05 19:09:56Z        8
## 12054  2007-05 19:15:53Z        8
## 12055  2007-05 19:34:54Z        8
## 12056  2007-05 19:49:55Z        8
## 12057  2007-05 19:51:02Z        8
## 12058  2007-05 02:12:36Z        8
## 12059  2007-05 02:23:02Z        8
## 12060  2007-05 02:27:37Z        8
## 12061  2007-05 02:32:16Z        8
## 12062  2007-05 05:31:41Z        8
## 12063  2007-05 05:32:18Z        8
## 12064  2007-05 14:09:40Z        8
## 12065  2007-05 15:03:16Z        8
## 12066  2007-05 20:17:48Z        8
## 12067  2007-05 06:46:47Z        8
## 12068  2007-05 08:19:57Z        8
## 12069  2007-05 08:20:45Z        8
## 12070  2007-05 11:26:26Z        8
## 12071  2007-05 11:27:05Z        8
## 12072  2007-05 11:28:04Z        8
## 12073  2007-05 11:29:03Z        8
## 12074  2007-05 18:52:46Z        8
## 12075  2007-05 22:20:18Z        8
## 12076  2007-05 22:23:40Z        8
## 12077  2007-05 22:34:21Z        8
## 12078  2007-05 23:17:31Z        8
## 12079  2007-05 00:16:13Z        8
## 12080  2007-05 00:32:31Z        8
## 12081  2007-05 00:38:58Z        8
## 12082  2007-05 01:07:53Z        8
## 12083  2007-05 01:09:43Z        8
## 12084  2007-05 01:12:58Z        8
## 12085  2007-05 01:39:46Z        8
## 12086  2007-05 01:48:35Z        8
## 12087  2007-05 02:00:59Z        8
## 12088  2007-05 05:48:01Z        8
## 12089  2007-05 07:36:00Z        8
## 12090  2007-05 08:03:43Z        8
## 12091  2007-05 08:22:19Z        8
## 12092  2007-05 09:04:19Z        8
## 12093  2007-05 09:07:34Z        8
## 12094  2007-05 12:03:36Z        8
## 12095  2007-05 14:19:07Z        8
## 12096  2007-05 16:15:35Z        8
## 12097  2007-05 16:17:46Z        8
## 12098  2007-05 16:27:21Z        8
## 12099  2007-05 21:43:35Z        8
## 12100  2007-05 21:47:41Z        8
## 12101  2007-05 22:49:07Z        8
## 12102  2007-05 11:22:28Z        8
## 12103  2007-05 22:01:20Z        8
## 12104  2007-05 23:06:48Z        8
## 12105  2007-05 23:12:17Z        8
## 12106  2007-05 23:17:14Z        8
## 12107  2007-05 00:25:55Z        8
## 12108  2007-05 00:26:32Z        8
## 12109  2007-05 01:31:27Z        8
## 12110  2007-05 06:02:18Z        8
## 12111  2007-05 06:09:11Z        8
## 12112  2007-05 06:14:50Z        8
## 12113  2007-05 06:21:19Z        8
## 12114  2007-05 08:00:31Z        8
## 12115  2007-05 09:21:40Z        8
## 12116  2007-05 09:23:04Z        8
## 12117  2007-05 05:22:44Z        8
## 12118  2007-05 05:23:16Z        8
## 12119  2007-05 05:34:30Z        8
## 12120  2007-05 05:35:55Z        8
## 12121  2007-05 05:36:17Z        8
## 12122  2007-05 05:38:39Z        8
## 12123  2007-05 05:39:03Z        8
## 12124  2007-05 18:19:27Z        8
## 12125  2007-05 18:43:01Z        8
## 12126  2007-05 20:13:14Z        8
## 12127  2007-05 20:14:38Z        8
## 12128  2007-05 20:16:20Z        8
## 12129  2007-05 00:38:43Z        8
## 12130  2007-05 00:44:37Z        8
## 12131  2007-05 00:49:37Z        8
## 12132  2007-05 01:01:11Z        8
## 12133  2007-05 01:02:15Z        8
## 12134  2007-05 01:23:32Z        8
## 12135  2007-05 01:24:36Z        8
## 12136  2007-05 01:30:11Z        8
## 12137  2007-05 01:31:29Z        8
## 12138  2007-05 01:33:46Z        8
## 12139  2007-05 05:04:29Z        8
## 12140  2007-05 05:05:08Z        8
## 12141  2007-05 05:06:40Z        8
## 12142  2007-05 05:07:50Z        8
## 12143  2007-05 10:26:48Z        8
## 12144  2007-05 19:00:51Z        8
## 12145  2007-05 19:01:52Z        8
## 12146  2007-05 06:54:53Z        8
## 12147  2007-05 07:18:35Z        8
## 12148  2007-05 07:32:52Z        8
## 12149  2007-05 07:37:38Z        8
## 12150  2007-05 07:39:04Z        8
## 12151  2007-05 07:40:05Z        8
## 12152  2007-05 23:45:54Z        8
## 12153  2007-05 23:47:58Z        8
## 12154  2007-05 23:49:31Z        8
## 12155  2007-05 23:50:07Z        8
## 12156  2007-05 23:55:48Z        8
## 12157  2007-05 07:32:08Z        8
## 12158  2007-05 12:08:49Z        8
## 12159  2007-05 13:41:55Z        8
## 12160  2007-05 23:15:26Z        8
## 12161  2007-05 03:06:08Z        8
## 12162  2007-05 03:06:30Z        8
## 12163  2007-05 18:09:05Z        8
## 12164  2007-05 22:15:39Z        8
## 12165  2007-05 22:16:29Z        8
## 12166  2007-05 23:07:23Z        8
## 12167  2007-05 01:47:00Z        8
## 12168  2007-05 14:32:18Z        8
## 12169  2007-05 16:55:50Z        8
## 12170  2007-05 20:11:50Z        8
## 12171  2007-05 20:19:02Z        8
## 12172  2007-05 05:35:46Z        8
## 12173  2007-05 09:44:23Z        8
## 12174  2007-05 23:39:46Z        8
## 12175  2007-05 23:55:08Z        8
## 12176  2007-05 16:59:08Z        8
## 12177  2007-05 09:06:55Z        8
## 12178  2007-05 09:24:51Z        8
## 12179  2007-05 20:34:17Z        8
## 12180  2007-05 20:40:13Z        8
## 12181  2007-05 20:41:16Z        8
## 12182  2007-05 22:01:31Z        8
## 12183  2007-05 23:48:01Z        8
## 12184  2007-05 06:13:41Z        8
## 12185  2007-05 06:59:17Z        8
## 12186  2007-05 07:41:52Z        8
## 12187  2007-05 07:43:08Z        8
## 12188  2007-05 07:52:13Z        8
## 12189  2007-05 19:39:18Z        8
## 12190  2007-05 19:46:59Z        8
## 12191  2007-05 19:50:02Z        8
## 12192  2007-05 19:51:01Z        8
## 12193  2007-05 19:57:42Z        8
## 12194  2007-05 19:49:27Z        8
## 12195  2007-05 19:51:57Z        8
## 12196  2007-05 15:13:21Z        8
## 12197  2007-05 15:34:09Z        8
## 12198  2007-05 20:36:46Z        8
## 12199  2007-05 20:39:08Z        8
## 12200  2007-05 18:03:36Z        8
## 12201  2007-05 18:07:15Z        8
## 12202  2007-05 18:09:52Z        8
## 12203  2007-05 05:38:41Z        8
## 12204  2007-05 05:42:08Z        8
## 12205  2007-05 06:12:52Z        8
## 12206  2007-05 09:36:00Z        8
## 12207  2007-05 08:19:50Z        8
## 12208  2007-05 08:21:28Z        8
## 12209  2007-05 08:41:46Z        8
## 12210  2007-05 19:00:01Z        8
## 12211  2007-05 19:42:48Z        8
## 12212  2007-05 16:25:37Z        8
## 12213  2007-05 16:29:31Z        8
## 12214  2007-05 16:49:35Z        8
## 12215  2007-05 03:57:17Z        8
## 12216  2007-05 03:58:49Z        8
## 12217  2007-06 06:40:09Z        8
## 12218  2007-06 14:16:29Z        8
## 12219  2007-06 14:18:23Z        8
## 12220  2007-06 23:49:42Z        8
## 12221  2007-06 23:51:07Z        8
## 12222  2007-06 23:51:28Z        8
## 12223  2007-06 21:02:59Z        8
## 12224  2007-06 23:16:47Z        8
## 12225  2007-06 23:12:10Z        8
## 12226  2007-06 10:15:50Z        8
## 12227  2007-06 15:06:57Z        8
## 12228  2007-06 03:58:02Z        8
## 12229  2007-06 03:59:12Z        8
## 12230  2007-06 04:14:11Z        8
## 12231  2007-06 04:15:08Z        8
## 12232  2007-06 04:39:51Z        8
## 12233  2007-06 04:40:48Z        8
## 12234  2007-06 04:52:13Z        8
## 12235  2007-06 05:21:39Z        8
## 12236  2007-06 14:24:45Z        8
## 12237  2007-06 14:29:39Z        8
## 12238  2007-06 14:30:58Z        8
## 12239  2007-06 21:48:39Z        8
## 12240  2007-06 22:24:01Z        8
## 12241  2007-06 02:18:03Z        8
## 12242  2007-06 21:07:22Z        8
## 12243  2007-06 21:20:33Z        8
## 12244  2007-06 01:12:40Z        8
## 12245  2007-06 02:26:42Z        8
## 12246  2007-06 02:28:39Z        8
## 12247  2007-06 02:59:00Z        8
## 12248  2007-06 03:11:03Z        8
## 12249  2007-06 03:20:13Z        8
## 12250  2007-06 03:34:03Z        8
## 12251  2007-06 03:42:19Z        8
## 12252  2007-06 03:56:18Z        8
## 12253  2007-06 04:00:43Z        8
## 12254  2007-06 04:05:11Z        8
## 12255  2007-06 04:22:19Z        8
## 12256  2007-06 06:09:38Z        8
## 12257  2007-06 06:23:12Z        8
## 12258  2007-06 07:45:18Z        8
## 12259  2007-06 11:09:32Z        8
## 12260  2007-06 13:13:22Z        8
## 12261  2007-06 13:43:36Z        8
## 12262  2007-06 13:49:52Z        8
## 12263  2007-06 13:54:55Z        8
## 12264  2007-06 14:05:02Z        8
## 12265  2007-06 14:22:05Z        8
## 12266  2007-06 14:32:46Z        8
## 12267  2007-06 15:18:59Z        8
## 12268  2007-06 15:34:13Z        8
## 12269  2007-06 15:37:04Z        8
## 12270  2007-06 16:06:55Z        8
## 12271  2007-06 18:19:03Z        8
## 12272  2007-06 21:28:26Z        8
## 12273  2007-06 22:16:49Z        8
## 12274  2007-06 01:06:54Z        8
## 12275  2007-06 01:15:56Z        8
## 12276  2007-06 01:18:41Z        8
## 12277  2007-06 01:34:26Z        8
## 12278  2007-06 01:41:13Z        8
## 12279  2007-06 02:33:52Z        8
## 12280  2007-06 02:35:05Z        8
## 12281  2007-06 02:43:13Z        8
## 12282  2007-06 02:57:03Z        8
## 12283  2007-06 03:09:10Z        8
## 12284  2007-06 03:16:20Z        8
## 12285  2007-06 03:24:45Z        8
## 12286  2007-06 03:44:17Z        8
## 12287  2007-06 04:38:37Z        8
## 12288  2007-06 09:13:47Z        8
## 12289  2007-06 15:29:06Z        8
## 12290  2007-06 16:07:56Z        8
## 12291  2007-06 16:38:29Z        8
## 12292  2007-06 07:15:21Z        8
## 12293  2007-06 07:56:50Z        8
## 12294  2007-06 08:10:15Z        8
## 12295  2007-06 08:15:20Z        8
## 12296  2007-06 22:24:09Z        8
## 12297  2007-06 22:48:59Z        8
## 12298  2007-06 22:50:04Z        8
## 12299  2007-06 18:58:26Z        8
## 12300  2007-06 20:22:04Z        8
## 12301  2007-06 20:34:15Z        8
## 12302  2007-06 05:50:46Z        8
## 12303  2007-06 06:09:35Z        8
## 12304  2007-06 07:05:18Z        8
## 12305  2007-06 22:10:23Z        8
## 12306  2007-06 22:11:28Z        8
## 12307  2007-06 22:12:00Z        8
## 12308  2007-06 22:14:24Z        8
## 12309  2007-06 22:17:28Z        8
## 12310  2007-06 22:18:51Z        8
## 12311  2007-06 02:04:49Z        8
## 12312  2007-06 02:05:37Z        8
## 12313  2007-06 02:07:58Z        8
## 12314  2007-06 02:08:31Z        8
## 12315  2007-06 02:09:02Z        8
## 12316  2007-06 02:10:07Z        8
## 12317  2007-06 02:11:42Z        8
## 12318  2007-06 02:11:59Z        8
## 12319  2007-06 02:12:31Z        8
## 12320  2007-06 02:13:06Z        8
## 12321  2007-06 02:14:09Z        8
## 12322  2007-06 02:15:19Z        8
## 12323  2007-06 02:15:44Z        8
## 12324  2007-06 02:16:02Z        8
## 12325  2007-06 02:16:23Z        8
## 12326  2007-06 02:16:40Z        8
## 12327  2007-06 02:17:22Z        8
## 12328  2007-06 02:19:20Z        8
## 12329  2007-06 02:27:25Z        8
## 12330  2007-06 02:31:38Z        8
## 12331  2007-06 05:31:11Z        8
## 12332  2007-06 05:37:15Z        8
## 12333  2007-06 05:38:03Z        8
## 12334  2007-06 05:45:36Z        8
## 12335  2007-06 08:08:37Z        8
## 12336  2007-06 06:28:22Z        8
## 12337  2007-06 09:03:51Z        8
## 12338  2007-06 09:26:52Z        8
## 12339  2007-06 09:43:19Z        8
## 12340  2007-06 11:21:24Z        8
## 12341  2007-06 11:23:12Z        8
## 12342  2007-06 11:26:18Z        8
## 12343  2007-06 15:53:42Z        8
## 12344  2007-06 20:00:22Z        8
## 12345  2007-06 07:37:57Z        8
## 12346  2007-06 07:38:30Z        8
## 12347  2007-06 14:02:28Z        8
## 12348  2007-06 14:12:09Z        8
## 12349  2007-06 14:21:06Z        8
## 12350  2007-06 15:19:25Z        8
## 12351  2007-06 17:43:17Z        8
## 12352  2007-06 21:45:25Z        8
## 12353  2007-06 07:16:46Z        8
## 12354  2007-06 07:35:52Z        8
## 12355  2007-06 08:20:31Z        8
## 12356  2007-06 08:27:56Z        8
## 12357  2007-06 08:41:37Z        8
## 12358  2007-06 12:54:53Z        8
## 12359  2007-06 23:53:19Z        8
## 12360  2007-06 02:54:16Z        8
## 12361  2007-06 04:05:06Z        8
## 12362  2007-06 04:47:50Z        8
## 12363  2007-06 15:16:39Z        8
## 12364  2007-06 17:17:22Z        8
## 12365  2007-06 16:52:45Z        8
## 12366  2007-06 17:24:27Z        8
## 12367  2007-06 09:14:02Z        8
## 12368  2007-06 23:13:06Z        8
## 12369  2007-06 14:53:59Z        8
## 12370  2007-06 17:54:02Z        8
## 12371  2007-06 18:01:14Z        8
## 12372  2007-06 18:02:09Z        8
## 12373  2007-06 21:49:50Z        8
## 12374  2007-06 21:58:26Z        8
## 12375  2007-06 04:58:04Z        8
## 12376  2007-06 05:02:22Z        8
## 12377  2007-06 05:22:25Z        8
## 12378  2007-06 07:51:43Z        8
## 12379  2007-06 08:43:25Z        8
## 12380  2007-06 08:58:30Z        8
## 12381  2007-06 10:20:34Z        8
## 12382  2007-06 14:46:15Z        8
## 12383  2007-06 15:13:59Z        8
## 12384  2007-06 15:20:52Z        8
## 12385  2007-06 15:26:09Z        8
## 12386  2007-06 15:38:01Z        8
## 12387  2007-07 02:30:29Z        8
## 12388  2007-07 02:31:53Z        8
## 12389  2007-07 02:41:47Z        8
## 12390  2007-07 16:55:51Z        8
## 12391  2007-07 17:00:53Z        8
## 12392  2007-07 02:38:58Z        8
## 12393  2007-07 08:15:12Z        8
## 12394  2007-07 09:34:29Z        8
## 12395  2007-07 19:44:12Z        8
## 12396  2007-07 14:44:43Z        8
## 12397  2007-07 15:04:37Z        8
## 12398  2007-07 16:45:21Z        8
## 12399  2007-07 06:11:30Z        8
## 12400  2007-07 07:02:39Z        8
## 12401  2007-07 08:52:37Z        8
## 12402  2007-07 03:05:45Z        8
## 12403  2007-07 08:18:16Z        8
## 12404  2007-07 08:22:37Z        8
## 12405  2007-07 08:36:15Z        8
## 12406  2007-07 08:39:28Z        8
## 12407  2007-07 08:52:03Z        8
## 12408  2007-07 08:59:01Z        8
## 12409  2007-07 00:27:04Z        8
## 12410  2007-07 00:30:13Z        8
## 12411  2007-07 00:41:19Z        8
## 12412  2007-07 17:18:49Z        8
## 12413  2007-07 17:29:56Z        8
## 12414  2007-07 13:21:48Z        8
## 12415  2007-07 19:02:04Z        8
## 12416  2007-07 19:02:34Z        8
## 12417  2007-07 00:31:40Z        8
## 12418  2007-07 20:51:29Z        8
## 12419  2007-07 20:52:17Z        8
## 12420  2007-07 20:58:11Z        8
## 12421  2007-07 00:44:43Z        8
## 12422  2007-07 00:58:16Z        8
## 12423  2007-07 01:01:07Z        8
## 12424  2007-07 08:06:43Z        8
## 12425  2007-07 12:23:11Z        8
## 12426  2007-07 12:25:24Z        8
## 12427  2007-07 04:25:14Z        8
## 12428  2007-07 09:34:10Z        8
## 12429  2007-07 12:52:27Z        8
## 12430  2007-07 12:55:39Z        8
## 12431  2007-07 12:57:30Z        8
## 12432  2007-07 13:07:37Z        8
## 12433  2007-07 13:09:52Z        8
## 12434  2007-07 13:11:24Z        8
## 12435  2007-07 05:39:52Z        8
## 12436  2007-07 08:57:11Z        8
## 12437  2007-07 04:49:25Z        8
## 12438  2007-07 05:26:10Z        8
## 12439  2007-07 05:11:49Z        8
## 12440  2007-07 05:12:35Z        8
## 12441  2007-07 04:48:42Z        8
## 12442  2007-07 05:42:01Z        8
## 12443  2007-07 11:49:26Z        8
## 12444  2007-07 06:29:15Z        8
## 12445  2007-07 18:39:18Z        8
## 12446  2007-07 00:28:01Z        8
## 12447  2007-07 20:46:28Z        8
## 12448  2007-07 20:46:49Z        8
## 12449  2007-07 08:56:08Z        8
## 12450  2007-07 11:27:57Z        8
## 12451  2007-07 20:04:52Z        8
## 12452  2007-07 06:14:56Z        8
## 12453  2007-07 06:15:24Z        8
## 12454  2007-07 15:49:08Z        8
## 12455  2007-08 13:11:35Z        8
## 12456  2007-08 13:27:06Z        8
## 12457  2007-08 23:19:59Z        8
## 12458  2007-08 20:53:25Z        8
## 12459  2007-08 20:59:12Z        8
## 12460  2007-08 00:44:52Z        8
## 12461  2007-08 00:46:55Z        8
## 12462  2007-08 08:44:16Z        8
## 12463  2007-08 08:46:37Z        8
## 12464  2007-08 08:49:50Z        8
## 12465  2007-08 05:57:20Z        8
## 12466  2007-08 05:59:59Z        8
## 12467  2007-08 14:24:18Z        8
## 12468  2007-08 14:34:36Z        8
## 12469  2007-08 10:57:40Z        8
## 12470  2007-08 17:02:20Z        8
## 12471  2007-08 17:02:49Z        8
## 12472  2007-08 17:03:54Z        8
## 12473  2007-08 00:13:28Z        8
## 12474  2007-08 00:17:09Z        8
## 12475  2007-08 00:06:20Z        8
## 12476  2007-08 00:08:02Z        8
## 12477  2007-08 00:11:53Z        8
## 12478  2007-08 22:19:35Z        8
## 12479  2007-08 22:24:26Z        8
## 12480  2007-08 16:42:58Z        8
## 12481  2007-08 17:48:34Z        8
## 12482  2007-08 06:30:25Z        8
## 12483  2007-08 07:40:38Z        8
## 12484  2007-09 00:39:48Z        8
## 12485  2007-09 00:52:43Z        8
## 12486  2007-09 08:25:34Z        8
## 12487  2007-09 08:28:17Z        8
## 12488  2007-09 03:09:55Z        8
## 12489  2007-09 03:10:05Z        8
## 12490  2007-09 03:12:08Z        8
## 12491  2007-09 03:12:35Z        8
## 12492  2007-09 02:55:44Z        8
## 12493  2007-09 02:56:35Z        8
## 12494  2007-09 02:59:16Z        8
## 12495  2007-09 04:55:43Z        8
## 12496  2007-09 04:56:21Z        8
## 12497  2007-09 16:32:40Z        8
## 12498  2007-09 18:37:41Z        8
## 12499  2007-09 18:50:41Z        8
## 12500  2007-09 18:54:56Z        8
## 12501  2007-09 19:07:45Z        8
## 12502  2007-09 17:16:54Z        8
## 12503  2007-09 03:01:05Z        8
## 12504  2007-09 03:01:36Z        8
## 12505  2007-09 15:23:34Z        8
## 12506  2007-09 15:24:48Z        8
## 12507  2007-09 17:33:43Z        8
## 12508  2007-09 17:37:52Z        8
## 12509  2007-09 18:43:36Z        8
## 12510  2007-09 18:57:31Z        8
## 12511  2007-09 23:13:08Z        8
## 12512  2007-09 23:14:32Z        8
## 12513  2007-09 23:15:13Z        8
## 12514  2007-09 23:16:13Z        8
## 12515  2007-09 23:20:30Z        8
## 12516  2007-09 23:21:13Z        8
## 12517  2007-09 01:49:19Z        8
## 12518  2007-09 02:15:38Z        8
## 12519  2007-09 07:45:19Z        8
## 12520  2007-09 20:03:30Z        8
## 12521  2007-09 18:00:00Z        8
## 12522  2007-09 18:06:29Z        8
## 12523  2007-09 18:29:59Z        8
## 12524  2007-09 19:52:56Z        8
## 12525  2007-09 08:24:40Z        8
## 12526  2007-09 08:26:13Z        8
## 12527  2007-09 08:31:31Z        8
## 12528  2007-09 08:40:58Z        8
## 12529  2007-09 08:42:23Z        8
## 12530  2007-09 08:46:01Z        8
## 12531  2007-09 08:48:24Z        8
## 12532  2007-09 11:11:30Z        8
## 12533  2007-09 18:30:49Z        8
## 12534  2007-09 18:33:45Z        8
## 12535  2007-09 19:29:36Z        8
## 12536  2007-09 02:16:00Z        8
## 12537  2007-09 03:26:22Z        8
## 12538  2007-09 06:02:41Z        8
## 12539  2007-09 06:03:16Z        8
## 12540  2007-09 16:16:00Z        8
## 12541  2007-09 16:22:14Z        8
## 12542  2007-09 16:25:14Z        8
## 12543  2007-09 22:58:38Z        8
## 12544  2007-09 19:01:26Z        8
## 12545  2007-09 18:45:45Z        8
## 12546  2007-09 23:43:37Z        8
## 12547  2007-09 03:05:29Z        8
## 12548  2007-09 16:55:07Z        8
## 12549  2007-09 20:15:43Z        8
## 12550  2007-09 23:35:40Z        8
## 12551  2007-09 00:45:45Z        8
## 12552  2007-09 04:53:06Z        8
## 12553  2007-09 07:44:13Z        8
## 12554  2007-09 11:07:27Z        8
## 12555  2007-09 14:15:38Z        8
## 12556  2007-09 18:01:53Z        8
## 12557  2007-09 20:57:33Z        8
## 12558  2007-09 21:04:26Z        8
## 12559  2007-09 21:05:23Z        8
## 12560  2007-09 15:18:31Z        8
## 12561  2007-09 17:01:22Z        8
## 12562  2007-10 11:07:12Z        8
## 12563  2007-10 12:12:06Z        8
## 12564  2007-10 12:32:44Z        8
## 12565  2007-10 02:52:26Z        8
## 12566  2007-10 02:53:26Z        8
## 12567  2007-10 10:44:56Z        8
## 12568  2007-10 10:52:35Z        8
## 12569  2007-10 11:26:01Z        8
## 12570  2007-10 11:31:57Z        8
## 12571  2007-10 12:19:43Z        8
## 12572  2007-10 17:08:54Z        8
## 12573  2007-10 19:59:30Z        8
## 12574  2007-10 20:00:38Z        8
## 12575  2007-10 20:01:06Z        8
## 12576  2007-10 20:40:12Z        8
## 12577  2007-10 21:29:28Z        8
## 12578  2007-10 21:43:42Z        8
## 12579  2007-10 15:16:45Z        8
## 12580  2007-10 15:35:37Z        8
## 12581  2007-10 22:56:41Z        8
## 12582  2007-10 01:24:17Z        8
## 12583  2007-10 19:57:47Z        8
## 12584  2007-10 19:58:11Z        8
## 12585  2007-10 21:23:03Z        8
## 12586  2007-10 21:26:57Z        8
## 12587  2007-10 21:34:33Z        8
## 12588  2007-10 21:36:22Z        8
## 12589  2007-10 07:04:35Z        8
## 12590  2007-10 07:06:46Z        8
## 12591  2007-10 20:45:48Z        8
## 12592  2007-10 12:34:57Z        8
## 12593  2007-10 12:40:22Z        8
## 12594  2007-10 20:00:31Z        8
## 12595  2007-10 20:01:01Z        8
## 12596  2007-10 20:01:23Z        8
## 12597  2007-10 20:01:40Z        8
## 12598  2007-10 20:02:04Z        8
## 12599  2007-10 20:02:12Z        8
## 12600  2007-10 09:11:59Z        8
## 12601  2007-10 10:56:37Z        8
## 12602  2007-10 12:30:11Z        8
## 12603  2007-10 12:32:09Z        8
## 12604  2007-10 14:10:23Z        8
## 12605  2007-10 14:12:01Z        8
## 12606  2007-10 16:29:47Z        8
## 12607  2007-10 00:46:27Z        8
## 12608  2007-10 01:02:21Z        8
## 12609  2007-10 17:24:25Z        8
## 12610  2007-10 18:17:30Z        8
## 12611  2007-10 06:03:58Z        8
## 12612  2007-10 03:32:52Z        8
## 12613  2007-10 03:33:46Z        8
## 12614  2007-10 08:13:44Z        8
## 12615  2007-10 08:15:18Z        8
## 12616  2007-10 08:16:27Z        8
## 12617  2007-10 08:17:11Z        8
## 12618  2007-10 08:21:55Z        8
## 12619  2007-10 08:24:58Z        8
## 12620  2007-10 09:28:35Z        8
## 12621  2007-10 11:34:57Z        8
## 12622  2007-10 12:22:32Z        8
## 12623  2007-10 13:55:55Z        8
## 12624  2007-10 19:05:09Z        8
## 12625  2007-10 19:07:44Z        8
## 12626  2007-10 23:04:07Z        8
## 12627  2007-10 23:06:09Z        8
## 12628  2007-10 06:09:42Z        8
## 12629  2007-10 21:45:16Z        8
## 12630  2007-10 21:45:52Z        8
## 12631  2007-10 10:13:17Z        8
## 12632  2007-10 10:18:48Z        8
## 12633  2007-10 21:41:18Z        8
## 12634  2007-10 21:44:21Z        8
## 12635  2007-10 14:02:33Z        8
## 12636  2007-10 20:19:21Z        8
## 12637  2007-10 03:05:56Z        8
## 12638  2007-10 04:40:53Z        8
## 12639  2007-10 22:54:16Z        8
## 12640  2007-10 23:05:08Z        8
## 12641  2007-10 23:13:46Z        8
## 12642  2007-10 19:06:23Z        8
## 12643  2007-10 19:09:08Z        8
## 12644  2007-10 21:53:00Z        8
## 12645  2007-10 21:54:19Z        8
## 12646  2007-10 18:38:42Z        8
## 12647  2007-10 18:40:09Z        8
## 12648  2007-10 20:02:10Z        8
## 12649  2007-10 20:05:45Z        8
## 12650  2007-10 21:02:16Z        8
## 12651  2007-10 23:03:12Z        8
## 12652  2007-10 01:16:22Z        8
## 12653  2007-10 05:28:22Z        8
## 12654  2007-10 14:31:58Z        8
## 12655  2007-10 16:16:30Z        8
## 12656  2007-10 16:33:38Z        8
## 12657  2007-11 01:49:57Z        8
## 12658  2007-11 16:17:52Z        8
## 12659  2007-11 16:25:17Z        8
## 12660  2007-11 16:26:53Z        8
## 12661  2007-11 03:12:12Z        8
## 12662  2007-11 03:12:34Z        8
## 12663  2007-11 14:34:19Z        8
## 12664  2007-11 15:05:01Z        8
## 12665  2007-11 10:02:39Z        8
## 12666  2007-11 12:33:51Z        8
## 12667  2007-11 00:55:01Z        8
## 12668  2007-11 02:53:20Z        8
## 12669  2007-11 03:19:52Z        8
## 12670  2007-11 04:03:48Z        8
## 12671  2007-11 12:29:29Z        8
## 12672  2007-11 12:56:28Z        8
## 12673  2007-11 00:46:27Z        8
## 12674  2007-11 19:09:46Z        8
## 12675  2007-11 19:10:42Z        8
## 12676  2007-11 19:11:29Z        8
## 12677  2007-11 19:42:01Z        8
## 12678  2007-11 19:43:01Z        8
## 12679  2007-11 19:44:08Z        8
## 12680  2007-11 22:58:54Z        8
## 12681  2007-11 23:09:43Z        8
## 12682  2007-11 00:39:23Z        8
## 12683  2007-11 09:39:11Z        8
## 12684  2007-11 09:41:30Z        8
## 12685  2007-11 09:43:57Z        8
## 12686  2007-11 09:49:28Z        8
## 12687  2007-11 22:35:46Z        8
## 12688  2007-11 00:11:37Z        8
## 12689  2007-11 15:24:15Z        8
## 12690  2007-11 15:25:07Z        8
## 12691  2007-11 15:25:40Z        8
## 12692  2007-11 15:33:02Z        8
## 12693  2007-11 20:03:02Z        8
## 12694  2007-11 05:28:45Z        8
## 12695  2007-11 07:34:33Z        8
## 12696  2007-11 07:45:29Z        8
## 12697  2007-11 07:47:26Z        8
## 12698  2007-11 01:28:20Z        8
## 12699  2007-11 02:01:00Z        8
## 12700  2007-11 02:01:17Z        8
## 12701  2007-11 02:05:07Z        8
## 12702  2007-11 02:38:00Z        8
## 12703  2007-11 02:40:20Z        8
## 12704  2007-11 04:44:32Z        8
## 12705  2007-11 10:32:41Z        8
## 12706  2007-11 13:24:50Z        8
## 12707  2007-11 01:56:56Z        8
## 12708  2007-11 16:14:46Z        8
## 12709  2007-11 20:30:55Z        8
## 12710  2007-11 22:03:08Z        8
## 12711  2007-11 22:03:58Z        8
## 12712  2007-11 00:19:33Z        8
## 12713  2007-11 00:20:24Z        8
## 12714  2007-11 00:20:59Z        8
## 12715  2007-11 00:22:02Z        8
## 12716  2007-11 00:22:46Z        8
## 12717  2007-11 00:25:00Z        8
## 12718  2007-11 00:27:08Z        8
## 12719  2007-11 00:56:36Z        8
## 12720  2007-11 10:17:37Z        8
## 12721  2007-11 02:25:43Z        8
## 12722  2007-11 02:26:11Z        8
## 12723  2007-11 21:23:59Z        8
## 12724  2007-11 21:50:02Z        8
## 12725  2007-11 22:35:49Z        8
## 12726  2007-11 04:23:11Z        8
## 12727  2007-11 10:00:25Z        8
## 12728  2007-11 10:05:03Z        8
## 12729  2007-11 13:13:50Z        8
## 12730  2007-11 13:21:00Z        8
## 12731  2007-11 00:29:18Z        8
## 12732  2007-11 00:31:52Z        8
## 12733  2007-11 00:42:41Z        8
## 12734  2007-11 00:58:51Z        8
## 12735  2007-11 13:42:06Z        8
## 12736  2007-11 09:35:31Z        8
## 12737  2007-11 09:37:48Z        8
## 12738  2007-11 05:29:38Z        8
## 12739  2007-11 06:57:28Z        8
## 12740  2007-11 14:12:57Z        8
## 12741  2007-12 03:12:40Z        8
## 12742  2007-12 03:13:25Z        8
## 12743  2007-12 07:35:47Z        8
## 12744  2007-12 21:04:43Z        8
## 12745  2007-12 21:05:32Z        8
## 12746  2007-12 04:44:24Z        8
## 12747  2007-12 05:05:45Z        8
## 12748  2007-12 17:44:34Z        8
## 12749  2007-12 17:46:18Z        8
## 12750  2007-12 17:49:20Z        8
## 12751  2007-12 15:26:30Z        8
## 12752  2007-12 15:46:44Z        8
## 12753  2007-12 22:54:05Z        8
## 12754  2007-12 13:47:17Z        8
## 12755  2007-12 12:22:32Z        8
## 12756  2007-12 23:43:20Z        8
## 12757  2007-12 02:32:36Z        8
## 12758  2007-12 03:04:49Z        8
## 12759  2007-12 23:08:51Z        8
## 12760  2007-12 20:38:54Z        8
## 12761  2007-12 23:11:48Z        8
## 12762  2007-12 23:56:16Z        8
## 12763  2007-12 00:03:28Z        8
## 12764  2007-12 00:03:59Z        8
## 12765  2007-12 03:32:36Z        8
## 12766  2007-12 03:36:08Z        8
## 12767  2007-12 21:47:29Z        8
## 12768  2007-12 21:47:44Z        8
## 12769  2007-12 23:12:29Z        8
## 12770  2007-12 00:27:03Z        8
## 12771  2007-12 14:24:54Z        8
## 12772  2007-12 14:26:02Z        8
## 12773  2007-12 14:27:48Z        8
## 12774  2007-12 14:29:08Z        8
## 12775  2007-12 14:31:03Z        8
## 12776  2007-12 14:31:36Z        8
## 12777  2007-12 14:33:14Z        8
## 12778  2007-12 14:55:45Z        8
## 12779  2007-12 14:57:52Z        8
## 12780  2007-12 15:01:37Z        8
## 12781  2007-12 15:44:58Z        8
## 12782  2007-12 08:34:34Z        8
## 12783  2007-12 11:57:02Z        8
## 12784  2007-12 11:58:45Z        8
## 12785  2007-12 16:07:30Z        8
## 12786  2007-12 17:47:35Z        8
## 12787  2007-12 17:48:12Z        8
## 12788  2007-12 11:13:14Z        8
## 12789  2007-12 11:21:50Z        8
## 12790  2007-12 11:50:41Z        8
## 12791  2007-12 12:03:13Z        8
## 12792  2007-12 12:06:27Z        8
## 12793  2007-12 22:01:20Z        8
## 12794  2007-12 09:24:09Z        8
## 12795  2007-12 09:25:03Z        8
## 12796  2007-12 09:29:52Z        8
## 12797  2007-12 09:33:41Z        8
## 12798  2007-12 09:36:16Z        8
## 12799  2007-12 17:56:43Z        8
## 12800  2007-12 07:42:27Z        8
## 12801  2007-12 10:14:14Z        8
## 12802  2007-12 19:35:37Z        8
## 12803  2007-12 20:30:29Z        8
## 12804  2007-12 20:57:55Z        8
## 12805  2007-12 21:04:40Z        8
## 12806  2007-12 13:01:06Z        8
## 12807  2007-12 02:24:16Z        8
## 12808  2007-12 04:30:15Z        8
## 12809  2007-12 16:15:09Z        8
## 12810  2007-12 06:29:02Z        8
## 12811  2007-12 06:31:41Z        8
## 12812  2007-12 08:17:36Z        8
## 12813  2007-12 02:32:36Z        8
## 12814  2008-01 20:14:57Z        8
## 12815  2008-01 23:02:04Z        8
## 12816  2008-01 23:03:09Z        8
## 12817  2008-01 22:50:13Z        8
## 12818  2008-01 05:28:33Z        8
## 12819  2008-01 05:39:26Z        8
## 12820  2008-01 05:51:13Z        8
## 12821  2008-01 06:12:30Z        8
## 12822  2008-01 06:14:45Z        8
## 12823  2008-01 06:19:16Z        8
## 12824  2008-01 07:57:52Z        8
## 12825  2008-01 07:59:02Z        8
## 12826  2008-01 00:43:18Z        8
## 12827  2008-01 01:15:22Z        8
## 12828  2008-01 06:33:13Z        8
## 12829  2002-10 14:26:24Z        8
## 12830  2002-11 19:39:04Z        8
## 12831  2002-12 02:43:47Z        8
## 12832  2002-12 02:44:31Z        8
## 12833  2004-08 20:58:03Z        8
## 12834  2004-11 23:18:42Z        8
## 12835  2004-11 03:26:12Z        8
## 12836  2004-11 05:16:07Z        8
## 12837  2004-12 05:29:47Z        8
## 12838  2005-07 15:41:26Z        8
## 12839  2005-12 21:06:13Z        8
## 12840  2005-12 21:13:44Z        8
## 12841  2005-12 10:09:10Z        8
## 12842  2006-03 01:18:22Z        8
## 12843  2006-03 09:16:37Z        8
## 12844  2006-03 17:29:44Z        8
## 12845  2006-04 20:08:56Z        8
## 12846  2006-05 18:00:16Z        8
## 12847  2007-07 00:44:36Z        8
## 12848  2007-08 18:00:02Z        8
## 12849  2007-08 06:58:12Z        8
## 12850  2007-08 17:33:20Z        8
## 12851  2007-09 23:05:36Z        8
## 12852  2007-09 10:48:05Z        8
## 12853  2007-10 22:52:52Z        8
## 12854  2007-10 19:21:22Z        8
## 12855  2007-12 03:21:06Z        8
## 12856  2007-12 00:20:49Z        8
## 12857  2002-10 14:26:57Z        9
## 12858  2002-12 22:57:40Z        9
## 12859  2002-12 02:17:13Z        9
## 12860  2003-11 05:17:35Z        9
## 12861  2003-11 05:47:47Z        9
## 12862  2004-07 23:17:40Z        9
## 12863  2004-08 12:28:05Z        9
## 12864  2004-11 23:19:39Z        9
## 12865  2004-11 02:58:17Z        9
## 12866  2004-12 21:18:39Z        9
## 12867  2005-04 05:17:31Z        9
## 12868  2005-06 16:56:40Z        9
## 12869  2005-07 04:13:56Z        9
## 12870  2005-07 19:00:55Z        9
## 12871  2005-08 22:45:22Z        9
## 12872  2005-08 08:18:47Z        9
## 12873  2005-09 00:50:42Z        9
## 12874  2005-10 06:30:34Z        9
## 12875  2005-12 23:09:27Z        9
## 12876  2006-03 14:07:11Z        9
## 12877  2006-03 10:06:31Z        9
## 12878  2006-04 16:59:03Z        9
## 12879  2006-05 20:18:39Z        9
## 12880  2006-06 08:57:22Z        9
## 12881  2006-06 18:19:30Z        9
## 12882  2006-06 06:01:07Z        9
## 12883  2006-11 14:00:12Z        9
## 12884  2006-11 11:48:57Z        9
## 12885  2006-11 11:49:58Z        9
## 12886  2006-11 06:10:42Z        9
## 12887  2006-11 01:33:56Z        9
## 12888  2006-11 01:37:04Z        9
## 12889  2006-12 23:49:58Z        9
## 12890  2007-01 09:22:45Z        9
## 12891  2007-01 10:05:32Z        9
## 12892  2007-01 04:09:10Z        9
## 12893  2007-01 04:11:28Z        9
## 12894  2007-01 04:15:02Z        9
## 12895  2007-01 04:16:08Z        9
## 12896  2007-01 02:38:12Z        9
## 12897  2007-02 13:00:55Z        9
## 12898  2007-02 01:19:37Z        9
## 12899  2007-04 07:08:06Z        9
## 12900  2007-04 20:41:08Z        9
## 12901  2007-05 00:25:07Z        9
## 12902  2007-05 00:28:07Z        9
## 12903  2007-05 18:54:38Z        9
## 12904  2007-06 23:12:19Z        9
## 12905  2007-07 02:08:31Z        9
## 12906  2007-07 02:09:43Z        9
## 12907  2007-07 02:09:59Z        9
## 12908  2007-08 18:25:51Z        9
## 12909  2007-08 18:26:45Z        9
## 12910  2007-08 22:28:26Z        9
## 12911  2007-08 17:13:12Z        9
## 12912  2007-08 17:14:54Z        9
## 12913  2007-08 17:15:25Z        9
## 12914  2007-08 21:07:25Z        9
## 12915  2007-08 07:13:20Z        9
## 12916  2007-08 19:11:04Z        9
## 12917  2007-09 20:07:10Z        9
## 12918  2007-09 07:39:50Z        9
## 12919  2007-09 23:12:07Z        9
## 12920  2007-10 21:07:22Z        9
## 12921  2007-10 03:21:04Z        9
## 12922  2007-10 22:11:38Z        9
## 12923  2007-10 22:14:03Z        9
## 12924  2007-11 05:37:42Z        9
## 12925  2007-11 21:43:07Z        9
## 12926  2007-11 21:57:08Z        9
## 12927  2007-12 03:34:20Z        9
## 12928  2007-12 17:05:51Z        9
## 12929  2007-12 00:46:46Z        9
## 12930  2002-10 14:27:45Z        9
## 12931  2002-12 23:05:18Z        9
## 12932  2002-12 02:28:12Z        9
## 12933  2004-08 20:59:33Z        9
## 12934  2004-11 17:08:14Z        9
## 12935  2004-11 17:08:28Z        9
## 12936  2004-11 23:21:02Z        9
## 12937  2004-11 03:27:04Z        9
## 12938  2004-12 06:52:07Z        9
## 12939  2006-03 17:17:05Z        9
## 12940  2006-04 17:02:33Z        9
## 12941  2006-05 05:35:48Z        9
## 12942  2006-06 06:45:33Z        9
## 12943  2006-08 22:29:26Z        9
## 12944  2007-01 05:50:24Z        9
## 12945  2007-01 06:00:28Z        9
## 12946  2007-01 06:05:23Z        9
## 12947  2007-01 20:43:25Z        9
## 12948  2007-01 18:50:51Z        9
## 12949  2007-05 22:22:24Z        9
## 12950  2007-08 19:01:22Z        9
## 12951  2007-08 02:34:17Z        9
## 12952  2007-09 21:02:04Z        9
## 12953  2007-09 22:14:44Z        9
## 12954  2007-10 22:01:39Z        9
## 12955  2007-10 19:00:19Z        9
## 12956  2007-10 22:54:39Z        9
## 12957  2007-12 03:00:56Z        9
## 12958  2007-12 17:12:12Z        9
## 12959  2002-10 14:35:31Z        0
## 12960  2002-12 00:38:43Z        0
## 12961  2002-12 03:44:07Z        0
## 12962  2004-08 03:53:42Z        0
## 12963  2004-11 19:26:24Z        0
## 12964  2004-11 19:26:37Z        0
## 12965  2004-11 23:34:07Z        0
## 12966  2004-11 03:45:58Z        0
## 12967  2004-12 11:41:47Z        0
## 12968  2005-02 18:10:10Z        0
## 12969  2005-07 06:53:59Z        0
## 12970  2006-03 07:51:04Z        0
## 12971  2006-04 18:22:14Z        0
## 12972  2006-05 21:36:38Z        0
## 12973  2006-10 10:00:00Z        0
## 12974  2006-10 10:00:01Z        0
## 12975  2006-10 18:41:45Z        0
## 12976  2006-10 18:42:13Z        0
## 12977  2006-12 02:16:38Z        0
## 12978  2006-12 02:36:38Z        0
## 12979  2007-04 04:09:45Z        0
## 12980  2007-05 19:38:51Z        0
## 12981  2007-05 01:48:02Z        0
## 12982  2007-08 18:44:14Z        0
## 12983  2007-09 20:20:47Z        0
## 12984  2007-09 01:09:58Z        0
## 12985  2007-09 06:12:44Z        0
## 12986  2007-10 21:28:04Z        0
## 12987  2007-10 08:54:44Z        0
## 12988  2007-12 02:49:30Z        0
## 12989  2007-12 18:42:32Z        0
## 12990  2002-10 14:43:00Z        1
## 12991  2002-12 01:47:28Z        1
## 12992  2002-12 04:37:37Z        1
## 12993  2004-08 04:17:47Z        1
## 12994  2004-11 22:38:38Z        1
## 12995  2004-11 22:38:51Z        1
## 12996  2004-11 23:42:47Z        1
## 12997  2004-11 03:48:44Z        1
## 12998  2004-12 15:35:43Z        1
## 12999  2005-02 01:39:18Z        1
## 13000  2005-07 08:52:30Z        1
## 13001  2006-03 03:21:19Z        1
## 13002  2006-04 18:39:55Z        1
## 13003  2006-05 08:07:49Z        1
## 13004  2006-05 02:45:02Z        1
## 13005  2006-05 20:43:22Z        1
## 13006  2007-08 20:27:33Z        1
## 13007  2007-09 18:34:21Z        1
## 13008  2007-09 21:32:47Z        1
## 13009  2007-10 21:14:10Z        1
## 13010  2007-10 05:01:25Z        1
## 13011  2007-11 10:56:52Z        1
## 13012  2007-11 11:00:38Z        1
## 13013  2007-12 02:42:46Z        1
## 13014  2007-12 18:27:54Z        1
## 13015  2002-10 14:56:01Z        3
## 13016  2002-11 03:10:33Z        3
## 13017  2002-12 05:16:03Z        3
## 13018  2004-08 04:54:01Z        3
## 13019  2004-11 00:58:52Z        3
## 13020  2004-11 22:17:54Z        3
## 13021  2004-11 23:57:14Z        3
## 13022  2004-11 03:09:27Z        3
## 13023  2004-12 10:24:22Z        3
## 13024  2005-02 12:28:28Z        3
## 13025  2005-05 06:01:44Z        3
## 13026  2005-07 18:33:24Z        3
## 13027  2005-07 20:42:43Z        3
## 13028  2005-07 19:18:31Z        3
## 13029  2005-10 00:44:47Z        3
## 13030  2005-10 00:46:21Z        3
## 13031  2005-10 13:40:20Z        3
## 13032  2005-10 13:41:34Z        3
## 13033  2005-10 04:03:39Z        3
## 13034  2005-10 06:39:17Z        3
## 13035  2005-11 03:44:49Z        3
## 13036  2006-01 20:32:06Z        3
## 13037  2006-02 20:38:58Z        3
## 13038  2006-03 03:14:46Z        3
## 13039  2006-03 20:21:15Z        3
## 13040  2006-03 00:33:56Z        3
## 13041  2006-03 00:41:08Z        3
## 13042  2006-03 14:14:43Z        3
## 13043  2006-04 19:20:32Z        3
## 13044  2006-04 18:01:40Z        3
## 13045  2006-04 22:06:30Z        3
## 13046  2006-05 03:21:58Z        3
## 13047  2006-05 09:33:55Z        3
## 13048  2006-05 20:52:51Z        3
## 13049  2006-06 22:18:22Z        3
## 13050  2006-06 22:19:33Z        3
## 13051  2006-07 10:46:19Z        3
## 13052  2006-07 23:06:05Z        3
## 13053  2006-07 23:07:22Z        3
## 13054  2006-08 01:47:40Z        3
## 13055  2006-08 01:48:14Z        3
## 13056  2006-08 00:44:56Z        3
## 13057  2006-08 00:46:43Z        3
## 13058  2006-08 00:47:13Z        3
## 13059  2006-09 21:42:25Z        3
## 13060  2006-10 18:46:53Z        3
## 13061  2006-10 15:54:51Z        3
## 13062  2006-10 23:22:06Z        3
## 13063  2006-10 10:03:02Z        3
## 13064  2006-10 10:06:04Z        3
## 13065  2006-10 10:09:52Z        3
## 13066  2006-10 10:22:10Z        3
## 13067  2006-11 11:32:01Z        3
## 13068  2006-11 02:33:36Z        3
## 13069  2006-11 23:25:35Z        3
## 13070  2006-11 23:25:41Z        3
## 13071  2006-11 23:26:13Z        3
## 13072  2006-11 19:15:23Z        3
## 13073  2006-11 20:20:21Z        3
## 13074  2006-11 20:21:56Z        3
## 13075  2006-11 19:34:57Z        3
## 13076  2007-01 07:03:07Z        3
## 13077  2007-01 07:04:56Z        3
## 13078  2007-01 07:06:58Z        3
## 13079  2007-01 07:07:07Z        3
## 13080  2007-01 07:14:55Z        3
## 13081  2007-01 11:18:45Z        3
## 13082  2007-01 19:28:34Z        3
## 13083  2007-01 19:30:01Z        3
## 13084  2007-02 19:24:18Z        3
## 13085  2007-02 19:25:36Z        3
## 13086  2007-02 19:26:08Z        3
## 13087  2007-05 19:08:15Z        3
## 13088  2007-05 01:06:41Z        3
## 13089  2007-05 01:07:44Z        3
## 13090  2007-05 01:08:30Z        3
## 13091  2007-05 01:12:29Z        3
## 13092  2007-05 14:56:16Z        3
## 13093  2007-05 17:43:08Z        3
## 13094  2007-05 03:11:26Z        3
## 13095  2007-05 21:46:36Z        3
## 13096  2007-05 21:53:54Z        3
## 13097  2007-05 22:07:20Z        3
## 13098  2007-05 22:09:45Z        3
## 13099  2007-05 06:10:10Z        3
## 13100  2007-06 13:34:45Z        3
## 13101  2007-06 20:55:59Z        3
## 13102  2007-06 13:44:48Z        3
## 13103  2007-06 13:47:08Z        3
## 13104  2007-06 13:47:21Z        3
## 13105  2007-06 13:51:02Z        3
## 13106  2007-06 20:26:24Z        3
## 13107  2007-06 23:48:48Z        3
## 13108  2007-06 00:45:04Z        3
## 13109  2007-06 13:24:43Z        3
## 13110  2007-06 16:25:15Z        3
## 13111  2007-06 21:30:58Z        3
## 13112  2007-06 21:33:39Z        3
## 13113  2007-07 06:20:48Z        3
## 13114  2007-07 06:36:38Z        3
## 13115  2007-07 02:48:08Z        3
## 13116  2007-07 21:26:30Z        3
## 13117  2007-07 13:42:16Z        3
## 13118  2007-07 07:04:33Z        3
## 13119  2007-08 03:36:16Z        3
## 13120  2007-08 03:36:49Z        3
## 13121  2007-08 03:38:01Z        3
## 13122  2007-08 05:44:30Z        3
## 13123  2007-08 05:46:49Z        3
## 13124  2007-08 22:05:59Z        3
## 13125  2007-08 18:27:21Z        3
## 13126  2007-08 06:28:01Z        3
## 13127  2007-08 06:29:52Z        3
## 13128  2007-08 23:18:47Z        3
## 13129  2007-08 23:20:25Z        3
## 13130  2007-08 23:26:11Z        3
## 13131  2007-09 23:37:39Z        3
## 13132  2007-09 18:49:20Z        3
## 13133  2007-09 08:18:16Z        3
## 13134  2007-09 08:18:43Z        3
## 13135  2007-09 09:09:39Z        3
## 13136  2007-10 23:08:54Z        3
## 13137  2007-10 22:50:56Z        3
## 13138  2007-10 20:08:35Z        3
## 13139  2007-10 14:49:43Z        3
## 13140  2007-10 14:50:55Z        3
## 13141  2007-10 19:52:03Z        3
## 13142  2007-10 15:35:28Z        3
## 13143  2007-10 22:32:45Z        3
## 13144  2007-10 04:29:55Z        3
## 13145  2007-10 04:32:46Z        3
## 13146  2007-11 23:55:17Z        3
## 13147  2007-12 22:18:02Z        3
## 13148  2007-12 20:50:21Z        3
## 13149  2007-12 02:11:47Z        3
## 13150  2007-12 01:55:57Z        3
## 13151  2007-12 00:02:14Z        3
## 13152  2002-10 14:57:15Z        3
## 13153  2002-12 05:28:42Z        3
## 13154  2003-06 23:51:55Z        3
## 13155  2004-08 04:59:26Z        3
## 13156  2004-11 00:52:31Z        3
## 13157  2004-11 00:52:48Z        3
## 13158  2004-11 23:58:41Z        3
## 13159  2004-11 03:55:23Z        3
## 13160  2004-12 05:28:30Z        3
## 13161  2005-04 00:40:37Z        3
## 13162  2005-04 02:30:41Z        3
## 13163  2006-03 12:49:13Z        3
## 13164  2006-04 19:26:58Z        3
## 13165  2006-05 03:58:03Z        3
## 13166  2006-12 12:10:38Z        3
## 13167  2007-02 21:56:22Z        3
## 13168  2007-02 08:16:49Z        3
## 13169  2007-04 09:38:01Z        3
## 13170  2007-06 01:23:15Z        3
## 13171  2007-08 21:40:37Z        3
## 13172  2007-09 04:16:51Z        3
## 13173  2007-09 23:56:33Z        3
## 13174  2007-09 13:00:16Z        3
## 13175  2007-10 01:03:25Z        3
## 13176  2007-10 21:15:43Z        3
## 13177  2007-11 13:37:37Z        3
## 13178  2007-11 23:00:17Z        3
## 13179  2007-11 23:03:32Z        3
## 13180  2007-12 01:27:29Z        3
## 13181  2007-12 22:32:53Z        3
## 13182  2007-12 22:37:13Z        3
## 13183  2007-12 18:43:59Z        3
## 13184  2007-12 18:59:43Z        3
## 13185  2007-12 20:53:30Z        3
## 13186  2007-12 22:14:01Z        3
## 13187  2007-12 19:41:30Z        3
## 13188  2002-02 15:43:11Z        4
## 13189  2002-04 05:46:35Z        4
## 13190  2002-08 22:33:39Z        4
## 13191  2001-06 19:08:57Z        4
## 13192  2001-06 23:29:28Z        4
## 13193  2002-09 03:03:35Z        4
## 13194  2002-10 15:31:51Z        4
## 13195  2002-10 15:35:48Z        4
## 13196  2002-11 23:18:45Z        4
## 13197  2002-12 11:36:52Z        4
## 13198  2002-12 09:39:42Z        4
## 13199  2003-02 21:17:38Z        4
## 13200  2003-02 15:07:49Z        4
## 13201  2003-03 22:41:04Z        4
## 13202  2003-03 22:48:57Z        4
## 13203  2003-03 10:15:22Z        4
## 13204  2003-03 23:47:34Z        4
## 13205  2003-03 23:48:38Z        4
## 13206  2003-04 23:24:34Z        4
## 13207  2003-06 18:59:42Z        4
## 13208  2003-07 11:57:14Z        4
## 13209  2003-08 17:44:02Z        4
## 13210  2003-09 20:13:19Z        4
## 13211  2003-09 20:13:53Z        4
## 13212  2003-10 09:17:11Z        4
## 13213  2003-10 21:56:45Z        4
## 13214  2003-10 05:26:54Z        4
## 13215  2003-10 21:15:06Z        4
## 13216  2003-11 10:42:39Z        4
## 13217  2003-12 11:51:21Z        4
## 13218  2003-12 13:20:04Z        4
## 13219  2003-12 14:37:56Z        4
## 13220  2003-12 03:15:26Z        4
## 13221  2003-12 04:12:52Z        4
## 13222  2003-12 19:55:32Z        4
## 13223  2003-12 07:45:43Z        4
## 13224  2003-12 07:51:49Z        4
## 13225  2003-12 07:55:13Z        4
## 13226  2004-02 22:28:03Z        4
## 13227  2004-02 21:13:18Z        4
## 13228  2004-02 23:53:36Z        4
## 13229  2004-02 18:13:47Z        4
## 13230  2004-02 18:15:39Z        4
## 13231  2004-02 14:57:47Z        4
## 13232  2004-02 15:07:13Z        4
## 13233  2004-02 15:26:47Z        4
## 13234  2004-02 12:41:38Z        4
## 13235  2004-02 00:44:23Z        4
## 13236  2004-03 08:49:32Z        4
## 13237  2004-03 07:00:01Z        4
## 13238  2004-03 11:01:51Z        4
## 13239  2004-03 16:22:59Z        4
## 13240  2004-04 00:41:19Z        4
## 13241  2004-04 16:10:07Z        4
## 13242  2004-04 15:42:46Z        4
## 13243  2004-04 19:51:30Z        4
## 13244  2004-04 20:15:01Z        4
## 13245  2004-04 07:11:44Z        4
## 13246  2004-05 04:18:42Z        4
## 13247  2004-06 03:23:53Z        4
## 13248  2004-06 16:19:35Z        4
## 13249  2004-07 11:02:05Z        4
## 13250  2004-07 07:26:44Z        4
## 13251  2004-08 08:44:09Z        4
## 13252  2004-08 11:29:08Z        4
## 13253  2004-09 06:18:03Z        4
## 13254  2004-09 18:12:01Z        4
## 13255  2004-10 21:55:34Z        4
## 13256  2004-10 14:04:26Z        4
## 13257  2004-10 01:10:25Z        4
## 13258  2004-10 01:56:50Z        4
## 13259  2004-11 12:05:52Z        4
## 13260  2004-11 18:35:43Z        4
## 13261  2004-11 18:47:04Z        4
## 13262  2004-11 18:18:26Z        4
## 13263  2004-12 15:22:36Z        4
## 13264  2004-12 19:36:00Z        4
## 13265  2004-12 00:36:22Z        4
## 13266  2005-01 10:01:12Z        4
## 13267  2005-01 16:49:37Z        4
## 13268  2005-01 22:00:47Z        4
## 13269  2005-01 20:52:26Z        4
## 13270  2005-02 02:37:52Z        4
## 13271  2005-02 02:59:20Z        4
## 13272  2005-02 03:00:52Z        4
## 13273  2005-02 12:06:16Z        4
## 13274  2005-02 12:15:11Z        4
## 13275  2005-02 12:19:06Z        4
## 13276  2005-02 14:27:22Z        4
## 13277  2005-02 11:30:07Z        4
## 13278  2005-02 18:11:49Z        4
## 13279  2005-02 21:31:25Z        4
## 13280  2005-02 11:15:41Z        4
## 13281  2005-02 11:17:14Z        4
## 13282  2005-02 12:37:14Z        4
## 13283  2005-02 12:41:05Z        4
## 13284  2005-02 10:50:27Z        4
## 13285  2005-02 10:51:13Z        4
## 13286  2005-02 11:14:56Z        4
## 13287  2005-02 13:04:37Z        4
## 13288  2005-02 19:12:27Z        4
## 13289  2005-02 02:13:26Z        4
## 13290  2005-02 07:14:55Z        4
## 13291  2005-02 02:48:25Z        4
## 13292  2005-02 02:48:43Z        4
## 13293  2005-02 10:22:25Z        4
## 13294  2005-03 21:01:42Z        4
## 13295  2005-03 00:55:02Z        4
## 13296  2005-03 21:54:15Z        4
## 13297  2005-04 00:02:01Z        4
## 13298  2005-04 15:53:26Z        4
## 13299  2005-05 12:06:50Z        4
## 13300  2005-05 10:06:12Z        4
## 13301  2005-05 00:11:38Z        4
## 13302  2005-05 19:02:25Z        4
## 13303  2005-05 19:02:51Z        4
## 13304  2005-05 14:13:11Z        4
## 13305  2005-05 17:58:30Z        4
## 13306  2005-06 15:26:15Z        4
## 13307  2005-06 15:29:38Z        4
## 13308  2005-06 04:17:21Z        4
## 13309  2005-06 09:20:10Z        4
## 13310  2005-06 19:19:58Z        4
## 13311  2005-06 18:37:07Z        4
## 13312  2005-06 12:33:21Z        4
## 13313  2005-06 12:36:24Z        4
## 13314  2005-06 12:38:04Z        4
## 13315  2005-06 12:40:52Z        4
## 13316  2005-06 13:50:35Z        4
## 13317  2005-06 11:52:06Z        4
## 13318  2005-06 19:12:22Z        4
## 13319  2005-07 11:56:37Z        4
## 13320  2005-07 22:31:17Z        4
## 13321  2005-07 11:27:25Z        4
## 13322  2005-07 09:36:38Z        4
## 13323  2005-08 09:42:45Z        4
## 13324  2005-08 23:26:06Z        4
## 13325  2005-08 08:58:02Z        4
## 13326  2005-09 07:58:33Z        4
## 13327  2005-09 22:36:02Z        4
## 13328  2005-09 00:55:20Z        4
## 13329  2005-09 05:34:55Z        4
## 13330  2005-09 01:51:54Z        4
## 13331  2005-09 01:52:58Z        4
## 13332  2005-10 16:30:32Z        4
## 13333  2005-10 17:18:45Z        4
## 13334  2005-11 04:20:10Z        4
## 13335  2005-11 07:58:34Z        4
## 13336  2005-11 18:58:46Z        4
## 13337  2005-11 22:12:22Z        4
## 13338  2005-11 00:48:26Z        4
## 13339  2005-11 22:11:35Z        4
## 13340  2005-11 23:52:25Z        4
## 13341  2005-11 23:53:13Z        4
## 13342  2005-11 10:19:04Z        4
## 13343  2005-11 07:24:57Z        4
## 13344  2005-11 07:27:18Z        4
## 13345  2005-12 14:44:37Z        4
## 13346  2005-12 16:39:25Z        4
## 13347  2005-12 06:12:04Z        4
## 13348  2005-12 00:52:05Z        4
## 13349  2005-12 19:07:07Z        4
## 13350  2005-12 16:28:04Z        4
## 13351  2005-12 10:22:34Z        4
## 13352  2005-12 13:56:48Z        4
## 13353  2005-12 21:51:18Z        4
## 13354  2005-12 19:39:52Z        4
## 13355  2006-01 18:51:03Z        4
## 13356  2006-01 20:59:51Z        4
## 13357  2006-01 18:14:58Z        4
## 13358  2006-01 06:49:31Z        4
## 13359  2006-01 19:39:36Z        4
## 13360  2006-01 19:55:25Z        4
## 13361  2006-01 19:55:46Z        4
## 13362  2006-01 19:58:39Z        4
## 13363  2006-01 19:59:11Z        4
## 13364  2006-01 20:03:35Z        4
## 13365  2006-01 20:04:20Z        4
## 13366  2006-01 15:21:32Z        4
## 13367  2006-01 15:23:05Z        4
## 13368  2006-01 15:23:57Z        4
## 13369  2006-01 21:29:52Z        4
## 13370  2006-01 00:00:24Z        4
## 13371  2006-01 00:20:48Z        4
## 13372  2006-01 00:29:05Z        4
## 13373  2006-01 02:14:33Z        4
## 13374  2006-01 02:16:23Z        4
## 13375  2006-01 02:17:00Z        4
## 13376  2006-01 13:57:20Z        4
## 13377  2006-01 13:58:11Z        4
## 13378  2006-01 13:58:39Z        4
## 13379  2006-01 13:59:40Z        4
## 13380  2006-01 14:00:10Z        4
## 13381  2006-01 17:48:52Z        4
## 13382  2006-01 19:39:23Z        4
## 13383  2006-01 20:08:20Z        4
## 13384  2006-01 20:09:38Z        4
## 13385  2006-01 20:10:12Z        4
## 13386  2006-02 01:14:00Z        4
## 13387  2006-02 01:15:55Z        4
## 13388  2006-02 01:35:22Z        4
## 13389  2006-02 01:36:42Z        4
## 13390  2006-02 01:45:52Z        4
## 13391  2006-02 11:26:10Z        4
## 13392  2006-02 11:26:31Z        4
## 13393  2006-02 19:53:58Z        4
## 13394  2006-02 22:05:12Z        4
## 13395  2006-02 01:43:24Z        4
## 13396  2006-02 01:45:34Z        4
## 13397  2006-02 09:58:25Z        4
## 13398  2006-02 05:24:57Z        4
## 13399  2006-02 05:27:52Z        4
## 13400  2006-02 05:28:24Z        4
## 13401  2006-02 11:50:01Z        4
## 13402  2006-02 11:50:49Z        4
## 13403  2006-02 20:05:20Z        4
## 13404  2006-02 20:10:12Z        4
## 13405  2006-02 20:35:36Z        4
## 13406  2006-02 20:36:46Z        4
## 13407  2006-02 13:23:08Z        4
## 13408  2006-02 18:17:31Z        4
## 13409  2006-02 00:56:08Z        4
## 13410  2006-02 00:56:37Z        4
## 13411  2006-02 02:50:52Z        4
## 13412  2006-02 21:05:34Z        4
## 13413  2006-02 21:07:57Z        4
## 13414  2006-02 22:00:49Z        4
## 13415  2006-02 22:44:19Z        4
## 13416  2006-02 20:59:18Z        4
## 13417  2006-02 21:00:30Z        4
## 13418  2006-02 21:03:29Z        4
## 13419  2006-02 04:04:23Z        4
## 13420  2006-03 00:49:57Z        4
## 13421  2006-03 03:32:59Z        4
## 13422  2006-03 09:45:01Z        4
## 13423  2006-03 12:23:21Z        4
## 13424  2006-03 23:16:23Z        4
## 13425  2006-03 09:06:05Z        4
## 13426  2006-03 09:07:19Z        4
## 13427  2006-03 09:08:30Z        4
## 13428  2006-03 21:27:11Z        4
## 13429  2006-03 21:28:04Z        4
## 13430  2006-03 21:30:06Z        4
## 13431  2006-03 21:34:03Z        4
## 13432  2006-03 19:54:44Z        4
## 13433  2006-03 20:47:45Z        4
## 13434  2006-03 03:43:04Z        4
## 13435  2006-03 10:20:19Z        4
## 13436  2006-03 21:44:30Z        4
## 13437  2006-03 21:44:17Z        4
## 13438  2006-03 01:30:33Z        4
## 13439  2006-03 01:32:37Z        4
## 13440  2006-03 18:35:38Z        4
## 13441  2006-03 18:38:25Z        4
## 13442  2006-03 09:02:27Z        4
## 13443  2006-04 06:42:40Z        4
## 13444  2006-04 23:05:39Z        4
## 13445  2006-04 20:30:43Z        4
## 13446  2006-04 20:00:11Z        4
## 13447  2006-04 20:02:34Z        4
## 13448  2006-04 20:02:56Z        4
## 13449  2006-04 04:00:22Z        4
## 13450  2006-04 16:52:42Z        4
## 13451  2006-04 18:13:32Z        4
## 13452  2006-04 14:39:53Z        4
## 13453  2006-04 14:47:44Z        4
## 13454  2006-04 14:55:33Z        4
## 13455  2006-05 08:02:17Z        4
## 13456  2006-05 02:51:35Z        4
## 13457  2006-05 18:34:39Z        4
## 13458  2006-05 22:29:55Z        4
## 13459  2006-05 18:20:27Z        4
## 13460  2006-05 18:21:34Z        4
## 13461  2006-05 18:23:18Z        4
## 13462  2006-05 18:25:51Z        4
## 13463  2006-05 18:32:42Z        4
## 13464  2006-05 06:40:39Z        4
## 13465  2006-05 07:44:12Z        4
## 13466  2006-05 15:52:46Z        4
## 13467  2006-05 16:03:53Z        4
## 13468  2006-05 04:27:47Z        4
## 13469  2006-05 11:14:17Z        4
## 13470  2006-05 21:04:19Z        4
## 13471  2006-05 21:04:56Z        4
## 13472  2006-05 08:30:01Z        4
## 13473  2006-05 21:30:15Z        4
## 13474  2006-05 00:38:45Z        4
## 13475  2006-05 02:21:22Z        4
## 13476  2006-05 22:15:44Z        4
## 13477  2006-05 22:16:16Z        4
## 13478  2006-06 20:14:52Z        4
## 13479  2006-06 20:16:01Z        4
## 13480  2006-06 10:36:01Z        4
## 13481  2006-06 14:14:59Z        4
## 13482  2006-06 12:41:03Z        4
## 13483  2006-06 16:30:03Z        4
## 13484  2006-06 02:55:57Z        4
## 13485  2006-06 03:43:19Z        4
## 13486  2006-06 18:01:53Z        4
## 13487  2006-06 04:26:07Z        4
## 13488  2006-06 15:31:03Z        4
## 13489  2006-06 15:35:01Z        4
## 13490  2006-06 17:11:01Z        4
## 13491  2006-07 03:35:02Z        4
## 13492  2006-07 06:17:45Z        4
## 13493  2006-07 20:01:50Z        4
## 13494  2006-07 05:06:53Z        4
## 13495  2006-07 14:47:02Z        4
## 13496  2006-07 11:40:51Z        4
## 13497  2006-07 11:41:47Z        4
## 13498  2006-07 01:09:11Z        4
## 13499  2006-07 02:06:37Z        4
## 13500  2006-07 07:19:35Z        4
## 13501  2006-07 05:59:42Z        4
## 13502  2006-08 06:03:34Z        4
## 13503  2006-08 02:05:24Z        4
## 13504  2006-08 12:41:17Z        4
## 13505  2006-08 23:43:59Z        4
## 13506  2006-08 17:30:24Z        4
## 13507  2006-08 21:14:43Z        4
## 13508  2006-08 03:05:04Z        4
## 13509  2006-09 22:53:24Z        4
## 13510  2006-09 17:44:44Z        4
## 13511  2006-09 17:45:03Z        4
## 13512  2006-09 14:59:56Z        4
## 13513  2006-09 15:00:25Z        4
## 13514  2006-09 15:03:00Z        4
## 13515  2006-09 15:03:24Z        4
## 13516  2006-09 06:46:56Z        4
## 13517  2006-09 16:36:35Z        4
## 13518  2006-09 18:14:23Z        4
## 13519  2006-09 18:16:21Z        4
## 13520  2006-09 18:16:24Z        4
## 13521  2006-09 18:17:03Z        4
## 13522  2006-09 18:17:37Z        4
## 13523  2006-09 18:25:33Z        4
## 13524  2006-09 18:26:24Z        4
## 13525  2006-09 20:28:37Z        4
## 13526  2006-09 03:21:34Z        4
## 13527  2006-09 20:36:04Z        4
## 13528  2006-09 02:49:03Z        4
## 13529  2006-09 18:11:44Z        4
## 13530  2006-09 04:52:05Z        4
## 13531  2006-09 18:28:04Z        4
## 13532  2006-09 16:03:24Z        4
## 13533  2006-09 16:04:14Z        4
## 13534  2006-09 23:09:31Z        4
## 13535  2006-09 23:47:28Z        4
## 13536  2006-10 05:18:42Z        4
## 13537  2006-10 13:58:19Z        4
## 13538  2006-10 20:24:51Z        4
## 13539  2006-10 14:19:13Z        4
## 13540  2006-10 14:25:42Z        4
## 13541  2006-10 03:38:30Z        4
## 13542  2006-10 17:29:24Z        4
## 13543  2006-10 00:35:29Z        4
## 13544  2006-10 17:08:47Z        4
## 13545  2006-11 22:44:05Z        4
## 13546  2006-11 07:30:00Z        4
## 13547  2006-11 23:09:09Z        4
## 13548  2006-11 23:09:18Z        4
## 13549  2006-11 05:13:49Z        4
## 13550  2006-11 05:16:35Z        4
## 13551  2006-11 18:12:35Z        4
## 13552  2006-11 03:38:14Z        4
## 13553  2006-11 08:41:21Z        4
## 13554  2006-11 07:45:43Z        4
## 13555  2006-11 07:47:24Z        4
## 13556  2006-11 07:47:52Z        4
## 13557  2006-11 01:08:38Z        4
## 13558  2006-11 16:20:03Z        4
## 13559  2006-11 16:20:54Z        4
## 13560  2006-11 16:21:41Z        4
## 13561  2006-11 16:22:27Z        4
## 13562  2006-11 16:23:37Z        4
## 13563  2006-11 16:24:51Z        4
## 13564  2006-11 16:26:06Z        4
## 13565  2006-11 01:09:22Z        4
## 13566  2006-11 02:06:40Z        4
## 13567  2006-11 16:55:40Z        4
## 13568  2006-11 16:56:21Z        4
## 13569  2006-11 20:56:03Z        4
## 13570  2006-11 22:49:09Z        4
## 13571  2006-11 05:44:41Z        4
## 13572  2006-11 19:40:49Z        4
## 13573  2006-11 00:32:52Z        4
## 13574  2006-11 06:02:48Z        4
## 13575  2006-11 22:51:54Z        4
## 13576  2006-11 22:52:16Z        4
## 13577  2006-12 05:35:42Z        4
## 13578  2006-12 06:05:56Z        4
## 13579  2006-12 06:18:18Z        4
## 13580  2006-12 00:04:00Z        4
## 13581  2006-12 16:53:54Z        4
## 13582  2006-12 22:53:39Z        4
## 13583  2006-12 02:08:11Z        4
## 13584  2006-12 02:10:43Z        4
## 13585  2006-12 17:45:50Z        4
## 13586  2006-12 20:58:06Z        4
## 13587  2006-12 20:06:38Z        4
## 13588  2006-12 22:14:31Z        4
## 13589  2006-12 22:39:07Z        4
## 13590  2006-12 02:32:45Z        4
## 13591  2006-12 18:31:04Z        4
## 13592  2006-12 00:20:41Z        4
## 13593  2006-12 02:13:59Z        4
## 13594  2006-12 04:42:36Z        4
## 13595  2006-12 22:23:02Z        4
## 13596  2006-12 22:24:05Z        4
## 13597  2006-12 22:35:18Z        4
## 13598  2006-12 22:43:41Z        4
## 13599  2006-12 22:45:38Z        4
## 13600  2006-12 12:35:51Z        4
## 13601  2006-12 12:40:05Z        4
## 13602  2006-12 18:36:08Z        4
## 13603  2006-12 18:42:38Z        4
## 13604  2006-12 01:07:09Z        4
## 13605  2006-12 21:00:47Z        4
## 13606  2006-12 07:19:49Z        4
## 13607  2006-12 19:21:50Z        4
## 13608  2006-12 22:28:53Z        4
## 13609  2006-12 05:23:05Z        4
## 13610  2006-12 05:40:41Z        4
## 13611  2006-12 17:59:20Z        4
## 13612  2006-12 23:47:42Z        4
## 13613  2006-12 23:47:52Z        4
## 13614  2007-01 17:14:21Z        4
## 13615  2007-01 21:10:26Z        4
## 13616  2007-01 21:10:53Z        4
## 13617  2007-01 01:29:47Z        4
## 13618  2007-01 05:45:02Z        4
## 13619  2007-01 15:47:17Z        4
## 13620  2007-01 19:51:41Z        4
## 13621  2007-01 19:54:26Z        4
## 13622  2007-01 21:11:21Z        4
## 13623  2007-01 20:19:11Z        4
## 13624  2007-01 23:49:57Z        4
## 13625  2007-01 01:10:06Z        4
## 13626  2007-01 03:28:53Z        4
## 13627  2007-01 15:51:43Z        4
## 13628  2007-01 16:08:24Z        4
## 13629  2007-01 17:09:56Z        4
## 13630  2007-01 17:39:07Z        4
## 13631  2007-01 20:50:00Z        4
## 13632  2007-01 09:16:23Z        4
## 13633  2007-01 23:42:09Z        4
## 13634  2007-01 00:05:48Z        4
## 13635  2007-01 23:04:43Z        4
## 13636  2007-01 00:20:08Z        4
## 13637  2007-01 17:45:35Z        4
## 13638  2007-01 06:15:03Z        4
## 13639  2007-01 04:17:20Z        4
## 13640  2007-01 04:25:38Z        4
## 13641  2007-02 00:32:19Z        4
## 13642  2007-02 00:45:15Z        4
## 13643  2007-02 00:46:55Z        4
## 13644  2007-02 01:11:41Z        4
## 13645  2007-02 16:19:47Z        4
## 13646  2007-02 20:04:52Z        4
## 13647  2007-02 04:38:34Z        4
## 13648  2007-02 21:07:04Z        4
## 13649  2007-02 21:07:34Z        4
## 13650  2007-02 23:05:21Z        4
## 13651  2007-02 12:38:38Z        4
## 13652  2007-02 15:11:53Z        4
## 13653  2007-02 15:27:15Z        4
## 13654  2007-02 18:08:08Z        4
## 13655  2007-02 12:11:09Z        4
## 13656  2007-02 14:50:25Z        4
## 13657  2007-02 01:28:01Z        4
## 13658  2007-02 02:22:10Z        4
## 13659  2007-02 01:10:12Z        4
## 13660  2007-02 09:56:32Z        4
## 13661  2007-02 22:48:08Z        4
## 13662  2007-02 04:36:44Z        4
## 13663  2007-02 01:49:03Z        4
## 13664  2007-02 01:59:57Z        4
## 13665  2007-02 02:19:14Z        4
## 13666  2007-02 22:07:12Z        4
## 13667  2007-02 01:01:31Z        4
## 13668  2007-02 20:15:48Z        4
## 13669  2007-02 04:58:23Z        4
## 13670  2007-02 23:55:10Z        4
## 13671  2007-02 00:02:57Z        4
## 13672  2007-02 00:03:40Z        4
## 13673  2007-02 00:05:00Z        4
## 13674  2007-02 16:30:25Z        4
## 13675  2007-02 16:33:53Z        4
## 13676  2007-02 16:41:48Z        4
## 13677  2007-02 16:43:29Z        4
## 13678  2007-02 18:50:28Z        4
## 13679  2007-02 18:52:28Z        4
## 13680  2007-02 18:57:35Z        4
## 13681  2007-02 19:48:09Z        4
## 13682  2007-02 19:48:55Z        4
## 13683  2007-02 19:53:23Z        4
## 13684  2007-02 19:54:49Z        4
## 13685  2007-02 23:08:04Z        4
## 13686  2007-02 23:09:42Z        4
## 13687  2007-02 01:22:19Z        4
## 13688  2007-03 15:49:47Z        4
## 13689  2007-03 15:51:31Z        4
## 13690  2007-03 16:49:18Z        4
## 13691  2007-03 16:50:04Z        4
## 13692  2007-03 22:21:40Z        4
## 13693  2007-03 22:22:14Z        4
## 13694  2007-03 22:22:39Z        4
## 13695  2007-03 01:41:54Z        4
## 13696  2007-03 01:42:10Z        4
## 13697  2007-03 21:29:48Z        4
## 13698  2007-03 21:30:53Z        4
## 13699  2007-03 01:52:14Z        4
## 13700  2007-03 18:35:28Z        4
## 13701  2007-03 18:36:24Z        4
## 13702  2007-03 18:37:52Z        4
## 13703  2007-03 18:38:36Z        4
## 13704  2007-03 17:25:08Z        4
## 13705  2007-03 17:25:11Z        4
## 13706  2007-03 00:50:56Z        4
## 13707  2007-03 00:51:26Z        4
## 13708  2007-03 13:24:47Z        4
## 13709  2007-03 06:17:18Z        4
## 13710  2007-03 18:04:27Z        4
## 13711  2007-03 03:17:26Z        4
## 13712  2007-03 07:54:33Z        4
## 13713  2007-03 21:51:40Z        4
## 13714  2007-04 19:49:03Z        4
## 13715  2007-04 12:08:07Z        4
## 13716  2007-04 01:57:12Z        4
## 13717  2007-04 01:57:40Z        4
## 13718  2007-04 23:25:53Z        4
## 13719  2007-04 18:05:19Z        4
## 13720  2007-04 18:49:43Z        4
## 13721  2007-04 20:43:13Z        4
## 13722  2007-04 20:43:28Z        4
## 13723  2007-04 18:48:45Z        4
## 13724  2007-04 01:20:23Z        4
## 13725  2007-04 12:19:35Z        4
## 13726  2007-04 12:20:04Z        4
## 13727  2007-04 21:29:15Z        4
## 13728  2007-04 06:54:24Z        4
## 13729  2007-05 11:20:59Z        4
## 13730  2007-05 19:09:34Z        4
## 13731  2007-05 19:09:51Z        4
## 13732  2007-05 20:24:42Z        4
## 13733  2007-05 20:25:18Z        4
## 13734  2007-05 17:47:30Z        4
## 13735  2007-05 17:48:15Z        4
## 13736  2007-05 22:00:22Z        4
## 13737  2007-05 20:33:00Z        4
## 13738  2007-05 17:23:42Z        4
## 13739  2007-05 17:25:19Z        4
## 13740  2007-05 17:28:35Z        4
## 13741  2007-05 10:34:13Z        4
## 13742  2007-06 20:21:04Z        4
## 13743  2007-06 06:44:59Z        4
## 13744  2007-06 03:30:37Z        4
## 13745  2007-06 03:36:00Z        4
## 13746  2007-06 03:37:04Z        4
## 13747  2007-06 03:40:56Z        4
## 13748  2007-06 07:16:31Z        4
## 13749  2007-06 07:20:32Z        4
## 13750  2007-06 22:53:54Z        4
## 13751  2007-06 02:40:38Z        4
## 13752  2007-06 02:42:02Z        4
## 13753  2007-06 23:50:57Z        4
## 13754  2007-06 23:51:24Z        4
## 13755  2007-06 11:15:19Z        4
## 13756  2007-06 22:07:34Z        4
## 13757  2007-06 22:07:42Z        4
## 13758  2007-06 22:08:55Z        4
## 13759  2007-06 22:09:04Z        4
## 13760  2007-06 19:38:21Z        4
## 13761  2007-06 18:00:09Z        4
## 13762  2007-06 15:24:14Z        4
## 13763  2007-06 06:38:02Z        4
## 13764  2007-07 23:53:38Z        4
## 13765  2007-07 10:08:28Z        4
## 13766  2007-07 10:08:54Z        4
## 13767  2007-07 10:09:45Z        4
## 13768  2007-07 10:13:59Z        4
## 13769  2007-07 10:14:45Z        4
## 13770  2007-07 10:15:08Z        4
## 13771  2007-07 10:16:43Z        4
## 13772  2007-07 07:21:53Z        4
## 13773  2007-07 11:25:05Z        4
## 13774  2007-07 13:16:36Z        4
## 13775  2007-07 02:22:42Z        4
## 13776  2007-07 03:35:53Z        4
## 13777  2007-07 03:36:09Z        4
## 13778  2007-07 14:19:04Z        4
## 13779  2007-07 19:54:31Z        4
## 13780  2007-07 19:55:40Z        4
## 13781  2007-08 12:07:05Z        4
## 13782  2007-08 20:30:09Z        4
## 13783  2007-08 04:32:12Z        4
## 13784  2007-08 14:05:40Z        4
## 13785  2007-08 23:52:03Z        4
## 13786  2007-08 01:12:22Z        4
## 13787  2007-08 02:42:19Z        4
## 13788  2007-08 18:44:23Z        4
## 13789  2007-09 20:26:52Z        4
## 13790  2007-09 22:49:39Z        4
## 13791  2007-09 23:51:50Z        4
## 13792  2007-10 03:29:25Z        4
## 13793  2007-10 16:29:55Z        4
## 13794  2007-10 16:30:14Z        4
## 13795  2007-10 17:11:14Z        4
## 13796  2007-10 15:38:15Z        4
## 13797  2007-10 17:16:07Z        4
## 13798  2007-10 07:36:53Z        4
## 13799  2007-10 17:54:05Z        4
## 13800  2007-10 17:54:44Z        4
## 13801  2007-10 00:12:40Z        4
## 13802  2007-10 00:13:04Z        4
## 13803  2007-10 22:18:27Z        4
## 13804  2007-10 14:41:27Z        4
## 13805  2007-10 14:42:48Z        4
## 13806  2007-10 14:44:52Z        4
## 13807  2007-10 18:52:41Z        4
## 13808  2007-10 23:05:58Z        4
## 13809  2007-10 23:06:06Z        4
## 13810  2007-10 13:47:22Z        4
## 13811  2007-10 00:27:23Z        4
## 13812  2007-10 22:29:11Z        4
## 13813  2007-10 00:05:12Z        4
## 13814  2007-10 00:18:45Z        4
## 13815  2007-10 00:46:56Z        4
## 13816  2007-10 00:47:02Z        4
## 13817  2007-10 00:49:04Z        4
## 13818  2007-10 15:20:07Z        4
## 13819  2007-10 16:05:45Z        4
## 13820  2007-10 17:45:06Z        4
## 13821  2007-10 01:00:58Z        4
## 13822  2007-10 02:01:10Z        4
## 13823  2007-10 02:03:36Z        4
## 13824  2007-10 02:13:43Z        4
## 13825  2007-10 21:32:26Z        4
## 13826  2007-10 20:47:09Z        4
## 13827  2007-11 19:45:53Z        4
## 13828  2007-11 19:52:52Z        4
## 13829  2007-11 21:10:15Z        4
## 13830  2007-11 16:00:16Z        4
## 13831  2007-11 19:02:46Z        4
## 13832  2007-11 23:27:43Z        4
## 13833  2007-11 07:27:05Z        4
## 13834  2007-11 22:37:41Z        4
## 13835  2007-11 22:39:42Z        4
## 13836  2007-11 03:04:24Z        4
## 13837  2007-11 14:16:23Z        4
## 13838  2007-11 20:48:33Z        4
## 13839  2007-11 17:46:27Z        4
## 13840  2007-11 18:29:22Z        4
## 13841  2007-11 18:31:53Z        4
## 13842  2007-11 18:33:01Z        4
## 13843  2007-11 18:33:14Z        4
## 13844  2007-11 23:53:43Z        4
## 13845  2007-11 23:54:03Z        4
## 13846  2007-11 23:54:24Z        4
## 13847  2007-11 23:57:41Z        4
## 13848  2007-11 00:07:10Z        4
## 13849  2007-11 03:47:18Z        4
## 13850  2007-11 20:28:29Z        4
## 13851  2007-11 06:01:25Z        4
## 13852  2007-11 14:39:41Z        4
## 13853  2007-11 14:43:28Z        4
## 13854  2007-11 22:46:53Z        4
## 13855  2007-11 17:36:23Z        4
## 13856  2007-11 17:37:38Z        4
## 13857  2007-11 19:47:56Z        4
## 13858  2007-12 07:29:45Z        4
## 13859  2007-12 02:47:14Z        4
## 13860  2007-12 07:02:17Z        4
## 13861  2007-12 20:29:30Z        4
## 13862  2007-12 00:24:42Z        4
## 13863  2007-12 20:39:00Z        4
## 13864  2007-12 18:32:37Z        4
## 13865  2007-12 18:32:44Z        4
## 13866  2007-12 17:34:51Z        4
## 13867  2007-12 02:04:46Z        4
## 13868  2007-12 18:17:12Z        4
## 13869  2007-12 18:19:42Z        4
## 13870  2007-12 18:21:05Z        4
## 13871  2007-12 18:21:49Z        4
## 13872  2007-12 18:22:07Z        4
## 13873  2007-12 18:24:46Z        4
## 13874  2007-12 18:25:19Z        4
## 13875  2007-12 18:26:16Z        4
## 13876  2007-12 18:27:07Z        4
## 13877  2007-12 18:28:23Z        4
## 13878  2007-12 18:28:47Z        4
## 13879  2007-12 18:28:50Z        4
## 13880  2007-12 18:29:26Z        4
## 13881  2007-12 18:29:44Z        4
## 13882  2007-12 18:30:39Z        4
## 13883  2007-12 18:31:17Z        4
## 13884  2007-12 18:31:28Z        4
## 13885  2007-12 18:31:33Z        4
## 13886  2007-12 18:32:05Z        4
## 13887  2007-12 06:18:07Z        4
## 13888  2007-12 06:19:14Z        4
## 13889  2007-12 06:19:24Z        4
## 13890  2007-12 06:20:34Z        4
## 13891  2007-12 13:19:12Z        4
## 13892  2008-01 02:23:37Z        4
## 13893  2002-10 15:04:48Z        5
## 13894  2002-12 06:46:18Z        5
## 13895  2004-08 05:31:08Z        5
## 13896  2004-11 21:16:37Z        5
## 13897  2004-11 08:24:29Z        5
## 13898  2004-11 00:12:58Z        5
## 13899  2004-11 03:14:17Z        5
## 13900  2004-12 10:21:35Z        5
## 13901  2005-04 01:59:05Z        5
## 13902  2005-06 05:46:52Z        5
## 13903  2005-06 05:47:08Z        5
## 13904  2005-06 05:59:42Z        5
## 13905  2005-06 06:02:16Z        5
## 13906  2005-06 15:51:29Z        5
## 13907  2005-10 13:28:28Z        5
## 13908  2006-01 16:24:59Z        5
## 13909  2006-01 16:27:09Z        5
## 13910  2006-01 16:27:34Z        5
## 13911  2006-01 16:28:03Z        5
## 13912  2006-01 16:46:00Z        5
## 13913  2006-03 22:24:20Z        5
## 13914  2006-03 21:37:55Z        5
## 13915  2006-03 18:39:35Z        5
## 13916  2006-04 20:00:55Z        5
## 13917  2006-05 12:09:35Z        5
## 13918  2006-05 23:40:38Z        5
## 13919  2007-01 16:44:12Z        5
## 13920  2007-01 16:54:28Z        5
## 13921  2007-01 17:02:03Z        5
## 13922  2007-01 17:02:19Z        5
## 13923  2007-03 07:56:48Z        5
## 13924  2007-03 14:17:54Z        5
## 13925  2007-03 14:28:20Z        5
## 13926  2007-03 14:30:22Z        5
## 13927  2007-03 14:33:02Z        5
## 13928  2007-03 14:34:32Z        5
## 13929  2007-03 14:36:43Z        5
## 13930  2007-03 14:38:10Z        5
## 13931  2007-03 14:39:59Z        5
## 13932  2007-03 14:48:52Z        5
## 13933  2007-04 14:56:29Z        5
## 13934  2007-04 15:08:05Z        5
## 13935  2007-06 14:36:19Z        5
## 13936  2007-08 15:55:59Z        5
## 13937  2007-08 15:56:33Z        5
## 13938  2007-09 00:32:12Z        5
## 13939  2007-10 01:46:59Z        5
## 13940  2007-10 00:44:35Z        5
## 13941  2007-10 04:16:25Z        5
## 13942  2007-11 19:13:27Z        5
## 13943  2007-12 03:45:04Z        5
## 13944  2007-12 02:17:46Z        5
## 13945  2002-02 15:51:15Z        6
## 13946  2001-06 12:37:40Z        6
## 13947  2001-08 09:46:45Z        6
## 13948  2002-06 09:35:15Z        6
## 13949  2003-05 01:14:03Z        6
## 13950  2003-06 07:46:44Z        6
## 13951  2003-06 07:46:57Z        6
## 13952  2004-02 18:31:50Z        6
## 13953  2004-02 18:37:17Z        6
## 13954  2004-11 16:51:14Z        6
## 13955  2004-12 21:54:53Z        6
## 13956  2004-12 21:55:53Z        6
## 13957  2004-12 21:56:23Z        6
## 13958  2005-01 04:09:20Z        6
## 13959  2005-01 19:10:19Z        6
## 13960  2005-01 00:37:04Z        6
## 13961  2005-08 10:27:40Z        6
## 13962  2005-10 08:37:03Z        6
## 13963  2005-10 08:37:10Z        6
## 13964  2005-10 08:37:24Z        6
## 13965  2005-10 17:48:43Z        6
## 13966  2005-10 03:26:03Z        6
## 13967  2005-10 03:26:32Z        6
## 13968  2005-10 19:02:44Z        6
## 13969  2005-10 00:12:17Z        6
## 13970  2005-10 00:14:12Z        6
## 13971  2005-10 07:37:33Z        6
## 13972  2005-10 09:20:26Z        6
## 13973  2005-10 09:47:17Z        6
## 13974  2005-10 15:01:22Z        6
## 13975  2005-12 17:09:26Z        6
## 13976  2005-12 01:42:27Z        6
## 13977  2005-12 02:06:33Z        6
## 13978  2005-12 12:34:16Z        6
## 13979  2006-01 14:06:41Z        6
## 13980  2006-01 14:17:56Z        6
## 13981  2006-01 14:24:19Z        6
## 13982  2006-01 14:28:59Z        6
## 13983  2006-01 14:58:46Z        6
## 13984  2006-01 22:11:43Z        6
## 13985  2006-01 14:28:09Z        6
## 13986  2006-01 14:28:31Z        6
## 13987  2006-01 15:18:40Z        6
## 13988  2006-01 15:22:25Z        6
## 13989  2006-01 03:59:42Z        6
## 13990  2006-02 15:46:19Z        6
## 13991  2006-02 12:44:34Z        6
## 13992  2006-02 13:05:20Z        6
## 13993  2006-02 16:29:56Z        6
## 13994  2006-02 16:30:55Z        6
## 13995  2006-02 16:31:53Z        6
## 13996  2006-02 16:41:18Z        6
## 13997  2006-02 18:27:17Z        6
## 13998  2006-02 18:54:08Z        6
## 13999  2006-02 18:55:02Z        6
## 14000  2006-02 18:58:32Z        6
## 14001  2006-02 19:40:42Z        6
## 14002  2006-02 19:56:32Z        6
## 14003  2006-02 09:16:55Z        6
## 14004  2006-02 15:42:53Z        6
## 14005  2006-02 15:43:43Z        6
## 14006  2006-03 00:15:35Z        6
## 14007  2006-03 00:23:39Z        6
## 14008  2006-03 18:07:09Z        6
## 14009  2006-03 18:36:50Z        6
## 14010  2006-03 18:39:07Z        6
## 14011  2006-03 18:39:54Z        6
## 14012  2006-03 18:41:51Z        6
## 14013  2006-03 12:13:40Z        6
## 14014  2006-03 09:34:20Z        6
## 14015  2006-03 11:45:39Z        6
## 14016  2006-04 06:31:33Z        6
## 14017  2006-04 03:05:44Z        6
## 14018  2006-04 11:21:56Z        6
## 14019  2006-05 02:23:38Z        6
## 14020  2006-05 04:54:28Z        6
## 14021  2006-05 23:45:05Z        6
## 14022  2006-06 02:12:47Z        6
## 14023  2006-06 11:47:43Z        6
## 14024  2006-06 12:35:42Z        6
## 14025  2006-06 19:56:48Z        6
## 14026  2006-06 20:00:21Z        6
## 14027  2006-06 14:57:48Z        6
## 14028  2006-06 23:39:45Z        6
## 14029  2006-06 23:40:35Z        6
## 14030  2006-06 16:09:15Z        6
## 14031  2006-07 16:57:01Z        6
## 14032  2006-07 03:07:31Z        6
## 14033  2006-07 10:49:05Z        6
## 14034  2006-07 12:23:49Z        6
## 14035  2006-08 12:19:37Z        6
## 14036  2006-08 16:10:35Z        6
## 14037  2006-09 15:18:27Z        6
## 14038  2006-09 22:08:49Z        6
## 14039  2006-09 12:59:22Z        6
## 14040  2006-10 17:32:52Z        6
## 14041  2006-10 10:57:29Z        6
## 14042  2006-10 11:02:46Z        6
## 14043  2006-10 11:14:12Z        6
## 14044  2006-10 12:10:41Z        6
## 14045  2006-10 12:16:08Z        6
## 14046  2006-10 12:23:59Z        6
## 14047  2006-10 12:25:05Z        6
## 14048  2006-10 11:19:56Z        6
## 14049  2006-10 17:58:36Z        6
## 14050  2006-12 11:47:54Z        6
## 14051  2006-12 11:48:19Z        6
## 14052  2006-12 04:26:09Z        6
## 14053  2006-12 18:47:27Z        6
## 14054  2006-12 04:18:28Z        6
## 14055  2006-12 19:26:55Z        6
## 14056  2006-12 19:31:50Z        6
## 14057  2006-12 19:32:50Z        6
## 14058  2006-12 15:30:20Z        6
## 14059  2006-12 15:34:28Z        6
## 14060  2006-12 14:37:15Z        6
## 14061  2006-12 14:38:20Z        6
## 14062  2006-12 14:53:10Z        6
## 14063  2006-12 14:53:39Z        6
## 14064  2006-12 14:58:13Z        6
## 14065  2006-12 15:37:28Z        6
## 14066  2006-12 15:40:26Z        6
## 14067  2007-01 14:13:07Z        6
## 14068  2007-01 19:02:28Z        6
## 14069  2007-01 19:04:59Z        6
## 14070  2007-01 19:20:40Z        6
## 14071  2007-01 19:24:00Z        6
## 14072  2007-01 19:28:13Z        6
## 14073  2007-01 21:03:56Z        6
## 14074  2007-01 21:05:23Z        6
## 14075  2007-01 08:32:36Z        6
## 14076  2007-01 10:25:41Z        6
## 14077  2007-01 19:00:28Z        6
## 14078  2007-01 21:49:28Z        6
## 14079  2007-01 21:50:15Z        6
## 14080  2007-01 21:51:31Z        6
## 14081  2007-01 21:57:06Z        6
## 14082  2007-01 22:07:08Z        6
## 14083  2007-02 19:59:26Z        6
## 14084  2007-02 20:15:35Z        6
## 14085  2007-02 16:04:21Z        6
## 14086  2007-02 16:46:35Z        6
## 14087  2007-02 16:46:56Z        6
## 14088  2007-02 02:22:00Z        6
## 14089  2007-02 00:19:14Z        6
## 14090  2007-02 13:52:21Z        6
## 14091  2007-02 13:54:45Z        6
## 14092  2007-02 13:57:16Z        6
## 14093  2007-02 13:58:59Z        6
## 14094  2007-02 14:03:47Z        6
## 14095  2007-02 14:07:04Z        6
## 14096  2007-02 14:13:47Z        6
## 14097  2007-02 15:28:29Z        6
## 14098  2007-02 15:53:25Z        6
## 14099  2007-03 18:48:50Z        6
## 14100  2007-03 18:48:15Z        6
## 14101  2007-03 18:48:39Z        6
## 14102  2007-03 09:49:30Z        6
## 14103  2007-03 14:14:37Z        6
## 14104  2007-04 07:36:03Z        6
## 14105  2007-04 07:37:43Z        6
## 14106  2007-04 11:57:19Z        6
## 14107  2007-04 11:58:14Z        6
## 14108  2007-04 12:00:14Z        6
## 14109  2007-04 12:56:15Z        6
## 14110  2007-04 12:57:03Z        6
## 14111  2007-04 12:58:11Z        6
## 14112  2007-04 03:28:59Z        6
## 14113  2007-04 15:17:12Z        6
## 14114  2007-04 15:19:22Z        6
## 14115  2007-04 15:21:04Z        6
## 14116  2007-04 15:24:49Z        6
## 14117  2007-04 15:39:29Z        6
## 14118  2007-04 15:41:55Z        6
## 14119  2007-04 15:54:51Z        6
## 14120  2007-04 16:05:38Z        6
## 14121  2007-04 10:57:12Z        6
## 14122  2007-04 17:42:54Z        6
## 14123  2007-04 14:44:02Z        6
## 14124  2007-04 16:03:04Z        6
## 14125  2007-04 21:25:46Z        6
## 14126  2007-05 01:08:10Z        6
## 14127  2007-05 14:32:44Z        6
## 14128  2007-05 14:36:09Z        6
## 14129  2007-05 14:12:49Z        6
## 14130  2007-05 15:03:00Z        6
## 14131  2007-05 16:04:09Z        6
## 14132  2007-05 19:31:08Z        6
## 14133  2007-05 08:56:08Z        6
## 14134  2007-05 09:18:59Z        6
## 14135  2007-05 18:50:49Z        6
## 14136  2007-05 22:36:24Z        6
## 14137  2007-05 15:01:29Z        6
## 14138  2007-05 15:02:27Z        6
## 14139  2007-05 15:04:14Z        6
## 14140  2007-05 15:06:22Z        6
## 14141  2007-05 15:06:48Z        6
## 14142  2007-05 20:52:42Z        6
## 14143  2007-05 10:53:17Z        6
## 14144  2007-05 11:02:03Z        6
## 14145  2007-05 11:03:06Z        6
## 14146  2007-05 15:20:51Z        6
## 14147  2007-05 15:57:16Z        6
## 14148  2007-05 16:01:54Z        6
## 14149  2007-05 18:25:18Z        6
## 14150  2007-05 13:23:38Z        6
## 14151  2007-05 16:06:14Z        6
## 14152  2007-05 16:09:24Z        6
## 14153  2007-05 16:10:18Z        6
## 14154  2007-05 20:50:43Z        6
## 14155  2007-06 02:38:16Z        6
## 14156  2007-06 08:07:11Z        6
## 14157  2007-06 00:51:00Z        6
## 14158  2007-06 10:18:15Z        6
## 14159  2007-06 20:23:52Z        6
## 14160  2007-06 15:25:14Z        6
## 14161  2007-06 15:28:41Z        6
## 14162  2007-06 00:18:15Z        6
## 14163  2007-06 09:36:04Z        6
## 14164  2007-06 23:53:48Z        6
## 14165  2007-07 08:43:41Z        6
## 14166  2007-07 09:11:53Z        6
## 14167  2007-07 09:12:56Z        6
## 14168  2007-07 19:46:51Z        6
## 14169  2007-07 18:59:58Z        6
## 14170  2007-07 19:00:32Z        6
## 14171  2007-07 22:26:41Z        6
## 14172  2007-07 12:42:55Z        6
## 14173  2007-07 18:52:13Z        6
## 14174  2007-07 19:03:30Z        6
## 14175  2007-07 22:01:46Z        6
## 14176  2007-07 22:03:02Z        6
## 14177  2007-08 13:07:05Z        6
## 14178  2007-08 01:29:09Z        6
## 14179  2007-08 01:38:06Z        6
## 14180  2007-08 01:39:09Z        6
## 14181  2007-08 12:32:14Z        6
## 14182  2007-08 18:28:27Z        6
## 14183  2007-08 18:33:29Z        6
## 14184  2007-08 15:06:13Z        6
## 14185  2007-08 17:57:27Z        6
## 14186  2007-08 04:23:20Z        6
## 14187  2007-08 16:07:53Z        6
## 14188  2007-09 11:37:22Z        6
## 14189  2007-09 13:15:29Z        6
## 14190  2007-09 17:54:56Z        6
## 14191  2007-09 00:41:10Z        6
## 14192  2007-09 06:25:44Z        6
## 14193  2007-09 04:43:01Z        6
## 14194  2007-09 04:53:02Z        6
## 14195  2007-09 06:06:41Z        6
## 14196  2007-09 09:10:26Z        6
## 14197  2007-10 13:51:05Z        6
## 14198  2007-10 15:46:59Z        6
## 14199  2007-10 21:12:45Z        6
## 14200  2007-10 20:57:56Z        6
## 14201  2007-11 03:07:58Z        6
## 14202  2007-11 15:53:41Z        6
## 14203  2007-11 10:43:27Z        6
## 14204  2007-11 14:52:51Z        6
## 14205  2007-11 11:52:01Z        6
## 14206  2007-11 01:49:29Z        6
## 14207  2007-11 01:56:48Z        6
## 14208  2007-12 18:00:16Z        6
## 14209  2007-12 09:38:28Z        6
## 14210  2007-12 17:41:01Z        6
## 14211  2007-12 22:01:11Z        6
## 14212  2007-12 22:03:48Z        6
## 14213  2007-12 22:07:23Z        6
## 14214  2007-12 22:19:58Z        6
## 14215  2007-12 22:20:22Z        6
## 14216  2007-12 22:21:09Z        6
## 14217  2007-12 22:22:01Z        6
## 14218  2007-12 22:24:46Z        6
## 14219  2007-12 22:25:04Z        6
## 14220  2007-12 00:49:03Z        6
## 14221  2007-12 10:20:31Z        6
## 14222  2007-12 14:26:16Z        6
## 14223  2002-10 15:24:19Z        9
## 14224  2002-12 08:23:07Z        9
## 14225  2004-05 11:07:07Z        9
## 14226  2004-08 07:04:15Z        9
## 14227  2004-11 00:48:33Z        9
## 14228  2004-11 03:28:36Z        9
## 14229  2004-12 15:43:42Z        9
## 14230  2005-05 05:25:27Z        9
## 14231  2006-03 14:02:00Z        9
## 14232  2006-04 20:38:52Z        9
## 14233  2006-05 16:01:19Z        9
## 14234  2006-05 14:13:30Z        9
## 14235  2006-06 01:37:47Z        9
## 14236  2006-06 01:38:51Z        9
## 14237  2006-06 01:39:08Z        9
## 14238  2006-06 01:41:50Z        9
## 14239  2006-06 01:43:17Z        9
## 14240  2006-08 15:10:37Z        9
## 14241  2007-03 22:10:34Z        9
## 14242  2007-09 20:32:22Z        9
## 14243  2007-10 03:57:08Z        9
## 14244  2007-10 12:00:12Z        9
## 14245  2007-10 04:54:15Z        9
## 14246  2007-11 02:23:16Z        9
## 14247  2007-12 03:54:22Z        9
## 14248  2002-10 15:44:09Z        3
## 14249  2002-12 11:42:27Z        3
## 14250  2004-08 09:14:27Z        3
## 14251  2004-11 10:31:42Z        3
## 14252  2004-11 10:31:40Z        3
## 14253  2004-11 01:27:05Z        3
## 14254  2004-11 04:22:02Z        3
## 14255  2004-12 07:39:00Z        3
## 14256  2006-03 12:27:36Z        3
## 14257  2006-04 22:01:49Z        3
## 14258  2006-05 00:36:56Z        3
## 14259  2007-09 22:26:02Z        3
## 14260  2007-09 15:43:24Z        3
## 14261  2007-09 14:19:22Z        3
## 14262  2007-10 10:33:03Z        3
## 14263  2007-10 05:12:28Z        3
## 14264  2007-10 22:46:18Z        3
## 14265  2007-11 01:40:49Z        3
## 14266  2007-11 21:40:29Z        3
## 14267  2007-12 04:21:25Z        3
## 14268  2007-12 05:08:15Z        3
## 14269  2002-10 15:44:47Z        3
## 14270  2002-12 11:48:10Z        3
## 14271  2004-08 09:19:57Z        3
## 14272  2004-10 13:25:35Z        3
## 14273  2004-11 01:28:09Z        3
## 14274  2004-11 04:25:09Z        3
## 14275  2004-12 17:38:54Z        3
## 14276  2006-02 06:04:25Z        3
## 14277  2006-03 15:49:06Z        3
## 14278  2006-04 22:04:38Z        3
## 14279  2006-05 07:15:55Z        3
## 14280  2007-08 03:27:15Z        3
## 14281  2007-09 15:47:43Z        3
## 14282  2007-09 06:45:04Z        3
## 14283  2007-10 21:46:24Z        3
## 14284  2007-10 05:38:18Z        3
## 14285  2007-10 23:13:28Z        3
## 14286  2007-11 01:36:07Z        3
## 14287  2007-12 04:33:07Z        3
## 14288  2002-10 15:51:56Z        4
## 14289  2002-12 12:47:33Z        4
## 14290  2004-08 10:06:25Z        4
## 14291  2004-10 07:02:32Z        4
## 14292  2004-10 03:06:00Z        4
## 14293  2004-11 01:39:27Z        4
## 14294  2004-11 03:43:06Z        4
## 14295  2004-11 00:22:36Z        4
## 14296  2004-12 02:46:33Z        4
## 14297  2004-12 09:22:25Z        4
## 14298  2005-05 05:54:22Z        4
## 14299  2005-05 10:05:10Z        4
## 14300  2005-09 19:41:04Z        4
## 14301  2005-09 11:30:59Z        4
## 14302  2005-10 17:30:08Z        4
## 14303  2005-10 17:36:17Z        4
## 14304  2005-11 22:39:09Z        4
## 14305  2005-11 22:53:08Z        4
## 14306  2005-12 05:56:09Z        4
## 14307  2006-03 07:41:47Z        4
## 14308  2006-03 23:50:34Z        4
## 14309  2006-04 22:28:17Z        4
## 14310  2006-04 17:41:24Z        4
## 14311  2006-04 03:38:52Z        4
## 14312  2006-04 02:37:50Z        4
## 14313  2006-04 03:25:31Z        4
## 14314  2006-04 03:31:55Z        4
## 14315  2006-04 03:32:53Z        4
## 14316  2006-05 05:42:59Z        4
## 14317  2006-06 18:36:36Z        4
## 14318  2006-06 15:38:26Z        4
## 14319  2006-09 00:50:10Z        4
## 14320  2006-10 02:47:40Z        4
## 14321  2006-11 21:35:47Z        4
## 14322  2006-11 17:58:33Z        4
## 14323  2006-11 18:44:59Z        4
## 14324  2006-11 18:45:12Z        4
## 14325  2006-12 03:19:24Z        4
## 14326  2006-12 03:21:36Z        4
## 14327  2006-12 03:27:05Z        4
## 14328  2006-12 03:27:25Z        4
## 14329  2006-12 03:28:21Z        4
## 14330  2006-12 03:28:30Z        4
## 14331  2006-12 03:28:34Z        4
## 14332  2006-12 03:29:31Z        4
## 14333  2006-12 03:30:02Z        4
## 14334  2006-12 03:35:03Z        4
## 14335  2006-12 03:40:27Z        4
## 14336  2006-12 03:42:24Z        4
## 14337  2006-12 03:44:49Z        4
## 14338  2006-12 03:45:01Z        4
## 14339  2006-12 03:46:38Z        4
## 14340  2006-12 03:47:02Z        4
## 14341  2006-12 03:47:28Z        4
## 14342  2006-12 03:48:53Z        4
## 14343  2006-12 03:49:31Z        4
## 14344  2006-12 04:03:02Z        4
## 14345  2006-12 04:04:18Z        4
## 14346  2006-12 04:05:19Z        4
## 14347  2006-12 04:15:48Z        4
## 14348  2006-12 04:17:17Z        4
## 14349  2006-12 04:17:42Z        4
## 14350  2006-12 04:19:43Z        4
## 14351  2006-12 04:21:53Z        4
## 14352  2006-12 04:23:22Z        4
## 14353  2006-12 04:23:43Z        4
## 14354  2006-12 04:24:28Z        4
## 14355  2006-12 04:25:14Z        4
## 14356  2006-12 14:30:33Z        4
## 14357  2006-12 06:10:37Z        4
## 14358  2007-02 13:40:34Z        4
## 14359  2007-02 02:53:40Z        4
## 14360  2007-02 09:38:28Z        4
## 14361  2007-03 00:09:20Z        4
## 14362  2007-03 00:11:30Z        4
## 14363  2007-03 00:12:53Z        4
## 14364  2007-03 00:15:36Z        4
## 14365  2007-03 00:17:57Z        4
## 14366  2007-03 00:23:05Z        4
## 14367  2007-03 00:26:37Z        4
## 14368  2007-03 00:29:45Z        4
## 14369  2007-03 21:35:14Z        4
## 14370  2007-03 21:41:22Z        4
## 14371  2007-03 21:43:50Z        4
## 14372  2007-03 21:50:48Z        4
## 14373  2007-03 21:52:21Z        4
## 14374  2007-03 21:53:09Z        4
## 14375  2007-03 21:53:21Z        4
## 14376  2007-03 21:53:49Z        4
## 14377  2007-03 03:44:31Z        4
## 14378  2007-04 01:47:01Z        4
## 14379  2007-04 01:47:12Z        4
## 14380  2007-04 23:22:10Z        4
## 14381  2007-04 20:24:23Z        4
## 14382  2007-04 00:12:17Z        4
## 14383  2007-04 00:20:46Z        4
## 14384  2007-04 00:22:28Z        4
## 14385  2007-05 16:24:18Z        4
## 14386  2007-05 21:44:52Z        4
## 14387  2007-05 21:07:07Z        4
## 14388  2007-05 22:32:29Z        4
## 14389  2007-05 07:48:09Z        4
## 14390  2007-06 13:24:16Z        4
## 14391  2007-06 17:17:54Z        4
## 14392  2007-06 22:26:09Z        4
## 14393  2007-08 07:08:07Z        4
## 14394  2007-08 17:29:25Z        4
## 14395  2007-08 10:40:19Z        4
## 14396  2007-08 18:10:11Z        4
## 14397  2007-09 23:36:13Z        4
## 14398  2007-09 16:36:13Z        4
## 14399  2007-09 14:55:56Z        4
## 14400  2007-10 02:42:05Z        4
## 14401  2007-10 05:46:42Z        4
## 14402  2007-10 05:17:54Z        4
## 14403  2007-10 23:23:25Z        4
## 14404  2007-11 06:48:30Z        4
## 14405  2007-11 23:03:12Z        4
## 14406  2007-12 08:51:09Z        4
## 14407  2007-12 06:50:50Z        4
## 14408  2002-10 15:52:45Z        4
## 14409  2002-12 12:59:08Z        4
## 14410  2004-08 10:12:55Z        4
## 14411  2004-10 15:49:53Z        4
## 14412  2004-10 07:04:26Z        4
## 14413  2004-11 08:51:44Z        4
## 14414  2004-11 01:40:59Z        4
## 14415  2004-11 03:43:18Z        4
## 14416  2004-12 04:57:25Z        4
## 14417  2004-12 07:46:38Z        4
## 14418  2005-09 09:35:27Z        4
## 14419  2005-09 14:39:04Z        4
## 14420  2005-11 17:12:58Z        4
## 14421  2005-12 00:46:02Z        4
## 14422  2006-01 15:29:31Z        4
## 14423  2006-03 23:23:39Z        4
## 14424  2006-04 22:31:50Z        4
## 14425  2006-05 13:07:42Z        4
## 14426  2006-07 19:53:44Z        4
## 14427  2006-09 02:41:38Z        4
## 14428  2006-09 23:33:38Z        4
## 14429  2006-09 18:25:08Z        4
## 14430  2006-09 13:20:13Z        4
## 14431  2006-09 01:01:50Z        4
## 14432  2006-10 02:22:50Z        4
## 14433  2006-12 19:16:34Z        4
## 14434  2006-12 00:53:58Z        4
## 14435  2007-09 21:57:50Z        4
## 14436  2007-09 17:26:26Z        4
## 14437  2007-09 19:05:30Z        4
## 14438  2007-09 09:01:40Z        4
## 14439  2007-10 05:00:38Z        4
## 14440  2007-10 22:32:31Z        4
## 14441  2007-11 22:42:27Z        4
## 14442  2007-11 21:33:39Z        4
## 14443  2002-10 16:02:18Z        7
## 14444  2002-12 15:00:04Z        7
## 14445  2004-08 11:30:01Z        7
## 14446  2004-10 16:19:13Z        7
## 14447  2004-11 20:50:53Z        7
## 14448  2004-11 20:51:07Z        7
## 14449  2004-11 02:04:39Z        7
## 14450  2004-11 04:45:34Z        7
## 14451  2004-12 21:05:30Z        7
## 14452  2006-03 04:17:11Z        7
## 14453  2006-04 22:59:43Z        7
## 14454  2006-05 18:20:35Z        7
## 14455  2007-09 21:53:08Z        7
## 14456  2007-09 18:08:56Z        7
## 14457  2007-09 00:37:20Z        7
## 14458  2007-10 04:56:55Z        7
## 14459  2007-10 20:34:27Z        7
## 14460  2007-10 22:28:30Z        7
## 14461  2007-11 18:58:05Z        7
## 14462  2007-11 22:11:40Z        7
## 14463  2007-12 04:16:25Z        7
## 14464  2002-10 16:05:19Z        7
## 14465  2002-12 15:45:50Z        7
## 14466  2004-06 00:03:43Z        7
## 14467  2004-07 04:32:46Z        7
## 14468  2004-08 12:02:35Z        7
## 14469  2004-08 00:43:56Z        7
## 14470  2004-08 03:43:43Z        7
## 14471  2004-08 07:35:33Z        7
## 14472  2004-09 14:08:18Z        7
## 14473  2004-11 02:09:52Z        7
## 14474  2004-11 04:48:28Z        7
## 14475  2004-12 10:36:44Z        7
## 14476  2005-11 03:13:30Z        7
## 14477  2005-12 00:54:42Z        7
## 14478  2006-01 13:42:09Z        7
## 14479  2006-02 06:54:08Z        7
## 14480  2006-03 03:44:27Z        7
## 14481  2006-04 23:09:26Z        7
## 14482  2006-05 17:32:56Z        7
## 14483  2007-03 22:39:27Z        7
## 14484  2007-09 21:07:44Z        7
## 14485  2007-09 15:16:43Z        7
## 14486  2007-09 15:54:42Z        7
## 14487  2007-09 01:25:41Z        7
## 14488  2007-10 04:27:43Z        7
## 14489  2007-10 22:00:03Z        7
## 14490  2007-10 04:39:55Z        7
## 14491  2007-11 17:47:33Z        7
## 14492  2007-12 04:07:29Z        7
## 14493  2002-10 16:22:20Z        8
## 14494  2002-12 16:00:11Z        8
## 14495  2003-06 03:08:23Z        8
## 14496  2004-08 12:13:48Z        8
## 14497  2004-09 21:07:57Z        8
## 14498  2004-10 01:36:53Z        8
## 14499  2004-11 11:38:17Z        8
## 14500  2004-11 00:42:52Z        8
## 14501  2004-11 02:15:39Z        8
## 14502  2004-11 03:50:19Z        8
## 14503  2004-12 08:21:38Z        8
## 14504  2004-12 02:35:24Z        8
## 14505  2005-09 03:03:39Z        8
## 14506  2005-09 19:01:53Z        8
## 14507  2005-11 11:09:15Z        8
## 14508  2005-11 23:28:54Z        8
## 14509  2006-02 07:30:14Z        8
## 14510  2006-03 02:25:43Z        8
## 14511  2006-05 17:17:35Z        8
## 14512  2006-10 22:27:33Z        8
## 14513  2006-11 05:23:57Z        8
## 14514  2006-12 03:02:47Z        8
## 14515  2006-12 03:03:26Z        8
## 14516  2006-12 03:05:07Z        8
## 14517  2006-12 03:08:14Z        8
## 14518  2006-12 03:09:13Z        8
## 14519  2007-02 23:21:52Z        8
## 14520  2007-02 07:25:29Z        8
## 14521  2007-02 07:25:58Z        8
## 14522  2007-02 07:26:26Z        8
## 14523  2007-02 07:27:15Z        8
## 14524  2007-03 13:18:02Z        8
## 14525  2007-03 13:22:21Z        8
## 14526  2007-03 13:33:23Z        8
## 14527  2007-03 14:44:31Z        8
## 14528  2007-03 17:08:50Z        8
## 14529  2007-04 14:11:46Z        8
## 14530  2007-05 17:32:59Z        8
## 14531  2007-09 22:40:10Z        8
## 14532  2007-09 15:42:34Z        8
## 14533  2007-09 15:27:58Z        8
## 14534  2007-09 16:55:37Z        8
## 14535  2007-10 05:08:56Z        8
## 14536  2007-10 22:42:44Z        8
## 14537  2007-10 14:51:58Z        8
## 14538  2007-10 14:52:37Z        8
## 14539  2007-10 23:19:36Z        8
## 14540  2007-10 14:09:52Z        8
## 14541  2007-11 01:41:30Z        8
## 14542  2007-11 01:53:59Z        8
## 14543  2007-12 04:43:08Z        8
## 14544  2002-10 16:36:40Z        8
## 14545  2002-12 16:15:15Z        8
## 14546  2003-06 03:38:27Z        8
## 14547  2004-08 12:26:59Z        8
## 14548  2004-09 15:41:34Z        8
## 14549  2004-10 01:42:40Z        8
## 14550  2004-11 02:17:21Z        8
## 14551  2004-11 03:51:16Z        8
## 14552  2004-12 02:38:39Z        8
## 14553  2005-04 23:28:49Z        8
## 14554  2005-09 20:09:47Z        8
## 14555  2005-09 10:56:14Z        8
## 14556  2005-11 15:53:06Z        8
## 14557  2005-12 03:54:23Z        8
## 14558  2006-02 07:00:27Z        8
## 14559  2006-03 05:10:38Z        8
## 14560  2006-04 23:16:04Z        8
## 14561  2006-05 18:18:29Z        8
## 14562  2006-08 08:48:24Z        8
## 14563  2006-11 18:41:58Z        8
## 14564  2006-11 18:48:50Z        8
## 14565  2006-11 18:51:06Z        8
## 14566  2006-11 18:55:22Z        8
## 14567  2006-11 18:56:10Z        8
## 14568  2006-11 19:09:45Z        8
## 14569  2007-03 14:50:55Z        8
## 14570  2007-03 14:51:50Z        8
## 14571  2007-05 20:28:01Z        8
## 14572  2007-08 12:49:36Z        8
## 14573  2007-08 11:28:57Z        8
## 14574  2007-09 23:38:37Z        8
## 14575  2007-09 16:01:34Z        8
## 14576  2007-09 03:57:56Z        8
## 14577  2007-10 19:00:51Z        8
## 14578  2007-10 05:42:27Z        8
## 14579  2007-10 04:24:54Z        8
## 14580  2007-10 23:18:14Z        8
## 14581  2007-11 01:29:18Z        8
## 14582  2007-12 04:46:03Z        8
## 14583  2002-10 16:42:03Z        9
## 14584  2002-12 17:44:30Z        9
## 14585  2004-08 17:54:36Z        9
## 14586  2004-11 21:24:49Z        9
## 14587  2004-11 21:25:01Z        9
## 14588  2004-11 02:26:06Z        9
## 14589  2004-11 04:51:33Z        9
## 14590  2004-12 01:41:39Z        9
## 14591  2005-04 20:30:39Z        9
## 14592  2006-01 19:27:13Z        9
## 14593  2006-02 18:39:16Z        9
## 14594  2006-03 22:47:08Z        9
## 14595  2006-04 23:36:32Z        9
## 14596  2006-05 16:46:13Z        9
## 14597  2006-08 01:41:06Z        9
## 14598  2007-01 08:31:51Z        9
## 14599  2007-09 10:32:53Z        9
## 14600  2007-09 14:42:30Z        9
## 14601  2007-09 19:29:15Z        9
## 14602  2007-10 04:10:35Z        9
## 14603  2007-10 14:39:29Z        9
## 14604  2007-12 13:53:29Z        9
## 14605  2007-12 13:06:09Z        9
## 14606  2002-02 15:51:15Z        0
## 14607  2002-03 06:25:42Z        0
## 14608  2001-08 08:54:27Z        0
## 14609  2001-10 22:31:58Z        0
## 14610  2002-08 12:53:41Z        0
## 14611  2002-10 12:48:43Z        0
## 14612  2003-02 18:53:33Z        0
## 14613  2003-04 00:42:39Z        0
## 14614  2003-04 21:51:55Z        0
## 14615  2003-07 03:44:17Z        0
## 14616  2003-07 03:44:44Z        0
## 14617  2003-07 21:35:44Z        0
## 14618  2003-07 23:18:01Z        0
## 14619  2003-10 03:11:31Z        0
## 14620  2003-10 16:27:00Z        0
## 14621  2003-12 08:02:21Z        0
## 14622  2004-02 21:51:07Z        0
## 14623  2004-03 18:03:13Z        0
## 14624  2004-06 21:54:13Z        0
## 14625  2004-06 13:44:12Z        0
## 14626  2004-06 21:08:01Z        0
## 14627  2004-06 21:08:54Z        0
## 14628  2004-06 04:32:44Z        0
## 14629  2004-06 08:24:14Z        0
## 14630  2004-06 16:14:59Z        0
## 14631  2004-06 19:48:46Z        0
## 14632  2004-07 23:33:45Z        0
## 14633  2004-07 23:35:35Z        0
## 14634  2004-07 07:47:31Z        0
## 14635  2004-08 19:28:45Z        0
## 14636  2004-09 17:09:06Z        0
## 14637  2004-09 16:11:02Z        0
## 14638  2004-09 23:13:11Z        0
## 14639  2004-10 12:23:14Z        0
## 14640  2004-10 17:31:40Z        0
## 14641  2004-11 21:55:12Z        0
## 14642  2004-11 23:22:38Z        0
## 14643  2004-12 15:24:57Z        0
## 14644  2005-01 01:38:53Z        0
## 14645  2005-01 21:18:04Z        0
## 14646  2005-02 18:28:30Z        0
## 14647  2005-02 13:27:51Z        0
## 14648  2005-02 13:28:43Z        0
## 14649  2005-02 22:38:05Z        0
## 14650  2005-02 22:09:14Z        0
## 14651  2005-03 09:31:10Z        0
## 14652  2005-03 09:32:26Z        0
## 14653  2005-03 08:23:22Z        0
## 14654  2005-03 08:24:35Z        0
## 14655  2005-03 09:29:54Z        0
## 14656  2005-03 12:04:22Z        0
## 14657  2005-03 12:10:12Z        0
## 14658  2005-03 12:12:45Z        0
## 14659  2005-03 12:13:14Z        0
## 14660  2005-03 12:13:44Z        0
## 14661  2005-03 12:15:00Z        0
## 14662  2005-03 12:17:07Z        0
## 14663  2005-03 12:19:36Z        0
## 14664  2005-03 12:20:22Z        0
## 14665  2005-03 12:21:07Z        0
## 14666  2005-03 21:14:51Z        0
## 14667  2005-04 11:47:31Z        0
## 14668  2005-04 04:57:31Z        0
## 14669  2005-04 05:09:49Z        0
## 14670  2005-04 23:59:34Z        0
## 14671  2005-04 01:08:58Z        0
## 14672  2005-05 04:47:13Z        0
## 14673  2005-05 01:58:57Z        0
## 14674  2005-05 02:01:05Z        0
## 14675  2005-06 03:31:04Z        0
## 14676  2005-06 20:45:43Z        0
## 14677  2005-07 13:54:15Z        0
## 14678  2005-07 21:47:06Z        0
## 14679  2005-07 02:20:52Z        0
## 14680  2005-07 11:28:45Z        0
## 14681  2005-07 11:30:00Z        0
## 14682  2005-07 11:33:22Z        0
## 14683  2005-07 11:34:21Z        0
## 14684  2005-07 04:59:16Z        0
## 14685  2005-07 16:31:46Z        0
## 14686  2005-07 22:48:40Z        0
## 14687  2005-07 18:46:48Z        0
## 14688  2005-08 21:41:14Z        0
## 14689  2005-08 21:57:18Z        0
## 14690  2005-08 00:58:15Z        0
## 14691  2005-08 18:07:15Z        0
## 14692  2005-08 14:56:48Z        0
## 14693  2005-08 00:56:18Z        0
## 14694  2005-09 17:25:10Z        0
## 14695  2005-09 13:04:49Z        0
## 14696  2005-09 15:24:23Z        0
## 14697  2005-09 15:31:52Z        0
## 14698  2005-09 16:44:37Z        0
## 14699  2005-09 08:44:03Z        0
## 14700  2005-10 12:08:00Z        0
## 14701  2005-10 21:45:29Z        0
## 14702  2005-10 14:02:01Z        0
## 14703  2005-10 14:25:47Z        0
## 14704  2005-10 14:26:36Z        0
## 14705  2005-10 23:05:48Z        0
## 14706  2005-10 23:07:10Z        0
## 14707  2005-10 15:16:46Z        0
## 14708  2005-10 03:30:25Z        0
## 14709  2005-10 22:53:19Z        0
## 14710  2005-10 17:24:57Z        0
## 14711  2005-11 01:20:58Z        0
## 14712  2005-11 16:29:19Z        0
## 14713  2005-11 09:58:31Z        0
## 14714  2005-11 01:32:05Z        0
## 14715  2005-12 16:57:42Z        0
## 14716  2005-12 09:20:02Z        0
## 14717  2005-12 03:39:37Z        0
## 14718  2005-12 04:05:42Z        0
## 14719  2005-12 11:36:57Z        0
## 14720  2006-01 00:08:30Z        0
## 14721  2006-01 21:41:43Z        0
## 14722  2006-01 17:15:33Z        0
## 14723  2006-01 17:49:23Z        0
## 14724  2006-01 17:58:30Z        0
## 14725  2006-01 22:40:33Z        0
## 14726  2006-01 01:36:40Z        0
## 14727  2006-01 22:55:54Z        0
## 14728  2006-01 22:56:12Z        0
## 14729  2006-01 05:25:27Z        0
## 14730  2006-01 05:27:57Z        0
## 14731  2006-01 03:33:41Z        0
## 14732  2006-01 03:35:30Z        0
## 14733  2006-01 03:40:05Z        0
## 14734  2006-01 04:48:13Z        0
## 14735  2006-02 20:59:48Z        0
## 14736  2006-02 04:08:31Z        0
## 14737  2006-02 05:30:18Z        0
## 14738  2006-02 05:22:24Z        0
## 14739  2006-02 05:36:35Z        0
## 14740  2006-02 02:09:43Z        0
## 14741  2006-02 07:40:22Z        0
## 14742  2006-02 07:55:34Z        0
## 14743  2006-02 02:01:57Z        0
## 14744  2006-02 05:46:46Z        0
## 14745  2006-02 00:59:23Z        0
## 14746  2006-02 01:52:47Z        0
## 14747  2006-02 16:30:24Z        0
## 14748  2006-02 16:32:23Z        0
## 14749  2006-02 05:52:54Z        0
## 14750  2006-03 04:14:25Z        0
## 14751  2006-03 12:52:57Z        0
## 14752  2006-03 03:43:05Z        0
## 14753  2006-03 03:44:30Z        0
## 14754  2006-03 05:16:21Z        0
## 14755  2006-03 05:20:47Z        0
## 14756  2006-03 13:34:32Z        0
## 14757  2006-03 15:44:46Z        0
## 14758  2006-03 15:47:35Z        0
## 14759  2006-03 15:47:40Z        0
## 14760  2006-03 15:52:09Z        0
## 14761  2006-03 15:58:59Z        0
## 14762  2006-03 16:37:01Z        0
## 14763  2006-03 17:48:18Z        0
## 14764  2006-03 20:05:56Z        0
## 14765  2006-03 21:31:53Z        0
## 14766  2006-03 21:40:51Z        0
## 14767  2006-03 21:58:51Z        0
## 14768  2006-03 00:15:29Z        0
## 14769  2006-03 01:02:10Z        0
## 14770  2006-03 16:40:02Z        0
## 14771  2006-03 17:28:03Z        0
## 14772  2006-03 17:30:49Z        0
## 14773  2006-03 21:04:57Z        0
## 14774  2006-03 13:06:33Z        0
## 14775  2006-03 13:57:49Z        0
## 14776  2006-03 14:09:49Z        0
## 14777  2006-03 14:10:51Z        0
## 14778  2006-03 14:14:08Z        0
## 14779  2006-03 14:28:04Z        0
## 14780  2006-03 14:33:20Z        0
## 14781  2006-03 14:33:27Z        0
## 14782  2006-03 07:16:27Z        0
## 14783  2006-04 18:04:58Z        0
## 14784  2006-04 18:15:31Z        0
## 14785  2006-04 02:25:05Z        0
## 14786  2006-04 02:51:04Z        0
## 14787  2006-04 09:09:23Z        0
## 14788  2006-04 09:09:45Z        0
## 14789  2006-04 09:09:48Z        0
## 14790  2006-04 09:10:02Z        0
## 14791  2006-04 03:27:19Z        0
## 14792  2006-04 22:40:43Z        0
## 14793  2006-05 00:32:30Z        0
## 14794  2006-06 20:02:34Z        0
## 14795  2006-06 12:45:11Z        0
## 14796  2006-06 12:47:32Z        0
## 14797  2006-06 15:46:54Z        0
## 14798  2006-06 20:58:58Z        0
## 14799  2006-07 06:15:39Z        0
## 14800  2006-07 23:35:03Z        0
## 14801  2006-08 14:28:57Z        0
## 14802  2006-09 01:27:06Z        0
## 14803  2006-09 22:51:19Z        0
## 14804  2006-09 18:15:18Z        0
## 14805  2006-09 18:39:14Z        0
## 14806  2006-09 03:26:55Z        0
## 14807  2006-09 03:27:59Z        0
## 14808  2006-09 16:26:13Z        0
## 14809  2006-10 23:12:44Z        0
## 14810  2006-10 01:11:43Z        0
## 14811  2006-10 09:50:34Z        0
## 14812  2006-10 08:24:01Z        0
## 14813  2006-10 09:45:17Z        0
## 14814  2006-10 09:45:55Z        0
## 14815  2006-10 09:46:04Z        0
## 14816  2006-10 09:59:10Z        0
## 14817  2006-10 15:00:56Z        0
## 14818  2006-10 15:36:54Z        0
## 14819  2006-11 02:20:36Z        0
## 14820  2006-11 15:41:31Z        0
## 14821  2006-11 18:45:07Z        0
## 14822  2006-11 14:22:27Z        0
## 14823  2006-11 12:29:29Z        0
## 14824  2006-11 14:26:19Z        0
## 14825  2006-12 20:19:24Z        0
## 14826  2006-12 00:05:01Z        0
## 14827  2006-12 00:11:22Z        0
## 14828  2006-12 07:13:06Z        0
## 14829  2006-12 07:13:34Z        0
## 14830  2006-12 08:50:51Z        0
## 14831  2006-12 12:17:05Z        0
## 14832  2006-12 20:21:33Z        0
## 14833  2007-01 17:43:04Z        0
## 14834  2007-01 07:43:15Z        0
## 14835  2007-01 03:11:00Z        0
## 14836  2007-01 03:11:36Z        0
## 14837  2007-01 08:33:39Z        0
## 14838  2007-01 17:03:21Z        0
## 14839  2007-01 17:40:17Z        0
## 14840  2007-01 23:47:34Z        0
## 14841  2007-01 05:34:53Z        0
## 14842  2007-01 16:05:14Z        0
## 14843  2007-01 18:23:59Z        0
## 14844  2007-01 20:08:19Z        0
## 14845  2007-01 20:21:44Z        0
## 14846  2007-01 04:02:53Z        0
## 14847  2007-01 21:16:48Z        0
## 14848  2007-01 06:43:11Z        0
## 14849  2007-02 04:08:21Z        0
## 14850  2007-02 08:02:41Z        0
## 14851  2007-02 23:07:05Z        0
## 14852  2007-02 23:07:46Z        0
## 14853  2007-02 01:58:47Z        0
## 14854  2007-02 02:24:35Z        0
## 14855  2007-02 11:45:36Z        0
## 14856  2007-02 22:07:19Z        0
## 14857  2007-03 23:29:59Z        0
## 14858  2007-03 01:40:18Z        0
## 14859  2007-03 19:59:30Z        0
## 14860  2007-03 20:37:48Z        0
## 14861  2007-03 19:59:12Z        0
## 14862  2007-03 20:08:44Z        0
## 14863  2007-03 20:10:20Z        0
## 14864  2007-03 19:42:10Z        0
## 14865  2007-03 19:42:49Z        0
## 14866  2007-03 01:41:30Z        0
## 14867  2007-03 09:12:25Z        0
## 14868  2007-03 16:44:55Z        0
## 14869  2007-04 00:16:13Z        0
## 14870  2007-04 09:00:21Z        0
## 14871  2007-04 11:21:45Z        0
## 14872  2007-05 21:23:48Z        0
## 14873  2007-05 14:42:33Z        0
## 14874  2007-05 20:50:28Z        0
## 14875  2007-05 22:20:32Z        0
## 14876  2007-05 00:05:38Z        0
## 14877  2007-05 00:32:35Z        0
## 14878  2007-06 22:15:52Z        0
## 14879  2007-06 13:07:39Z        0
## 14880  2007-06 12:34:36Z        0
## 14881  2007-06 18:24:51Z        0
## 14882  2007-07 00:18:58Z        0
## 14883  2007-07 17:42:45Z        0
## 14884  2007-08 21:16:40Z        0
## 14885  2007-08 16:44:20Z        0
## 14886  2007-08 22:55:19Z        0
## 14887  2007-08 10:58:13Z        0
## 14888  2007-08 20:06:17Z        0
## 14889  2007-08 20:10:42Z        0
## 14890  2007-08 22:49:31Z        0
## 14891  2007-08 19:07:27Z        0
## 14892  2007-08 22:26:32Z        0
## 14893  2007-08 07:31:22Z        0
## 14894  2007-08 13:12:35Z        0
## 14895  2007-08 21:21:12Z        0
## 14896  2007-08 22:21:27Z        0
## 14897  2007-08 16:26:13Z        0
## 14898  2007-08 13:29:49Z        0
## 14899  2007-08 16:11:52Z        0
## 14900  2007-08 23:51:28Z        0
## 14901  2007-09 19:50:13Z        0
## 14902  2007-09 17:43:33Z        0
## 14903  2007-09 05:21:19Z        0
## 14904  2007-09 13:44:26Z        0
## 14905  2007-09 05:45:19Z        0
## 14906  2007-09 20:48:28Z        0
## 14907  2007-09 15:23:44Z        0
## 14908  2007-09 21:37:02Z        0
## 14909  2007-09 21:37:20Z        0
## 14910  2007-09 21:37:45Z        0
## 14911  2007-09 07:43:53Z        0
## 14912  2007-09 20:38:01Z        0
## 14913  2007-10 21:40:31Z        0
## 14914  2007-10 21:40:53Z        0
## 14915  2007-10 21:41:54Z        0
## 14916  2007-10 22:37:47Z        0
## 14917  2007-10 11:51:00Z        0
## 14918  2007-10 19:52:17Z        0
## 14919  2007-10 19:52:32Z        0
## 14920  2007-10 05:47:22Z        0
## 14921  2007-10 16:50:58Z        0
## 14922  2007-10 22:09:53Z        0
## 14923  2007-11 16:38:36Z        0
## 14924  2007-11 19:45:24Z        0
## 14925  2007-11 18:36:16Z        0
## 14926  2007-11 18:48:44Z        0
## 14927  2007-11 18:52:08Z        0
## 14928  2007-11 23:26:15Z        0
## 14929  2007-12 22:23:40Z        0
## 14930  2007-12 17:15:35Z        0
## 14931  2007-12 18:31:44Z        0
## 14932  2007-12 18:35:00Z        0
## 14933  2007-12 18:35:49Z        0
## 14934  2007-12 10:35:54Z        0
## 14935  2007-12 08:22:14Z        0
## 14936  2007-12 09:10:10Z        0
## 14937  2007-12 07:13:57Z        0
## 14938  2008-01 19:00:15Z        0
## 14939  2008-01 23:25:36Z        0
## 14940  2008-01 06:51:48Z        0
## 14941  2002-10 16:44:12Z        0
## 14942  2002-12 18:22:38Z        0
## 14943  2003-04 02:36:09Z        0
## 14944  2003-04 02:58:32Z        0
## 14945  2003-06 02:00:45Z        0
## 14946  2003-08 20:59:07Z        0
## 14947  2003-08 21:00:03Z        0
## 14948  2003-08 21:05:23Z        0
## 14949  2003-08 21:06:51Z        0
## 14950  2003-08 21:07:36Z        0
## 14951  2003-08 21:13:16Z        0
## 14952  2003-08 21:15:07Z        0
## 14953  2003-08 23:28:13Z        0
## 14954  2004-08 15:18:18Z        0
## 14955  2004-09 16:38:08Z        0
## 14956  2004-09 03:38:13Z        0
## 14957  2004-10 21:37:23Z        0
## 14958  2004-10 15:08:56Z        0
## 14959  2004-10 00:26:36Z        0
## 14960  2004-10 22:42:44Z        0
## 14961  2004-11 02:29:51Z        0
## 14962  2004-11 03:57:36Z        0
## 14963  2004-12 16:54:13Z        0
## 14964  2004-12 16:55:54Z        0
## 14965  2004-12 00:22:31Z        0
## 14966  2005-02 21:04:40Z        0
## 14967  2005-02 21:10:27Z        0
## 14968  2005-05 23:57:10Z        0
## 14969  2005-06 04:19:12Z        0
## 14970  2005-09 14:59:53Z        0
## 14971  2005-09 03:31:49Z        0
## 14972  2005-10 20:14:42Z        0
## 14973  2005-10 01:58:59Z        0
## 14974  2005-10 02:03:58Z        0
## 14975  2005-11 21:43:54Z        0
## 14976  2005-11 03:15:51Z        0
## 14977  2005-12 19:18:23Z        0
## 14978  2005-12 22:08:53Z        0
## 14979  2005-12 02:47:58Z        0
## 14980  2005-12 20:56:48Z        0
## 14981  2006-01 18:06:04Z        0
## 14982  2006-01 13:37:49Z        0
## 14983  2006-01 13:38:18Z        0
## 14984  2006-01 02:02:10Z        0
## 14985  2006-01 02:02:32Z        0
## 14986  2006-01 02:05:03Z        0
## 14987  2006-01 02:05:40Z        0
## 14988  2006-01 02:08:21Z        0
## 14989  2006-01 02:08:35Z        0
## 14990  2006-03 19:52:07Z        0
## 14991  2006-03 23:52:12Z        0
## 14992  2006-03 06:04:04Z        0
## 14993  2006-03 15:03:11Z        0
## 14994  2006-03 07:35:20Z        0
## 14995  2006-03 07:35:33Z        0
## 14996  2006-04 23:45:16Z        0
## 14997  2006-04 06:47:21Z        0
## 14998  2006-04 06:48:54Z        0
## 14999  2006-04 02:40:57Z        0
## 15000  2006-05 21:40:50Z        0
## 15001  2006-05 21:04:35Z        0
## 15002  2006-05 23:20:55Z        0
## 15003  2006-05 23:26:22Z        0
## 15004  2006-05 23:26:33Z        0
## 15005  2006-05 20:22:30Z        0
## 15006  2006-05 03:26:14Z        0
## 15007  2006-05 18:23:35Z        0
## 15008  2006-05 19:16:11Z        0
## 15009  2006-05 07:47:13Z        0
## 15010  2006-06 22:36:19Z        0
## 15011  2006-06 18:14:29Z        0
## 15012  2006-06 02:10:11Z        0
## 15013  2006-07 19:20:12Z        0
## 15014  2006-07 19:23:22Z        0
## 15015  2006-07 16:52:25Z        0
## 15016  2006-07 16:58:07Z        0
## 15017  2006-07 17:01:02Z        0
## 15018  2006-07 17:42:36Z        0
## 15019  2006-07 18:49:16Z        0
## 15020  2006-07 18:51:10Z        0
## 15021  2006-07 23:38:51Z        0
## 15022  2006-08 12:39:32Z        0
## 15023  2006-09 17:40:53Z        0
## 15024  2006-09 19:17:06Z        0
## 15025  2006-10 23:22:04Z        0
## 15026  2006-10 18:24:51Z        0
## 15027  2006-11 23:45:09Z        0
## 15028  2006-12 11:21:07Z        0
## 15029  2006-12 17:50:21Z        0
## 15030  2006-12 20:38:27Z        0
## 15031  2006-12 20:39:33Z        0
## 15032  2007-01 23:40:57Z        0
## 15033  2007-01 09:23:57Z        0
## 15034  2007-01 23:10:13Z        0
## 15035  2007-01 23:48:54Z        0
## 15036  2007-01 03:03:41Z        0
## 15037  2007-01 03:19:02Z        0
## 15038  2007-01 03:20:13Z        0
## 15039  2007-01 10:21:01Z        0
## 15040  2007-01 10:21:32Z        0
## 15041  2007-01 10:24:04Z        0
## 15042  2007-01 10:24:24Z        0
## 15043  2007-01 10:25:55Z        0
## 15044  2007-01 10:27:12Z        0
## 15045  2007-01 12:28:28Z        0
## 15046  2007-01 22:13:52Z        0
## 15047  2007-01 00:44:28Z        0
## 15048  2007-01 18:19:01Z        0
## 15049  2007-02 16:19:04Z        0
## 15050  2007-03 22:38:47Z        0
## 15051  2007-04 00:13:37Z        0
## 15052  2007-04 21:29:35Z        0
## 15053  2007-04 21:29:50Z        0
## 15054  2007-04 21:32:24Z        0
## 15055  2007-04 20:32:09Z        0
## 15056  2007-05 20:19:28Z        0
## 15057  2007-05 23:26:30Z        0
## 15058  2007-05 23:30:26Z        0
## 15059  2007-05 09:25:44Z        0
## 15060  2007-06 21:32:37Z        0
## 15061  2007-06 19:42:29Z        0
## 15062  2007-06 10:16:10Z        0
## 15063  2007-06 17:08:26Z        0
## 15064  2007-06 14:01:04Z        0
## 15065  2007-07 15:10:55Z        0
## 15066  2007-07 22:34:21Z        0
## 15067  2007-08 15:34:56Z        0
## 15068  2007-08 15:35:23Z        0
## 15069  2007-08 16:09:15Z        0
## 15070  2007-08 16:12:49Z        0
## 15071  2007-08 17:05:33Z        0
## 15072  2007-08 03:21:35Z        0
## 15073  2007-08 15:00:09Z        0
## 15074  2007-08 03:42:56Z        0
## 15075  2007-08 03:46:33Z        0
## 15076  2007-08 03:48:03Z        0
## 15077  2007-08 03:49:01Z        0
## 15078  2007-08 03:52:37Z        0
## 15079  2007-08 03:53:13Z        0
## 15080  2007-08 17:31:53Z        0
## 15081  2007-08 17:32:56Z        0
## 15082  2007-08 19:25:50Z        0
## 15083  2007-08 05:01:46Z        0
## 15084  2007-08 05:19:55Z        0
## 15085  2007-09 11:56:20Z        0
## 15086  2007-09 16:55:28Z        0
## 15087  2007-09 15:36:57Z        0
## 15088  2007-09 16:42:17Z        0
## 15089  2007-10 04:41:19Z        0
## 15090  2007-10 20:34:40Z        0
## 15091  2007-10 23:48:51Z        0
## 15092  2007-10 13:03:32Z        0
## 15093  2007-10 13:05:32Z        0
## 15094  2007-11 19:18:05Z        0
## 15095  2007-11 19:18:41Z        0
## 15096  2007-11 19:19:15Z        0
## 15097  2007-11 19:19:40Z        0
## 15098  2007-11 19:20:06Z        0
## 15099  2007-12 23:52:39Z        0
## 15100  2007-12 05:40:03Z        0
## 15101  2007-12 22:08:14Z        0
## 15102  2007-12 22:09:21Z        0
## 15103  2007-12 22:10:31Z        0
## 15104  2007-12 22:10:42Z        0
## 15105  2007-12 14:13:09Z        0
## 15106  2007-12 06:12:17Z        0
## 15107  2007-12 06:13:44Z        0
## 15108  2007-12 04:05:18Z        0
## 15109  2007-12 04:06:11Z        0
## 15110  2007-12 16:28:34Z        0
## 15111  2007-12 16:32:53Z        0
## 15112  2007-12 16:34:44Z        0
## 15113  2007-12 16:35:27Z        0
## 15114  2002-10 16:47:22Z        0
## 15115  2002-12 19:43:14Z        0
## 15116  2004-08 15:47:31Z        0
## 15117  2004-10 21:52:43Z        0
## 15118  2004-11 11:24:30Z        0
## 15119  2004-11 02:34:59Z        0
## 15120  2004-11 04:00:24Z        0
## 15121  2004-12 20:27:03Z        0
## 15122  2005-04 04:23:53Z        0
## 15123  2005-06 15:23:08Z        0
## 15124  2005-06 20:05:19Z        0
## 15125  2005-09 01:43:24Z        0
## 15126  2006-03 05:07:57Z        0
## 15127  2006-04 23:57:23Z        0
## 15128  2006-05 18:39:47Z        0
## 15129  2007-03 01:32:08Z        0
## 15130  2007-03 02:02:16Z        0
## 15131  2007-03 16:59:29Z        0
## 15132  2007-03 18:00:05Z        0
## 15133  2007-05 19:50:00Z        0
## 15134  2007-05 17:06:08Z        0
## 15135  2007-05 17:06:22Z        0
## 15136  2007-06 10:20:43Z        0
## 15137  2007-09 11:32:30Z        0
## 15138  2007-09 18:11:00Z        0
## 15139  2007-09 16:05:10Z        0
## 15140  2007-10 04:35:59Z        0
## 15141  2007-10 22:24:00Z        0
## 15142  2007-11 15:44:38Z        0
## 15143  2007-12 14:09:40Z        0
## 15144  2002-10 16:58:04Z        1
## 15145  2002-12 20:36:47Z        1
## 15146  2004-08 16:09:49Z        1
## 15147  2004-10 22:02:42Z        1
## 15148  2004-11 02:38:55Z        1
## 15149  2004-11 04:02:23Z        1
## 15150  2004-12 18:51:02Z        1
## 15151  2005-04 17:18:31Z        1
## 15152  2005-09 09:13:58Z        1
## 15153  2005-11 22:09:36Z        1
## 15154  2006-01 23:48:57Z        1
## 15155  2006-02 05:34:36Z        1
## 15156  2006-02 09:29:14Z        1
## 15157  2006-03 00:42:37Z        1
## 15158  2006-03 19:45:32Z        1
## 15159  2006-03 03:15:10Z        1
## 15160  2006-03 03:16:43Z        1
## 15161  2006-03 05:33:17Z        1
## 15162  2006-03 14:00:51Z        1
## 15163  2006-03 16:28:34Z        1
## 15164  2006-05 02:42:08Z        1
## 15165  2006-06 11:42:05Z        1
## 15166  2006-06 15:08:24Z        1
## 15167  2006-11 00:02:01Z        1
## 15168  2007-01 23:45:34Z        1
## 15169  2007-03 00:25:39Z        1
## 15170  2007-03 00:26:24Z        1
## 15171  2007-05 21:11:59Z        1
## 15172  2007-06 10:27:32Z        1
## 15173  2007-09 12:25:42Z        1
## 15174  2007-09 19:09:44Z        1
## 15175  2007-09 12:13:05Z        1
## 15176  2007-10 04:54:37Z        1
## 15177  2007-10 00:51:58Z        1
## 15178  2007-12 14:25:51Z        1
## 15179  2002-10 17:25:28Z        3
## 15180  2002-12 23:32:07Z        3
## 15181  2004-08 17:25:35Z        3
## 15182  2004-10 06:25:37Z        3
## 15183  2004-10 06:26:15Z        3
## 15184  2004-11 02:57:01Z        3
## 15185  2004-11 04:14:18Z        3
## 15186  2004-12 22:34:42Z        3
## 15187  2005-04 15:11:40Z        3
## 15188  2005-09 09:21:15Z        3
## 15189  2006-03 10:08:48Z        3
## 15190  2006-04 08:26:40Z        3
## 15191  2006-05 18:57:56Z        3
## 15192  2006-05 18:58:01Z        3
## 15193  2006-05 21:38:02Z        3
## 15194  2007-02 17:53:39Z        3
## 15195  2007-02 00:24:03Z        3
## 15196  2007-04 15:39:03Z        3
## 15197  2007-04 10:37:27Z        3
## 15198  2007-05 21:44:35Z        3
## 15199  2007-06 10:26:43Z        3
## 15200  2007-09 12:24:01Z        3
## 15201  2007-10 14:47:49Z        3
## 15202  2007-10 11:25:05Z        3
## 15203  2007-10 04:55:26Z        3
## 15204  2007-10 01:38:04Z        3
## 15205  2007-11 16:17:25Z        3
## 15206  2007-12 14:26:28Z        3
## 15207  2002-10 17:45:02Z        7
## 15208  2002-12 03:06:29Z        7
## 15209  2003-06 02:12:46Z        7
## 15210  2004-08 15:07:05Z        7
## 15211  2004-10 16:58:27Z        7
## 15212  2004-11 08:38:11Z        7
## 15213  2004-11 08:38:23Z        7
## 15214  2004-11 03:30:51Z        7
## 15215  2004-11 04:27:06Z        7
## 15216  2004-12 19:05:22Z        7
## 15217  2005-02 21:11:32Z        7
## 15218  2005-02 21:13:30Z        7
## 15219  2005-09 10:42:42Z        7
## 15220  2006-02 15:41:15Z        7
## 15221  2006-02 15:42:10Z        7
## 15222  2006-03 07:05:35Z        7
## 15223  2006-04 09:34:09Z        7
## 15224  2006-05 16:37:36Z        7
## 15225  2006-05 16:37:49Z        7
## 15226  2006-05 16:39:13Z        7
## 15227  2006-05 18:58:54Z        7
## 15228  2006-06 04:04:05Z        7
## 15229  2006-06 04:05:10Z        7
## 15230  2006-11 14:03:32Z        7
## 15231  2006-11 02:10:45Z        7
## 15232  2006-11 02:10:51Z        7
## 15233  2006-11 02:12:30Z        7
## 15234  2006-11 02:26:57Z        7
## 15235  2006-12 09:51:27Z        7
## 15236  2006-12 09:52:08Z        7
## 15237  2006-12 09:56:46Z        7
## 15238  2006-12 09:58:00Z        7
## 15239  2006-12 09:08:40Z        7
## 15240  2007-04 10:02:59Z        7
## 15241  2007-05 20:21:26Z        7
## 15242  2007-05 09:06:04Z        7
## 15243  2007-05 17:41:37Z        7
## 15244  2007-06 16:54:26Z        7
## 15245  2007-08 19:30:06Z        7
## 15246  2007-09 20:59:45Z        7
## 15247  2007-09 17:04:49Z        7
## 15248  2007-09 04:07:31Z        7
## 15249  2007-09 04:23:13Z        7
## 15250  2007-09 13:33:04Z        7
## 15251  2007-09 20:41:47Z        7
## 15252  2007-09 01:44:38Z        7
## 15253  2007-09 23:40:36Z        7
## 15254  2007-09 23:52:29Z        7
## 15255  2007-09 23:54:01Z        7
## 15256  2007-09 09:25:39Z        7
## 15257  2007-09 09:25:56Z        7
## 15258  2007-09 09:32:21Z        7
## 15259  2007-09 09:33:00Z        7
## 15260  2007-09 18:00:43Z        7
## 15261  2007-09 04:18:15Z        7
## 15262  2007-09 04:18:30Z        7
## 15263  2007-09 04:23:34Z        7
## 15264  2007-09 04:28:13Z        7
## 15265  2007-09 08:35:52Z        7
## 15266  2007-09 14:05:55Z        7
## 15267  2007-10 07:58:40Z        7
## 15268  2007-10 01:03:21Z        7
## 15269  2007-10 17:49:55Z        7
## 15270  2007-10 23:01:29Z        7
## 15271  2007-12 19:53:52Z        7
## 15272  2002-10 17:49:18Z        8
## 15273  2002-12 03:24:18Z        8
## 15274  2004-08 15:46:24Z        8
## 15275  2004-11 08:54:57Z        8
## 15276  2004-11 08:55:14Z        8
## 15277  2004-11 03:37:41Z        8
## 15278  2004-11 04:33:39Z        8
## 15279  2004-12 16:24:01Z        8
## 15280  2004-12 11:46:39Z        8
## 15281  2006-03 13:14:22Z        8
## 15282  2006-04 09:53:02Z        8
## 15283  2006-05 00:36:03Z        8
## 15284  2006-06 01:54:33Z        8
## 15285  2006-06 01:56:02Z        8
## 15286  2006-08 01:14:53Z        8
## 15287  2006-11 06:06:35Z        8
## 15288  2006-12 00:32:25Z        8
## 15289  2006-12 18:23:14Z        8
## 15290  2006-12 18:23:17Z        8
## 15291  2007-03 23:22:12Z        8
## 15292  2007-08 11:22:24Z        8
## 15293  2007-09 19:26:13Z        8
## 15294  2007-10 15:48:45Z        8
## 15295  2007-11 23:21:08Z        8
## 15296  2007-11 01:28:17Z        8
## 15297  2007-11 01:36:27Z        8
## 15298  2007-11 02:20:20Z        8
## 15299  2007-12 04:05:20Z        8
## 15300  2001-09 13:00:35Z        9
## 15301  2002-02 15:51:15Z        9
## 15302  2003-07 16:06:54Z        9
## 15303  2003-10 05:22:25Z        9
## 15304  2003-10 05:34:04Z        9
## 15305  2003-10 05:34:40Z        9
## 15306  2003-10 05:36:29Z        9
## 15307  2003-10 05:44:27Z        9
## 15308  2003-10 05:46:56Z        9
## 15309  2003-10 05:47:34Z        9
## 15310  2003-10 05:51:55Z        9
## 15311  2003-10 05:55:02Z        9
## 15312  2003-10 05:59:43Z        9
## 15313  2003-10 06:00:41Z        9
## 15314  2003-10 06:01:38Z        9
## 15315  2003-10 06:02:45Z        9
## 15316  2003-10 06:10:42Z        9
## 15317  2003-10 06:12:12Z        9
## 15318  2003-10 06:23:52Z        9
## 15319  2003-10 02:57:51Z        9
## 15320  2003-10 02:58:28Z        9
## 15321  2003-10 02:59:24Z        9
## 15322  2003-10 03:10:00Z        9
## 15323  2003-10 03:32:29Z        9
## 15324  2003-11 18:44:01Z        9
## 15325  2004-01 05:05:44Z        9
## 15326  2004-01 05:14:07Z        9
## 15327  2004-02 01:46:39Z        9
## 15328  2004-02 03:21:24Z        9
## 15329  2004-02 03:22:49Z        9
## 15330  2004-03 19:42:33Z        9
## 15331  2004-03 19:44:12Z        9
## 15332  2004-03 04:17:09Z        9
## 15333  2004-04 07:00:34Z        9
## 15334  2004-04 15:28:54Z        9
## 15335  2004-05 02:21:32Z        9
## 15336  2004-05 02:31:34Z        9
## 15337  2004-05 03:41:31Z        9
## 15338  2004-05 03:41:54Z        9
## 15339  2004-05 04:11:26Z        9
## 15340  2004-05 21:29:43Z        9
## 15341  2004-05 18:09:18Z        9
## 15342  2004-06 05:10:03Z        9
## 15343  2004-06 02:57:11Z        9
## 15344  2004-07 09:51:17Z        9
## 15345  2004-08 14:24:58Z        9
## 15346  2004-08 03:48:08Z        9
## 15347  2004-08 02:34:20Z        9
## 15348  2004-09 09:16:22Z        9
## 15349  2004-09 17:16:14Z        9
## 15350  2004-10 22:16:35Z        9
## 15351  2004-10 20:41:26Z        9
## 15352  2004-10 20:47:43Z        9
## 15353  2004-10 01:18:12Z        9
## 15354  2004-11 01:11:17Z        9
## 15355  2004-12 14:05:28Z        9
## 15356  2004-12 15:33:09Z        9
## 15357  2004-12 18:53:01Z        9
## 15358  2004-12 23:17:18Z        9
## 15359  2004-12 00:45:43Z        9
## 15360  2004-12 04:23:49Z        9
## 15361  2004-12 01:36:40Z        9
## 15362  2004-12 03:41:58Z        9
## 15363  2004-12 05:02:27Z        9
## 15364  2005-01 06:45:59Z        9
## 15365  2005-02 04:46:24Z        9
## 15366  2005-02 22:50:41Z        9
## 15367  2005-03 05:55:35Z        9
## 15368  2005-03 00:12:24Z        9
## 15369  2005-03 04:16:03Z        9
## 15370  2005-03 08:09:04Z        9
## 15371  2005-03 21:07:48Z        9
## 15372  2005-04 23:50:12Z        9
## 15373  2005-04 16:24:41Z        9
## 15374  2005-04 00:22:12Z        9
## 15375  2005-05 18:28:52Z        9
## 15376  2005-05 19:40:06Z        9
## 15377  2005-05 01:39:41Z        9
## 15378  2005-05 07:12:15Z        9
## 15379  2005-05 18:20:05Z        9
## 15380  2005-05 19:44:19Z        9
## 15381  2005-05 00:53:22Z        9
## 15382  2005-05 00:58:16Z        9
## 15383  2005-05 02:28:43Z        9
## 15384  2005-05 02:35:12Z        9
## 15385  2005-06 04:09:45Z        9
## 15386  2005-06 16:37:05Z        9
## 15387  2005-06 16:40:44Z        9
## 15388  2005-06 19:56:22Z        9
## 15389  2005-07 19:52:59Z        9
## 15390  2005-07 23:01:48Z        9
## 15391  2005-08 02:59:22Z        9
## 15392  2005-08 03:51:12Z        9
## 15393  2005-08 20:13:22Z        9
## 15394  2005-10 05:48:58Z        9
## 15395  2005-10 00:17:55Z        9
## 15396  2005-11 19:43:05Z        9
## 15397  2005-11 11:34:13Z        9
## 15398  2005-12 22:37:13Z        9
## 15399  2005-12 04:24:39Z        9
## 15400  2005-12 05:22:26Z        9
## 15401  2006-01 10:15:03Z        9
## 15402  2006-01 20:23:14Z        9
## 15403  2006-01 20:31:26Z        9
## 15404  2006-01 20:33:12Z        9
## 15405  2006-01 10:07:32Z        9
## 15406  2006-02 00:06:30Z        9
## 15407  2006-03 03:41:24Z        9
## 15408  2006-04 22:59:28Z        9
## 15409  2006-04 21:17:05Z        9
## 15410  2006-05 17:13:24Z        9
## 15411  2006-05 01:24:51Z        9
## 15412  2006-05 15:41:05Z        9
## 15413  2006-06 11:57:30Z        9
## 15414  2006-08 19:50:42Z        9
## 15415  2006-08 18:42:53Z        9
## 15416  2006-08 16:35:20Z        9
## 15417  2006-08 20:51:22Z        9
## 15418  2006-08 02:15:01Z        9
## 15419  2006-10 19:51:55Z        9
## 15420  2006-10 20:16:47Z        9
## 15421  2006-10 20:17:32Z        9
## 15422  2006-11 18:46:24Z        9
## 15423  2006-12 15:46:54Z        9
## 15424  2006-12 22:41:54Z        9
## 15425  2006-12 13:48:56Z        9
## 15426  2006-12 13:54:51Z        9
## 15427  2006-12 14:02:02Z        9
## 15428  2006-12 14:04:30Z        9
## 15429  2006-12 14:22:15Z        9
## 15430  2006-12 14:34:01Z        9
## 15431  2006-12 14:37:56Z        9
## 15432  2006-12 14:47:30Z        9
## 15433  2006-12 14:51:03Z        9
## 15434  2006-12 15:12:12Z        9
## 15435  2006-12 15:23:03Z        9
## 15436  2006-12 15:24:33Z        9
## 15437  2006-12 01:06:02Z        9
## 15438  2006-12 01:06:34Z        9
## 15439  2006-12 01:07:32Z        9
## 15440  2006-12 01:17:33Z        9
## 15441  2006-12 01:18:40Z        9
## 15442  2006-12 01:20:11Z        9
## 15443  2006-12 12:43:47Z        9
## 15444  2006-12 12:55:01Z        9
## 15445  2006-12 13:05:44Z        9
## 15446  2006-12 13:13:25Z        9
## 15447  2006-12 13:14:38Z        9
## 15448  2006-12 13:16:34Z        9
## 15449  2006-12 13:21:17Z        9
## 15450  2006-12 13:23:33Z        9
## 15451  2006-12 13:25:45Z        9
## 15452  2006-12 13:27:55Z        9
## 15453  2006-12 16:34:04Z        9
## 15454  2006-12 16:38:44Z        9
## 15455  2006-12 16:41:30Z        9
## 15456  2006-12 21:17:00Z        9
## 15457  2006-12 21:19:16Z        9
## 15458  2006-12 21:22:43Z        9
## 15459  2006-12 22:12:55Z        9
## 15460  2006-12 22:14:18Z        9
## 15461  2006-12 22:18:01Z        9
## 15462  2006-12 22:22:17Z        9
## 15463  2006-12 22:55:31Z        9
## 15464  2006-12 23:00:35Z        9
## 15465  2006-12 23:02:51Z        9
## 15466  2006-12 23:03:58Z        9
## 15467  2006-12 23:06:08Z        9
## 15468  2006-12 23:10:13Z        9
## 15469  2006-12 23:13:51Z        9
## 15470  2006-12 23:22:00Z        9
## 15471  2006-12 23:23:12Z        9
## 15472  2006-12 23:26:34Z        9
## 15473  2006-12 23:27:54Z        9
## 15474  2006-12 23:28:34Z        9
## 15475  2006-12 23:29:41Z        9
## 15476  2006-12 23:35:54Z        9
## 15477  2006-12 23:36:53Z        9
## 15478  2006-12 23:44:57Z        9
## 15479  2006-12 23:46:30Z        9
## 15480  2006-12 00:18:45Z        9
## 15481  2006-12 00:25:27Z        9
## 15482  2006-12 00:28:23Z        9
## 15483  2006-12 01:15:07Z        9
## 15484  2006-12 01:15:59Z        9
## 15485  2006-12 01:19:17Z        9
## 15486  2006-12 03:13:55Z        9
## 15487  2006-12 14:07:18Z        9
## 15488  2006-12 14:09:49Z        9
## 15489  2006-12 14:23:49Z        9
## 15490  2006-12 14:28:37Z        9
## 15491  2006-12 14:33:13Z        9
## 15492  2006-12 14:53:04Z        9
## 15493  2006-12 14:54:03Z        9
## 15494  2006-12 14:56:03Z        9
## 15495  2006-12 14:56:46Z        9
## 15496  2006-12 15:15:58Z        9
## 15497  2006-12 15:38:01Z        9
## 15498  2006-12 15:38:50Z        9
## 15499  2006-12 15:55:49Z        9
## 15500  2006-12 15:57:19Z        9
## 15501  2006-12 16:00:04Z        9
## 15502  2006-12 17:04:08Z        9
## 15503  2006-12 17:57:23Z        9
## 15504  2006-12 17:59:39Z        9
## 15505  2006-12 22:41:30Z        9
## 15506  2006-12 22:46:52Z        9
## 15507  2006-12 23:04:21Z        9
## 15508  2006-12 23:05:31Z        9
## 15509  2006-12 23:06:51Z        9
## 15510  2006-12 23:25:01Z        9
## 15511  2006-12 23:36:13Z        9
## 15512  2006-12 23:38:30Z        9
## 15513  2006-12 00:13:58Z        9
## 15514  2006-12 00:17:45Z        9
## 15515  2006-12 14:52:47Z        9
## 15516  2006-12 14:53:27Z        9
## 15517  2006-12 15:37:43Z        9
## 15518  2006-12 15:56:02Z        9
## 15519  2006-12 15:56:38Z        9
## 15520  2006-12 19:23:50Z        9
## 15521  2006-12 20:40:43Z        9
## 15522  2006-12 20:49:36Z        9
## 15523  2006-12 20:51:54Z        9
## 15524  2006-12 21:52:01Z        9
## 15525  2006-12 21:57:16Z        9
## 15526  2006-12 21:59:41Z        9
## 15527  2006-12 15:05:57Z        9
## 15528  2006-12 15:10:28Z        9
## 15529  2006-12 15:11:12Z        9
## 15530  2006-12 18:20:26Z        9
## 15531  2006-12 18:44:57Z        9
## 15532  2006-12 16:42:27Z        9
## 15533  2006-12 16:47:59Z        9
## 15534  2006-12 17:05:07Z        9
## 15535  2006-12 17:30:58Z        9
## 15536  2006-12 02:37:26Z        9
## 15537  2006-12 07:53:34Z        9
## 15538  2006-12 01:15:45Z        9
## 15539  2007-01 00:12:12Z        9
## 15540  2007-01 00:17:26Z        9
## 15541  2007-01 00:26:32Z        9
## 15542  2007-01 14:38:56Z        9
## 15543  2007-01 18:56:21Z        9
## 15544  2007-01 19:11:39Z        9
## 15545  2007-01 20:19:20Z        9
## 15546  2007-02 21:02:23Z        9
## 15547  2007-02 21:06:51Z        9
## 15548  2007-02 20:15:29Z        9
## 15549  2007-02 22:45:40Z        9
## 15550  2007-02 15:33:52Z        9
## 15551  2007-02 23:50:23Z        9
## 15552  2007-02 23:54:30Z        9
## 15553  2007-02 18:40:45Z        9
## 15554  2007-02 23:31:59Z        9
## 15555  2007-02 03:50:36Z        9
## 15556  2007-02 02:11:41Z        9
## 15557  2007-02 02:11:58Z        9
## 15558  2007-02 20:18:55Z        9
## 15559  2007-02 20:42:36Z        9
## 15560  2007-02 03:02:52Z        9
## 15561  2007-03 09:35:51Z        9
## 15562  2007-03 04:18:38Z        9
## 15563  2007-03 03:23:18Z        9
## 15564  2007-03 15:49:43Z        9
## 15565  2007-03 16:13:22Z        9
## 15566  2007-03 00:30:58Z        9
## 15567  2007-04 03:38:17Z        9
## 15568  2007-04 18:06:14Z        9
## 15569  2007-04 08:34:11Z        9
## 15570  2007-04 08:35:55Z        9
## 15571  2007-04 08:39:45Z        9
## 15572  2007-04 03:44:20Z        9
## 15573  2007-04 04:01:56Z        9
## 15574  2007-04 22:50:33Z        9
## 15575  2007-05 07:47:31Z        9
## 15576  2007-05 23:29:52Z        9
## 15577  2007-05 18:43:32Z        9
## 15578  2007-06 17:53:00Z        9
## 15579  2007-06 17:53:50Z        9
## 15580  2007-06 17:54:40Z        9
## 15581  2007-06 17:56:08Z        9
## 15582  2007-06 17:57:12Z        9
## 15583  2007-06 22:29:04Z        9
## 15584  2007-06 22:31:13Z        9
## 15585  2007-06 00:51:13Z        9
## 15586  2007-06 00:51:33Z        9
## 15587  2007-06 23:04:33Z        9
## 15588  2007-07 03:46:50Z        9
## 15589  2007-07 23:38:24Z        9
## 15590  2007-08 17:55:09Z        9
## 15591  2007-08 19:11:09Z        9
## 15592  2007-08 21:07:23Z        9
## 15593  2007-08 00:03:29Z        9
## 15594  2007-08 00:05:26Z        9
## 15595  2007-08 00:14:28Z        9
## 15596  2007-08 00:17:18Z        9
## 15597  2007-08 12:27:43Z        9
## 15598  2007-08 23:02:11Z        9
## 15599  2007-08 14:56:35Z        9
## 15600  2007-09 01:57:41Z        9
## 15601  2007-09 03:52:28Z        9
## 15602  2007-09 20:47:45Z        9
## 15603  2007-09 13:44:27Z        9
## 15604  2007-09 12:21:43Z        9
## 15605  2007-09 16:45:31Z        9
## 15606  2007-09 00:01:27Z        9
## 15607  2007-09 01:12:16Z        9
## 15608  2007-09 16:04:44Z        9
## 15609  2007-09 14:07:01Z        9
## 15610  2007-09 15:46:49Z        9
## 15611  2007-10 19:35:03Z        9
## 15612  2007-10 19:37:52Z        9
## 15613  2007-10 19:00:24Z        9
## 15614  2007-11 21:26:46Z        9
## 15615  2007-11 22:12:47Z        9
## 15616  2007-11 21:23:42Z        9
## 15617  2007-12 21:47:59Z        9
## 15618  2007-12 03:13:20Z        9
## 15619  2007-12 03:14:34Z        9
## 15620  2002-10 17:54:45Z        9
## 15621  2002-12 15:26:36Z        9
## 15622  2004-05 19:30:31Z        9
## 15623  2004-08 16:41:01Z        9
## 15624  2004-11 01:39:23Z        9
## 15625  2004-11 01:00:24Z        9
## 15626  2004-11 02:47:13Z        9
## 15627  2004-11 03:46:32Z        9
## 15628  2004-11 04:41:37Z        9
## 15629  2004-11 05:37:27Z        9
## 15630  2004-12 09:33:14Z        9
## 15631  2005-03 22:41:44Z        9
## 15632  2005-04 16:03:43Z        9
## 15633  2005-04 21:58:25Z        9
## 15634  2005-05 08:26:00Z        9
## 15635  2005-06 23:02:24Z        9
## 15636  2005-10 10:02:10Z        9
## 15637  2005-10 05:14:00Z        9
## 15638  2005-12 15:43:55Z        9
## 15639  2005-12 15:48:08Z        9
## 15640  2005-12 22:08:59Z        9
## 15641  2006-03 02:10:52Z        9
## 15642  2006-03 12:25:07Z        9
## 15643  2006-03 18:15:09Z        9
## 15644  2006-04 10:17:40Z        9
## 15645  2006-04 04:01:33Z        9
## 15646  2006-04 05:00:43Z        9
## 15647  2006-04 04:33:54Z        9
## 15648  2006-05 13:43:35Z        9
## 15649  2006-06 05:25:23Z        9
## 15650  2006-06 09:38:18Z        9
## 15651  2006-06 08:01:48Z        9
## 15652  2006-08 16:33:44Z        9
## 15653  2006-08 01:03:01Z        9
## 15654  2006-09 07:13:56Z        9
## 15655  2006-09 21:29:21Z        9
## 15656  2006-09 20:06:57Z        9
## 15657  2006-09 20:07:51Z        9
## 15658  2006-09 20:13:20Z        9
## 15659  2006-09 20:15:50Z        9
## 15660  2006-09 20:16:22Z        9
## 15661  2006-09 20:39:48Z        9
## 15662  2006-09 18:06:12Z        9
## 15663  2006-10 19:38:22Z        9
## 15664  2006-10 23:01:47Z        9
## 15665  2006-10 20:28:28Z        9
## 15666  2006-10 19:29:39Z        9
## 15667  2006-10 15:31:26Z        9
## 15668  2006-10 02:37:17Z        9
## 15669  2006-10 23:21:58Z        9
## 15670  2006-10 23:22:34Z        9
## 15671  2006-11 00:22:24Z        9
## 15672  2006-11 15:55:49Z        9
## 15673  2006-11 18:32:11Z        9
## 15674  2006-11 18:36:10Z        9
## 15675  2006-12 02:36:18Z        9
## 15676  2007-01 06:13:34Z        9
## 15677  2007-01 06:14:01Z        9
## 15678  2007-01 11:56:22Z        9
## 15679  2007-01 22:36:42Z        9
## 15680  2007-01 02:13:47Z        9
## 15681  2007-01 19:12:43Z        9
## 15682  2007-01 14:33:20Z        9
## 15683  2007-02 22:27:19Z        9
## 15684  2007-02 06:47:01Z        9
## 15685  2007-03 10:43:46Z        9
## 15686  2007-03 16:57:27Z        9
## 15687  2007-03 06:05:09Z        9
## 15688  2007-03 03:17:49Z        9
## 15689  2007-03 03:53:18Z        9
## 15690  2007-03 23:52:32Z        9
## 15691  2007-03 22:09:49Z        9
## 15692  2007-03 22:11:51Z        9
## 15693  2007-03 22:19:12Z        9
## 15694  2007-03 22:59:45Z        9
## 15695  2007-03 23:00:41Z        9
## 15696  2007-03 23:02:26Z        9
## 15697  2007-03 23:05:31Z        9
## 15698  2007-03 23:06:09Z        9
## 15699  2007-03 23:07:46Z        9
## 15700  2007-03 23:04:52Z        9
## 15701  2007-03 23:06:34Z        9
## 15702  2007-04 17:11:33Z        9
## 15703  2007-04 09:34:48Z        9
## 15704  2007-04 09:36:51Z        9
## 15705  2007-04 21:02:21Z        9
## 15706  2007-04 21:04:21Z        9
## 15707  2007-04 21:50:28Z        9
## 15708  2007-04 05:07:22Z        9
## 15709  2007-04 05:17:50Z        9
## 15710  2007-04 05:21:13Z        9
## 15711  2007-04 11:53:17Z        9
## 15712  2007-04 11:59:56Z        9
## 15713  2007-05 04:47:21Z        9
## 15714  2007-05 09:27:53Z        9
## 15715  2007-05 22:59:55Z        9
## 15716  2007-05 02:48:40Z        9
## 15717  2007-05 21:12:41Z        9
## 15718  2007-06 01:39:35Z        9
## 15719  2007-06 15:39:50Z        9
## 15720  2007-07 22:24:40Z        9
## 15721  2007-07 23:14:33Z        9
## 15722  2007-07 19:42:45Z        9
## 15723  2007-07 19:45:57Z        9
## 15724  2007-07 19:46:18Z        9
## 15725  2007-08 02:33:36Z        9
## 15726  2007-08 02:33:56Z        9
## 15727  2007-08 02:35:45Z        9
## 15728  2007-08 23:37:00Z        9
## 15729  2007-08 23:37:37Z        9
## 15730  2007-08 17:36:25Z        9
## 15731  2007-08 17:37:07Z        9
## 15732  2007-08 17:37:23Z        9
## 15733  2007-08 17:38:06Z        9
## 15734  2007-08 17:38:39Z        9
## 15735  2007-08 19:05:54Z        9
## 15736  2007-09 22:51:57Z        9
## 15737  2007-09 21:19:25Z        9
## 15738  2007-09 02:05:03Z        9
## 15739  2007-09 02:05:23Z        9
## 15740  2007-09 02:06:25Z        9
## 15741  2007-09 20:30:02Z        9
## 15742  2007-10 02:17:00Z        9
## 15743  2007-10 02:18:01Z        9
## 15744  2007-10 09:09:24Z        9
## 15745  2007-10 01:02:22Z        9
## 15746  2007-10 01:04:56Z        9
## 15747  2007-10 01:27:10Z        9
## 15748  2007-10 00:44:01Z        9
## 15749  2007-11 16:28:07Z        9
## 15750  2007-11 16:28:43Z        9
## 15751  2007-11 16:29:09Z        9
## 15752  2007-11 19:42:14Z        9
## 15753  2007-11 06:20:34Z        9
## 15754  2007-11 15:46:33Z        9
## 15755  2007-11 19:01:02Z        9
## 15756  2007-11 07:49:36Z        9
## 15757  2007-11 19:11:01Z        9
## 15758  2007-12 03:13:24Z        9
## 15759  2008-01 05:37:33Z        9
## 15760  2002-10 17:55:09Z        9
## 15761  2002-12 15:27:29Z        9
## 15762  2004-08 16:45:30Z        9
## 15763  2004-11 20:14:40Z        9
## 15764  2004-11 20:14:55Z        9
## 15765  2004-11 03:47:19Z        9
## 15766  2004-11 04:41:57Z        9
## 15767  2004-12 12:54:23Z        9
## 15768  2005-07 01:22:41Z        9
## 15769  2005-07 02:09:03Z        9
## 15770  2005-09 22:31:53Z        9
## 15771  2005-11 18:15:26Z        9
## 15772  2005-11 00:08:18Z        9
## 15773  2005-11 01:55:14Z        9
## 15774  2005-11 22:42:38Z        9
## 15775  2005-12 01:17:17Z        9
## 15776  2006-01 15:26:14Z        9
## 15777  2006-03 13:07:52Z        9
## 15778  2006-04 09:33:50Z        9
## 15779  2006-04 10:19:20Z        9
## 15780  2006-04 11:51:27Z        9
## 15781  2006-04 03:49:24Z        9
## 15782  2006-05 05:16:56Z        9
## 15783  2006-06 00:44:19Z        9
## 15784  2006-06 00:45:39Z        9
## 15785  2006-06 00:48:35Z        9
## 15786  2006-08 23:11:01Z        9
## 15787  2006-08 09:34:04Z        9
## 15788  2007-01 07:54:27Z        9
## 15789  2007-03 00:27:52Z        9
## 15790  2007-04 01:53:50Z        9
## 15791  2007-04 03:06:13Z        9
## 15792  2007-04 04:55:03Z        9
## 15793  2007-05 05:43:41Z        9
## 15794  2007-09 13:46:34Z        9
## 15795  2007-09 13:48:52Z        9
## 15796  2007-09 21:31:41Z        9
## 15797  2007-09 22:38:02Z        9
## 15798  2007-09 00:28:23Z        9
## 15799  2007-10 02:11:26Z        9
## 15800  2007-11 05:06:54Z        9
## 15801  2007-11 03:55:12Z        9
## 15802  2007-11 18:56:16Z        9
## 15803  2007-12 04:52:52Z        9
## 15804  2002-10 17:56:48Z        0
## 15805  2002-12 15:47:55Z        0
## 15806  2004-08 16:59:03Z        0
## 15807  2004-11 03:50:10Z        0
## 15808  2004-11 04:44:04Z        0
## 15809  2004-12 15:23:00Z        0
## 15810  2005-07 23:50:58Z        0
## 15811  2005-07 00:14:10Z        0
## 15812  2005-07 00:25:12Z        0
## 15813  2005-12 01:17:20Z        0
## 15814  2005-12 00:24:17Z        0
## 15815  2006-01 21:50:13Z        0
## 15816  2006-03 20:16:49Z        0
## 15817  2006-04 10:25:36Z        0
## 15818  2006-05 11:10:13Z        0
## 15819  2006-09 21:41:18Z        0
## 15820  2006-09 22:57:54Z        0
## 15821  2006-09 22:59:50Z        0
## 15822  2007-02 00:54:40Z        0
## 15823  2007-03 06:26:32Z        0
## 15824  2007-04 04:21:10Z        0
## 15825  2007-04 06:00:03Z        0
## 15826  2007-05 08:32:56Z        0
## 15827  2007-07 11:50:00Z        0
## 15828  2007-09 21:42:30Z        0
## 15829  2007-09 22:32:29Z        0
## 15830  2007-09 10:39:58Z        0
## 15831  2007-10 00:25:53Z        0
## 15832  2007-10 03:23:19Z        0
## 15833  2007-11 00:12:32Z        0
## 15834  2007-11 00:13:50Z        0
## 15835  2007-11 04:28:16Z        0
## 15836  2007-11 04:28:35Z        0
## 15837  2007-11 18:41:06Z        0
## 15838  2007-12 22:12:08Z        0
## 15839  2007-12 22:13:13Z        0
## 15840  2007-12 05:23:42Z        0
## 15841  2007-12 20:30:37Z        0
## 15842  2007-12 17:31:36Z        0
## 15843  2007-12 17:44:42Z        0
## 15844  2007-12 17:45:42Z        0
## 15845  2007-12 17:46:00Z        0
## 15846  2002-10 18:04:49Z        1
## 15847  2002-12 00:10:54Z        1
## 15848  2002-12 00:11:26Z        1
## 15849  2003-01 07:50:11Z        1
## 15850  2003-06 13:35:37Z        1
## 15851  2003-06 13:44:21Z        1
## 15852  2003-12 21:16:00Z        1
## 15853  2003-12 21:16:33Z        1
## 15854  2004-02 20:06:39Z        1
## 15855  2004-02 12:04:09Z        1
## 15856  2004-05 18:17:58Z        1
## 15857  2004-06 00:25:29Z        1
## 15858  2004-07 22:32:31Z        1
## 15859  2004-07 05:48:00Z        1
## 15860  2004-10 14:50:36Z        1
## 15861  2004-10 07:53:24Z        1
## 15862  2004-10 15:21:14Z        1
## 15863  2004-10 19:57:56Z        1
## 15864  2004-11 06:23:17Z        1
## 15865  2004-11 23:25:26Z        1
## 15866  2004-11 17:11:03Z        1
## 15867  2004-12 21:11:37Z        1
## 15868  2004-12 21:25:41Z        1
## 15869  2004-12 21:34:36Z        1
## 15870  2004-12 23:22:24Z        1
## 15871  2004-12 18:37:18Z        1
## 15872  2004-12 19:00:37Z        1
## 15873  2005-01 11:18:52Z        1
## 15874  2005-02 13:13:56Z        1
## 15875  2005-04 16:46:00Z        1
## 15876  2005-05 02:48:12Z        1
## 15877  2005-07 10:39:14Z        1
## 15878  2005-07 08:11:56Z        1
## 15879  2005-07 08:13:36Z        1
## 15880  2005-07 13:08:20Z        1
## 15881  2005-07 20:50:56Z        1
## 15882  2005-07 21:45:16Z        1
## 15883  2005-07 21:48:37Z        1
## 15884  2005-08 18:02:11Z        1
## 15885  2005-08 18:29:46Z        1
## 15886  2005-10 10:03:05Z        1
## 15887  2005-11 08:22:24Z        1
## 15888  2005-11 08:30:17Z        1
## 15889  2005-11 08:54:20Z        1
## 15890  2005-11 08:55:07Z        1
## 15891  2005-11 08:55:55Z        1
## 15892  2005-12 02:39:19Z        1
## 15893  2005-12 02:14:45Z        1
## 15894  2005-12 02:52:52Z        1
## 15895  2005-12 14:12:56Z        1
## 15896  2006-03 07:55:22Z        1
## 15897  2006-03 09:36:17Z        1
## 15898  2006-04 08:10:53Z        1
## 15899  2006-05 21:40:57Z        1
## 15900  2006-06 11:36:49Z        1
## 15901  2006-08 22:46:41Z        1
## 15902  2006-09 14:09:18Z        1
## 15903  2006-09 08:38:42Z        1
## 15904  2006-10 22:38:27Z        1
## 15905  2006-10 05:18:02Z        1
## 15906  2006-10 03:10:31Z        1
## 15907  2006-10 12:02:53Z        1
## 15908  2006-11 15:15:20Z        1
## 15909  2006-11 15:45:35Z        1
## 15910  2006-11 16:39:09Z        1
## 15911  2006-11 16:39:14Z        1
## 15912  2006-12 02:42:32Z        1
## 15913  2006-12 02:43:22Z        1
## 15914  2006-12 02:44:27Z        1
## 15915  2006-12 02:45:40Z        1
## 15916  2006-12 02:46:43Z        1
## 15917  2006-12 02:48:10Z        1
## 15918  2006-12 02:14:19Z        1
## 15919  2006-12 02:14:50Z        1
## 15920  2006-12 02:17:23Z        1
## 15921  2006-12 02:21:36Z        1
## 15922  2006-12 02:22:14Z        1
## 15923  2006-12 02:23:09Z        1
## 15924  2006-12 12:50:11Z        1
## 15925  2006-12 02:20:30Z        1
## 15926  2007-01 17:16:58Z        1
## 15927  2007-02 15:32:01Z        1
## 15928  2007-03 13:31:28Z        1
## 15929  2007-03 13:31:45Z        1
## 15930  2007-03 13:33:13Z        1
## 15931  2007-03 13:33:44Z        1
## 15932  2007-08 03:05:45Z        1
## 15933  2007-09 17:06:15Z        1
## 15934  2007-11 11:55:33Z        1
## 15935  2007-11 20:53:35Z        1
## 15936  2007-12 22:07:47Z        1
## 15937  2007-12 22:17:31Z        1
## 15938  2007-12 10:43:50Z        1
## 15939  2007-12 10:45:08Z        1
## 15940  2007-12 10:45:25Z        1
## 15941  2007-12 10:53:29Z        1
## 15942  2007-12 17:47:32Z        1
## 15943  2007-12 19:05:10Z        1
## 15944  2002-10 18:08:02Z        2
## 15945  2002-12 18:16:41Z        2
## 15946  2004-08 19:16:39Z        2
## 15947  2004-11 01:35:50Z        2
## 15948  2004-11 01:36:03Z        2
## 15949  2004-11 04:10:52Z        2
## 15950  2004-11 04:54:38Z        2
## 15951  2004-12 16:18:28Z        2
## 15952  2006-03 08:48:56Z        2
## 15953  2006-04 11:08:56Z        2
## 15954  2006-05 20:51:01Z        2
## 15955  2007-03 00:31:37Z        2
## 15956  2007-09 21:51:11Z        2
## 15957  2007-09 19:44:44Z        2
## 15958  2007-10 05:02:42Z        2
## 15959  2007-11 19:37:04Z        2
## 15960  2007-11 04:14:48Z        2
## 15961  2007-12 05:03:36Z        2
## 15962  2002-10 18:13:12Z        3
## 15963  2002-12 19:21:32Z        3
## 15964  2004-08 20:01:08Z        3
## 15965  2004-11 04:25:32Z        3
## 15966  2004-11 04:59:23Z        3
## 15967  2004-12 10:36:01Z        3
## 15968  2006-03 09:48:48Z        3
## 15969  2006-04 11:30:01Z        3
## 15970  2006-05 21:09:59Z        3
## 15971  2006-08 01:28:18Z        3
## 15972  2007-01 19:25:57Z        3
## 15973  2007-07 23:36:16Z        3
## 15974  2007-07 23:56:11Z        3
## 15975  2007-09 22:08:17Z        3
## 15976  2007-11 20:05:30Z        3
## 15977  2007-11 05:21:39Z        3
## 15978  2007-11 15:04:46Z        3
## 15979  2007-12 05:35:45Z        3
## 15980  2007-12 02:06:01Z        3
## 15981  2002-10 18:14:13Z        4
## 15982  2002-12 12:40:37Z        4
## 15983  2004-08 20:09:37Z        4
## 15984  2004-11 08:29:44Z        4
## 15985  2004-11 08:29:57Z        4
## 15986  2004-11 04:27:31Z        4
## 15987  2004-11 05:00:23Z        4
## 15988  2004-12 18:00:54Z        4
## 15989  2006-03 07:51:40Z        4
## 15990  2006-04 11:33:39Z        4
## 15991  2006-05 21:15:35Z        4
## 15992  2006-05 21:20:36Z        4
## 15993  2006-05 21:37:30Z        4
## 15994  2006-08 04:02:34Z        4
## 15995  2007-02 12:21:23Z        4
## 15996  2007-02 03:39:32Z        4
## 15997  2007-04 23:52:23Z        4
## 15998  2007-05 21:11:48Z        4
## 15999  2007-05 21:13:23Z        4
## 16000  2007-05 14:41:43Z        4
## 16001  2007-05 13:12:32Z        4
## 16002  2007-05 13:12:59Z        4
## 16003  2007-07 03:15:27Z        4
## 16004  2007-09 20:05:42Z        4
## 16005  2007-09 22:15:35Z        4
## 16006  2007-09 22:18:45Z        4
## 16007  2007-09 00:40:22Z        4
## 16008  2007-10 20:16:56Z        4
## 16009  2007-10 01:35:44Z        4
## 16010  2007-11 06:23:51Z        4
## 16011  2007-11 02:58:01Z        4
## 16012  2007-12 04:19:11Z        4
## 16013  2002-10 18:14:15Z        4
## 16014  2002-12 12:40:42Z        4
## 16015  2004-08 20:10:03Z        4
## 16016  2004-11 02:22:54Z        4
## 16017  2004-11 02:23:07Z        4
## 16018  2004-11 04:27:38Z        4
## 16019  2004-11 05:00:27Z        4
## 16020  2004-12 21:29:54Z        4
## 16021  2006-03 19:30:11Z        4
## 16022  2006-04 11:33:48Z        4
## 16023  2006-08 16:15:41Z        4
## 16024  2007-02 12:21:40Z        4
## 16025  2007-02 03:39:55Z        4
## 16026  2007-09 20:26:02Z        4
## 16027  2007-09 06:11:31Z        4
## 16028  2007-10 22:35:56Z        4
## 16029  2007-11 20:22:17Z        4
## 16030  2007-11 03:11:58Z        4
## 16031  2007-12 04:27:37Z        4
## 16032  2002-10 18:28:31Z        7
## 16033  2002-12 22:17:21Z        7
## 16034  2004-08 22:03:24Z        7
## 16035  2004-11 02:22:41Z        7
## 16036  2004-11 02:22:53Z        7
## 16037  2004-11 05:00:17Z        7
## 16038  2004-11 05:11:17Z        7
## 16039  2004-12 19:04:14Z        7
## 16040  2006-03 03:40:09Z        7
## 16041  2006-04 12:22:54Z        7
## 16042  2006-05 21:15:03Z        7
## 16043  2007-03 01:30:21Z        7
## 16044  2007-09 21:27:47Z        7
## 16045  2007-09 01:13:15Z        7
## 16046  2007-10 02:49:35Z        7
## 16047  2007-11 21:27:20Z        7
## 16048  2007-11 03:56:27Z        7
## 16049  2007-12 04:53:41Z        7
## 16050  2002-10 18:29:25Z        7
## 16051  2002-12 13:20:19Z        7
## 16052  2004-08 22:08:51Z        7
## 16053  2004-11 02:12:53Z        7
## 16054  2004-11 02:13:05Z        7
## 16055  2004-11 05:02:40Z        7
## 16056  2004-11 05:12:09Z        7
## 16057  2004-12 21:21:02Z        7
## 16058  2005-09 23:04:13Z        7
## 16059  2005-09 23:05:19Z        7
## 16060  2006-03 16:27:04Z        7
## 16061  2006-04 12:27:02Z        7
## 16062  2006-05 01:07:40Z        7
## 16063  2006-07 01:42:36Z        7
## 16064  2006-07 03:10:49Z        7
## 16065  2007-03 01:39:54Z        7
## 16066  2007-05 22:56:35Z        7
## 16067  2007-05 22:57:09Z        7
## 16068  2007-05 22:57:21Z        7
## 16069  2007-06 01:05:57Z        7
## 16070  2007-09 20:26:12Z        7
## 16071  2007-09 06:11:55Z        7
## 16072  2007-10 22:41:06Z        7
## 16073  2007-11 21:33:31Z        7
## 16074  2007-11 03:11:30Z        7
## 16075  2007-12 04:27:17Z        7
## 16076  2002-10 18:31:55Z        8
## 16077  2002-12 22:55:11Z        8
## 16078  2004-08 22:24:55Z        8
## 16079  2004-11 05:08:59Z        8
## 16080  2004-11 05:14:33Z        8
## 16081  2004-12 04:45:41Z        8
## 16082  2006-03 04:45:51Z        8
## 16083  2006-03 07:26:23Z        8
## 16084  2006-04 12:37:29Z        8
## 16085  2006-05 18:22:57Z        8
## 16086  2007-01 06:44:29Z        8
## 16087  2007-02 07:52:28Z        8
## 16088  2007-03 01:32:48Z        8
## 16089  2007-03 02:21:50Z        8
## 16090  2007-07 13:33:31Z        8
## 16091  2007-09 22:48:20Z        8
## 16092  2007-10 01:49:09Z        8
## 16093  2007-11 21:44:37Z        8
## 16094  2007-11 04:57:54Z        8
## 16095  2007-12 05:27:03Z        8
## 16096  2002-10 18:34:34Z        8
## 16097  2002-12 13:38:37Z        8
## 16098  2004-06 18:25:21Z        8
## 16099  2004-08 22:40:29Z        8
## 16100  2004-08 18:41:19Z        8
## 16101  2004-11 13:21:17Z        8
## 16102  2004-11 13:21:30Z        8
## 16103  2004-11 05:14:12Z        8
## 16104  2004-11 05:16:58Z        8
## 16105  2004-12 05:11:29Z        8
## 16106  2006-03 09:48:10Z        8
## 16107  2006-04 12:47:32Z        8
## 16108  2006-05 21:24:58Z        8
## 16109  2006-12 19:56:30Z        8
## 16110  2006-12 20:30:16Z        8
## 16111  2007-03 18:39:56Z        8
## 16112  2007-06 21:54:02Z        8
## 16113  2007-06 07:15:39Z        8
## 16114  2007-06 08:30:20Z        8
## 16115  2007-06 18:22:19Z        8
## 16116  2007-09 19:53:55Z        8
## 16117  2007-09 05:12:53Z        8
## 16118  2007-10 19:04:02Z        8
## 16119  2007-11 00:25:34Z        8
## 16120  2007-12 04:14:54Z        8
## 16121  2002-10 18:46:55Z        1
## 16122  2002-12 01:04:26Z        1
## 16123  2004-08 23:59:17Z        1
## 16124  2004-11 08:31:35Z        1
## 16125  2004-11 08:31:48Z        1
## 16126  2004-11 05:36:51Z        1
## 16127  2004-11 05:28:48Z        1
## 16128  2004-12 12:22:49Z        1
## 16129  2005-10 14:16:20Z        1
## 16130  2006-03 01:54:33Z        1
## 16131  2006-04 13:34:30Z        1
## 16132  2006-05 04:28:08Z        1
## 16133  2006-05 18:32:20Z        1
## 16134  2006-06 17:33:39Z        1
## 16135  2007-02 17:36:40Z        1
## 16136  2007-08 00:22:31Z        1
## 16137  2007-09 22:38:52Z        1
## 16138  2007-09 10:12:12Z        1
## 16139  2007-10 12:18:29Z        1
## 16140  2007-10 07:28:11Z        1
## 16141  2007-10 10:53:49Z        1
## 16142  2007-10 05:30:41Z        1
## 16143  2007-10 02:13:02Z        1
## 16144  2007-10 01:11:50Z        1
## 16145  2007-10 20:12:45Z        1
## 16146  2007-12 13:20:36Z        1
## 16147  2007-12 22:24:22Z        1
## 16148  2002-10 18:53:18Z        2
## 16149  2002-12 02:02:43Z        2
## 16150  2004-08 00:59:44Z        2
## 16151  2004-08 06:30:29Z        2
## 16152  2004-11 05:45:35Z        2
## 16153  2004-11 05:32:48Z        2
## 16154  2004-12 12:38:25Z        2
## 16155  2006-03 23:01:36Z        2
## 16156  2006-04 13:54:34Z        2
## 16157  2006-05 11:54:23Z        2
## 16158  2007-09 01:38:49Z        2
## 16159  2007-09 23:26:27Z        2
## 16160  2007-09 10:42:06Z        2
## 16161  2007-10 19:27:29Z        2
## 16162  2007-10 06:53:22Z        2
## 16163  2007-10 07:56:55Z        2
## 16164  2007-10 11:24:02Z        2
## 16165  2007-10 05:52:12Z        2
## 16166  2007-10 23:29:24Z        2
## 16167  2007-12 05:11:18Z        2
## 16168  2007-12 22:57:10Z        2
## 16169  2002-10 18:53:39Z        2
## 16170  2002-12 02:08:07Z        2
## 16171  2004-08 01:04:13Z        2
## 16172  2004-08 02:30:19Z        2
## 16173  2004-11 05:45:59Z        2
## 16174  2004-11 05:33:03Z        2
## 16175  2004-12 16:34:01Z        2
## 16176  2005-10 11:00:50Z        2
## 16177  2005-10 04:41:01Z        2
## 16178  2005-10 21:27:16Z        2
## 16179  2006-03 21:57:14Z        2
## 16180  2006-04 13:55:48Z        2
## 16181  2006-05 12:58:26Z        2
## 16182  2006-05 11:31:44Z        2
## 16183  2006-06 21:51:22Z        2
## 16184  2006-11 18:38:44Z        2
## 16185  2006-12 14:35:09Z        2
## 16186  2007-02 18:00:49Z        2
## 16187  2007-06 07:25:11Z        2
## 16188  2007-06 21:18:17Z        2
## 16189  2007-08 02:05:25Z        2
## 16190  2007-09 23:03:24Z        2
## 16191  2007-10 02:25:00Z        2
## 16192  2007-10 07:37:07Z        2
## 16193  2007-10 11:03:40Z        2
## 16194  2007-10 05:50:22Z        2
## 16195  2007-11 23:38:41Z        2
## 16196  2007-12 21:50:29Z        2
## 16197  2008-01 19:58:32Z        2
## 16198  2002-10 19:06:59Z        4
## 16199  2002-12 03:13:49Z        4
## 16200  2004-08 02:35:22Z        4
## 16201  2004-08 02:35:39Z        4
## 16202  2004-09 06:06:04Z        4
## 16203  2004-11 05:56:11Z        4
## 16204  2004-11 05:37:50Z        4
## 16205  2004-12 06:57:18Z        4
## 16206  2005-01 02:42:07Z        4
## 16207  2005-01 05:58:56Z        4
## 16208  2005-02 22:28:38Z        4
## 16209  2005-02 04:24:57Z        4
## 16210  2005-07 02:35:53Z        4
## 16211  2005-07 02:43:29Z        4
## 16212  2005-10 10:08:31Z        4
## 16213  2005-10 16:27:02Z        4
## 16214  2005-10 17:09:20Z        4
## 16215  2005-12 21:44:44Z        4
## 16216  2005-12 21:47:17Z        4
## 16217  2005-12 21:49:19Z        4
## 16218  2006-01 01:40:28Z        4
## 16219  2006-01 01:59:42Z        4
## 16220  2006-01 02:35:17Z        4
## 16221  2006-01 14:38:30Z        4
## 16222  2006-02 22:55:16Z        4
## 16223  2006-03 11:15:56Z        4
## 16224  2006-04 14:19:32Z        4
## 16225  2006-04 20:06:54Z        4
## 16226  2006-05 17:58:27Z        4
## 16227  2006-05 12:35:09Z        4
## 16228  2006-06 21:59:53Z        4
## 16229  2006-07 05:46:30Z        4
## 16230  2006-07 14:54:55Z        4
## 16231  2006-07 05:08:31Z        4
## 16232  2006-07 05:09:17Z        4
## 16233  2006-07 05:11:22Z        4
## 16234  2006-07 05:12:37Z        4
## 16235  2006-07 05:14:15Z        4
## 16236  2006-07 05:17:23Z        4
## 16237  2006-07 01:31:36Z        4
## 16238  2006-07 01:32:31Z        4
## 16239  2006-07 10:55:52Z        4
## 16240  2006-07 10:56:57Z        4
## 16241  2006-07 17:33:35Z        4
## 16242  2006-08 01:46:48Z        4
## 16243  2006-08 01:54:37Z        4
## 16244  2006-08 01:55:38Z        4
## 16245  2006-09 13:10:11Z        4
## 16246  2006-09 13:56:48Z        4
## 16247  2006-10 23:09:47Z        4
## 16248  2006-10 23:14:07Z        4
## 16249  2006-10 23:19:28Z        4
## 16250  2006-10 23:20:01Z        4
## 16251  2006-10 21:04:01Z        4
## 16252  2006-11 21:12:04Z        4
## 16253  2006-11 21:13:02Z        4
## 16254  2006-11 21:23:29Z        4
## 16255  2006-11 21:27:44Z        4
## 16256  2006-11 21:28:41Z        4
## 16257  2006-11 21:30:30Z        4
## 16258  2006-11 21:31:26Z        4
## 16259  2006-11 21:35:41Z        4
## 16260  2006-11 21:38:38Z        4
## 16261  2006-11 21:39:24Z        4
## 16262  2006-11 21:40:48Z        4
## 16263  2006-11 21:42:13Z        4
## 16264  2006-11 21:42:54Z        4
## 16265  2006-11 21:45:27Z        4
## 16266  2006-11 21:51:04Z        4
## 16267  2006-11 21:53:25Z        4
## 16268  2006-11 21:57:29Z        4
## 16269  2006-11 22:01:44Z        4
## 16270  2006-11 22:08:47Z        4
## 16271  2006-11 22:20:31Z        4
## 16272  2006-11 22:22:30Z        4
## 16273  2006-11 04:27:16Z        4
## 16274  2006-11 14:24:01Z        4
## 16275  2006-11 14:28:28Z        4
## 16276  2006-11 14:33:28Z        4
## 16277  2006-11 14:51:30Z        4
## 16278  2006-11 14:54:37Z        4
## 16279  2006-11 15:01:30Z        4
## 16280  2006-11 15:11:56Z        4
## 16281  2006-11 15:14:28Z        4
## 16282  2006-11 15:32:03Z        4
## 16283  2006-11 18:08:20Z        4
## 16284  2006-11 18:41:41Z        4
## 16285  2006-11 18:43:45Z        4
## 16286  2006-11 18:48:23Z        4
## 16287  2006-11 18:49:51Z        4
## 16288  2006-11 18:51:29Z        4
## 16289  2006-11 18:58:34Z        4
## 16290  2006-11 18:59:39Z        4
## 16291  2006-11 19:02:16Z        4
## 16292  2006-11 19:03:02Z        4
## 16293  2006-11 19:04:17Z        4
## 16294  2006-11 19:06:11Z        4
## 16295  2006-11 19:13:27Z        4
## 16296  2006-11 19:13:48Z        4
## 16297  2006-11 19:14:50Z        4
## 16298  2006-11 19:15:38Z        4
## 16299  2006-11 19:21:50Z        4
## 16300  2006-11 19:24:50Z        4
## 16301  2006-11 19:30:21Z        4
## 16302  2006-11 19:32:13Z        4
## 16303  2006-11 19:50:47Z        4
## 16304  2006-11 21:30:30Z        4
## 16305  2006-11 03:28:45Z        4
## 16306  2006-11 22:56:18Z        4
## 16307  2006-11 06:01:02Z        4
## 16308  2006-11 23:36:43Z        4
## 16309  2006-12 00:06:17Z        4
## 16310  2006-12 00:07:44Z        4
## 16311  2006-12 05:31:52Z        4
## 16312  2006-12 05:33:01Z        4
## 16313  2006-12 05:34:30Z        4
## 16314  2006-12 05:38:40Z        4
## 16315  2006-12 05:44:07Z        4
## 16316  2006-12 05:45:22Z        4
## 16317  2006-12 05:46:59Z        4
## 16318  2006-12 05:47:36Z        4
## 16319  2006-12 06:24:46Z        4
## 16320  2006-12 06:27:08Z        4
## 16321  2006-12 06:30:38Z        4
## 16322  2006-12 06:35:41Z        4
## 16323  2006-12 06:49:52Z        4
## 16324  2006-12 07:02:30Z        4
## 16325  2006-12 07:04:22Z        4
## 16326  2006-12 07:17:43Z        4
## 16327  2006-12 07:18:23Z        4
## 16328  2006-12 07:35:41Z        4
## 16329  2006-12 07:36:24Z        4
## 16330  2006-12 07:36:50Z        4
## 16331  2006-12 07:38:56Z        4
## 16332  2006-12 07:39:22Z        4
## 16333  2006-12 08:45:36Z        4
## 16334  2006-12 08:56:08Z        4
## 16335  2006-12 01:11:28Z        4
## 16336  2006-12 01:12:23Z        4
## 16337  2006-12 01:12:50Z        4
## 16338  2006-12 01:19:46Z        4
## 16339  2006-12 01:33:36Z        4
## 16340  2006-12 01:41:42Z        4
## 16341  2006-12 00:48:01Z        4
## 16342  2006-12 00:50:45Z        4
## 16343  2006-12 18:10:54Z        4
## 16344  2006-12 18:11:14Z        4
## 16345  2006-12 18:15:21Z        4
## 16346  2006-12 17:39:30Z        4
## 16347  2006-12 17:52:06Z        4
## 16348  2006-12 23:06:34Z        4
## 16349  2007-01 21:41:32Z        4
## 16350  2007-02 22:44:11Z        4
## 16351  2007-02 05:32:23Z        4
## 16352  2007-02 19:25:55Z        4
## 16353  2007-02 17:27:23Z        4
## 16354  2007-03 17:54:50Z        4
## 16355  2007-03 18:23:33Z        4
## 16356  2007-03 10:15:34Z        4
## 16357  2007-03 14:10:58Z        4
## 16358  2007-03 01:55:15Z        4
## 16359  2007-03 21:23:02Z        4
## 16360  2007-03 22:34:19Z        4
## 16361  2007-04 13:57:54Z        4
## 16362  2007-04 15:06:07Z        4
## 16363  2007-04 18:21:31Z        4
## 16364  2007-04 18:30:39Z        4
## 16365  2007-05 21:44:49Z        4
## 16366  2007-05 05:15:36Z        4
## 16367  2007-05 05:27:48Z        4
## 16368  2007-05 20:26:15Z        4
## 16369  2007-06 12:38:55Z        4
## 16370  2007-06 06:06:54Z        4
## 16371  2007-06 07:33:12Z        4
## 16372  2007-06 03:39:53Z        4
## 16373  2007-07 05:36:44Z        4
## 16374  2007-07 05:40:07Z        4
## 16375  2007-07 13:31:21Z        4
## 16376  2007-08 01:36:37Z        4
## 16377  2007-08 15:15:20Z        4
## 16378  2007-08 15:17:26Z        4
## 16379  2007-09 22:47:59Z        4
## 16380  2007-10 23:19:33Z        4
## 16381  2007-10 02:04:44Z        4
## 16382  2007-10 07:34:51Z        4
## 16383  2007-10 11:01:08Z        4
## 16384  2007-10 05:37:26Z        4
## 16385  2007-10 15:16:23Z        4
## 16386  2007-10 02:46:32Z        4
## 16387  2007-11 02:02:56Z        4
## 16388  2007-12 03:19:03Z        4
## 16389  2007-12 21:49:44Z        4
## 16390  2007-12 15:49:54Z        4
## 16391  2007-12 15:52:06Z        4
## 16392  2007-12 06:32:08Z        4
## 16393  2008-01 02:14:03Z        4
## 16394  2008-01 19:54:52Z        4
## 16395  2002-10 19:10:23Z        4
## 16396  2002-11 18:44:12Z        4
## 16397  2002-11 19:05:57Z        4
## 16398  2002-12 03:45:10Z        4
## 16399  2004-08 02:52:38Z        4
## 16400  2004-11 06:01:46Z        4
## 16401  2004-11 05:40:04Z        4
## 16402  2004-12 14:10:43Z        4
## 16403  2006-03 02:34:58Z        4
## 16404  2006-04 14:34:29Z        4
## 16405  2006-05 16:48:18Z        4
## 16406  2006-06 06:32:15Z        4
## 16407  2007-09 06:34:26Z        4
## 16408  2007-09 23:34:09Z        4
## 16409  2007-09 10:07:37Z        4
## 16410  2007-09 22:31:08Z        4
## 16411  2007-09 22:32:04Z        4
## 16412  2007-09 22:35:07Z        4
## 16413  2007-09 12:21:39Z        4
## 16414  2007-10 23:49:24Z        4
## 16415  2007-10 08:07:39Z        4
## 16416  2007-10 09:31:24Z        4
## 16417  2007-10 11:34:48Z        4
## 16418  2007-10 05:12:37Z        4
## 16419  2007-10 21:00:53Z        4
## 16420  2007-12 13:08:37Z        4
## 16421  2007-12 05:18:51Z        4
## 16422  2002-10 19:12:59Z        5
## 16423  2002-12 04:20:36Z        5
## 16424  2003-06 02:23:08Z        5
## 16425  2004-08 03:07:39Z        5
## 16426  2004-08 01:41:29Z        5
## 16427  2004-09 07:46:48Z        5
## 16428  2004-11 06:06:27Z        5
## 16429  2004-11 05:42:04Z        5
## 16430  2004-11 08:52:10Z        5
## 16431  2004-11 08:56:09Z        5
## 16432  2004-12 14:50:42Z        5
## 16433  2005-04 23:07:51Z        5
## 16434  2005-05 01:41:00Z        5
## 16435  2005-06 14:32:26Z        5
## 16436  2005-06 12:52:14Z        5
## 16437  2005-07 04:09:31Z        5
## 16438  2005-07 08:43:03Z        5
## 16439  2005-07 20:28:03Z        5
## 16440  2005-07 20:28:04Z        5
## 16441  2005-07 20:30:03Z        5
## 16442  2005-09 08:36:51Z        5
## 16443  2005-09 08:59:12Z        5
## 16444  2005-10 01:39:29Z        5
## 16445  2005-11 06:04:37Z        5
## 16446  2005-12 07:56:46Z        5
## 16447  2005-12 08:05:04Z        5
## 16448  2005-12 19:01:01Z        5
## 16449  2005-12 19:18:14Z        5
## 16450  2005-12 19:39:05Z        5
## 16451  2005-12 06:30:57Z        5
## 16452  2005-12 04:52:41Z        5
## 16453  2005-12 06:56:29Z        5
## 16454  2006-01 04:29:45Z        5
## 16455  2006-01 04:30:04Z        5
## 16456  2006-01 04:31:24Z        5
## 16457  2006-01 05:16:46Z        5
## 16458  2006-01 15:19:01Z        5
## 16459  2006-01 21:47:31Z        5
## 16460  2006-01 00:24:24Z        5
## 16461  2006-01 00:30:09Z        5
## 16462  2006-01 21:59:46Z        5
## 16463  2006-01 22:00:31Z        5
## 16464  2006-01 22:59:32Z        5
## 16465  2006-01 08:33:09Z        5
## 16466  2006-02 03:58:31Z        5
## 16467  2006-02 04:03:06Z        5
## 16468  2006-02 05:39:06Z        5
## 16469  2006-02 05:39:42Z        5
## 16470  2006-02 05:40:49Z        5
## 16471  2006-02 05:43:19Z        5
## 16472  2006-03 20:02:20Z        5
## 16473  2006-03 20:04:51Z        5
## 16474  2006-03 12:01:55Z        5
## 16475  2006-03 00:11:36Z        5
## 16476  2006-03 07:24:51Z        5
## 16477  2006-04 14:46:18Z        5
## 16478  2006-04 06:29:08Z        5
## 16479  2006-05 00:32:19Z        5
## 16480  2006-05 04:39:19Z        5
## 16481  2006-05 17:09:43Z        5
## 16482  2006-05 20:50:53Z        5
## 16483  2006-05 05:47:20Z        5
## 16484  2006-05 05:48:01Z        5
## 16485  2006-05 00:06:22Z        5
## 16486  2006-05 06:22:58Z        5
## 16487  2006-05 13:06:01Z        5
## 16488  2006-05 20:50:27Z        5
## 16489  2006-06 03:30:40Z        5
## 16490  2006-06 00:07:42Z        5
## 16491  2006-06 00:35:06Z        5
## 16492  2006-06 21:40:46Z        5
## 16493  2006-06 19:33:29Z        5
## 16494  2006-06 21:25:56Z        5
## 16495  2006-06 17:25:35Z        5
## 16496  2006-07 19:31:26Z        5
## 16497  2006-07 19:32:16Z        5
## 16498  2006-07 03:56:05Z        5
## 16499  2006-07 03:57:34Z        5
## 16500  2006-07 03:58:17Z        5
## 16501  2006-07 18:36:15Z        5
## 16502  2006-07 19:05:43Z        5
## 16503  2006-07 19:18:32Z        5
## 16504  2006-07 14:39:35Z        5
## 16505  2006-07 14:43:21Z        5
## 16506  2006-07 14:56:12Z        5
## 16507  2006-07 18:25:50Z        5
## 16508  2006-07 18:30:00Z        5
## 16509  2006-08 00:41:55Z        5
## 16510  2006-08 00:41:29Z        5
## 16511  2006-08 20:53:30Z        5
## 16512  2006-08 20:55:55Z        5
## 16513  2006-08 18:10:38Z        5
## 16514  2006-08 15:34:00Z        5
## 16515  2006-08 15:44:43Z        5
## 16516  2006-08 23:00:01Z        5
## 16517  2006-09 20:09:14Z        5
## 16518  2006-10 03:16:30Z        5
## 16519  2006-10 00:55:19Z        5
## 16520  2006-10 02:11:40Z        5
## 16521  2006-10 16:21:54Z        5
## 16522  2006-10 19:01:34Z        5
## 16523  2006-10 16:49:00Z        5
## 16524  2006-11 04:28:14Z        5
## 16525  2006-11 02:58:46Z        5
## 16526  2006-11 02:59:42Z        5
## 16527  2006-11 03:18:52Z        5
## 16528  2006-11 03:32:10Z        5
## 16529  2006-11 03:32:40Z        5
## 16530  2006-11 03:33:48Z        5
## 16531  2006-11 03:37:52Z        5
## 16532  2006-11 03:59:56Z        5
## 16533  2006-11 18:10:01Z        5
## 16534  2006-11 00:49:45Z        5
## 16535  2006-12 21:27:26Z        5
## 16536  2006-12 21:29:50Z        5
## 16537  2006-12 07:24:50Z        5
## 16538  2006-12 09:12:35Z        5
## 16539  2006-12 04:21:46Z        5
## 16540  2006-12 04:22:56Z        5
## 16541  2006-12 06:39:29Z        5
## 16542  2006-12 07:13:17Z        5
## 16543  2006-12 07:14:52Z        5
## 16544  2006-12 07:16:40Z        5
## 16545  2007-01 03:23:28Z        5
## 16546  2007-01 03:26:10Z        5
## 16547  2007-01 03:07:31Z        5
## 16548  2007-01 05:00:47Z        5
## 16549  2007-02 17:27:42Z        5
## 16550  2007-02 17:30:17Z        5
## 16551  2007-02 17:38:34Z        5
## 16552  2007-02 17:39:10Z        5
## 16553  2007-02 17:16:09Z        5
## 16554  2007-02 18:34:49Z        5
## 16555  2007-02 03:41:32Z        5
## 16556  2007-02 01:35:15Z        5
## 16557  2007-02 01:39:14Z        5
## 16558  2007-03 14:54:43Z        5
## 16559  2007-03 00:04:01Z        5
## 16560  2007-03 10:23:18Z        5
## 16561  2007-03 14:08:11Z        5
## 16562  2007-03 16:17:14Z        5
## 16563  2007-03 16:21:14Z        5
## 16564  2007-03 01:51:30Z        5
## 16565  2007-03 02:01:19Z        5
## 16566  2007-03 14:20:06Z        5
## 16567  2007-04 16:53:46Z        5
## 16568  2007-04 16:54:11Z        5
## 16569  2007-04 17:08:21Z        5
## 16570  2007-04 21:24:30Z        5
## 16571  2007-04 22:11:26Z        5
## 16572  2007-04 01:44:30Z        5
## 16573  2007-04 02:46:12Z        5
## 16574  2007-04 04:01:27Z        5
## 16575  2007-04 17:36:56Z        5
## 16576  2007-04 21:57:25Z        5
## 16577  2007-04 21:37:05Z        5
## 16578  2007-05 16:54:56Z        5
## 16579  2007-05 09:43:16Z        5
## 16580  2007-05 18:46:23Z        5
## 16581  2007-05 06:10:44Z        5
## 16582  2007-05 19:17:51Z        5
## 16583  2007-05 19:18:09Z        5
## 16584  2007-05 19:18:31Z        5
## 16585  2007-05 22:52:51Z        5
## 16586  2007-05 06:26:03Z        5
## 16587  2007-05 23:11:55Z        5
## 16588  2007-05 20:37:12Z        5
## 16589  2007-05 20:38:52Z        5
## 16590  2007-05 22:08:47Z        5
## 16591  2007-05 21:39:58Z        5
## 16592  2007-05 21:49:56Z        5
## 16593  2007-06 02:21:57Z        5
## 16594  2007-06 02:23:00Z        5
## 16595  2007-06 02:24:54Z        5
## 16596  2007-06 01:13:01Z        5
## 16597  2007-06 03:55:57Z        5
## 16598  2007-06 04:59:12Z        5
## 16599  2007-06 18:47:47Z        5
## 16600  2007-06 02:05:49Z        5
## 16601  2007-06 04:28:12Z        5
## 16602  2007-06 23:23:44Z        5
## 16603  2007-06 23:24:48Z        5
## 16604  2007-06 22:34:35Z        5
## 16605  2007-06 07:07:12Z        5
## 16606  2007-06 15:35:48Z        5
## 16607  2007-06 18:49:20Z        5
## 16608  2007-06 01:54:17Z        5
## 16609  2007-06 02:12:01Z        5
## 16610  2007-06 02:15:02Z        5
## 16611  2007-06 02:15:15Z        5
## 16612  2007-06 02:21:12Z        5
## 16613  2007-07 02:56:29Z        5
## 16614  2007-07 08:33:51Z        5
## 16615  2007-07 14:14:11Z        5
## 16616  2007-07 14:15:31Z        5
## 16617  2007-07 18:45:53Z        5
## 16618  2007-07 22:17:33Z        5
## 16619  2007-08 07:54:05Z        5
## 16620  2007-08 04:29:34Z        5
## 16621  2007-08 04:30:32Z        5
## 16622  2007-08 04:30:59Z        5
## 16623  2007-08 04:31:14Z        5
## 16624  2007-08 04:31:22Z        5
## 16625  2007-08 04:31:52Z        5
## 16626  2007-08 08:46:46Z        5
## 16627  2007-08 08:47:02Z        5
## 16628  2007-08 14:48:06Z        5
## 16629  2007-08 19:34:03Z        5
## 16630  2007-09 02:06:20Z        5
## 16631  2007-09 05:43:28Z        5
## 16632  2007-09 23:46:04Z        5
## 16633  2007-09 14:18:27Z        5
## 16634  2007-09 09:29:55Z        5
## 16635  2007-09 16:30:01Z        5
## 16636  2007-09 16:47:49Z        5
## 16637  2007-10 00:03:52Z        5
## 16638  2007-10 03:22:48Z        5
## 16639  2007-10 08:10:54Z        5
## 16640  2007-10 11:07:24Z        5
## 16641  2007-10 05:07:21Z        5
## 16642  2007-10 19:37:02Z        5
## 16643  2007-10 17:04:36Z        5
## 16644  2007-10 02:06:20Z        5
## 16645  2007-10 21:58:52Z        5
## 16646  2007-10 01:24:55Z        5
## 16647  2007-10 22:33:56Z        5
## 16648  2007-10 22:34:59Z        5
## 16649  2007-10 23:02:55Z        5
## 16650  2007-10 19:38:10Z        5
## 16651  2007-10 01:04:14Z        5
## 16652  2007-11 08:53:59Z        5
## 16653  2007-11 18:31:50Z        5
## 16654  2007-11 03:01:20Z        5
## 16655  2007-11 21:11:47Z        5
## 16656  2007-11 04:57:58Z        5
## 16657  2007-12 02:39:57Z        5
## 16658  2007-12 21:21:51Z        5
## 16659  2007-12 10:50:14Z        5
## 16660  2007-12 17:04:23Z        5
## 16661  2007-12 00:55:28Z        5
## 16662  2007-12 17:31:54Z        5
## 16663  2007-12 22:05:29Z        5
## 16664  2007-12 21:53:12Z        5
## 16665  2007-12 21:54:17Z        5
## 16666  2007-12 01:28:12Z        5
## 16667  2002-10 19:23:45Z        6
## 16668  2002-12 04:57:55Z        6
## 16669  2004-08 03:29:34Z        6
## 16670  2004-11 06:12:34Z        6
## 16671  2004-11 05:44:49Z        6
## 16672  2004-12 08:25:01Z        6
## 16673  2006-02 07:22:44Z        6
## 16674  2006-02 07:23:53Z        6
## 16675  2006-03 18:50:32Z        6
## 16676  2006-04 15:01:48Z        6
## 16677  2006-05 13:41:41Z        6
## 16678  2006-05 00:58:18Z        6
## 16679  2006-05 00:58:29Z        6
## 16680  2006-05 00:58:31Z        6
## 16681  2006-05 02:39:19Z        6
## 16682  2006-08 17:12:40Z        6
## 16683  2006-08 15:15:00Z        6
## 16684  2006-08 15:17:10Z        6
## 16685  2006-09 17:15:26Z        6
## 16686  2006-09 17:16:26Z        6
## 16687  2007-03 02:03:09Z        6
## 16688  2007-03 02:06:13Z        6
## 16689  2007-03 02:06:44Z        6
## 16690  2007-03 02:07:15Z        6
## 16691  2007-03 02:08:17Z        6
## 16692  2007-03 02:11:23Z        6
## 16693  2007-03 02:19:43Z        6
## 16694  2007-03 02:21:26Z        6
## 16695  2007-04 01:58:47Z        6
## 16696  2007-04 02:30:16Z        6
## 16697  2007-04 13:14:50Z        6
## 16698  2007-05 15:52:34Z        6
## 16699  2007-07 08:50:37Z        6
## 16700  2007-07 03:52:33Z        6
## 16701  2007-09 05:55:57Z        6
## 16702  2007-09 23:36:00Z        6
## 16703  2007-10 14:36:54Z        6
## 16704  2007-10 08:04:43Z        6
## 16705  2007-10 09:16:06Z        6
## 16706  2007-10 11:31:54Z        6
## 16707  2007-10 06:04:05Z        6
## 16708  2007-10 02:27:32Z        6
## 16709  2007-10 23:05:56Z        6
## 16710  2007-10 23:06:03Z        6
## 16711  2007-11 18:01:10Z        6
## 16712  2007-11 18:02:42Z        6
## 16713  2007-11 18:03:57Z        6
## 16714  2007-11 15:59:31Z        6
## 16715  2007-11 16:11:32Z        6
## 16716  2007-11 18:46:38Z        6
## 16717  2007-12 14:05:18Z        6
## 16718  2007-12 05:16:32Z        6
## 16719  2008-01 09:04:16Z        6
## 16720  2008-01 14:25:50Z        6
## 16721  2008-01 14:29:01Z        6
## 16722  2008-01 15:02:35Z        6
## 16723  2002-10 19:25:32Z        6
## 16724  2002-12 05:15:06Z        6
## 16725  2004-08 03:38:09Z        6
## 16726  2004-11 03:27:29Z        6
## 16727  2004-11 03:27:42Z        6
## 16728  2004-11 06:15:27Z        6
## 16729  2004-11 05:45:59Z        6
## 16730  2004-12 17:48:07Z        6
## 16731  2005-08 14:39:56Z        6
## 16732  2006-03 16:12:19Z        6
## 16733  2006-04 15:08:12Z        6
## 16734  2006-05 12:38:17Z        6
## 16735  2006-05 01:01:46Z        6
## 16736  2006-06 18:43:29Z        6
## 16737  2007-01 15:21:04Z        6
## 16738  2007-03 20:36:50Z        6
## 16739  2007-04 21:00:42Z        6
## 16740  2007-04 21:00:59Z        6
## 16741  2007-04 01:03:57Z        6
## 16742  2007-08 22:15:18Z        6
## 16743  2007-09 22:32:40Z        6
## 16744  2007-09 13:12:21Z        6
## 16745  2007-10 07:17:21Z        6
## 16746  2007-10 10:40:51Z        6
## 16747  2007-10 05:31:22Z        6
## 16748  2007-10 02:33:53Z        6
## 16749  2007-11 00:18:50Z        6
## 16750  2007-11 03:23:49Z        6
## 16751  2007-12 22:13:34Z        6
## 16752  2002-02 15:51:15Z        8
## 16753  2002-04 01:43:27Z        8
## 16754  2002-11 06:46:13Z        8
## 16755  2002-11 06:46:56Z        8
## 16756  2002-12 04:45:41Z        8
## 16757  2002-12 04:49:44Z        8
## 16758  2003-05 05:45:08Z        8
## 16759  2003-05 22:41:38Z        8
## 16760  2004-05 04:19:43Z        8
## 16761  2004-07 00:31:15Z        8
## 16762  2004-07 09:52:32Z        8
## 16763  2004-08 07:19:46Z        8
## 16764  2004-08 07:20:32Z        8
## 16765  2004-08 07:20:47Z        8
## 16766  2004-09 15:31:11Z        8
## 16767  2004-09 23:54:52Z        8
## 16768  2004-09 13:14:16Z        8
## 16769  2004-10 23:36:12Z        8
## 16770  2004-10 08:43:13Z        8
## 16771  2004-10 14:05:54Z        8
## 16772  2004-10 22:39:11Z        8
## 16773  2004-11 12:02:08Z        8
## 16774  2004-12 08:30:16Z        8
## 16775  2004-12 08:39:36Z        8
## 16776  2005-01 14:59:01Z        8
## 16777  2005-01 05:05:41Z        8
## 16778  2005-01 11:18:27Z        8
## 16779  2005-03 04:26:46Z        8
## 16780  2005-03 03:37:46Z        8
## 16781  2005-05 15:06:55Z        8
## 16782  2005-05 06:49:56Z        8
## 16783  2005-05 10:49:17Z        8
## 16784  2005-06 14:01:43Z        8
## 16785  2005-07 13:18:13Z        8
## 16786  2005-07 13:20:18Z        8
## 16787  2005-07 10:33:58Z        8
## 16788  2005-07 00:23:16Z        8
## 16789  2005-08 14:09:23Z        8
## 16790  2005-08 14:09:54Z        8
## 16791  2005-08 14:17:49Z        8
## 16792  2005-09 03:07:10Z        8
## 16793  2005-09 03:08:29Z        8
## 16794  2005-09 09:59:13Z        8
## 16795  2005-10 17:04:21Z        8
## 16796  2005-10 06:19:14Z        8
## 16797  2005-10 01:39:42Z        8
## 16798  2005-10 04:02:28Z        8
## 16799  2005-10 04:03:20Z        8
## 16800  2005-10 05:02:48Z        8
## 16801  2005-11 13:57:15Z        8
## 16802  2005-11 03:30:06Z        8
## 16803  2005-11 03:31:26Z        8
## 16804  2005-11 03:31:38Z        8
## 16805  2005-11 03:31:48Z        8
## 16806  2005-11 03:32:27Z        8
## 16807  2005-11 03:34:01Z        8
## 16808  2005-11 03:34:24Z        8
## 16809  2005-11 03:35:08Z        8
## 16810  2005-11 03:35:57Z        8
## 16811  2005-11 03:36:17Z        8
## 16812  2005-11 03:36:35Z        8
## 16813  2005-11 03:37:12Z        8
## 16814  2005-11 03:39:26Z        8
## 16815  2005-11 03:39:39Z        8
## 16816  2005-11 03:41:10Z        8
## 16817  2005-11 03:41:21Z        8
## 16818  2005-11 03:42:28Z        8
## 16819  2005-11 03:42:54Z        8
## 16820  2005-11 03:43:20Z        8
## 16821  2005-11 03:43:44Z        8
## 16822  2005-11 03:43:57Z        8
## 16823  2005-11 03:44:42Z        8
## 16824  2005-11 03:45:00Z        8
## 16825  2005-11 03:46:33Z        8
## 16826  2005-11 03:49:08Z        8
## 16827  2005-11 22:16:14Z        8
## 16828  2005-11 22:22:25Z        8
## 16829  2005-12 11:36:34Z        8
## 16830  2005-12 01:33:44Z        8
## 16831  2005-12 01:52:12Z        8
## 16832  2005-12 22:32:16Z        8
## 16833  2005-12 16:08:42Z        8
## 16834  2005-12 03:45:27Z        8
## 16835  2005-12 04:13:09Z        8
## 16836  2005-12 04:13:48Z        8
## 16837  2006-01 05:33:09Z        8
## 16838  2006-01 13:46:54Z        8
## 16839  2006-01 19:09:14Z        8
## 16840  2006-01 08:02:23Z        8
## 16841  2006-01 16:46:37Z        8
## 16842  2006-01 14:53:47Z        8
## 16843  2006-01 19:39:54Z        8
## 16844  2006-01 19:47:23Z        8
## 16845  2006-01 05:27:18Z        8
## 16846  2006-02 18:18:35Z        8
## 16847  2006-02 18:07:02Z        8
## 16848  2006-02 03:02:28Z        8
## 16849  2006-02 03:02:47Z        8
## 16850  2006-02 14:02:54Z        8
## 16851  2006-02 19:48:19Z        8
## 16852  2006-04 17:49:30Z        8
## 16853  2006-05 12:47:26Z        8
## 16854  2006-05 12:48:39Z        8
## 16855  2006-05 12:49:49Z        8
## 16856  2006-05 12:50:20Z        8
## 16857  2006-05 12:51:19Z        8
## 16858  2006-05 12:55:18Z        8
## 16859  2006-05 12:58:26Z        8
## 16860  2006-05 12:59:11Z        8
## 16861  2006-05 13:01:32Z        8
## 16862  2006-05 13:02:07Z        8
## 16863  2006-05 13:14:50Z        8
## 16864  2006-05 13:22:49Z        8
## 16865  2006-05 13:23:09Z        8
## 16866  2006-05 13:25:10Z        8
## 16867  2006-05 13:27:06Z        8
## 16868  2006-05 13:35:17Z        8
## 16869  2006-05 04:18:59Z        8
## 16870  2006-05 13:43:10Z        8
## 16871  2006-05 18:37:11Z        8
## 16872  2006-06 10:28:23Z        8
## 16873  2006-06 10:28:54Z        8
## 16874  2006-06 23:52:24Z        8
## 16875  2006-06 10:17:48Z        8
## 16876  2006-06 10:20:26Z        8
## 16877  2006-06 03:28:31Z        8
## 16878  2006-06 03:29:00Z        8
## 16879  2006-06 19:42:28Z        8
## 16880  2006-06 11:59:46Z        8
## 16881  2006-06 12:53:40Z        8
## 16882  2006-06 23:42:59Z        8
## 16883  2006-06 23:44:16Z        8
## 16884  2006-06 23:47:50Z        8
## 16885  2006-06 02:05:21Z        8
## 16886  2006-06 02:38:08Z        8
## 16887  2006-06 20:03:31Z        8
## 16888  2006-07 15:21:15Z        8
## 16889  2006-07 15:25:41Z        8
## 16890  2006-08 13:19:52Z        8
## 16891  2006-08 10:49:33Z        8
## 16892  2006-08 10:51:56Z        8
## 16893  2006-08 04:15:41Z        8
## 16894  2006-08 04:15:56Z        8
## 16895  2006-08 12:25:06Z        8
## 16896  2006-08 12:27:10Z        8
## 16897  2006-08 12:28:25Z        8
## 16898  2006-08 12:41:22Z        8
## 16899  2006-08 12:15:24Z        8
## 16900  2006-09 04:51:10Z        8
## 16901  2006-09 10:57:00Z        8
## 16902  2006-09 10:59:15Z        8
## 16903  2006-09 11:00:34Z        8
## 16904  2006-09 14:14:04Z        8
## 16905  2006-09 14:20:12Z        8
## 16906  2006-09 04:38:25Z        8
## 16907  2006-09 11:18:09Z        8
## 16908  2006-09 06:34:55Z        8
## 16909  2006-09 02:23:18Z        8
## 16910  2006-09 02:23:31Z        8
## 16911  2006-09 12:57:48Z        8
## 16912  2006-09 12:58:47Z        8
## 16913  2006-10 01:06:18Z        8
## 16914  2006-10 01:06:32Z        8
## 16915  2006-10 01:17:53Z        8
## 16916  2006-10 01:43:02Z        8
## 16917  2006-10 01:43:29Z        8
## 16918  2006-10 02:03:21Z        8
## 16919  2006-10 02:05:12Z        8
## 16920  2006-10 04:59:44Z        8
## 16921  2006-10 12:12:32Z        8
## 16922  2006-10 12:26:11Z        8
## 16923  2006-10 04:01:00Z        8
## 16924  2006-10 01:09:55Z        8
## 16925  2006-10 01:11:13Z        8
## 16926  2006-10 02:05:23Z        8
## 16927  2006-10 05:44:34Z        8
## 16928  2006-10 05:44:48Z        8
## 16929  2006-10 07:39:57Z        8
## 16930  2006-10 23:02:24Z        8
## 16931  2006-10 23:20:13Z        8
## 16932  2006-10 23:42:57Z        8
## 16933  2006-11 05:38:23Z        8
## 16934  2006-11 07:21:01Z        8
## 16935  2006-11 12:00:00Z        8
## 16936  2006-11 05:39:21Z        8
## 16937  2006-11 07:00:15Z        8
## 16938  2006-11 08:50:26Z        8
## 16939  2006-11 12:31:28Z        8
## 16940  2006-11 13:00:06Z        8
## 16941  2006-11 22:27:37Z        8
## 16942  2006-11 08:29:16Z        8
## 16943  2006-12 10:17:37Z        8
## 16944  2006-12 10:44:54Z        8
## 16945  2006-12 02:28:07Z        8
## 16946  2006-12 05:37:44Z        8
## 16947  2006-12 00:27:12Z        8
## 16948  2006-12 04:27:02Z        8
## 16949  2006-12 05:52:56Z        8
## 16950  2006-12 07:07:24Z        8
## 16951  2006-12 08:46:29Z        8
## 16952  2007-01 13:33:09Z        8
## 16953  2007-01 04:56:48Z        8
## 16954  2007-01 08:36:10Z        8
## 16955  2007-01 08:37:23Z        8
## 16956  2007-01 08:37:54Z        8
## 16957  2007-01 00:41:16Z        8
## 16958  2007-01 07:48:37Z        8
## 16959  2007-01 07:41:24Z        8
## 16960  2007-01 07:42:46Z        8
## 16961  2007-01 21:51:59Z        8
## 16962  2007-02 08:22:19Z        8
## 16963  2007-02 16:18:53Z        8
## 16964  2007-02 16:19:22Z        8
## 16965  2007-02 23:01:32Z        8
## 16966  2007-02 03:12:48Z        8
## 16967  2007-02 06:08:22Z        8
## 16968  2007-03 23:46:44Z        8
## 16969  2007-03 20:22:19Z        8
## 16970  2007-03 20:38:54Z        8
## 16971  2007-03 09:37:22Z        8
## 16972  2007-03 09:42:57Z        8
## 16973  2007-03 06:23:50Z        8
## 16974  2007-03 08:44:48Z        8
## 16975  2007-04 11:40:00Z        8
## 16976  2007-04 03:29:20Z        8
## 16977  2007-05 08:23:52Z        8
## 16978  2007-05 11:37:26Z        8
## 16979  2007-05 02:50:11Z        8
## 16980  2007-05 12:49:34Z        8
## 16981  2007-05 04:26:05Z        8
## 16982  2007-06 03:35:58Z        8
## 16983  2007-06 03:36:38Z        8
## 16984  2007-06 03:55:17Z        8
## 16985  2007-06 03:59:27Z        8
## 16986  2007-06 19:32:15Z        8
## 16987  2007-06 01:47:28Z        8
## 16988  2007-06 11:04:35Z        8
## 16989  2007-06 12:45:13Z        8
## 16990  2007-07 14:13:09Z        8
## 16991  2007-07 07:38:48Z        8
## 16992  2007-07 07:41:36Z        8
## 16993  2007-07 12:21:25Z        8
## 16994  2007-07 01:16:38Z        8
## 16995  2007-07 13:41:24Z        8
## 16996  2007-07 10:36:37Z        8
## 16997  2007-07 07:59:33Z        8
## 16998  2007-07 06:49:49Z        8
## 16999  2007-08 06:54:00Z        8
## 17000  2007-08 06:45:54Z        8
## 17001  2007-08 06:47:40Z        8
## 17002  2007-08 06:49:33Z        8
## 17003  2007-08 06:58:59Z        8
## 17004  2007-08 07:01:23Z        8
## 17005  2007-08 07:08:16Z        8
## 17006  2007-08 07:18:52Z        8
## 17007  2007-08 07:22:43Z        8
## 17008  2007-09 12:39:08Z        8
## 17009  2007-09 10:22:05Z        8
## 17010  2007-09 10:30:49Z        8
## 17011  2007-10 09:01:53Z        8
## 17012  2007-10 12:44:06Z        8
## 17013  2007-10 12:56:59Z        8
## 17014  2007-10 01:54:11Z        8
## 17015  2007-10 13:31:39Z        8
## 17016  2007-10 13:34:04Z        8
## 17017  2007-10 13:38:38Z        8
## 17018  2007-11 00:27:06Z        8
## 17019  2007-11 09:40:43Z        8
## 17020  2007-11 10:05:04Z        8
## 17021  2007-11 10:05:15Z        8
## 17022  2007-11 22:25:02Z        8
## 17023  2007-11 22:35:41Z        8
## 17024  2007-11 03:37:01Z        8
## 17025  2007-12 19:55:36Z        8
## 17026  2007-12 09:30:47Z        8
## 17027  2007-12 09:33:19Z        8
## 17028  2002-10 19:45:43Z        9
## 17029  2002-10 05:08:32Z        9
## 17030  2002-12 07:14:10Z        9
## 17031  2004-03 19:13:46Z        9
## 17032  2004-08 04:30:28Z        9
## 17033  2004-11 06:32:56Z        9
## 17034  2004-11 05:54:47Z        9
## 17035  2004-12 09:02:09Z        9
## 17036  2005-03 04:39:24Z        9
## 17037  2005-03 04:40:24Z        9
## 17038  2005-03 04:42:13Z        9
## 17039  2005-04 21:33:00Z        9
## 17040  2005-10 04:03:21Z        9
## 17041  2006-03 05:39:56Z        9
## 17042  2006-04 15:52:06Z        9
## 17043  2006-05 21:56:13Z        9
## 17044  2006-07 17:28:37Z        9
## 17045  2007-05 20:54:22Z        9
## 17046  2007-06 16:12:49Z        9
## 17047  2007-07 19:52:34Z        9
## 17048  2007-07 19:54:11Z        9
## 17049  2007-07 21:02:58Z        9
## 17050  2007-08 13:51:39Z        9
## 17051  2007-09 01:15:08Z        9
## 17052  2007-10 09:49:00Z        9
## 17053  2007-10 23:42:35Z        9
## 17054  2007-10 02:16:16Z        9
## 17055  2007-12 19:27:47Z        9
## 17056  2007-12 02:49:11Z        9
## 17057  2002-10 22:43:32Z        0
## 17058  2002-10 22:46:35Z        0
## 17059  2002-10 22:49:05Z        0
## 17060  2002-10 22:49:51Z        0
## 17061  2002-10 22:50:23Z        0
## 17062  2002-10 22:50:54Z        0
## 17063  2002-10 22:51:34Z        0
## 17064  2002-10 22:52:19Z        0
## 17065  2002-10 22:59:08Z        0
## 17066  2002-10 23:02:48Z        0
## 17067  2002-11 12:15:18Z        0
## 17068  2002-11 12:15:27Z        0
## 17069  2002-12 14:37:34Z        0
## 17070  2003-01 21:02:53Z        0
## 17071  2003-01 21:05:10Z        0
## 17072  2003-07 17:40:45Z        0
## 17073  2003-08 08:47:27Z        0
## 17074  2003-10 15:09:39Z        0
## 17075  2003-10 15:15:59Z        0
## 17076  2003-10 16:00:30Z        0
## 17077  2003-11 10:30:57Z        0
## 17078  2003-11 21:55:20Z        0
## 17079  2003-11 22:02:00Z        0
## 17080  2003-12 12:35:51Z        0
## 17081  2003-12 13:57:31Z        0
## 17082  2004-01 22:08:33Z        0
## 17083  2004-01 16:50:35Z        0
## 17084  2004-01 04:12:00Z        0
## 17085  2004-01 06:58:43Z        0
## 17086  2004-02 03:03:44Z        0
## 17087  2004-02 04:39:28Z        0
## 17088  2004-02 04:42:15Z        0
## 17089  2004-02 04:57:38Z        0
## 17090  2004-02 05:05:58Z        0
## 17091  2004-02 21:54:03Z        0
## 17092  2004-02 22:38:12Z        0
## 17093  2004-02 21:25:43Z        0
## 17094  2004-02 23:35:33Z        0
## 17095  2004-03 02:31:09Z        0
## 17096  2004-04 20:55:23Z        0
## 17097  2004-04 01:15:01Z        0
## 17098  2004-04 02:17:26Z        0
## 17099  2004-04 02:34:11Z        0
## 17100  2004-04 03:26:27Z        0
## 17101  2004-04 16:30:55Z        0
## 17102  2004-04 21:41:37Z        0
## 17103  2004-04 03:10:21Z        0
## 17104  2004-04 03:19:25Z        0
## 17105  2004-04 03:22:57Z        0
## 17106  2004-04 03:24:05Z        0
## 17107  2004-04 06:03:28Z        0
## 17108  2004-04 06:28:25Z        0
## 17109  2004-04 07:15:13Z        0
## 17110  2004-04 15:55:38Z        0
## 17111  2004-04 16:26:26Z        0
## 17112  2004-04 16:30:56Z        0
## 17113  2004-04 16:33:01Z        0
## 17114  2004-04 19:33:33Z        0
## 17115  2004-04 20:08:59Z        0
## 17116  2004-04 11:50:19Z        0
## 17117  2004-04 12:33:35Z        0
## 17118  2004-04 12:40:47Z        0
## 17119  2004-04 23:01:32Z        0
## 17120  2004-04 23:04:49Z        0
## 17121  2004-04 23:06:10Z        0
## 17122  2004-04 02:48:19Z        0
## 17123  2004-04 02:57:39Z        0
## 17124  2004-04 03:05:52Z        0
## 17125  2004-05 23:13:04Z        0
## 17126  2004-05 04:42:47Z        0
## 17127  2004-05 02:17:00Z        0
## 17128  2004-06 12:32:41Z        0
## 17129  2004-06 10:27:14Z        0
## 17130  2004-07 20:43:45Z        0
## 17131  2004-07 02:57:12Z        0
## 17132  2004-07 02:57:25Z        0
## 17133  2004-07 04:07:54Z        0
## 17134  2004-08 10:24:03Z        0
## 17135  2004-08 00:49:19Z        0
## 17136  2004-08 00:49:51Z        0
## 17137  2004-08 02:50:52Z        0
## 17138  2004-08 19:03:47Z        0
## 17139  2004-08 19:07:39Z        0
## 17140  2004-09 16:35:11Z        0
## 17141  2004-09 16:26:04Z        0
## 17142  2004-10 15:29:50Z        0
## 17143  2004-10 08:44:21Z        0
## 17144  2004-10 08:51:04Z        0
## 17145  2004-10 22:39:03Z        0
## 17146  2004-11 00:00:30Z        0
## 17147  2004-11 13:36:59Z        0
## 17148  2004-11 01:27:15Z        0
## 17149  2004-12 18:08:18Z        0
## 17150  2004-12 06:49:05Z        0
## 17151  2004-12 07:12:06Z        0
## 17152  2004-12 17:25:15Z        0
## 17153  2004-12 17:26:25Z        0
## 17154  2005-01 16:52:30Z        0
## 17155  2005-01 18:57:34Z        0
## 17156  2005-01 02:46:10Z        0
## 17157  2005-01 05:12:44Z        0
## 17158  2005-01 04:19:55Z        0
## 17159  2005-01 04:29:05Z        0
## 17160  2005-02 01:38:09Z        0
## 17161  2005-03 07:21:55Z        0
## 17162  2005-03 07:23:45Z        0
## 17163  2005-03 17:24:53Z        0
## 17164  2005-03 01:32:36Z        0
## 17165  2005-03 02:26:31Z        0
## 17166  2005-03 04:31:44Z        0
## 17167  2005-03 04:32:36Z        0
## 17168  2005-03 04:42:07Z        0
## 17169  2005-03 04:42:50Z        0
## 17170  2005-03 04:53:24Z        0
## 17171  2005-03 04:54:39Z        0
## 17172  2005-03 19:35:09Z        0
## 17173  2005-03 21:22:42Z        0
## 17174  2005-03 21:25:17Z        0
## 17175  2005-03 21:26:24Z        0
## 17176  2005-03 02:28:03Z        0
## 17177  2005-03 02:50:07Z        0
## 17178  2005-03 05:18:08Z        0
## 17179  2005-03 05:31:59Z        0
## 17180  2005-03 05:47:59Z        0
## 17181  2005-03 21:49:03Z        0
## 17182  2005-03 23:41:51Z        0
## 17183  2005-03 03:00:50Z        0
## 17184  2005-03 03:06:46Z        0
## 17185  2005-03 05:14:24Z        0
## 17186  2005-03 16:45:57Z        0
## 17187  2005-03 20:11:52Z        0
## 17188  2005-03 00:37:51Z        0
## 17189  2005-03 02:00:03Z        0
## 17190  2005-03 17:30:57Z        0
## 17191  2005-04 17:39:32Z        0
## 17192  2005-04 17:40:34Z        0
## 17193  2005-04 04:05:01Z        0
## 17194  2005-04 13:52:45Z        0
## 17195  2005-04 15:17:51Z        0
## 17196  2005-04 01:16:31Z        0
## 17197  2005-04 00:56:56Z        0
## 17198  2005-04 02:06:38Z        0
## 17199  2005-04 03:22:41Z        0
## 17200  2005-04 19:16:39Z        0
## 17201  2005-04 15:09:36Z        0
## 17202  2005-05 23:58:15Z        0
## 17203  2005-05 15:30:10Z        0
## 17204  2005-05 03:04:17Z        0
## 17205  2005-05 05:35:53Z        0
## 17206  2005-05 22:34:55Z        0
## 17207  2005-06 14:40:06Z        0
## 17208  2005-06 15:31:09Z        0
## 17209  2005-06 16:11:52Z        0
## 17210  2005-06 21:17:56Z        0
## 17211  2005-07 21:55:05Z        0
## 17212  2005-07 10:18:33Z        0
## 17213  2005-07 03:16:02Z        0
## 17214  2005-07 11:35:19Z        0
## 17215  2005-07 18:46:08Z        0
## 17216  2005-08 07:14:33Z        0
## 17217  2005-09 20:41:48Z        0
## 17218  2005-09 00:40:42Z        0
## 17219  2005-09 00:42:38Z        0
## 17220  2005-09 20:26:48Z        0
## 17221  2005-09 20:31:02Z        0
## 17222  2005-09 07:04:11Z        0
## 17223  2005-09 06:06:11Z        0
## 17224  2005-09 01:38:37Z        0
## 17225  2005-09 02:17:43Z        0
## 17226  2005-09 20:14:12Z        0
## 17227  2005-09 21:11:20Z        0
## 17228  2005-09 05:43:47Z        0
## 17229  2005-09 23:14:51Z        0
## 17230  2005-09 23:16:28Z        0
## 17231  2005-09 17:34:48Z        0
## 17232  2005-10 15:16:03Z        0
## 17233  2005-10 12:46:52Z        0
## 17234  2005-10 15:57:32Z        0
## 17235  2005-10 06:29:01Z        0
## 17236  2005-10 05:03:28Z        0
## 17237  2005-10 05:08:56Z        0
## 17238  2005-10 13:40:41Z        0
## 17239  2005-10 23:09:27Z        0
## 17240  2005-10 23:11:29Z        0
## 17241  2005-10 23:45:21Z        0
## 17242  2005-10 23:46:50Z        0
## 17243  2005-10 23:54:19Z        0
## 17244  2005-10 00:15:34Z        0
## 17245  2005-10 00:28:55Z        0
## 17246  2005-10 00:38:10Z        0
## 17247  2005-10 05:52:46Z        0
## 17248  2005-10 15:51:25Z        0
## 17249  2005-10 16:17:59Z        0
## 17250  2005-10 16:25:53Z        0
## 17251  2005-10 19:10:58Z        0
## 17252  2005-10 19:26:29Z        0
## 17253  2005-10 06:13:28Z        0
## 17254  2005-10 21:55:53Z        0
## 17255  2005-10 23:32:21Z        0
## 17256  2005-10 23:34:32Z        0
## 17257  2005-10 19:49:28Z        0
## 17258  2005-10 05:48:17Z        0
## 17259  2005-10 22:28:19Z        0
## 17260  2005-11 16:38:01Z        0
## 17261  2005-11 20:04:43Z        0
## 17262  2005-11 23:29:06Z        0
## 17263  2005-11 22:36:12Z        0
## 17264  2005-11 09:50:22Z        0
## 17265  2005-11 14:00:54Z        0
## 17266  2005-11 06:07:07Z        0
## 17267  2005-11 14:09:12Z        0
## 17268  2005-11 14:28:58Z        0
## 17269  2005-11 22:29:57Z        0
## 17270  2005-11 22:32:18Z        0
## 17271  2005-11 22:36:27Z        0
## 17272  2005-11 22:37:36Z        0
## 17273  2005-11 10:55:05Z        0
## 17274  2005-11 10:57:02Z        0
## 17275  2005-11 19:46:36Z        0
## 17276  2005-11 19:47:58Z        0
## 17277  2005-11 16:18:40Z        0
## 17278  2005-11 03:33:43Z        0
## 17279  2005-11 12:47:34Z        0
## 17280  2005-11 13:03:57Z        0
## 17281  2005-12 23:10:16Z        0
## 17282  2005-12 23:15:03Z        0
## 17283  2005-12 01:02:49Z        0
## 17284  2005-12 08:53:30Z        0
## 17285  2005-12 08:54:28Z        0
## 17286  2005-12 08:56:30Z        0
## 17287  2005-12 09:01:05Z        0
## 17288  2005-12 17:38:16Z        0
## 17289  2005-12 02:48:02Z        0
## 17290  2005-12 02:49:06Z        0
## 17291  2005-12 00:21:05Z        0
## 17292  2005-12 00:23:11Z        0
## 17293  2005-12 04:20:22Z        0
## 17294  2005-12 10:55:31Z        0
## 17295  2005-12 11:40:24Z        0
## 17296  2005-12 22:46:49Z        0
## 17297  2005-12 23:21:49Z        0
## 17298  2005-12 01:16:35Z        0
## 17299  2005-12 01:16:53Z        0
## 17300  2005-12 16:12:20Z        0
## 17301  2005-12 00:09:49Z        0
## 17302  2005-12 11:18:57Z        0
## 17303  2005-12 20:55:36Z        0
## 17304  2006-01 01:21:11Z        0
## 17305  2006-01 01:35:01Z        0
## 17306  2006-01 01:36:16Z        0
## 17307  2006-01 08:21:42Z        0
## 17308  2006-01 22:01:09Z        0
## 17309  2006-01 07:32:51Z        0
## 17310  2006-01 22:42:06Z        0
## 17311  2006-01 22:43:44Z        0
## 17312  2006-01 18:58:39Z        0
## 17313  2006-01 01:37:05Z        0
## 17314  2006-01 03:10:36Z        0
## 17315  2006-01 14:52:34Z        0
## 17316  2006-01 17:16:07Z        0
## 17317  2006-01 06:43:23Z        0
## 17318  2006-01 06:56:05Z        0
## 17319  2006-01 07:24:01Z        0
## 17320  2006-01 03:23:06Z        0
## 17321  2006-01 19:29:18Z        0
## 17322  2006-01 19:29:37Z        0
## 17323  2006-01 15:39:30Z        0
## 17324  2006-01 15:40:05Z        0
## 17325  2006-01 15:52:26Z        0
## 17326  2006-01 16:10:20Z        0
## 17327  2006-01 23:10:48Z        0
## 17328  2006-02 21:53:30Z        0
## 17329  2006-02 21:54:02Z        0
## 17330  2006-02 13:22:38Z        0
## 17331  2006-02 01:41:13Z        0
## 17332  2006-02 18:22:34Z        0
## 17333  2006-02 21:45:26Z        0
## 17334  2006-02 03:18:52Z        0
## 17335  2006-02 03:00:46Z        0
## 17336  2006-02 04:16:40Z        0
## 17337  2006-02 01:23:57Z        0
## 17338  2006-02 01:24:20Z        0
## 17339  2006-02 01:26:15Z        0
## 17340  2006-02 01:30:55Z        0
## 17341  2006-02 01:32:49Z        0
## 17342  2006-02 08:43:54Z        0
## 17343  2006-02 18:06:04Z        0
## 17344  2006-02 17:26:02Z        0
## 17345  2006-02 10:05:41Z        0
## 17346  2006-03 01:50:52Z        0
## 17347  2006-03 01:51:10Z        0
## 17348  2006-03 04:05:14Z        0
## 17349  2006-03 04:09:18Z        0
## 17350  2006-03 04:27:53Z        0
## 17351  2006-03 04:28:42Z        0
## 17352  2006-03 23:22:06Z        0
## 17353  2006-03 03:25:21Z        0
## 17354  2006-03 03:37:59Z        0
## 17355  2006-03 04:08:29Z        0
## 17356  2006-03 04:29:59Z        0
## 17357  2006-03 13:41:09Z        0
## 17358  2006-03 14:32:47Z        0
## 17359  2006-03 23:23:03Z        0
## 17360  2006-04 19:13:55Z        0
## 17361  2006-04 19:14:49Z        0
## 17362  2006-04 19:17:34Z        0
## 17363  2006-04 19:19:46Z        0
## 17364  2006-04 04:25:05Z        0
## 17365  2006-04 16:59:31Z        0
## 17366  2006-04 15:06:59Z        0
## 17367  2006-04 23:56:30Z        0
## 17368  2006-04 23:59:33Z        0
## 17369  2006-04 11:43:17Z        0
## 17370  2006-04 12:29:09Z        0
## 17371  2006-04 14:54:53Z        0
## 17372  2006-04 00:50:36Z        0
## 17373  2006-04 01:18:26Z        0
## 17374  2006-04 01:26:07Z        0
## 17375  2006-04 01:30:29Z        0
## 17376  2006-04 01:30:53Z        0
## 17377  2006-04 03:31:07Z        0
## 17378  2006-04 15:36:05Z        0
## 17379  2006-04 16:12:35Z        0
## 17380  2006-04 22:31:40Z        0
## 17381  2006-04 10:45:28Z        0
## 17382  2006-04 10:46:15Z        0
## 17383  2006-04 10:47:44Z        0
## 17384  2006-04 10:47:56Z        0
## 17385  2006-04 10:54:56Z        0
## 17386  2006-04 10:55:04Z        0
## 17387  2006-04 10:55:21Z        0
## 17388  2006-04 11:05:59Z        0
## 17389  2006-04 11:07:29Z        0
## 17390  2006-04 11:16:44Z        0
## 17391  2006-04 20:54:44Z        0
## 17392  2006-04 20:55:14Z        0
## 17393  2006-04 05:10:00Z        0
## 17394  2006-04 10:35:17Z        0
## 17395  2006-04 18:44:26Z        0
## 17396  2006-04 00:28:10Z        0
## 17397  2006-04 00:30:46Z        0
## 17398  2006-04 06:58:40Z        0
## 17399  2006-04 20:06:54Z        0
## 17400  2006-04 20:06:58Z        0
## 17401  2006-04 00:21:11Z        0
## 17402  2006-04 21:51:35Z        0
## 17403  2006-04 11:40:44Z        0
## 17404  2006-04 13:10:59Z        0
## 17405  2006-04 18:53:14Z        0
## 17406  2006-04 21:16:13Z        0
## 17407  2006-04 13:57:35Z        0
## 17408  2006-04 13:59:20Z        0
## 17409  2006-04 14:00:15Z        0
## 17410  2006-04 14:01:25Z        0
## 17411  2006-04 14:02:42Z        0
## 17412  2006-04 17:58:38Z        0
## 17413  2006-04 17:59:21Z        0
## 17414  2006-04 21:42:50Z        0
## 17415  2006-04 21:44:08Z        0
## 17416  2006-04 21:45:47Z        0
## 17417  2006-04 21:48:22Z        0
## 17418  2006-04 21:53:33Z        0
## 17419  2006-04 21:54:01Z        0
## 17420  2006-04 21:54:57Z        0
## 17421  2006-04 07:22:02Z        0
## 17422  2006-05 05:44:24Z        0
## 17423  2006-05 10:58:09Z        0
## 17424  2006-05 22:45:09Z        0
## 17425  2006-05 22:45:31Z        0
## 17426  2006-05 15:41:09Z        0
## 17427  2006-05 15:41:19Z        0
## 17428  2006-05 20:58:26Z        0
## 17429  2006-05 23:39:27Z        0
## 17430  2006-05 01:37:34Z        0
## 17431  2006-05 01:45:30Z        0
## 17432  2006-05 01:47:22Z        0
## 17433  2006-05 01:50:18Z        0
## 17434  2006-05 01:51:28Z        0
## 17435  2006-05 01:51:57Z        0
## 17436  2006-05 01:52:20Z        0
## 17437  2006-05 01:53:31Z        0
## 17438  2006-05 12:34:28Z        0
## 17439  2006-05 17:46:21Z        0
## 17440  2006-05 22:36:02Z        0
## 17441  2006-05 23:47:19Z        0
## 17442  2006-05 01:28:53Z        0
## 17443  2006-05 02:26:16Z        0
## 17444  2006-05 05:38:23Z        0
## 17445  2006-05 14:50:00Z        0
## 17446  2006-05 12:06:32Z        0
## 17447  2006-05 03:19:22Z        0
## 17448  2006-05 21:55:54Z        0
## 17449  2006-05 23:03:17Z        0
## 17450  2006-05 23:12:50Z        0
## 17451  2006-05 08:03:27Z        0
## 17452  2006-06 00:27:13Z        0
## 17453  2006-06 03:21:18Z        0
## 17454  2006-06 06:12:38Z        0
## 17455  2006-06 15:01:17Z        0
## 17456  2006-06 16:38:35Z        0
## 17457  2006-06 16:43:29Z        0
## 17458  2006-06 16:46:53Z        0
## 17459  2006-06 19:26:35Z        0
## 17460  2006-06 12:44:28Z        0
## 17461  2006-06 18:14:54Z        0
## 17462  2006-06 10:41:50Z        0
## 17463  2006-06 12:06:21Z        0
## 17464  2006-06 12:07:22Z        0
## 17465  2006-06 19:54:04Z        0
## 17466  2006-06 19:55:33Z        0
## 17467  2006-06 20:38:46Z        0
## 17468  2006-06 22:00:45Z        0
## 17469  2006-06 22:38:12Z        0
## 17470  2006-06 12:15:44Z        0
## 17471  2006-06 18:36:38Z        0
## 17472  2006-06 19:10:04Z        0
## 17473  2006-06 20:04:51Z        0
## 17474  2006-06 20:19:40Z        0
## 17475  2006-06 21:04:55Z        0
## 17476  2006-06 21:54:38Z        0
## 17477  2006-06 23:11:54Z        0
## 17478  2006-07 10:00:37Z        0
## 17479  2006-07 10:03:23Z        0
## 17480  2006-07 01:41:15Z        0
## 17481  2006-07 22:59:51Z        0
## 17482  2006-07 23:05:16Z        0
## 17483  2006-07 22:51:28Z        0
## 17484  2006-07 17:01:32Z        0
## 17485  2006-07 05:36:01Z        0
## 17486  2006-07 02:05:22Z        0
## 17487  2006-07 10:35:24Z        0
## 17488  2006-07 07:01:51Z        0
## 17489  2006-07 07:08:42Z        0
## 17490  2006-07 13:49:05Z        0
## 17491  2006-07 20:30:00Z        0
## 17492  2006-07 01:01:49Z        0
## 17493  2006-07 01:02:52Z        0
## 17494  2006-07 01:05:46Z        0
## 17495  2006-07 01:08:12Z        0
## 17496  2006-07 01:13:16Z        0
## 17497  2006-07 01:26:32Z        0
## 17498  2006-07 01:34:55Z        0
## 17499  2006-07 11:10:38Z        0
## 17500  2006-07 17:27:02Z        0
## 17501  2006-07 17:32:54Z        0
## 17502  2006-07 17:38:22Z        0
## 17503  2006-07 17:56:13Z        0
## 17504  2006-07 17:59:40Z        0
## 17505  2006-07 18:06:46Z        0
## 17506  2006-07 18:11:24Z        0
## 17507  2006-07 18:14:02Z        0
## 17508  2006-07 18:20:28Z        0
## 17509  2006-07 09:57:25Z        0
## 17510  2006-07 19:35:07Z        0
## 17511  2006-07 01:20:37Z        0
## 17512  2006-07 04:58:18Z        0
## 17513  2006-07 05:31:39Z        0
## 17514  2006-08 04:08:10Z        0
## 17515  2006-08 11:52:35Z        0
## 17516  2006-08 12:00:59Z        0
## 17517  2006-08 21:23:03Z        0
## 17518  2006-08 21:23:29Z        0
## 17519  2006-08 21:25:02Z        0
## 17520  2006-08 23:59:00Z        0
## 17521  2006-08 17:43:15Z        0
## 17522  2006-08 18:13:20Z        0
## 17523  2006-08 23:45:43Z        0
## 17524  2006-08 08:06:47Z        0
## 17525  2006-08 16:21:43Z        0
## 17526  2006-08 01:31:52Z        0
## 17527  2006-08 03:57:32Z        0
## 17528  2006-09 12:44:11Z        0
## 17529  2006-09 07:15:20Z        0
## 17530  2006-09 19:55:08Z        0
## 17531  2006-09 19:56:11Z        0
## 17532  2006-09 13:10:47Z        0
## 17533  2006-09 13:11:48Z        0
## 17534  2006-09 08:29:59Z        0
## 17535  2006-09 08:30:16Z        0
## 17536  2006-09 08:31:52Z        0
## 17537  2006-09 10:07:18Z        0
## 17538  2006-09 11:25:41Z        0
## 17539  2006-09 11:38:12Z        0
## 17540  2006-09 17:40:02Z        0
## 17541  2006-09 18:10:54Z        0
## 17542  2006-09 18:29:32Z        0
## 17543  2006-09 18:29:53Z        0
## 17544  2006-09 19:06:54Z        0
## 17545  2006-09 16:42:09Z        0
## 17546  2006-09 23:55:12Z        0
## 17547  2006-09 01:48:22Z        0
## 17548  2006-09 01:48:44Z        0
## 17549  2006-09 20:17:26Z        0
## 17550  2006-10 00:15:43Z        0
## 17551  2006-10 10:52:41Z        0
## 17552  2006-10 11:33:50Z        0
## 17553  2006-10 12:13:04Z        0
## 17554  2006-10 12:38:55Z        0
## 17555  2006-10 12:39:59Z        0
## 17556  2006-10 18:44:32Z        0
## 17557  2006-10 01:20:07Z        0
## 17558  2006-10 02:53:17Z        0
## 17559  2006-10 03:24:56Z        0
## 17560  2006-10 21:01:17Z        0
## 17561  2006-10 21:01:56Z        0
## 17562  2006-10 21:22:57Z        0
## 17563  2006-10 23:38:20Z        0
## 17564  2006-10 23:39:25Z        0
## 17565  2006-10 23:40:34Z        0
## 17566  2006-10 23:42:43Z        0
## 17567  2006-10 01:27:51Z        0
## 17568  2006-10 03:39:04Z        0
## 17569  2006-10 10:09:14Z        0
## 17570  2006-10 23:54:56Z        0
## 17571  2006-10 19:30:17Z        0
## 17572  2006-11 11:43:59Z        0
## 17573  2006-11 00:51:26Z        0
## 17574  2006-11 00:54:27Z        0
## 17575  2006-11 00:54:58Z        0
## 17576  2006-11 01:23:28Z        0
## 17577  2006-11 01:24:43Z        0
## 17578  2006-11 04:48:15Z        0
## 17579  2006-11 09:25:09Z        0
## 17580  2006-11 05:36:11Z        0
## 17581  2006-11 15:30:53Z        0
## 17582  2006-11 04:21:13Z        0
## 17583  2006-11 09:48:38Z        0
## 17584  2006-11 05:53:14Z        0
## 17585  2006-11 04:45:15Z        0
## 17586  2006-11 18:03:13Z        0
## 17587  2006-11 18:03:51Z        0
## 17588  2006-11 18:10:07Z        0
## 17589  2006-12 18:07:11Z        0
## 17590  2006-12 23:37:27Z        0
## 17591  2006-12 00:56:47Z        0
## 17592  2006-12 01:22:24Z        0
## 17593  2006-12 06:11:46Z        0
## 17594  2006-12 23:41:24Z        0
## 17595  2006-12 23:48:18Z        0
## 17596  2006-12 22:29:24Z        0
## 17597  2006-12 19:49:31Z        0
## 17598  2006-12 15:55:26Z        0
## 17599  2006-12 15:56:19Z        0
## 17600  2006-12 01:54:24Z        0
## 17601  2006-12 05:51:14Z        0
## 17602  2006-12 02:35:56Z        0
## 17603  2006-12 02:39:46Z        0
## 17604  2006-12 08:06:34Z        0
## 17605  2006-12 08:42:17Z        0
## 17606  2006-12 03:38:59Z        0
## 17607  2006-12 15:32:15Z        0
## 17608  2007-01 01:56:16Z        0
## 17609  2007-01 01:56:38Z        0
## 17610  2007-01 21:21:38Z        0
## 17611  2007-01 21:21:45Z        0
## 17612  2007-01 21:43:01Z        0
## 17613  2007-01 21:43:53Z        0
## 17614  2007-01 22:08:03Z        0
## 17615  2007-01 22:08:08Z        0
## 17616  2007-01 20:07:31Z        0
## 17617  2007-01 19:27:23Z        0
## 17618  2007-01 19:48:16Z        0
## 17619  2007-01 20:40:41Z        0
## 17620  2007-01 20:43:34Z        0
## 17621  2007-01 17:04:27Z        0
## 17622  2007-01 19:25:23Z        0
## 17623  2007-01 12:52:34Z        0
## 17624  2007-01 12:53:04Z        0
## 17625  2007-01 19:42:05Z        0
## 17626  2007-01 05:15:46Z        0
## 17627  2007-01 07:41:20Z        0
## 17628  2007-02 14:52:04Z        0
## 17629  2007-02 18:32:54Z        0
## 17630  2007-02 16:24:51Z        0
## 17631  2007-02 20:53:06Z        0
## 17632  2007-02 22:05:43Z        0
## 17633  2007-02 22:09:28Z        0
## 17634  2007-02 16:29:03Z        0
## 17635  2007-02 16:32:48Z        0
## 17636  2007-02 19:41:43Z        0
## 17637  2007-02 20:04:11Z        0
## 17638  2007-02 01:10:30Z        0
## 17639  2007-02 21:06:31Z        0
## 17640  2007-02 23:22:34Z        0
## 17641  2007-02 02:41:18Z        0
## 17642  2007-02 21:35:01Z        0
## 17643  2007-02 21:35:36Z        0
## 17644  2007-02 23:45:50Z        0
## 17645  2007-02 00:32:11Z        0
## 17646  2007-02 14:51:52Z        0
## 17647  2007-02 14:52:07Z        0
## 17648  2007-03 16:56:49Z        0
## 17649  2007-03 16:57:25Z        0
## 17650  2007-03 19:35:12Z        0
## 17651  2007-03 19:36:25Z        0
## 17652  2007-03 21:24:16Z        0
## 17653  2007-03 21:29:04Z        0
## 17654  2007-03 21:50:56Z        0
## 17655  2007-03 22:18:14Z        0
## 17656  2007-03 16:59:06Z        0
## 17657  2007-03 17:12:04Z        0
## 17658  2007-03 00:58:36Z        0
## 17659  2007-03 00:59:06Z        0
## 17660  2007-03 21:32:29Z        0
## 17661  2007-03 01:24:18Z        0
## 17662  2007-03 21:32:59Z        0
## 17663  2007-03 23:35:57Z        0
## 17664  2007-03 23:36:22Z        0
## 17665  2007-03 23:37:04Z        0
## 17666  2007-03 06:13:28Z        0
## 17667  2007-03 12:33:10Z        0
## 17668  2007-03 12:33:55Z        0
## 17669  2007-03 12:46:29Z        0
## 17670  2007-03 12:46:57Z        0
## 17671  2007-03 12:50:01Z        0
## 17672  2007-03 12:50:31Z        0
## 17673  2007-03 14:41:04Z        0
## 17674  2007-03 14:53:53Z        0
## 17675  2007-03 14:59:54Z        0
## 17676  2007-03 15:00:16Z        0
## 17677  2007-03 15:00:40Z        0
## 17678  2007-03 15:01:32Z        0
## 17679  2007-03 15:03:24Z        0
## 17680  2007-03 15:06:45Z        0
## 17681  2007-03 15:46:00Z        0
## 17682  2007-03 19:24:46Z        0
## 17683  2007-03 19:29:14Z        0
## 17684  2007-03 21:13:10Z        0
## 17685  2007-03 21:15:28Z        0
## 17686  2007-03 21:16:18Z        0
## 17687  2007-03 22:33:09Z        0
## 17688  2007-03 22:33:37Z        0
## 17689  2007-04 14:54:13Z        0
## 17690  2007-04 16:44:28Z        0
## 17691  2007-04 17:40:01Z        0
## 17692  2007-04 17:40:25Z        0
## 17693  2007-04 17:44:22Z        0
## 17694  2007-04 17:44:45Z        0
## 17695  2007-04 04:52:49Z        0
## 17696  2007-04 03:02:33Z        0
## 17697  2007-04 07:29:38Z        0
## 17698  2007-04 07:42:37Z        0
## 17699  2007-04 01:06:11Z        0
## 17700  2007-04 01:11:18Z        0
## 17701  2007-04 09:49:41Z        0
## 17702  2007-04 09:51:55Z        0
## 17703  2007-04 21:48:18Z        0
## 17704  2007-04 13:45:46Z        0
## 17705  2007-04 19:10:47Z        0
## 17706  2007-04 19:11:06Z        0
## 17707  2007-04 19:12:58Z        0
## 17708  2007-04 19:13:10Z        0
## 17709  2007-04 10:37:00Z        0
## 17710  2007-04 18:21:48Z        0
## 17711  2007-04 13:18:42Z        0
## 17712  2007-04 20:25:47Z        0
## 17713  2007-04 20:28:04Z        0
## 17714  2007-04 03:45:45Z        0
## 17715  2007-04 19:50:17Z        0
## 17716  2007-05 06:08:52Z        0
## 17717  2007-05 16:39:16Z        0
## 17718  2007-05 19:01:12Z        0
## 17719  2007-05 19:14:36Z        0
## 17720  2007-05 19:15:32Z        0
## 17721  2007-05 20:38:25Z        0
## 17722  2007-05 03:01:59Z        0
## 17723  2007-05 02:05:14Z        0
## 17724  2007-05 02:06:53Z        0
## 17725  2007-05 02:09:53Z        0
## 17726  2007-05 13:57:19Z        0
## 17727  2007-05 13:57:43Z        0
## 17728  2007-05 14:02:57Z        0
## 17729  2007-05 20:41:09Z        0
## 17730  2007-05 13:00:00Z        0
## 17731  2007-05 14:06:15Z        0
## 17732  2007-05 06:38:26Z        0
## 17733  2007-05 03:55:47Z        0
## 17734  2007-05 03:37:27Z        0
## 17735  2007-06 21:35:55Z        0
## 17736  2007-06 09:55:57Z        0
## 17737  2007-06 09:58:32Z        0
## 17738  2007-06 09:59:59Z        0
## 17739  2007-06 10:02:13Z        0
## 17740  2007-06 17:02:04Z        0
## 17741  2007-06 17:03:21Z        0
## 17742  2007-06 17:03:54Z        0
## 17743  2007-06 22:13:54Z        0
## 17744  2007-06 21:47:34Z        0
## 17745  2007-06 06:50:05Z        0
## 17746  2007-06 22:33:11Z        0
## 17747  2007-06 10:15:10Z        0
## 17748  2007-06 12:09:33Z        0
## 17749  2007-07 06:08:41Z        0
## 17750  2007-07 06:09:34Z        0
## 17751  2007-07 06:10:08Z        0
## 17752  2007-07 14:18:30Z        0
## 17753  2007-07 14:23:27Z        0
## 17754  2007-07 11:22:38Z        0
## 17755  2007-07 03:56:19Z        0
## 17756  2007-07 03:57:46Z        0
## 17757  2007-07 04:47:21Z        0
## 17758  2007-07 15:41:52Z        0
## 17759  2007-07 15:46:26Z        0
## 17760  2007-07 18:08:45Z        0
## 17761  2007-07 13:53:57Z        0
## 17762  2007-08 20:06:01Z        0
## 17763  2007-08 20:38:34Z        0
## 17764  2007-08 00:07:50Z        0
## 17765  2007-08 23:00:47Z        0
## 17766  2007-08 23:37:11Z        0
## 17767  2007-08 23:40:53Z        0
## 17768  2007-08 07:57:51Z        0
## 17769  2007-09 12:18:01Z        0
## 17770  2007-09 14:09:53Z        0
## 17771  2007-09 14:10:17Z        0
## 17772  2007-09 21:26:41Z        0
## 17773  2007-09 02:05:58Z        0
## 17774  2007-09 19:47:55Z        0
## 17775  2007-09 20:39:21Z        0
## 17776  2007-09 19:24:54Z        0
## 17777  2007-09 18:05:12Z        0
## 17778  2007-09 18:05:35Z        0
## 17779  2007-09 18:05:55Z        0
## 17780  2007-09 18:06:14Z        0
## 17781  2007-09 18:07:52Z        0
## 17782  2007-09 18:08:50Z        0
## 17783  2007-09 11:12:09Z        0
## 17784  2007-10 17:49:01Z        0
## 17785  2007-10 18:05:05Z        0
## 17786  2007-10 02:26:37Z        0
## 17787  2007-10 02:27:30Z        0
## 17788  2007-10 23:00:38Z        0
## 17789  2007-10 23:01:11Z        0
## 17790  2007-10 13:49:04Z        0
## 17791  2007-10 10:32:40Z        0
## 17792  2007-10 16:01:37Z        0
## 17793  2007-10 21:01:08Z        0
## 17794  2007-10 00:19:59Z        0
## 17795  2007-10 00:20:25Z        0
## 17796  2007-10 06:31:45Z        0
## 17797  2007-10 11:18:32Z        0
## 17798  2007-11 15:51:31Z        0
## 17799  2007-11 00:48:32Z        0
## 17800  2007-11 19:25:41Z        0
## 17801  2007-11 00:27:00Z        0
## 17802  2007-11 01:06:03Z        0
## 17803  2007-11 13:48:38Z        0
## 17804  2007-11 15:41:11Z        0
## 17805  2007-11 20:22:22Z        0
## 17806  2007-11 20:22:53Z        0
## 17807  2007-11 16:15:57Z        0
## 17808  2007-11 20:44:03Z        0
## 17809  2007-11 21:13:44Z        0
## 17810  2007-11 21:21:54Z        0
## 17811  2007-11 21:28:22Z        0
## 17812  2007-11 21:29:48Z        0
## 17813  2007-11 17:25:28Z        0
## 17814  2007-11 17:28:50Z        0
## 17815  2007-11 20:36:30Z        0
## 17816  2007-11 20:39:06Z        0
## 17817  2007-11 20:39:45Z        0
## 17818  2007-11 06:10:57Z        0
## 17819  2007-11 06:12:40Z        0
## 17820  2007-11 06:13:47Z        0
## 17821  2007-11 07:08:41Z        0
## 17822  2007-11 09:29:58Z        0
## 17823  2007-11 21:24:05Z        0
## 17824  2007-11 22:20:14Z        0
## 17825  2007-11 00:37:08Z        0
## 17826  2007-11 06:15:23Z        0
## 17827  2007-12 01:29:12Z        0
## 17828  2007-12 20:24:36Z        0
## 17829  2007-12 20:24:56Z        0
## 17830  2007-12 16:42:17Z        0
## 17831  2007-12 20:25:32Z        0
## 17832  2007-12 22:32:19Z        0
## 17833  2007-12 00:08:12Z        0
## 17834  2007-12 00:18:16Z        0
## 17835  2007-12 03:39:27Z        0
## 17836  2007-12 21:03:19Z        0
## 17837  2007-12 23:55:56Z        0
## 17838  2007-12 00:10:24Z        0
## 17839  2008-01 23:34:44Z        0
## 17840  2008-01 23:37:21Z        0
## 17841  2002-10 23:34:04Z        0
## 17842  2002-10 23:34:31Z        0
## 17843  2002-10 00:40:32Z        0
## 17844  2002-10 03:43:30Z        0
## 17845  2002-10 06:28:35Z        0
## 17846  2002-10 11:11:49Z        0
## 17847  2002-10 11:11:58Z        0
## 17848  2002-10 11:14:22Z        0
## 17849  2002-10 11:14:34Z        0
## 17850  2002-10 11:19:38Z        0
## 17851  2002-10 11:19:44Z        0
## 17852  2002-10 11:22:06Z        0
## 17853  2002-10 11:23:42Z        0
## 17854  2002-10 11:25:36Z        0
## 17855  2002-10 11:35:31Z        0
## 17856  2002-10 11:35:41Z        0
## 17857  2002-10 11:35:48Z        0
## 17858  2002-10 11:36:31Z        0
## 17859  2002-10 11:43:01Z        0
## 17860  2002-10 11:43:20Z        0
## 17861  2002-10 18:35:03Z        0
## 17862  2002-10 18:35:52Z        0
## 17863  2002-10 18:47:23Z        0
## 17864  2002-10 22:29:57Z        0
## 17865  2002-10 22:50:33Z        0
## 17866  2002-10 23:05:01Z        0
## 17867  2002-10 23:05:38Z        0
## 17868  2003-04 11:27:44Z        0
## 17869  2003-06 12:13:08Z        0
## 17870  2003-06 12:15:37Z        0
## 17871  2003-08 23:51:06Z        0
## 17872  2003-08 23:57:23Z        0
## 17873  2003-08 17:19:34Z        0
## 17874  2003-08 02:24:32Z        0
## 17875  2003-08 02:25:25Z        0
## 17876  2003-09 11:31:39Z        0
## 17877  2003-09 13:47:18Z        0
## 17878  2003-10 10:56:23Z        0
## 17879  2003-10 00:52:49Z        0
## 17880  2003-12 03:46:54Z        0
## 17881  2004-04 20:08:48Z        0
## 17882  2004-07 04:31:27Z        0
## 17883  2004-07 22:51:27Z        0
## 17884  2004-07 23:39:38Z        0
## 17885  2004-07 10:46:59Z        0
## 17886  2004-07 11:07:30Z        0
## 17887  2004-07 04:13:07Z        0
## 17888  2004-09 17:06:46Z        0
## 17889  2004-11 04:58:00Z        0
## 17890  2004-11 00:30:47Z        0
## 17891  2005-04 16:34:09Z        0
## 17892  2005-04 09:03:02Z        0
## 17893  2005-04 07:11:33Z        0
## 17894  2005-05 16:10:07Z        0
## 17895  2005-06 17:48:20Z        0
## 17896  2005-06 20:58:32Z        0
## 17897  2005-07 06:40:57Z        0
## 17898  2005-07 06:41:31Z        0
## 17899  2005-07 01:44:56Z        0
## 17900  2005-07 23:35:46Z        0
## 17901  2005-07 19:55:37Z        0
## 17902  2005-07 08:07:24Z        0
## 17903  2005-08 20:14:47Z        0
## 17904  2005-08 01:41:26Z        0
## 17905  2005-09 17:39:11Z        0
## 17906  2005-09 20:47:19Z        0
## 17907  2005-10 15:34:03Z        0
## 17908  2005-11 10:31:37Z        0
## 17909  2005-12 16:35:13Z        0
## 17910  2006-01 12:26:04Z        0
## 17911  2006-02 22:34:11Z        0
## 17912  2006-02 12:56:28Z        0
## 17913  2006-02 22:39:55Z        0
## 17914  2006-03 04:41:28Z        0
## 17915  2006-03 17:09:24Z        0
## 17916  2006-04 21:03:01Z        0
## 17917  2006-04 03:28:47Z        0
## 17918  2006-04 03:16:39Z        0
## 17919  2006-04 10:23:12Z        0
## 17920  2006-04 03:52:56Z        0
## 17921  2006-04 15:01:35Z        0
## 17922  2006-05 07:27:24Z        0
## 17923  2006-05 02:02:32Z        0
## 17924  2006-05 14:54:56Z        0
## 17925  2006-05 19:05:53Z        0
## 17926  2006-05 16:44:14Z        0
## 17927  2006-05 16:45:12Z        0
## 17928  2006-05 02:40:30Z        0
## 17929  2006-05 02:40:42Z        0
## 17930  2006-06 11:21:04Z        0
## 17931  2006-07 08:16:06Z        0
## 17932  2006-07 00:23:32Z        0
## 17933  2006-07 00:24:03Z        0
## 17934  2006-07 15:17:47Z        0
## 17935  2006-07 09:24:15Z        0
## 17936  2006-07 15:35:11Z        0
## 17937  2006-08 09:35:51Z        0
## 17938  2006-08 22:58:56Z        0
## 17939  2006-08 08:34:40Z        0
## 17940  2006-09 10:05:22Z        0
## 17941  2006-09 10:14:44Z        0
## 17942  2006-09 10:17:09Z        0
## 17943  2006-09 10:17:33Z        0
## 17944  2006-09 10:18:48Z        0
## 17945  2006-09 10:19:56Z        0
## 17946  2006-09 10:20:40Z        0
## 17947  2006-09 10:21:02Z        0
## 17948  2006-09 15:05:02Z        0
## 17949  2006-09 09:25:14Z        0
## 17950  2006-09 09:47:13Z        0
## 17951  2006-09 20:38:38Z        0
## 17952  2006-09 20:39:38Z        0
## 17953  2006-09 20:40:09Z        0
## 17954  2006-09 20:40:44Z        0
## 17955  2006-09 20:41:34Z        0
## 17956  2006-09 20:41:57Z        0
## 17957  2006-09 16:10:39Z        0
## 17958  2006-09 16:11:13Z        0
## 17959  2006-10 18:57:58Z        0
## 17960  2006-10 00:13:45Z        0
## 17961  2006-11 18:19:07Z        0
## 17962  2006-11 16:15:05Z        0
## 17963  2006-11 21:43:12Z        0
## 17964  2006-11 21:45:27Z        0
## 17965  2006-11 21:46:43Z        0
## 17966  2006-11 19:56:59Z        0
## 17967  2006-11 19:19:05Z        0
## 17968  2006-11 19:50:06Z        0
## 17969  2006-11 01:57:07Z        0
## 17970  2006-12 21:16:19Z        0
## 17971  2006-12 04:43:43Z        0
## 17972  2006-12 13:08:57Z        0
## 17973  2007-01 15:28:50Z        0
## 17974  2007-01 19:00:50Z        0
## 17975  2007-01 05:14:03Z        0
## 17976  2007-01 05:16:48Z        0
## 17977  2007-01 10:37:26Z        0
## 17978  2007-01 09:52:14Z        0
## 17979  2007-02 08:09:26Z        0
## 17980  2007-02 08:12:21Z        0
## 17981  2007-02 08:14:47Z        0
## 17982  2007-02 18:35:01Z        0
## 17983  2007-02 03:20:14Z        0
## 17984  2007-02 17:55:16Z        0
## 17985  2007-02 22:12:57Z        0
## 17986  2007-02 22:53:59Z        0
## 17987  2007-02 05:57:41Z        0
## 17988  2007-02 10:58:23Z        0
## 17989  2007-02 00:30:32Z        0
## 17990  2007-02 00:31:11Z        0
## 17991  2007-02 08:13:06Z        0
## 17992  2007-03 14:15:04Z        0
## 17993  2007-03 14:16:07Z        0
## 17994  2007-03 14:19:20Z        0
## 17995  2007-03 23:13:10Z        0
## 17996  2007-03 20:46:21Z        0
## 17997  2007-03 03:45:13Z        0
## 17998  2007-03 00:48:19Z        0
## 17999  2007-03 23:12:00Z        0
## 18000  2007-03 02:55:43Z        0
## 18001  2007-03 01:43:16Z        0
## 18002  2007-03 15:43:52Z        0
## 18003  2007-03 15:45:34Z        0
## 18004  2007-03 15:46:39Z        0
## 18005  2007-03 16:41:56Z        0
## 18006  2007-03 01:43:36Z        0
## 18007  2007-03 01:45:16Z        0
## 18008  2007-03 01:51:42Z        0
## 18009  2007-03 01:52:10Z        0
## 18010  2007-03 04:48:25Z        0
## 18011  2007-04 10:19:46Z        0
## 18012  2007-05 06:40:44Z        0
## 18013  2007-05 06:42:38Z        0
## 18014  2007-05 09:23:39Z        0
## 18015  2007-05 09:37:57Z        0
## 18016  2007-05 07:15:53Z        0
## 18017  2007-05 13:24:38Z        0
## 18018  2007-05 17:03:49Z        0
## 18019  2007-05 21:32:17Z        0
## 18020  2007-05 22:08:54Z        0
## 18021  2007-06 05:52:11Z        0
## 18022  2007-09 02:26:04Z        0
## 18023  2007-09 02:30:04Z        0
## 18024  2007-09 02:39:27Z        0
## 18025  2007-09 18:06:38Z        0
## 18026  2007-09 18:07:37Z        0
## 18027  2007-10 22:20:33Z        0
## 18028  2007-10 23:25:11Z        0
## 18029  2007-10 23:29:08Z        0
## 18030  2007-10 23:30:22Z        0
## 18031  2007-10 23:30:50Z        0
## 18032  2007-10 23:31:14Z        0
## 18033  2007-10 23:31:17Z        0
## 18034  2007-10 23:32:23Z        0
## 18035  2007-10 02:15:22Z        0
## 18036  2007-10 02:44:32Z        0
## 18037  2007-11 21:17:16Z        0
## 18038  2007-11 21:29:00Z        0
## 18039  2007-11 00:40:13Z        0
## 18040  2007-11 00:40:45Z        0
## 18041  2007-11 23:31:58Z        0
## 18042  2007-11 00:24:27Z        0
## 18043  2007-11 10:40:19Z        0
## 18044  2007-11 10:41:50Z        0
## 18045  2007-11 11:59:20Z        0
## 18046  2007-11 21:22:17Z        0
## 18047  2007-11 21:22:52Z        0
## 18048  2007-11 21:26:36Z        0
## 18049  2007-11 13:36:24Z        0
## 18050  2007-11 13:36:57Z        0
## 18051  2007-11 19:25:06Z        0
## 18052  2007-12 22:10:29Z        0
## 18053  2007-12 22:11:17Z        0
## 18054  2007-12 22:11:42Z        0
## 18055  2007-12 22:14:14Z        0
## 18056  2007-12 22:25:43Z        0
## 18057  2007-12 22:26:27Z        0
## 18058  2007-12 19:17:10Z        0
## 18059  2007-12 20:09:18Z        0
## 18060  2007-12 04:49:41Z        0
## 18061  2007-12 04:59:00Z        0
## 18062  2007-12 14:29:29Z        0
## 18063  2007-12 14:30:22Z        0
## 18064  2007-12 16:34:33Z        0
## 18065  2007-12 04:01:13Z        0
## 18066  2007-12 21:06:46Z        0
## 18067  2007-12 21:07:35Z        0
## 18068  2007-12 23:11:00Z        0
## 18069  2007-12 14:58:36Z        0
## 18070  2007-12 23:46:54Z        0
## 18071  2007-12 23:49:38Z        0
## 18072  2007-12 14:23:38Z        0
## 18073  2008-01 18:47:57Z        0
## 18074  2008-01 18:48:05Z        0
## 18075  2008-01 21:03:40Z        0
## 18076  2008-01 21:04:55Z        0
## 18077  2008-01 21:05:06Z        0
## 18078  2008-01 21:43:59Z        0
## 18079  2008-01 04:09:46Z        0
## 18080  2008-01 04:12:31Z        0
## 18081  2008-01 11:52:03Z        0
## 18082  2008-01 11:53:55Z        0
## 18083  2008-01 23:19:55Z        0
## 18084  2008-01 23:20:04Z        0
## 18085  2002-10 09:46:11Z        2
## 18086  2002-10 19:41:45Z        3
## 18087  2003-05 22:35:03Z        3
## 18088  2004-08 02:36:34Z        3
## 18089  2004-09 16:50:33Z        3
## 18090  2004-09 22:07:05Z        3
## 18091  2004-09 22:07:58Z        3
## 18092  2004-09 22:09:15Z        3
## 18093  2004-09 22:17:16Z        3
## 18094  2005-01 09:44:30Z        3
## 18095  2005-01 22:25:32Z        3
## 18096  2005-01 03:50:30Z        3
## 18097  2005-01 13:22:43Z        3
## 18098  2005-03 10:48:29Z        3
## 18099  2005-05 16:00:15Z        3
## 18100  2005-10 22:31:24Z        3
## 18101  2005-11 03:25:05Z        3
## 18102  2005-11 03:33:57Z        3
## 18103  2006-02 20:36:51Z        3
## 18104  2006-02 23:32:12Z        3
## 18105  2006-03 18:28:12Z        3
## 18106  2006-03 06:48:51Z        3
## 18107  2006-04 06:25:24Z        3
## 18108  2006-04 16:19:47Z        3
## 18109  2006-05 19:21:07Z        3
## 18110  2006-05 04:03:58Z        3
## 18111  2006-06 03:26:41Z        3
## 18112  2006-06 12:02:37Z        3
## 18113  2006-06 13:49:31Z        3
## 18114  2006-06 13:53:49Z        3
## 18115  2006-06 13:54:05Z        3
## 18116  2006-06 19:51:38Z        3
## 18117  2006-06 21:21:00Z        3
## 18118  2006-06 21:09:14Z        3
## 18119  2006-07 22:31:57Z        3
## 18120  2006-07 06:43:50Z        3
## 18121  2006-07 06:44:42Z        3
## 18122  2006-07 06:45:23Z        3
## 18123  2006-07 18:42:34Z        3
## 18124  2006-08 09:13:07Z        3
## 18125  2006-08 10:33:56Z        3
## 18126  2006-08 16:39:33Z        3
## 18127  2006-08 16:39:45Z        3
## 18128  2006-08 21:52:25Z        3
## 18129  2006-08 21:53:19Z        3
## 18130  2006-08 21:53:59Z        3
## 18131  2006-11 03:46:15Z        3
## 18132  2007-01 19:11:34Z        3
## 18133  2007-01 19:26:04Z        3
## 18134  2007-01 04:35:49Z        3
## 18135  2007-01 08:30:51Z        3
## 18136  2007-02 23:05:08Z        3
## 18137  2007-02 23:05:13Z        3
## 18138  2007-03 18:14:20Z        3
## 18139  2007-03 20:42:26Z        3
## 18140  2007-03 20:35:40Z        3
## 18141  2007-04 11:13:14Z        3
## 18142  2007-04 19:44:50Z        3
## 18143  2007-04 20:06:48Z        3
## 18144  2007-04 17:24:42Z        3
## 18145  2007-05 18:29:17Z        3
## 18146  2007-06 17:57:06Z        3
## 18147  2007-07 05:44:44Z        3
## 18148  2007-07 08:32:21Z        3
## 18149  2007-08 17:00:42Z        3
## 18150  2007-10 15:19:18Z        3
## 18151  2007-10 15:20:06Z        3
## 18152  2007-11 04:25:51Z        3
## 18153  2007-11 23:20:08Z        3
## 18154  2007-11 14:35:27Z        3
## 18155  2007-12 16:42:25Z        3
## 18156  2007-12 13:56:15Z        3
## 18157  2007-12 13:58:35Z        3
## 18158  2007-12 12:22:28Z        3
## 18159  2007-12 02:51:59Z        3
## 18160  2007-12 22:11:58Z        3
## 18161  2008-01 23:12:49Z        3
## 18162  2008-01 06:59:14Z        3
## 18163  2002-10 23:49:13Z        4
## 18164  2003-12 16:41:37Z        4
## 18165  2004-09 20:32:05Z        4
## 18166  2007-06 06:19:39Z        4
## 18167  2002-10 21:23:12Z        9
## 18168  2002-12 09:13:32Z        9
## 18169  2003-06 03:38:33Z        9
## 18170  2004-03 18:40:32Z        9
## 18171  2004-06 19:01:21Z        9
## 18172  2004-08 05:21:07Z        9
## 18173  2004-11 08:18:52Z        9
## 18174  2004-11 08:19:05Z        9
## 18175  2004-11 06:52:28Z        9
## 18176  2004-11 06:05:25Z        9
## 18177  2004-12 20:54:16Z        9
## 18178  2004-12 12:05:08Z        9
## 18179  2005-08 02:04:03Z        9
## 18180  2005-10 15:28:02Z        9
## 18181  2005-11 22:45:00Z        9
## 18182  2005-11 09:58:09Z        9
## 18183  2005-11 10:44:58Z        9
## 18184  2005-11 08:12:55Z        9
## 18185  2005-11 08:15:03Z        9
## 18186  2005-11 08:15:46Z        9
## 18187  2005-12 23:26:51Z        9
## 18188  2006-01 08:09:19Z        9
## 18189  2006-01 08:13:43Z        9
## 18190  2006-01 08:20:39Z        9
## 18191  2006-01 08:25:28Z        9
## 18192  2006-01 08:29:00Z        9
## 18193  2006-01 20:36:18Z        9
## 18194  2006-01 20:46:54Z        9
## 18195  2006-01 22:27:08Z        9
## 18196  2006-01 20:01:48Z        9
## 18197  2006-01 18:28:26Z        9
## 18198  2006-02 12:13:07Z        9
## 18199  2006-02 22:31:35Z        9
## 18200  2006-02 22:31:58Z        9
## 18201  2006-03 00:55:10Z        9
## 18202  2006-03 00:57:43Z        9
## 18203  2006-03 00:59:52Z        9
## 18204  2006-03 01:00:22Z        9
## 18205  2006-03 17:23:11Z        9
## 18206  2006-03 23:11:18Z        9
## 18207  2006-03 23:53:55Z        9
## 18208  2006-03 00:42:21Z        9
## 18209  2006-03 01:36:56Z        9
## 18210  2006-03 01:43:05Z        9
## 18211  2006-03 02:04:06Z        9
## 18212  2006-04 16:39:56Z        9
## 18213  2006-04 14:56:07Z        9
## 18214  2006-04 15:00:33Z        9
## 18215  2006-04 15:04:33Z        9
## 18216  2006-04 15:28:15Z        9
## 18217  2006-05 16:37:28Z        9
## 18218  2006-06 21:06:19Z        9
## 18219  2006-06 09:52:51Z        9
## 18220  2006-06 17:34:22Z        9
## 18221  2006-07 03:56:09Z        9
## 18222  2006-07 23:06:57Z        9
## 18223  2006-07 23:08:00Z        9
## 18224  2006-07 23:09:41Z        9
## 18225  2006-07 13:57:24Z        9
## 18226  2006-08 16:57:54Z        9
## 18227  2006-08 17:00:36Z        9
## 18228  2006-08 17:01:23Z        9
## 18229  2006-08 17:02:11Z        9
## 18230  2006-08 17:11:15Z        9
## 18231  2006-08 18:54:33Z        9
## 18232  2006-09 12:12:41Z        9
## 18233  2006-11 21:45:47Z        9
## 18234  2006-11 22:01:42Z        9
## 18235  2006-11 16:01:09Z        9
## 18236  2006-12 21:32:20Z        9
## 18237  2006-12 07:38:54Z        9
## 18238  2006-12 07:46:02Z        9
## 18239  2006-12 17:49:37Z        9
## 18240  2007-01 03:30:42Z        9
## 18241  2007-02 20:25:33Z        9
## 18242  2007-02 03:16:51Z        9
## 18243  2007-02 20:18:28Z        9
## 18244  2007-02 20:19:11Z        9
## 18245  2007-03 14:45:10Z        9
## 18246  2007-03 16:29:19Z        9
## 18247  2007-03 00:15:26Z        9
## 18248  2007-05 19:03:49Z        9
## 18249  2007-06 03:55:02Z        9
## 18250  2007-06 03:55:56Z        9
## 18251  2007-06 03:56:22Z        9
## 18252  2007-06 15:45:46Z        9
## 18253  2007-06 14:40:09Z        9
## 18254  2007-06 02:38:09Z        9
## 18255  2007-07 22:03:20Z        9
## 18256  2007-07 22:04:49Z        9
## 18257  2007-07 01:00:08Z        9
## 18258  2007-07 03:06:12Z        9
## 18259  2007-07 03:07:27Z        9
## 18260  2007-07 03:14:45Z        9
## 18261  2007-07 02:05:03Z        9
## 18262  2007-07 02:05:33Z        9
## 18263  2007-08 08:25:16Z        9
## 18264  2007-08 21:29:07Z        9
## 18265  2007-08 20:27:39Z        9
## 18266  2007-08 19:05:11Z        9
## 18267  2007-08 19:11:33Z        9
## 18268  2007-08 21:07:55Z        9
## 18269  2007-09 02:57:48Z        9
## 18270  2007-09 03:01:24Z        9
## 18271  2007-09 04:14:12Z        9
## 18272  2007-09 23:26:49Z        9
## 18273  2007-09 09:49:18Z        9
## 18274  2007-10 05:22:37Z        9
## 18275  2007-10 14:55:47Z        9
## 18276  2007-10 09:32:14Z        9
## 18277  2007-10 06:11:51Z        9
## 18278  2007-10 06:12:25Z        9
## 18279  2007-10 06:13:00Z        9
## 18280  2007-10 06:14:59Z        9
## 18281  2007-10 12:51:19Z        9
## 18282  2007-10 22:21:44Z        9
## 18283  2007-10 09:24:58Z        9
## 18284  2007-10 13:02:53Z        9
## 18285  2007-10 11:05:56Z        9
## 18286  2007-12 17:53:15Z        9
## 18287  2002-10 21:28:22Z        0
## 18288  2002-12 10:05:33Z        0
## 18289  2004-05 05:03:17Z        0
## 18290  2004-08 05:42:42Z        0
## 18291  2004-11 07:00:35Z        0
## 18292  2004-11 06:08:23Z        0
## 18293  2004-12 20:32:50Z        0
## 18294  2005-10 01:52:56Z        0
## 18295  2006-01 19:49:50Z        0
## 18296  2006-03 20:49:07Z        0
## 18297  2006-04 16:59:47Z        0
## 18298  2006-05 09:59:47Z        0
## 18299  2006-08 00:46:02Z        0
## 18300  2006-08 00:48:33Z        0
## 18301  2007-05 04:57:34Z        0
## 18302  2007-06 16:08:54Z        0
## 18303  2007-08 22:19:25Z        0
## 18304  2007-09 00:55:57Z        0
## 18305  2007-09 03:08:16Z        0
## 18306  2007-10 09:45:51Z        0
## 18307  2007-10 22:01:00Z        0
## 18308  2007-12 19:22:20Z        0
## 18309  2002-10 21:29:45Z        0
## 18310  2002-12 10:17:13Z        0
## 18311  2004-04 15:01:54Z        0
## 18312  2004-08 05:48:39Z        0
## 18313  2004-11 10:17:48Z        0
## 18314  2004-11 10:18:01Z        0
## 18315  2004-11 07:03:15Z        0
## 18316  2004-11 06:09:22Z        0
## 18317  2004-12 18:04:42Z        0
## 18318  2005-10 09:13:05Z        0
## 18319  2005-11 02:35:09Z        0
## 18320  2005-11 02:35:36Z        0
## 18321  2006-03 12:26:08Z        0
## 18322  2006-04 17:04:12Z        0
## 18323  2006-05 23:14:14Z        0
## 18324  2006-09 16:48:12Z        0
## 18325  2006-09 16:48:42Z        0
## 18326  2006-09 16:49:23Z        0
## 18327  2006-09 16:49:42Z        0
## 18328  2006-09 16:50:15Z        0
## 18329  2006-09 16:50:45Z        0
## 18330  2006-09 16:51:16Z        0
## 18331  2006-09 16:51:39Z        0
## 18332  2006-09 16:52:09Z        0
## 18333  2006-09 16:52:42Z        0
## 18334  2006-09 16:53:14Z        0
## 18335  2006-09 16:54:36Z        0
## 18336  2006-09 17:00:17Z        0
## 18337  2006-09 16:31:05Z        0
## 18338  2006-09 16:31:30Z        0
## 18339  2007-03 17:35:18Z        0
## 18340  2007-03 17:36:07Z        0
## 18341  2007-03 17:37:39Z        0
## 18342  2007-03 17:38:28Z        0
## 18343  2007-03 17:39:52Z        0
## 18344  2007-03 17:40:23Z        0
## 18345  2007-03 17:40:34Z        0
## 18346  2007-03 17:40:37Z        0
## 18347  2007-03 17:40:49Z        0
## 18348  2007-03 17:41:51Z        0
## 18349  2007-03 17:42:28Z        0
## 18350  2007-03 17:43:13Z        0
## 18351  2007-03 17:44:15Z        0
## 18352  2007-03 17:45:04Z        0
## 18353  2007-03 17:45:54Z        0
## 18354  2007-03 17:47:28Z        0
## 18355  2007-03 17:48:03Z        0
## 18356  2007-03 17:48:50Z        0
## 18357  2007-03 17:53:14Z        0
## 18358  2007-03 18:05:39Z        0
## 18359  2007-03 18:12:04Z        0
## 18360  2007-03 18:07:09Z        0
## 18361  2007-03 18:09:39Z        0
## 18362  2007-03 18:10:35Z        0
## 18363  2007-03 00:02:18Z        0
## 18364  2007-03 19:00:14Z        0
## 18365  2007-03 16:42:23Z        0
## 18366  2007-03 16:52:13Z        0
## 18367  2007-03 18:07:03Z        0
## 18368  2007-03 23:32:13Z        0
## 18369  2007-04 00:26:40Z        0
## 18370  2007-05 01:42:35Z        0
## 18371  2007-05 04:31:12Z        0
## 18372  2007-05 04:31:14Z        0
## 18373  2007-05 15:05:45Z        0
## 18374  2007-05 15:06:56Z        0
## 18375  2007-05 15:12:39Z        0
## 18376  2007-05 15:14:05Z        0
## 18377  2007-05 15:18:57Z        0
## 18378  2007-05 15:19:53Z        0
## 18379  2007-05 22:09:41Z        0
## 18380  2007-05 15:51:47Z        0
## 18381  2007-05 22:32:58Z        0
## 18382  2007-05 09:35:07Z        0
## 18383  2007-05 19:47:44Z        0
## 18384  2007-06 12:43:31Z        0
## 18385  2007-08 03:26:41Z        0
## 18386  2007-08 19:10:47Z        0
## 18387  2007-08 19:12:02Z        0
## 18388  2007-08 19:13:50Z        0
## 18389  2007-08 19:14:18Z        0
## 18390  2007-08 19:15:09Z        0
## 18391  2007-08 19:15:20Z        0
## 18392  2007-08 19:15:48Z        0
## 18393  2007-08 19:16:19Z        0
## 18394  2007-09 21:40:03Z        0
## 18395  2007-09 17:58:24Z        0
## 18396  2007-10 09:04:02Z        0
## 18397  2007-10 23:11:08Z        0
## 18398  2007-12 02:01:44Z        0
## 18399  2007-12 02:03:07Z        0
## 18400  2007-12 15:01:41Z        0
## 18401  2007-12 16:38:02Z        0
## 18402  2007-12 01:42:48Z        0
## 18403  2007-12 05:50:56Z        0
## 18404  2007-12 17:24:47Z        0
## 18405  2002-10 21:38:51Z        1
## 18406  2002-12 11:38:48Z        1
## 18407  2004-04 15:02:11Z        1
## 18408  2004-08 06:27:05Z        1
## 18409  2004-11 04:47:18Z        1
## 18410  2004-11 04:47:34Z        1
## 18411  2004-11 07:19:24Z        1
## 18412  2004-11 06:15:40Z        1
## 18413  2004-12 10:39:21Z        1
## 18414  2005-10 23:19:44Z        1
## 18415  2006-03 04:17:33Z        1
## 18416  2006-03 21:58:33Z        1
## 18417  2006-04 11:55:38Z        1
## 18418  2006-05 11:02:42Z        1
## 18419  2006-05 10:22:38Z        1
## 18420  2007-05 08:19:38Z        1
## 18421  2007-06 15:52:29Z        1
## 18422  2007-08 13:33:18Z        1
## 18423  2007-09 21:09:13Z        1
## 18424  2007-10 09:00:05Z        1
## 18425  2007-10 23:01:28Z        1
## 18426  2007-12 17:21:27Z        1
## 18427  2008-01 20:56:19Z        1
## 18428  2002-10 21:40:47Z        2
## 18429  2002-12 11:56:00Z        2
## 18430  2004-05 04:51:38Z        2
## 18431  2004-08 06:35:50Z        2
## 18432  2004-11 07:21:54Z        2
## 18433  2004-11 06:17:02Z        2
## 18434  2004-12 05:09:39Z        2
## 18435  2005-10 05:21:45Z        2
## 18436  2006-03 04:00:35Z        2
## 18437  2006-04 17:40:22Z        2
## 18438  2006-05 18:04:28Z        2
## 18439  2006-08 01:39:42Z        2
## 18440  2006-11 04:06:59Z        2
## 18441  2006-11 04:08:21Z        2
## 18442  2006-11 04:08:59Z        2
## 18443  2006-11 04:09:37Z        2
## 18444  2006-11 04:17:26Z        2
## 18445  2006-11 04:18:27Z        2
## 18446  2006-11 04:22:31Z        2
## 18447  2006-11 04:33:55Z        2
## 18448  2006-11 05:14:06Z        2
## 18449  2007-05 01:23:36Z        2
## 18450  2007-06 15:55:51Z        2
## 18451  2007-08 23:55:21Z        2
## 18452  2007-09 00:34:18Z        2
## 18453  2007-10 09:38:47Z        2
## 18454  2007-10 23:54:31Z        2
## 18455  2007-10 20:26:44Z        2
## 18456  2007-10 20:30:12Z        2
## 18457  2007-12 19:12:37Z        2
## 18458  2002-10 21:52:06Z        4
## 18459  2002-12 22:53:18Z        4
## 18460  2004-08 07:38:28Z        4
## 18461  2004-08 07:19:55Z        4
## 18462  2004-10 23:44:21Z        4
## 18463  2004-11 07:38:32Z        4
## 18464  2004-11 06:25:27Z        4
## 18465  2004-12 13:07:30Z        4
## 18466  2005-10 08:00:41Z        4
## 18467  2005-10 08:03:26Z        4
## 18468  2006-01 05:53:25Z        4
## 18469  2006-03 00:45:53Z        4
## 18470  2006-03 00:46:13Z        4
## 18471  2006-03 00:46:26Z        4
## 18472  2006-03 19:50:23Z        4
## 18473  2006-03 19:50:52Z        4
## 18474  2006-03 19:54:08Z        4
## 18475  2006-03 16:33:45Z        4
## 18476  2006-03 16:38:37Z        4
## 18477  2006-03 16:39:16Z        4
## 18478  2006-03 20:54:32Z        4
## 18479  2006-03 20:57:07Z        4
## 18480  2006-03 20:59:31Z        4
## 18481  2006-03 21:03:51Z        4
## 18482  2006-03 20:00:17Z        4
## 18483  2006-03 20:17:18Z        4
## 18484  2006-03 01:58:12Z        4
## 18485  2006-03 01:59:19Z        4
## 18486  2006-03 16:22:23Z        4
## 18487  2006-03 20:12:19Z        4
## 18488  2006-03 20:13:06Z        4
## 18489  2006-03 23:15:07Z        4
## 18490  2006-03 23:19:11Z        4
## 18491  2006-03 23:27:43Z        4
## 18492  2006-03 23:38:13Z        4
## 18493  2006-03 23:42:16Z        4
## 18494  2006-03 16:36:12Z        4
## 18495  2006-03 16:37:03Z        4
## 18496  2006-03 08:26:12Z        4
## 18497  2006-04 19:30:55Z        4
## 18498  2006-05 03:56:38Z        4
## 18499  2006-06 18:15:55Z        4
## 18500  2006-07 17:57:11Z        4
## 18501  2006-08 18:24:56Z        4
## 18502  2006-09 21:35:34Z        4
## 18503  2006-09 21:40:41Z        4
## 18504  2006-09 21:41:41Z        4
## 18505  2006-09 21:42:34Z        4
## 18506  2006-09 00:59:12Z        4
## 18507  2006-09 01:00:23Z        4
## 18508  2006-09 01:03:00Z        4
## 18509  2006-09 01:11:54Z        4
## 18510  2006-09 01:22:43Z        4
## 18511  2006-09 01:23:46Z        4
## 18512  2006-09 01:50:08Z        4
## 18513  2006-09 01:51:20Z        4
## 18514  2006-09 01:54:04Z        4
## 18515  2006-09 08:07:00Z        4
## 18516  2006-09 08:10:04Z        4
## 18517  2006-09 01:51:13Z        4
## 18518  2006-09 19:00:45Z        4
## 18519  2006-09 19:06:59Z        4
## 18520  2006-09 19:10:21Z        4
## 18521  2006-09 19:13:44Z        4
## 18522  2006-09 19:19:31Z        4
## 18523  2006-09 00:37:35Z        4
## 18524  2006-09 00:41:28Z        4
## 18525  2006-09 16:46:50Z        4
## 18526  2006-09 01:31:33Z        4
## 18527  2006-09 01:31:46Z        4
## 18528  2006-09 16:10:20Z        4
## 18529  2006-09 16:16:01Z        4
## 18530  2006-10 19:06:00Z        4
## 18531  2006-10 19:08:07Z        4
## 18532  2006-10 19:09:57Z        4
## 18533  2006-10 19:10:20Z        4
## 18534  2006-10 19:11:27Z        4
## 18535  2006-10 00:13:36Z        4
## 18536  2006-10 00:16:24Z        4
## 18537  2006-10 00:24:31Z        4
## 18538  2006-10 01:32:58Z        4
## 18539  2006-10 01:33:00Z        4
## 18540  2006-10 01:33:43Z        4
## 18541  2006-10 14:16:04Z        4
## 18542  2006-10 21:10:29Z        4
## 18543  2006-10 13:57:58Z        4
## 18544  2006-10 14:03:06Z        4
## 18545  2006-10 20:17:12Z        4
## 18546  2006-10 20:17:18Z        4
## 18547  2006-10 20:17:42Z        4
## 18548  2006-10 20:17:58Z        4
## 18549  2006-10 20:19:02Z        4
## 18550  2006-10 17:11:44Z        4
## 18551  2006-10 19:08:56Z        4
## 18552  2006-10 19:12:46Z        4
## 18553  2006-10 22:08:05Z        4
## 18554  2006-10 22:08:09Z        4
## 18555  2006-11 03:01:34Z        4
## 18556  2006-11 12:46:05Z        4
## 18557  2006-11 12:59:01Z        4
## 18558  2006-11 22:10:23Z        4
## 18559  2006-11 22:12:54Z        4
## 18560  2006-11 22:16:25Z        4
## 18561  2006-11 02:23:51Z        4
## 18562  2006-12 08:21:32Z        4
## 18563  2006-12 08:23:18Z        4
## 18564  2006-12 19:21:15Z        4
## 18565  2006-12 20:47:13Z        4
## 18566  2007-02 18:46:36Z        4
## 18567  2007-02 18:49:11Z        4
## 18568  2007-02 18:50:15Z        4
## 18569  2007-02 18:52:51Z        4
## 18570  2007-03 18:59:16Z        4
## 18571  2007-03 19:00:08Z        4
## 18572  2007-03 14:04:43Z        4
## 18573  2007-04 18:08:28Z        4
## 18574  2007-04 18:10:31Z        4
## 18575  2007-04 19:19:11Z        4
## 18576  2007-04 19:20:25Z        4
## 18577  2007-04 19:21:47Z        4
## 18578  2007-04 19:30:48Z        4
## 18579  2007-05 22:18:49Z        4
## 18580  2007-05 14:58:11Z        4
## 18581  2007-05 05:10:18Z        4
## 18582  2007-05 23:37:32Z        4
## 18583  2007-05 18:05:32Z        4
## 18584  2007-05 18:07:52Z        4
## 18585  2007-05 18:09:56Z        4
## 18586  2007-05 18:28:41Z        4
## 18587  2007-06 16:16:21Z        4
## 18588  2007-06 15:54:02Z        4
## 18589  2007-09 01:27:02Z        4
## 18590  2007-10 16:59:35Z        4
## 18591  2007-10 16:59:51Z        4
## 18592  2007-10 05:58:59Z        4
## 18593  2007-10 20:30:29Z        4
## 18594  2007-12 22:27:27Z        4
## 18595  2007-12 00:37:49Z        4
## 18596  2007-12 21:18:51Z        4
## 18597  2002-10 21:54:31Z        4
## 18598  2002-12 23:58:01Z        4
## 18599  2004-08 07:51:31Z        4
## 18600  2004-09 03:07:47Z        4
## 18601  2004-10 22:01:31Z        4
## 18602  2004-11 07:44:05Z        4
## 18603  2004-11 06:27:13Z        4
## 18604  2004-12 00:31:29Z        4
## 18605  2005-10 03:56:16Z        4
## 18606  2006-03 14:37:34Z        4
## 18607  2006-04 19:38:13Z        4
## 18608  2006-05 00:12:22Z        4
## 18609  2007-05 03:46:30Z        4
## 18610  2007-06 16:27:34Z        4
## 18611  2007-06 15:42:36Z        4
## 18612  2007-09 01:33:26Z        4
## 18613  2007-09 03:34:29Z        4
## 18614  2007-10 05:56:47Z        4
## 18615  2007-10 21:39:00Z        4
## 18616  2007-12 21:16:30Z        4
## 18617  2002-10 21:57:13Z        5
## 18618  2002-12 00:23:58Z        5
## 18619  2003-05 08:41:26Z        5
## 18620  2003-05 08:41:54Z        5
## 18621  2004-08 18:21:58Z        5
## 18622  2004-09 03:55:55Z        5
## 18623  2004-10 02:31:09Z        5
## 18624  2004-10 02:31:18Z        5
## 18625  2004-10 02:57:42Z        5
## 18626  2004-11 01:09:44Z        5
## 18627  2004-11 07:49:55Z        5
## 18628  2004-11 06:29:20Z        5
## 18629  2004-12 09:51:08Z        5
## 18630  2005-10 02:04:59Z        5
## 18631  2005-10 01:16:48Z        5
## 18632  2006-03 02:59:29Z        5
## 18633  2006-04 19:47:53Z        5
## 18634  2006-05 16:28:36Z        5
## 18635  2007-05 17:46:14Z        5
## 18636  2007-06 16:28:44Z        5
## 18637  2007-06 11:33:19Z        5
## 18638  2007-08 19:08:29Z        5
## 18639  2007-09 00:08:22Z        5
## 18640  2007-10 05:41:44Z        5
## 18641  2007-10 21:53:23Z        5
## 18642  2007-12 20:57:34Z        5
## 18643  2002-10 22:09:53Z        8
## 18644  2002-12 02:52:27Z        8
## 18645  2004-08 19:39:56Z        8
## 18646  2004-11 08:26:48Z        8
## 18647  2004-11 06:38:37Z        8
## 18648  2004-12 13:25:16Z        8
## 18649  2005-01 01:36:36Z        8
## 18650  2005-10 08:39:08Z        8
## 18651  2006-03 22:19:16Z        8
## 18652  2006-04 20:34:37Z        8
## 18653  2006-05 11:01:38Z        8
## 18654  2007-05 19:45:18Z        8
## 18655  2007-06 03:59:36Z        8
## 18656  2007-06 16:01:13Z        8
## 18657  2007-09 01:20:45Z        8
## 18658  2007-10 06:01:20Z        8
## 18659  2007-10 21:15:50Z        8
## 18660  2007-12 21:21:15Z        8
## 18661  2002-10 22:13:17Z        8
## 18662  2002-12 03:24:32Z        8
## 18663  2004-08 20:01:33Z        8
## 18664  2004-11 10:07:36Z        8
## 18665  2004-11 10:07:49Z        8
## 18666  2004-11 13:12:55Z        8
## 18667  2004-11 06:40:53Z        8
## 18668  2004-12 05:11:23Z        8
## 18669  2005-01 01:41:05Z        8
## 18670  2005-10 19:35:26Z        8
## 18671  2006-03 09:42:40Z        8
## 18672  2006-04 20:46:41Z        8
## 18673  2006-05 21:22:05Z        8
## 18674  2007-05 04:54:30Z        8
## 18675  2007-06 00:04:23Z        8
## 18676  2007-06 14:43:55Z        8
## 18677  2007-08 13:56:54Z        8
## 18678  2007-08 15:22:21Z        8
## 18679  2007-09 22:28:26Z        8
## 18680  2007-10 05:14:13Z        8
## 18681  2007-10 20:16:04Z        8
## 18682  2007-11 19:51:31Z        8
## 18683  2007-11 19:53:33Z        8
## 18684  2007-11 19:56:55Z        8
## 18685  2007-11 19:57:12Z        8
## 18686  2007-11 19:57:56Z        8
## 18687  2007-11 16:40:01Z        8
## 18688  2007-11 16:40:24Z        8
## 18689  2007-11 16:41:43Z        8
## 18690  2007-11 16:43:49Z        8
## 18691  2007-11 17:05:54Z        8
## 18692  2007-11 02:38:21Z        8
## 18693  2007-12 20:28:30Z        8
## 18694  2002-02 15:51:15Z        9
## 18695  2003-09 03:05:08Z        9
## 18696  2004-07 09:28:39Z        9
## 18697  2004-09 09:24:02Z        9
## 18698  2004-09 17:11:44Z        9
## 18699  2004-09 18:54:32Z        9
## 18700  2004-10 19:06:33Z        9
## 18701  2004-11 22:19:17Z        9
## 18702  2006-05 20:38:48Z        9
## 18703  2007-09 12:33:45Z        9
## 18704  2007-10 00:15:45Z        9
## 18705  2007-10 00:17:53Z        9
## 18706  2007-11 16:28:29Z        9
## 18707  2002-10 22:21:15Z        0
## 18708  2002-12 04:59:32Z        0
## 18709  2003-06 23:02:30Z        0
## 18710  2004-08 20:46:29Z        0
## 18711  2004-09 18:51:13Z        0
## 18712  2004-11 14:07:44Z        0
## 18713  2004-11 14:07:59Z        0
## 18714  2004-11 13:36:16Z        0
## 18715  2004-11 05:06:32Z        0
## 18716  2004-12 10:58:16Z        0
## 18717  2005-06 15:03:12Z        0
## 18718  2005-06 15:14:53Z        0
## 18719  2006-03 13:00:28Z        0
## 18720  2006-04 21:14:50Z        0
## 18721  2006-04 02:48:59Z        0
## 18722  2006-05 01:55:45Z        0
## 18723  2006-07 02:59:38Z        0
## 18724  2006-07 05:37:11Z        0
## 18725  2006-10 04:04:41Z        0
## 18726  2006-12 14:35:22Z        0
## 18727  2007-01 07:39:26Z        0
## 18728  2007-06 22:59:16Z        0
## 18729  2007-09 13:20:52Z        0
## 18730  2007-09 06:39:12Z        0
## 18731  2007-10 23:23:09Z        0
## 18732  2007-10 21:24:25Z        0
## 18733  2007-12 22:20:20Z        0
## 18734  2007-12 13:04:15Z        0
## 18735  2008-01 08:30:25Z        0
## 18736  2008-01 01:30:20Z        0
## 18737  2002-10 22:25:15Z        1
## 18738  2002-12 05:40:49Z        1
## 18739  2004-08 21:03:09Z        1
## 18740  2004-09 15:09:30Z        1
## 18741  2004-11 17:45:22Z        1
## 18742  2004-11 17:45:35Z        1
## 18743  2004-11 14:02:00Z        1
## 18744  2004-12 04:05:30Z        1
## 18745  2005-10 09:35:32Z        1
## 18746  2006-03 09:29:08Z        1
## 18747  2006-04 21:28:40Z        1
## 18748  2006-05 23:01:06Z        1
## 18749  2007-03 23:05:24Z        1
## 18750  2007-03 10:15:28Z        1
## 18751  2007-05 02:20:03Z        1
## 18752  2007-06 16:15:20Z        1
## 18753  2007-09 06:10:12Z        1
## 18754  2007-09 14:45:05Z        1
## 18755  2007-10 23:30:07Z        1
## 18756  2007-10 22:05:18Z        1
## 18757  2007-11 00:34:46Z        1
## 18758  2007-12 22:35:51Z        1
## 18759  2007-12 21:55:45Z        1
## 18760  2007-12 21:56:11Z        1
## 18761  2002-10 22:44:15Z        4
## 18762  2002-12 08:48:55Z        4
## 18763  2004-08 22:09:27Z        4
## 18764  2004-08 23:27:51Z        4
## 18765  2004-11 14:35:24Z        4
## 18766  2004-11 04:27:49Z        4
## 18767  2004-11 05:09:06Z        4
## 18768  2004-12 20:13:12Z        4
## 18769  2006-03 05:50:53Z        4
## 18770  2006-04 22:34:14Z        4
## 18771  2006-05 19:12:21Z        4
## 18772  2007-05 21:17:35Z        4
## 18773  2007-05 21:39:42Z        4
## 18774  2007-05 10:17:10Z        4
## 18775  2007-05 20:32:12Z        4
## 18776  2007-06 12:44:35Z        4
## 18777  2007-09 05:19:53Z        4
## 18778  2007-10 01:57:02Z        4
## 18779  2007-12 00:38:47Z        4
## 18780  2007-12 20:11:36Z        4
## 18781  2002-10 22:49:55Z        5
## 18782  2002-12 09:40:46Z        5
## 18783  2004-08 22:30:38Z        5
## 18784  2004-09 19:35:35Z        5
## 18785  2004-10 23:23:59Z        5
## 18786  2004-11 08:48:01Z        5
## 18787  2004-11 14:48:51Z        5
## 18788  2004-12 20:33:36Z        5
## 18789  2004-12 20:34:42Z        5
## 18790  2004-12 20:34:49Z        5
## 18791  2004-12 17:57:55Z        5
## 18792  2006-03 01:30:41Z        5
## 18793  2006-03 03:29:48Z        5
## 18794  2006-03 11:10:50Z        5
## 18795  2006-04 08:45:45Z        5
## 18796  2006-05 22:18:48Z        5
## 18797  2006-07 02:49:44Z        5
## 18798  2006-10 17:08:35Z        5
## 18799  2007-03 16:44:42Z        5
## 18800  2007-03 16:45:36Z        5
## 18801  2007-05 04:50:44Z        5
## 18802  2007-05 15:58:45Z        5
## 18803  2007-05 10:18:39Z        5
## 18804  2007-05 19:14:29Z        5
## 18805  2007-05 20:38:59Z        5
## 18806  2007-06 12:51:34Z        5
## 18807  2007-06 02:05:26Z        5
## 18808  2007-06 02:06:19Z        5
## 18809  2007-08 10:17:38Z        5
## 18810  2007-09 16:23:09Z        5
## 18811  2007-09 11:46:51Z        5
## 18812  2007-10 07:36:32Z        5
## 18813  2007-10 21:52:29Z        5
## 18814  2007-12 01:14:06Z        5
## 18815  2002-10 22:50:36Z        6
## 18816  2002-12 09:46:29Z        6
## 18817  2004-08 22:33:00Z        6
## 18818  2004-09 00:04:29Z        6
## 18819  2004-11 07:21:58Z        6
## 18820  2004-11 07:22:11Z        6
## 18821  2004-11 14:50:11Z        6
## 18822  2004-12 23:45:24Z        6
## 18823  2006-03 02:03:13Z        6
## 18824  2006-04 08:47:54Z        6
## 18825  2006-05 15:52:26Z        6
## 18826  2007-03 11:19:31Z        6
## 18827  2007-05 00:18:59Z        6
## 18828  2007-05 00:25:47Z        6
## 18829  2007-05 11:09:19Z        6
## 18830  2007-05 20:39:54Z        6
## 18831  2007-06 12:53:35Z        6
## 18832  2007-09 16:10:44Z        6
## 18833  2007-09 07:53:30Z        6
## 18834  2007-10 20:50:53Z        6
## 18835  2002-10 22:57:59Z        7
## 18836  2002-12 10:44:26Z        7
## 18837  2004-06 00:36:25Z        7
## 18838  2004-08 22:52:32Z        7
## 18839  2004-08 19:26:19Z        7
## 18840  2004-09 23:35:10Z        7
## 18841  2004-10 00:00:35Z        7
## 18842  2004-11 15:02:56Z        7
## 18843  2004-11 05:12:31Z        7
## 18844  2004-12 04:46:07Z        7
## 18845  2005-05 00:40:47Z        7
## 18846  2005-05 16:40:13Z        7
## 18847  2005-09 22:44:05Z        7
## 18848  2005-09 22:47:53Z        7
## 18849  2005-11 09:03:19Z        7
## 18850  2005-12 00:51:46Z        7
## 18851  2006-01 05:16:56Z        7
## 18852  2006-03 09:40:14Z        7
## 18853  2006-03 03:18:28Z        7
## 18854  2006-04 09:06:15Z        7
## 18855  2006-04 12:39:22Z        7
## 18856  2006-04 01:49:13Z        7
## 18857  2006-04 06:55:49Z        7
## 18858  2006-05 06:08:26Z        7
## 18859  2006-05 22:03:29Z        7
## 18860  2006-07 02:28:24Z        7
## 18861  2007-01 23:02:44Z        7
## 18862  2007-03 18:32:56Z        7
## 18863  2007-03 18:47:52Z        7
## 18864  2007-04 05:47:14Z        7
## 18865  2007-05 20:49:58Z        7
## 18866  2007-06 13:03:30Z        7
## 18867  2007-06 04:31:49Z        7
## 18868  2007-07 04:30:18Z        7
## 18869  2007-08 03:21:50Z        7
## 18870  2007-09 10:21:42Z        7
## 18871  2007-09 05:02:30Z        7
## 18872  2007-10 12:11:50Z        7
## 18873  2007-11 02:20:23Z        7
## 18874  2007-12 00:39:20Z        7
## 18875  2002-10 23:00:57Z        7
## 18876  2002-12 11:06:52Z        7
## 18877  2004-08 22:59:04Z        7
## 18878  2004-08 04:35:32Z        7
## 18879  2004-10 23:50:33Z        7
## 18880  2004-11 15:06:38Z        7
## 18881  2004-12 09:15:23Z        7
## 18882  2006-03 19:02:14Z        7
## 18883  2006-04 09:13:40Z        7
## 18884  2006-05 21:56:24Z        7
## 18885  2006-05 04:12:44Z        7
## 18886  2006-06 18:11:59Z        7
## 18887  2006-07 19:04:48Z        7
## 18888  2006-07 04:30:40Z        7
## 18889  2006-07 04:34:09Z        7
## 18890  2006-08 01:33:39Z        7
## 18891  2006-08 00:16:59Z        7
## 18892  2006-09 22:53:27Z        7
## 18893  2006-11 19:18:40Z        7
## 18894  2006-11 20:23:04Z        7
## 18895  2007-01 23:38:18Z        7
## 18896  2007-02 00:57:22Z        7
## 18897  2007-02 00:58:16Z        7
## 18898  2007-02 01:08:06Z        7
## 18899  2007-02 01:10:12Z        7
## 18900  2007-02 00:28:16Z        7
## 18901  2007-02 00:30:28Z        7
## 18902  2007-02 00:32:59Z        7
## 18903  2007-02 19:18:19Z        7
## 18904  2007-04 05:45:49Z        7
## 18905  2007-05 23:36:53Z        7
## 18906  2007-05 23:41:04Z        7
## 18907  2007-05 23:51:51Z        7
## 18908  2007-05 23:53:04Z        7
## 18909  2007-05 18:38:27Z        7
## 18910  2007-05 21:37:40Z        7
## 18911  2007-05 20:54:09Z        7
## 18912  2007-06 13:09:03Z        7
## 18913  2007-06 21:29:14Z        7
## 18914  2007-06 16:14:15Z        7
## 18915  2007-06 15:06:30Z        7
## 18916  2007-06 18:42:27Z        7
## 18917  2007-06 18:43:51Z        7
## 18918  2007-06 18:50:15Z        7
## 18919  2007-06 19:06:56Z        7
## 18920  2007-07 19:08:14Z        7
## 18921  2007-07 06:24:18Z        7
## 18922  2007-07 12:18:48Z        7
## 18923  2007-07 12:19:13Z        7
## 18924  2007-07 12:20:31Z        7
## 18925  2007-07 12:20:54Z        7
## 18926  2007-07 00:52:07Z        7
## 18927  2007-08 20:42:25Z        7
## 18928  2007-09 16:41:05Z        7
## 18929  2007-09 03:23:31Z        7
## 18930  2007-09 03:23:59Z        7
## 18931  2007-09 03:24:24Z        7
## 18932  2007-09 03:24:48Z        7
## 18933  2007-09 03:25:14Z        7
## 18934  2007-09 03:27:08Z        7
## 18935  2007-10 22:16:01Z        7
## 18936  2007-10 05:48:55Z        7
## 18937  2007-11 18:48:38Z        7
## 18938  2007-11 18:52:53Z        7
## 18939  2007-11 19:15:24Z        7
## 18940  2007-11 21:32:41Z        7
## 18941  2007-11 21:33:09Z        7
## 18942  2007-11 21:33:31Z        7
## 18943  2007-11 21:38:36Z        7
## 18944  2007-11 20:19:43Z        7
## 18945  2007-12 00:58:43Z        7
## 18946  2007-12 14:21:38Z        7
## 18947  2007-12 22:57:59Z        7
## 18948  2002-10 23:07:55Z        9
## 18949  2002-12 01:36:52Z        9
## 18950  2004-08 23:20:46Z        9
## 18951  2004-11 15:18:01Z        9
## 18952  2004-11 06:50:23Z        9
## 18953  2006-03 17:51:47Z        9
## 18954  2006-03 02:52:35Z        9
## 18955  2006-04 21:05:55Z        9
## 18956  2006-05 12:46:02Z        9
## 18957  2006-09 01:10:50Z        9
## 18958  2007-02 22:48:01Z        9
## 18959  2007-02 22:59:15Z        9
## 18960  2007-11 10:56:15Z        9
## 18961  2007-12 03:12:01Z        9
## 18962  2002-10 23:08:10Z        9
## 18963  2002-12 01:37:17Z        9
## 18964  2004-08 23:21:50Z        9
## 18965  2004-11 15:18:30Z        9
## 18966  2006-03 09:37:00Z        9
## 18967  2006-04 09:29:55Z        9
## 18968  2006-05 10:50:08Z        9
## 18969  2007-02 22:32:16Z        9
## 18970  2007-06 23:46:59Z        9
## 18971  2007-10 01:00:51Z        9
## 18972  2007-11 18:59:06Z        9
## 18973  2007-12 02:52:13Z        9
## 18974  2002-10 23:10:07Z        9
## 18975  2002-12 01:39:29Z        9
## 18976  2004-08 23:28:56Z        9
## 18977  2004-11 01:36:53Z        9
## 18978  2004-11 15:22:41Z        9
## 18979  2006-03 17:10:09Z        9
## 18980  2006-05 08:50:53Z        9
## 18981  2006-10 22:57:58Z        9
## 18982  2007-02 00:15:01Z        9
## 18983  2007-04 17:56:02Z        9
## 18984  2007-04 17:56:35Z        9
## 18985  2007-04 17:57:48Z        9
## 18986  2007-04 17:58:04Z        9
## 18987  2007-07 15:47:19Z        9
## 18988  2007-10 00:45:53Z        9
## 18989  2007-10 00:46:01Z        9
## 18990  2007-10 01:06:20Z        9
## 18991  2007-10 15:51:44Z        9
## 18992  2007-10 16:08:06Z        9
## 18993  2007-11 10:14:37Z        9
## 18994  2007-11 01:24:24Z        9
## 18995  2007-11 13:50:12Z        9
## 18996  2007-12 02:55:36Z        9
## 18997  2002-10 23:14:59Z        0
## 18998  2002-12 01:45:26Z        0
## 18999  2004-08 23:46:00Z        0
## 19000  2004-10 01:57:06Z        0
## 19001  2004-11 15:31:15Z        0
## 19002  2004-11 23:26:56Z        0
## 19003  2005-06 23:33:22Z        0
## 19004  2005-12 23:25:06Z        0
## 19005  2006-03 11:29:33Z        0
## 19006  2006-05 02:37:51Z        0
## 19007  2006-06 20:31:05Z        0
## 19008  2006-07 03:00:20Z        0
## 19009  2006-07 03:04:12Z        0
## 19010  2006-07 03:06:27Z        0
## 19011  2006-08 00:58:03Z        0
## 19012  2006-08 00:58:18Z        0
## 19013  2006-08 23:54:57Z        0
## 19014  2006-08 23:57:16Z        0
## 19015  2006-08 23:58:01Z        0
## 19016  2006-08 23:58:22Z        0
## 19017  2006-08 00:15:57Z        0
## 19018  2006-08 14:24:26Z        0
## 19019  2006-08 00:36:03Z        0
## 19020  2006-08 00:36:37Z        0
## 19021  2006-08 19:16:59Z        0
## 19022  2006-08 19:58:54Z        0
## 19023  2006-11 01:31:05Z        0
## 19024  2006-12 01:55:38Z        0
## 19025  2006-12 07:13:02Z        0
## 19026  2006-12 23:45:50Z        0
## 19027  2006-12 00:05:06Z        0
## 19028  2007-01 16:36:02Z        0
## 19029  2007-02 04:31:39Z        0
## 19030  2007-02 00:55:09Z        0
## 19031  2007-02 20:26:21Z        0
## 19032  2007-05 17:08:53Z        0
## 19033  2007-05 22:06:36Z        0
## 19034  2007-05 22:08:59Z        0
## 19035  2007-05 22:09:42Z        0
## 19036  2007-05 22:52:41Z        0
## 19037  2007-05 22:53:56Z        0
## 19038  2007-06 19:22:53Z        0
## 19039  2007-07 14:52:12Z        0
## 19040  2007-07 12:32:00Z        0
## 19041  2007-08 00:58:38Z        0
## 19042  2007-08 02:18:31Z        0
## 19043  2007-10 01:07:12Z        0
## 19044  2007-12 02:56:09Z        0
## 19045  2002-10 23:20:47Z        1
## 19046  2002-12 01:53:37Z        1
## 19047  2004-02 17:23:02Z        1
## 19048  2004-08 00:13:49Z        1
## 19049  2004-11 15:42:43Z        1
## 19050  2005-05 00:25:50Z        1
## 19051  2006-03 18:39:00Z        1
## 19052  2006-05 00:05:25Z        1
## 19053  2006-05 02:26:52Z        1
## 19054  2007-02 01:51:23Z        1
## 19055  2007-03 16:25:32Z        1
## 19056  2007-06 18:16:02Z        1
## 19057  2007-06 18:16:31Z        1
## 19058  2007-06 18:18:48Z        1
## 19059  2007-06 18:19:34Z        1
## 19060  2007-07 19:37:00Z        1
## 19061  2007-10 01:10:12Z        1
## 19062  2007-10 15:50:02Z        1
## 19063  2007-10 15:50:10Z        1
## 19064  2007-10 15:51:34Z        1
## 19065  2007-10 16:13:15Z        1
## 19066  2007-10 02:39:21Z        1
## 19067  2007-12 19:00:16Z        1
## 19068  2007-12 02:57:31Z        1
## 19069  2007-12 01:16:33Z        1
## 19070  2002-10 23:22:31Z        1
## 19071  2002-12 01:55:56Z        1
## 19072  2004-08 00:32:39Z        1
## 19073  2004-10 03:18:28Z        1
## 19074  2004-11 15:47:08Z        1
## 19075  2004-11 06:56:37Z        1
## 19076  2006-03 12:37:14Z        1
## 19077  2006-03 01:49:05Z        1
## 19078  2006-04 18:48:20Z        1
## 19079  2006-05 14:34:16Z        1
## 19080  2006-09 01:10:27Z        1
## 19081  2006-12 15:09:18Z        1
## 19082  2006-12 20:54:59Z        1
## 19083  2006-12 02:33:38Z        1
## 19084  2007-02 02:24:10Z        1
## 19085  2007-02 09:42:42Z        1
## 19086  2007-10 01:14:53Z        1
## 19087  2007-12 03:12:40Z        1
## 19088  2002-10 23:22:39Z        1
## 19089  2002-12 01:56:22Z        1
## 19090  2004-08 00:33:56Z        1
## 19091  2004-11 02:57:59Z        1
## 19092  2004-11 02:58:12Z        1
## 19093  2004-11 15:47:25Z        1
## 19094  2006-03 00:10:49Z        1
## 19095  2006-05 14:25:18Z        1
## 19096  2006-11 00:26:19Z        1
## 19097  2006-11 01:38:59Z        1
## 19098  2006-12 10:16:24Z        1
## 19099  2007-03 02:21:43Z        1
## 19100  2007-05 15:42:13Z        1
## 19101  2007-06 03:55:52Z        1
## 19102  2007-10 00:14:15Z        1
## 19103  2007-12 02:24:39Z        1
## 19104  2002-10 23:25:49Z        2
## 19105  2002-12 01:59:29Z        2
## 19106  2004-08 01:12:56Z        2
## 19107  2004-11 15:52:50Z        2
## 19108  2006-03 08:02:07Z        2
## 19109  2006-05 21:50:13Z        2
## 19110  2007-02 01:02:58Z        2
## 19111  2007-07 15:19:36Z        2
## 19112  2007-10 01:07:22Z        2
## 19113  2007-12 02:56:19Z        2
## 19114  2002-10 23:29:16Z        3
## 19115  2002-12 12:19:22Z        3
## 19116  2004-05 14:24:17Z        3
## 19117  2004-08 01:51:15Z        3
## 19118  2004-09 19:58:00Z        3
## 19119  2004-11 10:03:37Z        3
## 19120  2004-11 15:59:06Z        3
## 19121  2004-11 05:17:28Z        3
## 19122  2004-12 19:46:33Z        3
## 19123  2004-12 14:47:43Z        3
## 19124  2005-07 20:16:41Z        3
## 19125  2005-07 12:59:18Z        3
## 19126  2006-03 03:19:46Z        3
## 19127  2006-04 09:48:52Z        3
## 19128  2006-05 18:00:14Z        3
## 19129  2007-02 23:16:21Z        3
## 19130  2007-03 16:47:34Z        3
## 19131  2007-04 04:49:50Z        3
## 19132  2007-04 13:35:20Z        3
## 19133  2007-06 15:14:44Z        3
## 19134  2007-07 18:07:15Z        3
## 19135  2007-07 18:13:46Z        3
## 19136  2007-07 18:15:00Z        3
## 19137  2007-08 06:49:18Z        3
## 19138  2007-08 09:27:35Z        3
## 19139  2007-09 18:09:26Z        3
## 19140  2007-09 13:35:15Z        3
## 19141  2007-10 02:03:32Z        3
## 19142  2007-10 00:25:30Z        3
## 19143  2007-10 13:45:44Z        3
## 19144  2007-10 17:07:55Z        3
## 19145  2007-10 18:52:47Z        3
## 19146  2007-12 15:53:36Z        3
## 19147  2007-12 04:08:34Z        3
## 19148  2002-10 23:30:27Z        3
## 19149  2002-12 12:31:23Z        3
## 19150  2004-05 17:27:04Z        3
## 19151  2004-08 01:55:10Z        3
## 19152  2004-11 09:48:29Z        3
## 19153  2004-11 16:01:41Z        3
## 19154  2004-11 05:19:10Z        3
## 19155  2004-12 05:20:26Z        3
## 19156  2005-07 02:28:30Z        3
## 19157  2005-12 02:01:34Z        3
## 19158  2006-01 14:49:06Z        3
## 19159  2006-01 15:30:16Z        3
## 19160  2006-03 16:34:22Z        3
## 19161  2006-04 09:53:20Z        3
## 19162  2006-05 08:11:58Z        3
## 19163  2007-05 13:29:49Z        3
## 19164  2007-05 13:30:12Z        3
## 19165  2007-06 09:39:41Z        3
## 19166  2007-08 07:27:29Z        3
## 19167  2007-08 10:45:35Z        3
## 19168  2007-09 18:16:27Z        3
## 19169  2007-10 02:00:13Z        3
## 19170  2007-10 00:16:39Z        3
## 19171  2007-10 17:12:05Z        3
## 19172  2007-10 02:48:42Z        3
## 19173  2007-12 04:06:39Z        3
## 19174  2002-10 23:30:41Z        3
## 19175  2002-12 12:36:42Z        3
## 19176  2004-05 17:30:22Z        3
## 19177  2004-08 01:56:13Z        3
## 19178  2004-10 02:20:02Z        3
## 19179  2004-11 15:11:42Z        3
## 19180  2004-11 16:02:16Z        3
## 19181  2004-11 05:19:25Z        3
## 19182  2004-12 04:36:01Z        3
## 19183  2005-07 02:35:16Z        3
## 19184  2006-03 11:19:31Z        3
## 19185  2006-04 09:54:10Z        3
## 19186  2006-05 12:15:05Z        3
## 19187  2006-09 23:05:21Z        3
## 19188  2007-03 10:16:09Z        3
## 19189  2007-06 15:14:50Z        3
## 19190  2007-08 07:31:27Z        3
## 19191  2007-08 10:47:48Z        3
## 19192  2007-08 02:55:16Z        3
## 19193  2007-09 18:08:26Z        3
## 19194  2007-10 02:03:53Z        3
## 19195  2007-10 00:24:10Z        3
## 19196  2007-10 17:12:29Z        3
## 19197  2007-10 02:58:19Z        3
## 19198  2007-12 04:08:59Z        3
## 19199  2007-12 23:13:51Z        3
## 19200  2002-10 23:34:12Z        4
## 19201  2002-12 13:33:54Z        4
## 19202  2004-04 16:42:35Z        4
## 19203  2004-05 18:39:12Z        4
## 19204  2004-06 03:31:56Z        4
## 19205  2004-08 02:06:03Z        4
## 19206  2004-11 09:13:03Z        4
## 19207  2004-11 09:13:16Z        4
## 19208  2004-11 19:36:22Z        4
## 19209  2004-11 16:10:33Z        4
## 19210  2004-11 05:21:27Z        4
## 19211  2004-12 17:48:34Z        4
## 19212  2005-12 02:22:19Z        4
## 19213  2006-01 17:02:04Z        4
## 19214  2006-03 20:02:21Z        4
## 19215  2006-04 10:06:36Z        4
## 19216  2006-05 10:54:58Z        4
## 19217  2006-07 06:24:35Z        4
## 19218  2006-07 06:25:38Z        4
## 19219  2006-11 04:11:38Z        4
## 19220  2006-11 04:12:48Z        4
## 19221  2006-11 04:13:36Z        4
## 19222  2006-11 04:36:42Z        4
## 19223  2007-01 02:06:04Z        4
## 19224  2007-01 02:07:58Z        4
## 19225  2007-01 02:13:43Z        4
## 19226  2007-03 01:19:30Z        4
## 19227  2007-03 01:59:39Z        4
## 19228  2007-04 04:38:15Z        4
## 19229  2007-04 04:46:20Z        4
## 19230  2007-04 05:03:09Z        4
## 19231  2007-04 05:07:08Z        4
## 19232  2007-04 05:10:04Z        4
## 19233  2007-04 01:34:47Z        4
## 19234  2007-04 01:54:53Z        4
## 19235  2007-04 01:58:46Z        4
## 19236  2007-04 02:00:35Z        4
## 19237  2007-04 02:04:29Z        4
## 19238  2007-04 02:06:38Z        4
## 19239  2007-04 02:08:29Z        4
## 19240  2007-04 02:11:28Z        4
## 19241  2007-04 02:14:00Z        4
## 19242  2007-04 02:15:41Z        4
## 19243  2007-04 02:16:13Z        4
## 19244  2007-04 02:20:04Z        4
## 19245  2007-04 02:20:28Z        4
## 19246  2007-04 02:23:53Z        4
## 19247  2007-04 02:26:03Z        4
## 19248  2007-04 02:26:53Z        4
## 19249  2007-04 02:28:18Z        4
## 19250  2007-04 02:35:25Z        4
## 19251  2007-04 02:36:53Z        4
## 19252  2007-04 02:39:17Z        4
## 19253  2007-04 02:47:52Z        4
## 19254  2007-04 02:49:14Z        4
## 19255  2007-04 02:49:44Z        4
## 19256  2007-04 02:50:10Z        4
## 19257  2007-04 02:51:59Z        4
## 19258  2007-04 02:53:38Z        4
## 19259  2007-04 02:55:06Z        4
## 19260  2007-04 02:57:08Z        4
## 19261  2007-04 02:59:30Z        4
## 19262  2007-04 03:00:32Z        4
## 19263  2007-04 03:06:13Z        4
## 19264  2007-04 03:09:10Z        4
## 19265  2007-04 03:10:33Z        4
## 19266  2007-04 03:11:03Z        4
## 19267  2007-04 03:11:48Z        4
## 19268  2007-04 03:15:17Z        4
## 19269  2007-04 03:20:04Z        4
## 19270  2007-04 03:23:29Z        4
## 19271  2007-04 03:24:56Z        4
## 19272  2007-04 03:28:57Z        4
## 19273  2007-04 03:56:05Z        4
## 19274  2007-04 04:08:43Z        4
## 19275  2007-04 04:11:28Z        4
## 19276  2007-04 04:25:00Z        4
## 19277  2007-04 04:30:16Z        4
## 19278  2007-04 04:50:14Z        4
## 19279  2007-04 04:54:10Z        4
## 19280  2007-04 04:55:10Z        4
## 19281  2007-04 05:38:27Z        4
## 19282  2007-04 05:39:16Z        4
## 19283  2007-04 13:30:11Z        4
## 19284  2007-04 20:03:07Z        4
## 19285  2007-04 01:04:50Z        4
## 19286  2007-04 02:01:29Z        4
## 19287  2007-04 02:05:11Z        4
## 19288  2007-04 02:06:44Z        4
## 19289  2007-04 02:09:08Z        4
## 19290  2007-04 02:10:46Z        4
## 19291  2007-04 02:14:36Z        4
## 19292  2007-04 02:15:38Z        4
## 19293  2007-04 02:16:23Z        4
## 19294  2007-04 02:17:08Z        4
## 19295  2007-04 02:17:48Z        4
## 19296  2007-04 02:22:26Z        4
## 19297  2007-04 02:23:47Z        4
## 19298  2007-04 02:24:44Z        4
## 19299  2007-04 02:26:10Z        4
## 19300  2007-04 02:26:45Z        4
## 19301  2007-04 02:27:18Z        4
## 19302  2007-04 02:27:47Z        4
## 19303  2007-04 02:28:13Z        4
## 19304  2007-04 03:25:32Z        4
## 19305  2007-04 03:25:56Z        4
## 19306  2007-04 03:29:16Z        4
## 19307  2007-04 03:30:05Z        4
## 19308  2007-04 03:35:11Z        4
## 19309  2007-04 03:50:45Z        4
## 19310  2007-04 15:49:10Z        4
## 19311  2007-05 06:31:06Z        4
## 19312  2007-05 06:31:33Z        4
## 19313  2007-05 12:34:00Z        4
## 19314  2007-05 12:35:49Z        4
## 19315  2007-05 21:04:03Z        4
## 19316  2007-05 01:33:27Z        4
## 19317  2007-05 01:35:38Z        4
## 19318  2007-05 01:58:52Z        4
## 19319  2007-05 23:04:47Z        4
## 19320  2007-05 23:14:41Z        4
## 19321  2007-05 23:28:15Z        4
## 19322  2007-05 23:45:14Z        4
## 19323  2007-05 23:45:42Z        4
## 19324  2007-05 23:48:44Z        4
## 19325  2007-05 23:49:26Z        4
## 19326  2007-05 23:55:03Z        4
## 19327  2007-05 23:57:00Z        4
## 19328  2007-05 00:03:59Z        4
## 19329  2007-05 00:37:13Z        4
## 19330  2007-05 00:39:47Z        4
## 19331  2007-05 05:06:10Z        4
## 19332  2007-05 16:45:55Z        4
## 19333  2007-05 03:22:53Z        4
## 19334  2007-05 03:33:00Z        4
## 19335  2007-05 03:42:33Z        4
## 19336  2007-05 03:47:51Z        4
## 19337  2007-05 03:49:24Z        4
## 19338  2007-05 23:52:47Z        4
## 19339  2007-05 01:16:16Z        4
## 19340  2007-05 01:47:26Z        4
## 19341  2007-05 01:48:45Z        4
## 19342  2007-05 02:10:37Z        4
## 19343  2007-06 22:43:52Z        4
## 19344  2007-06 05:40:43Z        4
## 19345  2007-08 17:38:28Z        4
## 19346  2007-09 17:17:07Z        4
## 19347  2007-09 21:47:00Z        4
## 19348  2007-10 01:40:08Z        4
## 19349  2007-10 23:19:04Z        4
## 19350  2007-10 17:22:05Z        4
## 19351  2007-11 20:30:33Z        4
## 19352  2007-12 03:55:57Z        4
## 19353  2002-10 23:35:52Z        4
## 19354  2002-12 13:47:09Z        4
## 19355  2003-05 19:47:54Z        4
## 19356  2003-12 06:53:40Z        4
## 19357  2004-05 17:20:44Z        4
## 19358  2004-08 02:09:22Z        4
## 19359  2004-09 00:51:09Z        4
## 19360  2004-11 03:14:59Z        4
## 19361  2004-11 16:13:50Z        4
## 19362  2004-12 09:43:39Z        4
## 19363  2005-04 18:27:56Z        4
## 19364  2005-05 08:24:42Z        4
## 19365  2005-05 12:54:05Z        4
## 19366  2005-06 12:40:29Z        4
## 19367  2005-06 17:36:20Z        4
## 19368  2005-06 03:46:31Z        4
## 19369  2005-06 20:22:02Z        4
## 19370  2005-06 13:49:16Z        4
## 19371  2005-07 03:57:47Z        4
## 19372  2005-08 19:48:02Z        4
## 19373  2005-09 20:34:16Z        4
## 19374  2005-10 22:18:35Z        4
## 19375  2005-10 05:45:48Z        4
## 19376  2005-10 05:46:15Z        4
## 19377  2005-10 23:13:20Z        4
## 19378  2005-12 22:18:00Z        4
## 19379  2006-02 07:20:42Z        4
## 19380  2006-02 07:26:31Z        4
## 19381  2006-03 16:49:46Z        4
## 19382  2006-04 10:11:53Z        4
## 19383  2006-04 17:45:14Z        4
## 19384  2006-04 17:46:41Z        4
## 19385  2006-04 17:50:31Z        4
## 19386  2006-04 15:33:27Z        4
## 19387  2006-04 22:54:18Z        4
## 19388  2006-05 02:37:29Z        4
## 19389  2006-05 17:41:33Z        4
## 19390  2006-06 04:23:22Z        4
## 19391  2006-06 11:33:53Z        4
## 19392  2006-06 03:07:44Z        4
## 19393  2006-06 05:55:20Z        4
## 19394  2006-06 12:09:30Z        4
## 19395  2006-06 14:45:32Z        4
## 19396  2006-06 23:17:33Z        4
## 19397  2006-07 12:39:08Z        4
## 19398  2006-07 06:39:34Z        4
## 19399  2006-07 01:15:47Z        4
## 19400  2006-08 00:50:25Z        4
## 19401  2006-08 00:50:52Z        4
## 19402  2006-08 15:14:28Z        4
## 19403  2006-09 09:07:03Z        4
## 19404  2006-09 22:02:34Z        4
## 19405  2006-09 13:05:46Z        4
## 19406  2006-10 00:59:04Z        4
## 19407  2006-10 01:02:29Z        4
## 19408  2006-11 03:19:00Z        4
## 19409  2006-11 03:40:37Z        4
## 19410  2006-11 01:07:35Z        4
## 19411  2006-11 02:17:19Z        4
## 19412  2006-11 21:25:02Z        4
## 19413  2006-11 21:28:51Z        4
## 19414  2006-11 21:38:18Z        4
## 19415  2006-11 21:40:28Z        4
## 19416  2006-11 21:44:41Z        4
## 19417  2006-11 21:45:38Z        4
## 19418  2006-12 16:38:38Z        4
## 19419  2006-12 16:40:21Z        4
## 19420  2006-12 16:42:18Z        4
## 19421  2006-12 16:43:28Z        4
## 19422  2006-12 16:45:36Z        4
## 19423  2006-12 16:47:11Z        4
## 19424  2006-12 16:55:01Z        4
## 19425  2006-12 16:55:44Z        4
## 19426  2006-12 17:04:24Z        4
## 19427  2006-12 17:07:27Z        4
## 19428  2006-12 17:09:06Z        4
## 19429  2006-12 17:09:48Z        4
## 19430  2006-12 17:14:40Z        4
## 19431  2006-12 17:25:14Z        4
## 19432  2006-12 19:17:35Z        4
## 19433  2006-12 19:18:24Z        4
## 19434  2006-12 20:12:05Z        4
## 19435  2006-12 20:14:02Z        4
## 19436  2006-12 22:47:53Z        4
## 19437  2006-12 22:50:19Z        4
## 19438  2006-12 22:55:40Z        4
## 19439  2006-12 22:59:07Z        4
## 19440  2006-12 23:12:51Z        4
## 19441  2006-12 23:16:43Z        4
## 19442  2006-12 23:18:14Z        4
## 19443  2006-12 23:45:46Z        4
## 19444  2006-12 23:47:22Z        4
## 19445  2006-12 00:01:58Z        4
## 19446  2006-12 00:04:09Z        4
## 19447  2006-12 00:08:50Z        4
## 19448  2006-12 00:10:38Z        4
## 19449  2006-12 00:14:31Z        4
## 19450  2006-12 00:19:11Z        4
## 19451  2006-12 08:22:50Z        4
## 19452  2006-12 11:37:11Z        4
## 19453  2006-12 14:24:10Z        4
## 19454  2006-12 14:25:45Z        4
## 19455  2006-12 14:38:58Z        4
## 19456  2006-12 15:35:31Z        4
## 19457  2006-12 15:38:56Z        4
## 19458  2006-12 15:52:06Z        4
## 19459  2006-12 16:03:34Z        4
## 19460  2006-12 20:00:57Z        4
## 19461  2006-12 20:03:21Z        4
## 19462  2006-12 20:06:52Z        4
## 19463  2006-12 20:12:10Z        4
## 19464  2006-12 20:35:32Z        4
## 19465  2006-12 21:26:33Z        4
## 19466  2006-12 21:38:04Z        4
## 19467  2006-12 21:44:40Z        4
## 19468  2006-12 21:46:18Z        4
## 19469  2006-12 21:46:59Z        4
## 19470  2006-12 21:47:40Z        4
## 19471  2006-12 21:49:27Z        4
## 19472  2006-12 21:51:54Z        4
## 19473  2006-12 22:02:07Z        4
## 19474  2006-12 22:07:11Z        4
## 19475  2006-12 22:25:59Z        4
## 19476  2006-12 22:26:30Z        4
## 19477  2006-12 22:27:01Z        4
## 19478  2006-12 22:27:29Z        4
## 19479  2006-12 22:32:57Z        4
## 19480  2006-12 22:37:07Z        4
## 19481  2006-12 22:37:52Z        4
## 19482  2006-12 22:51:40Z        4
## 19483  2006-12 22:52:22Z        4
## 19484  2006-12 23:15:23Z        4
## 19485  2006-12 23:17:13Z        4
## 19486  2006-12 23:20:11Z        4
## 19487  2006-12 23:23:07Z        4
## 19488  2006-12 23:24:15Z        4
## 19489  2006-12 23:43:16Z        4
## 19490  2006-12 23:45:49Z        4
## 19491  2006-12 00:47:00Z        4
## 19492  2006-12 00:56:54Z        4
## 19493  2006-12 01:00:58Z        4
## 19494  2006-12 01:11:10Z        4
## 19495  2006-12 01:36:53Z        4
## 19496  2006-12 05:35:08Z        4
## 19497  2006-12 14:36:30Z        4
## 19498  2006-12 17:03:37Z        4
## 19499  2006-12 17:09:09Z        4
## 19500  2006-12 18:58:33Z        4
## 19501  2006-12 19:55:58Z        4
## 19502  2006-12 22:22:36Z        4
## 19503  2006-12 01:02:54Z        4
## 19504  2006-12 00:39:00Z        4
## 19505  2006-12 00:40:44Z        4
## 19506  2006-12 00:41:51Z        4
## 19507  2006-12 22:07:14Z        4
## 19508  2006-12 22:46:52Z        4
## 19509  2006-12 01:31:27Z        4
## 19510  2006-12 18:37:54Z        4
## 19511  2007-01 20:23:08Z        4
## 19512  2007-01 11:39:58Z        4
## 19513  2007-01 03:41:26Z        4
## 19514  2007-01 03:42:16Z        4
## 19515  2007-01 03:43:20Z        4
## 19516  2007-01 06:19:51Z        4
## 19517  2007-01 04:33:41Z        4
## 19518  2007-02 17:08:33Z        4
## 19519  2007-02 00:40:38Z        4
## 19520  2007-02 00:46:18Z        4
## 19521  2007-03 08:54:16Z        4
## 19522  2007-03 00:29:49Z        4
## 19523  2007-03 00:30:58Z        4
## 19524  2007-03 23:12:12Z        4
## 19525  2007-03 22:30:09Z        4
## 19526  2007-03 13:52:13Z        4
## 19527  2007-04 02:03:15Z        4
## 19528  2007-04 21:34:37Z        4
## 19529  2007-05 19:58:18Z        4
## 19530  2007-05 04:50:45Z        4
## 19531  2007-05 08:05:01Z        4
## 19532  2007-05 04:50:45Z        4
## 19533  2007-05 21:33:18Z        4
## 19534  2007-05 21:35:10Z        4
## 19535  2007-05 21:40:51Z        4
## 19536  2007-05 05:04:29Z        4
## 19537  2007-05 13:18:30Z        4
## 19538  2007-05 19:50:26Z        4
## 19539  2007-06 05:29:53Z        4
## 19540  2007-06 09:30:51Z        4
## 19541  2007-06 09:32:32Z        4
## 19542  2007-07 18:30:03Z        4
## 19543  2007-07 17:15:13Z        4
## 19544  2007-07 17:16:10Z        4
## 19545  2007-07 17:16:40Z        4
## 19546  2007-07 17:20:52Z        4
## 19547  2007-07 17:25:05Z        4
## 19548  2007-07 01:37:40Z        4
## 19549  2007-07 01:41:27Z        4
## 19550  2007-07 01:11:41Z        4
## 19551  2007-07 01:13:44Z        4
## 19552  2007-07 01:25:08Z        4
## 19553  2007-07 01:25:57Z        4
## 19554  2007-07 01:34:30Z        4
## 19555  2007-07 01:45:35Z        4
## 19556  2007-07 03:09:12Z        4
## 19557  2007-07 14:03:42Z        4
## 19558  2007-07 23:33:53Z        4
## 19559  2007-07 23:36:04Z        4
## 19560  2007-07 13:41:59Z        4
## 19561  2007-07 13:43:25Z        4
## 19562  2007-07 13:45:17Z        4
## 19563  2007-08 13:04:39Z        4
## 19564  2007-08 21:23:36Z        4
## 19565  2007-08 01:24:43Z        4
## 19566  2007-08 16:34:37Z        4
## 19567  2007-08 06:40:00Z        4
## 19568  2007-09 18:02:23Z        4
## 19569  2007-09 20:55:32Z        4
## 19570  2007-09 12:58:00Z        4
## 19571  2007-10 15:15:53Z        4
## 19572  2007-10 20:54:31Z        4
## 19573  2007-10 02:03:49Z        4
## 19574  2007-10 02:20:07Z        4
## 19575  2007-10 01:57:44Z        4
## 19576  2007-10 00:14:07Z        4
## 19577  2007-10 00:12:30Z        4
## 19578  2007-10 16:51:23Z        4
## 19579  2007-10 00:38:26Z        4
## 19580  2007-10 14:40:10Z        4
## 19581  2007-11 04:35:29Z        4
## 19582  2007-11 20:06:48Z        4
## 19583  2007-11 20:10:42Z        4
## 19584  2007-11 00:12:27Z        4
## 19585  2007-11 01:03:50Z        4
## 19586  2007-11 01:10:41Z        4
## 19587  2007-11 02:28:02Z        4
## 19588  2007-11 07:38:59Z        4
## 19589  2007-11 07:46:26Z        4
## 19590  2007-11 07:50:06Z        4
## 19591  2007-11 07:53:40Z        4
## 19592  2007-11 07:55:18Z        4
## 19593  2007-11 08:00:10Z        4
## 19594  2007-11 10:24:13Z        4
## 19595  2007-11 10:26:06Z        4
## 19596  2007-11 22:14:00Z        4
## 19597  2007-12 03:23:32Z        4
## 19598  2007-12 10:02:47Z        4
## 19599  2007-12 04:20:31Z        4
## 19600  2007-12 15:02:14Z        4
## 19601  2007-12 15:03:15Z        4
## 19602  2007-12 15:05:29Z        4
## 19603  2008-01 16:44:42Z        4
## 19604  2008-01 16:46:18Z        4
## 19605  2008-01 17:05:04Z        4
## 19606  2008-01 17:06:29Z        4
## 19607  2008-01 17:08:01Z        4
## 19608  2008-01 17:08:32Z        4
## 19609  2008-01 17:09:24Z        4
## 19610  2008-01 17:09:39Z        4
## 19611  2008-01 18:51:04Z        4
## 19612  2008-01 15:01:29Z        4
## 19613  2008-01 15:04:34Z        4
## 19614  2008-01 15:06:38Z        4
## 19615  2008-01 22:52:51Z        4
## 19616  2008-01 04:28:03Z        4
## 19617  2008-01 04:28:31Z        4
## 19618  2008-01 22:38:19Z        4
## 19619  2002-10 23:37:23Z        4
## 19620  2002-12 14:04:37Z        4
## 19621  2003-08 14:06:39Z        4
## 19622  2004-05 01:11:34Z        4
## 19623  2004-08 02:13:23Z        4
## 19624  2004-09 06:02:33Z        4
## 19625  2004-11 16:17:55Z        4
## 19626  2004-11 05:23:13Z        4
## 19627  2004-11 16:44:11Z        4
## 19628  2004-12 07:23:23Z        4
## 19629  2005-09 00:22:18Z        4
## 19630  2005-09 00:22:42Z        4
## 19631  2005-09 00:24:37Z        4
## 19632  2005-09 00:25:24Z        4
## 19633  2005-09 00:27:27Z        4
## 19634  2005-12 01:57:24Z        4
## 19635  2006-01 21:40:10Z        4
## 19636  2006-03 01:56:13Z        4
## 19637  2006-04 10:18:29Z        4
## 19638  2006-05 17:04:50Z        4
## 19639  2006-06 01:59:54Z        4
## 19640  2006-10 21:34:47Z        4
## 19641  2006-11 21:40:03Z        4
## 19642  2007-04 00:06:58Z        4
## 19643  2007-04 12:18:11Z        4
## 19644  2007-04 20:07:09Z        4
## 19645  2007-04 20:07:32Z        4
## 19646  2007-06 15:09:38Z        4
## 19647  2007-08 21:42:42Z        4
## 19648  2007-09 17:40:07Z        4
## 19649  2007-09 06:38:28Z        4
## 19650  2007-10 01:50:05Z        4
## 19651  2007-10 23:42:58Z        4
## 19652  2007-10 17:17:07Z        4
## 19653  2007-12 04:00:35Z        4
## 19654  2002-10 23:39:17Z        5
## 19655  2002-12 14:22:26Z        5
## 19656  2004-05 00:39:20Z        5
## 19657  2004-07 22:47:41Z        5
## 19658  2004-08 02:17:31Z        5
## 19659  2004-11 03:37:06Z        5
## 19660  2004-11 03:37:18Z        5
## 19661  2004-11 19:39:27Z        5
## 19662  2004-11 16:23:16Z        5
## 19663  2004-11 05:24:27Z        5
## 19664  2004-12 14:37:01Z        5
## 19665  2006-03 01:10:49Z        5
## 19666  2006-03 22:27:29Z        5
## 19667  2006-04 10:24:25Z        5
## 19668  2006-05 09:32:34Z        5
## 19669  2006-09 19:03:55Z        5
## 19670  2006-10 23:43:37Z        5
## 19671  2006-10 23:44:23Z        5
## 19672  2006-10 23:45:00Z        5
## 19673  2006-10 23:46:39Z        5
## 19674  2006-11 18:00:29Z        5
## 19675  2006-12 04:34:36Z        5
## 19676  2007-01 08:08:27Z        5
## 19677  2007-03 04:23:17Z        5
## 19678  2007-06 19:46:14Z        5
## 19679  2007-06 19:46:34Z        5
## 19680  2007-06 15:05:43Z        5
## 19681  2007-08 22:41:44Z        5
## 19682  2007-09 17:25:49Z        5
## 19683  2007-09 13:12:53Z        5
## 19684  2007-10 01:43:18Z        5
## 19685  2007-10 23:13:53Z        5
## 19686  2007-10 16:55:49Z        5
## 19687  2007-11 22:07:48Z        5
## 19688  2007-11 02:27:18Z        5
## 19689  2007-12 07:04:28Z        5
## 19690  2007-12 03:57:03Z        5
## 19691  2002-10 23:40:11Z        5
## 19692  2002-12 14:33:43Z        5
## 19693  2004-05 01:37:35Z        5
## 19694  2004-08 02:19:42Z        5
## 19695  2004-09 00:50:40Z        5
## 19696  2004-11 09:22:29Z        5
## 19697  2004-11 16:24:47Z        5
## 19698  2004-12 11:35:09Z        5
## 19699  2005-12 23:45:46Z        5
## 19700  2006-03 04:17:19Z        5
## 19701  2006-03 01:26:32Z        5
## 19702  2006-03 01:26:56Z        5
## 19703  2006-04 10:26:59Z        5
## 19704  2006-05 22:07:22Z        5
## 19705  2006-07 01:24:51Z        5
## 19706  2006-07 01:13:47Z        5
## 19707  2006-07 01:14:13Z        5
## 19708  2006-07 01:15:18Z        5
## 19709  2006-07 01:16:23Z        5
## 19710  2006-07 01:54:26Z        5
## 19711  2006-09 19:06:28Z        5
## 19712  2006-09 15:01:25Z        5
## 19713  2006-10 23:32:36Z        5
## 19714  2006-10 23:35:59Z        5
## 19715  2006-10 23:37:30Z        5
## 19716  2006-10 23:47:45Z        5
## 19717  2006-12 03:58:22Z        5
## 19718  2006-12 01:16:27Z        5
## 19719  2006-12 01:17:43Z        5
## 19720  2006-12 01:18:11Z        5
## 19721  2006-12 01:19:21Z        5
## 19722  2007-01 08:14:27Z        5
## 19723  2007-01 01:44:17Z        5
## 19724  2007-01 01:49:30Z        5
## 19725  2007-01 01:50:22Z        5
## 19726  2007-02 05:21:30Z        5
## 19727  2007-04 16:40:26Z        5
## 19728  2007-06 15:13:31Z        5
## 19729  2007-08 22:31:05Z        5
## 19730  2007-08 03:53:04Z        5
## 19731  2007-08 04:21:44Z        5
## 19732  2007-09 17:59:12Z        5
## 19733  2007-09 12:17:12Z        5
## 19734  2007-10 01:53:21Z        5
## 19735  2007-10 23:54:59Z        5
## 19736  2007-10 16:57:51Z        5
## 19737  2007-10 01:11:38Z        5
## 19738  2007-10 01:13:22Z        5
## 19739  2007-11 02:16:56Z        5
## 19740  2007-12 04:28:36Z        5
## 19741  2007-12 23:19:18Z        5
## 19742  2002-10 23:46:49Z        6
## 19743  2002-12 15:37:08Z        6
## 19744  2003-12 08:30:52Z        6
## 19745  2004-08 02:36:01Z        6
## 19746  2004-09 18:29:38Z        6
## 19747  2004-11 16:37:04Z        6
## 19748  2004-11 05:28:34Z        6
## 19749  2004-12 23:31:22Z        6
## 19750  2006-04 10:53:42Z        6
## 19751  2007-10 03:08:43Z        6
## 19752  2002-10 00:08:42Z        0
## 19753  2002-12 02:24:54Z        0
## 19754  2004-07 16:02:38Z        0
## 19755  2004-08 03:22:01Z        0
## 19756  2004-11 17:13:25Z        0
## 19757  2006-01 23:06:42Z        0
## 19758  2006-01 23:06:58Z        0
## 19759  2006-01 03:48:50Z        0
## 19760  2006-03 18:58:17Z        0
## 19761  2006-03 20:47:48Z        0
## 19762  2006-03 05:10:40Z        0
## 19763  2006-05 19:07:37Z        0
## 19764  2006-07 07:29:16Z        0
## 19765  2006-09 16:59:41Z        0
## 19766  2006-09 16:59:49Z        0
## 19767  2006-09 17:00:57Z        0
## 19768  2006-09 17:04:46Z        0
## 19769  2006-09 14:31:18Z        0
## 19770  2006-10 13:01:20Z        0
## 19771  2006-10 13:02:27Z        0
## 19772  2006-10 13:03:14Z        0
## 19773  2007-03 23:18:58Z        0
## 19774  2007-05 13:53:38Z        0
## 19775  2007-05 21:55:42Z        0
## 19776  2007-06 20:04:39Z        0
## 19777  2007-10 08:08:09Z        0
## 19778  2007-12 05:59:25Z        0
## 19779  2007-12 04:00:11Z        0
## 19780  2002-10 00:10:35Z        1
## 19781  2002-12 02:26:57Z        1
## 19782  2004-07 20:48:39Z        1
## 19783  2004-08 03:25:58Z        1
## 19784  2004-11 17:16:36Z        1
## 19785  2005-06 22:53:12Z        1
## 19786  2006-03 09:22:35Z        1
## 19787  2006-05 04:57:31Z        1
## 19788  2006-08 16:13:30Z        1
## 19789  2006-08 17:10:00Z        1
## 19790  2007-10 07:53:36Z        1
## 19791  2007-12 04:15:17Z        1
## 19792  2007-12 01:54:02Z        1
## 19793  2002-10 00:14:28Z        2
## 19794  2002-12 02:31:07Z        2
## 19795  2004-08 03:33:56Z        2
## 19796  2004-08 14:53:11Z        2
## 19797  2004-08 15:17:37Z        2
## 19798  2004-08 20:24:24Z        2
## 19799  2004-11 17:23:27Z        2
## 19800  2005-03 01:53:34Z        2
## 19801  2005-11 18:16:07Z        2
## 19802  2005-12 23:10:51Z        2
## 19803  2006-03 08:17:10Z        2
## 19804  2006-05 22:55:25Z        2
## 19805  2007-10 07:28:26Z        2
## 19806  2007-12 05:28:36Z        2
## 19807  2007-12 03:29:48Z        2
## 19808  2002-02 15:51:15Z        4
## 19809  2002-03 22:19:47Z        4
## 19810  2002-04 11:54:33Z        4
## 19811  2002-04 11:56:53Z        4
## 19812  2002-04 12:02:43Z        4
## 19813  2002-07 15:15:07Z        4
## 19814  2002-08 03:56:04Z        4
## 19815  2002-08 04:14:30Z        4
## 19816  2002-08 04:15:15Z        4
## 19817  2002-08 00:44:30Z        4
## 19818  2002-08 01:04:39Z        4
## 19819  2002-01 20:11:41Z        4
## 19820  2002-08 16:31:23Z        4
## 19821  2002-09 10:55:03Z        4
## 19822  2002-09 11:00:30Z        4
## 19823  2002-10 14:06:41Z        4
## 19824  2003-01 06:11:08Z        4
## 19825  2003-02 00:13:16Z        4
## 19826  2003-03 09:36:52Z        4
## 19827  2003-05 14:50:27Z        4
## 19828  2003-05 09:27:53Z        4
## 19829  2003-05 09:52:38Z        4
## 19830  2003-05 10:48:21Z        4
## 19831  2003-05 01:35:27Z        4
## 19832  2003-05 01:41:34Z        4
## 19833  2003-05 01:42:53Z        4
## 19834  2003-05 18:54:43Z        4
## 19835  2003-05 18:58:48Z        4
## 19836  2003-06 14:41:01Z        4
## 19837  2003-06 19:51:59Z        4
## 19838  2003-06 20:35:35Z        4
## 19839  2003-07 20:09:43Z        4
## 19840  2003-08 17:29:09Z        4
## 19841  2003-08 00:46:15Z        4
## 19842  2003-08 16:56:02Z        4
## 19843  2003-08 17:00:38Z        4
## 19844  2003-08 08:38:38Z        4
## 19845  2003-08 23:27:24Z        4
## 19846  2003-09 11:49:27Z        4
## 19847  2003-10 10:03:39Z        4
## 19848  2003-11 19:23:34Z        4
## 19849  2003-11 21:24:53Z        4
## 19850  2003-12 14:07:19Z        4
## 19851  2003-12 14:12:11Z        4
## 19852  2003-12 14:15:23Z        4
## 19853  2003-12 14:20:46Z        4
## 19854  2004-01 10:41:52Z        4
## 19855  2004-01 10:42:55Z        4
## 19856  2004-01 03:31:41Z        4
## 19857  2004-01 17:49:57Z        4
## 19858  2004-01 17:59:37Z        4
## 19859  2004-01 02:04:10Z        4
## 19860  2004-02 15:42:25Z        4
## 19861  2004-02 16:01:26Z        4
## 19862  2004-02 15:54:00Z        4
## 19863  2004-02 15:56:19Z        4
## 19864  2004-02 16:55:23Z        4
## 19865  2004-02 19:29:41Z        4
## 19866  2004-02 19:30:42Z        4
## 19867  2004-02 14:40:26Z        4
## 19868  2004-02 17:12:49Z        4
## 19869  2004-02 08:44:18Z        4
## 19870  2004-02 18:01:28Z        4
## 19871  2004-02 23:45:47Z        4
## 19872  2004-03 02:36:49Z        4
## 19873  2004-03 02:38:34Z        4
## 19874  2004-03 02:46:00Z        4
## 19875  2004-03 02:48:18Z        4
## 19876  2004-03 05:00:18Z        4
## 19877  2004-03 05:11:57Z        4
## 19878  2004-03 06:48:31Z        4
## 19879  2004-03 16:09:32Z        4
## 19880  2004-03 16:16:10Z        4
## 19881  2004-03 16:21:17Z        4
## 19882  2004-03 16:26:07Z        4
## 19883  2004-03 16:38:35Z        4
## 19884  2004-03 16:42:48Z        4
## 19885  2004-03 16:52:30Z        4
## 19886  2004-03 18:40:18Z        4
## 19887  2004-03 18:52:59Z        4
## 19888  2004-03 19:00:36Z        4
## 19889  2004-03 19:07:15Z        4
## 19890  2004-03 21:48:36Z        4
## 19891  2004-03 00:41:55Z        4
## 19892  2004-03 06:08:32Z        4
## 19893  2004-03 06:31:14Z        4
## 19894  2004-03 06:42:53Z        4
## 19895  2004-03 08:20:34Z        4
## 19896  2004-03 12:24:02Z        4
## 19897  2004-03 12:44:47Z        4
## 19898  2004-03 15:28:40Z        4
## 19899  2004-03 15:31:38Z        4
## 19900  2004-03 15:38:58Z        4
## 19901  2004-03 15:46:02Z        4
## 19902  2004-03 15:59:20Z        4
## 19903  2004-03 16:03:54Z        4
## 19904  2004-03 16:23:58Z        4
## 19905  2004-03 16:34:46Z        4
## 19906  2004-03 19:29:56Z        4
## 19907  2004-03 21:11:47Z        4
## 19908  2004-03 00:38:43Z        4
## 19909  2004-03 15:37:59Z        4
## 19910  2004-03 16:52:01Z        4
## 19911  2004-03 17:01:22Z        4
## 19912  2004-03 18:58:16Z        4
## 19913  2004-03 09:08:11Z        4
## 19914  2004-03 23:26:49Z        4
## 19915  2004-03 23:28:14Z        4
## 19916  2004-03 00:05:10Z        4
## 19917  2004-03 00:31:40Z        4
## 19918  2004-03 00:32:04Z        4
## 19919  2004-03 14:29:59Z        4
## 19920  2004-03 17:45:08Z        4
## 19921  2004-03 15:39:45Z        4
## 19922  2004-03 17:04:14Z        4
## 19923  2004-03 19:01:34Z        4
## 19924  2004-03 19:05:02Z        4
## 19925  2004-03 16:32:20Z        4
## 19926  2004-03 16:39:26Z        4
## 19927  2004-03 20:31:45Z        4
## 19928  2004-03 11:38:14Z        4
## 19929  2004-03 03:29:01Z        4
## 19930  2004-03 05:35:31Z        4
## 19931  2004-04 20:52:25Z        4
## 19932  2004-04 13:11:56Z        4
## 19933  2004-04 13:12:34Z        4
## 19934  2004-04 13:13:28Z        4
## 19935  2004-04 13:13:53Z        4
## 19936  2004-04 13:23:41Z        4
## 19937  2004-04 02:10:29Z        4
## 19938  2004-04 02:31:50Z        4
## 19939  2004-04 22:56:51Z        4
## 19940  2004-04 19:44:24Z        4
## 19941  2004-04 19:45:55Z        4
## 19942  2004-04 21:57:26Z        4
## 19943  2004-04 21:22:47Z        4
## 19944  2004-04 05:53:44Z        4
## 19945  2004-04 12:57:48Z        4
## 19946  2004-04 19:47:46Z        4
## 19947  2004-04 04:17:06Z        4
## 19948  2004-04 13:39:13Z        4
## 19949  2004-04 14:33:51Z        4
## 19950  2004-04 19:59:19Z        4
## 19951  2004-04 21:40:23Z        4
## 19952  2004-04 08:53:13Z        4
## 19953  2004-05 23:50:26Z        4
## 19954  2004-05 09:36:20Z        4
## 19955  2004-05 11:22:23Z        4
## 19956  2004-05 09:34:58Z        4
## 19957  2004-05 11:09:12Z        4
## 19958  2004-05 16:19:34Z        4
## 19959  2004-05 12:05:17Z        4
## 19960  2004-05 12:13:27Z        4
## 19961  2004-05 12:36:31Z        4
## 19962  2004-05 12:45:14Z        4
## 19963  2004-05 17:45:20Z        4
## 19964  2004-05 20:46:08Z        4
## 19965  2004-05 20:49:06Z        4
## 19966  2004-05 15:57:38Z        4
## 19967  2004-06 23:32:57Z        4
## 19968  2004-06 19:57:44Z        4
## 19969  2004-06 20:00:05Z        4
## 19970  2004-06 12:20:54Z        4
## 19971  2004-07 08:57:07Z        4
## 19972  2004-07 22:25:47Z        4
## 19973  2004-07 08:34:49Z        4
## 19974  2004-07 08:35:08Z        4
## 19975  2004-07 20:57:54Z        4
## 19976  2004-07 19:34:22Z        4
## 19977  2004-07 17:29:50Z        4
## 19978  2004-08 07:15:43Z        4
## 19979  2004-08 08:24:50Z        4
## 19980  2004-08 08:32:48Z        4
## 19981  2004-08 08:35:05Z        4
## 19982  2004-08 08:47:49Z        4
## 19983  2004-08 08:55:40Z        4
## 19984  2004-08 12:20:43Z        4
## 19985  2004-08 19:40:35Z        4
## 19986  2004-08 19:43:01Z        4
## 19987  2004-08 19:45:29Z        4
## 19988  2004-08 22:21:30Z        4
## 19989  2004-08 20:42:11Z        4
## 19990  2004-08 20:43:10Z        4
## 19991  2004-08 20:43:47Z        4
## 19992  2004-08 01:10:28Z        4
## 19993  2004-08 07:06:09Z        4
## 19994  2004-08 13:19:38Z        4
## 19995  2004-08 13:36:52Z        4
## 19996  2004-08 20:10:12Z        4
## 19997  2004-09 04:55:30Z        4
## 19998  2004-09 16:10:14Z        4
## 19999  2004-09 16:11:59Z        4
##  [ reached getOption("max.print") -- omitted 211539 rows ]
collapsed <- revisions_to_dates %>%
  group_by(article_id, date) %>%
  dplyr::summarise(count = n())
arrange(collapsed, desc(count))
## # A tibble: 27,909 x 3
## # Groups:   article_id [1,000]
##    article_id date    count
##         <int> <chr>   <int>
##  1      60341 2006-07   544
##  2      25431 2004-07   486
##  3      60341 2007-06   385
##  4      20206 2007-07   372
##  5      32374 2007-03   362
##  6      20206 2006-01   308
##  7     182000 2007-03   305
##  8      37751 2007-05   302
##  9      26152 2007-04   299
## 10     182000 2006-05   299
## # ... with 27,899 more rows
# library(zoo)
# article.revisions.by.year.date <- geom_line(aes(group = article_id)) +
# geom_point(size = 1.3) +
# scale_color_gradient2(midpoint = 7000000, labels=comma) +
# labs(title = "Number of Revisions for Each Article by Month from 2001 to 2008", colour = "Article ID") +
# xlab("Year-Month") +
# ylab("Number of Revisions") +
# theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))
# 
# article.revisions.by.year.date
# 
# ggsave("img/article-revisions-by-year-date.png", article.revisions.by.year.date, width = 10, height = 6)

It could be interesting to look at which articles have such high amounts of revisions.

highrevisions <- collapsed %>%
  filter(count > 250)
(highrevisionarticles <- unique(highrevisions$article_id))
##  [1]   1078   9649  20206  25431  26152  32374  37751  60341  61322  84237
## [11] 182000
ggplot(data = collapsed[which(collapsed$article_id %in% highrevisionarticles),], aes(x=as.yearmon(date), y = count, colour = article_id)) + geom_line(aes(group = article_id)) + geom_point(size = 1.3)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggsave('img-older/article-revisions-by-month-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

let’s normalize by total number of revisions to get percentages to see which ones had most of these edits within a small timespan

percents.of.high.revisions <- collapsed[which(collapsed$article_id %in% highrevisionarticles),] %>%
  group_by(article_id) %>%
  mutate(percent = count/sum(count), total = sum(count))

library(zoo)
ggplot(data = percents.of.high.revisions, aes(x=as.yearmon(date), y = percent, colour = total)) + geom_line(aes(group = article_id)) + geom_point() + scale_y_continuous(labels = scales::percent)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggsave('img-older/article-revisions-by-month-normalized-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

So which are the articles that had many revisions in a single month:

popular.month.articles <- unique(percents.of.high.revisions$article_id[which(percents.of.high.revisions$percent > .15)])
popular.articles <- percents.of.high.revisions[which(percents.of.high.revisions$article_id %in% popular.month.articles),]
library(directlabels)

# USE THIS - pulled out the three highest articles. add titles to legend remove geom_dl
ggplot(data = popular.articles, aes(x=as.yearmon(date), y = count, colour = total)) + geom_line(aes(group = article_id)) + geom_dl(aes(label=article_id), method = "top.points")
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

high.revisions.per.month.articles <- ggplot(data = popular.articles, aes(x=as.yearmon(date), y = count, colour = as.factor(article_id))) + 
geom_line(aes(group = article_id)) +
labs(title = "Articles that Have High Revisions Within A Single Month", colour = "Article ID") + 
xlab("Year-Month") + 
ylab("Number of Revisions") +
theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))

#high.revisions.per.month.articles

ggsave("img/high-revisions-per-month-articles.png", high.revisions.per.month.articles,width = 10, height = 6)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

25431 = Russian language 60341 = Richmond, California 61322 = Alcibiades

Let’s get finer granularity in the dates

highest.collapsed.by.day <- revisions_processed[which(revisions_processed$article_id %in% popular.month.articles),] %>%
  group_by(article_id, date) %>%
  summarise(count = n())
arrange(highest.collapsed.by.day, desc(count))
## # A tibble: 1,400 x 3
## # Groups:   article_id [3]
##    article_id date       count
##         <int> <chr>      <int>
##  1      25431 2004-06-28   139
##  2      61322 2007-01-13   139
##  3      61322 2006-09-22    85
##  4      60341 2006-07-20    74
##  5      60341 2006-07-10    65
##  6      25431 2004-07-14    58
##  7      25431 2004-06-30    56
##  8      60341 2006-07-23    56
##  9      25431 2006-04-21    54
## 10      60341 2006-07-12    54
## # ... with 1,390 more rows
library(zoo)
high.revisions.per.day.articles <- ggplot(data = highest.collapsed.by.day, aes(x=as.Date(date), y = count, color = as.factor(article_id), alpha = 0.2)) + geom_line() + geom_point(size=0.6) +
  labs(title = "Articles that Have High Revisions Within A Single Day", colour = "Article ID") + 
  xlab("Year-Day") + 
  ylab("Number of Revisions") +
  theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))

high.revisions.per.day.articles

ggsave("img/high-revisions-per-day-articles.png", high.revisions.per.day.articles,width = 10, height = 6)

On Jan 13, 2007 “Alcibiades” was the wikipedia featured article. # USE THIS - add screen shot of google search Many of the edits of “Alcibiades” were done by one author Yannismarou (went on to become an administrator in 2007). Writes tips for how to make a featured article.

Can’t tie Russian language to any news and the history for the article doesn’t go back as far as this date.

Author of many of the Richmond, CA edits “may need to be blocked due to abusive use of multiple accounts.” TROLL? sock puppetry

Back to all articles

For now, let’s normalize by total number of revisions to get percentages.

percents <- collapsed %>%
  group_by(article_id) %>%
  mutate(percent = count/sum(count))

library(zoo)
ggplot(data = percents, aes(x=as.yearmon(date), y = percent, colour = article_id)) + geom_line(aes(group = article_id)) + geom_point() 
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

Plot this with first revision to get plot to prove our point about article ids and article age.

In order to align the data to the left, we need to convert the dates to time since first revision.

# this won't work if the data isn't sorted by date
# date of first revision for each article id
t.first <- percents[!duplicated(percents$article_id),]
arrange(t.first, desc(date))
## # A tibble: 1,000 x 4
## # Groups:   article_id [1,000]
##    article_id date    count percent
##         <int> <chr>   <int>   <dbl>
##  1     148208 2002-12     1  0.100 
##  2     154020 2002-12     1  1.00  
##  3     154170 2002-12     5  0.0210
##  4     154350 2002-12     1  0.0256
##  5     154382 2002-12     4  0.0615
##  6     154568 2002-12     7  0.200 
##  7     155145 2002-12     1  0.0435
##  8     155410 2002-12    10  0.0592
##  9     155439 2002-12     1  1.00  
## 10     156089 2002-12     4  0.0430
## # ... with 990 more rows
#t.first.before2003 <- subset(t.first, as.yearmon(date) < as.yearmon("2003-01"))
#arrange(t.first.before2003, desc(date))

Convert records to time since first revision

aligned_revisions <- percents
aligned_revisions$first <- t.first$date[match(aligned_revisions$article_id, t.first$article_id)]
aligned_revisions$time.since.creation <- (as.yearmon(aligned_revisions$date) - as.yearmon(aligned_revisions$first))*12
aligned_revisions$time.since.creation <- as.integer(round(aligned_revisions$time.since.creation))
library(scales)
ggplot(data = aligned_revisions, aes(x=time.since.creation, y = percent, colour = article_id)) + geom_line(aes(group = article_id)) + scale_y_continuous(labels = scales::percent) + geom_point()

ggsave('img-older/article-revisions-since-creation-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

Okay so there might be some trends that are obfuscated because we do not have 0% for months where there are no edits.

library(data.table)
## 
## Attaching package: 'data.table'
## The following objects are masked from 'package:dplyr':
## 
##     between, first, last
all_months <- as.data.frame(dcast(setDT(aligned_revisions), article_id ~ time.since.creation, value.var='percent'))
all_months[is.na(all_months)] <- 0
all_months
##      article_id            0            1            2            3
## 1           670 0.0007215007 0.0151515152 0.0000000000 0.0021645022
## 2           696 0.0263157895 0.0000000000 0.0000000000 0.0000000000
## 3           839 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 4           898 0.0018552876 0.0000000000 0.0000000000 0.0000000000
## 5          1010 0.0006238303 0.0000000000 0.0006238303 0.0012476606
## 6          1070 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7          1073 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 8          1078 0.0001851509 0.0020366599 0.0001851509 0.0001851509
## 9          1231 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10         1357 0.0172413793 0.0000000000 0.0000000000 0.0000000000
## 11         1365 0.0007132668 0.0000000000 0.0007132668 0.0000000000
## 12         1399 0.1666666667 0.0000000000 0.0000000000 0.0000000000
## 13         1526 0.0175438596 0.0000000000 0.0000000000 0.0175438596
## 14         1556 0.0083333333 0.0000000000 0.0000000000 0.0000000000
## 15         1654 0.0740740741 0.0000000000 0.0000000000 0.0000000000
## 16         1734 0.0322580645 0.0000000000 0.0000000000 0.0000000000
## 17         1835 0.0040160643 0.0080321285 0.0000000000 0.0200803213
## 18         1905 0.0068965517 0.0000000000 0.0000000000 0.0000000000
## 19         1947 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 20         1979 0.0017513135 0.0000000000 0.0017513135 0.0000000000
## 21         2114 0.0047058824 0.0000000000 0.0000000000 0.0000000000
## 22         2167 0.0208333333 0.0000000000 0.0000000000 0.0000000000
## 23         2217 0.0009980040 0.0000000000 0.0000000000 0.0019960080
## 24         2335 0.0067796610 0.0000000000 0.0000000000 0.0033898305
## 25         2578 0.0454545455 0.0000000000 0.0227272727 0.0227272727
## 26         2665 0.0256410256 0.0000000000 0.0256410256 0.0000000000
## 27         2851 0.0057471264 0.0000000000 0.0057471264 0.0000000000
## 28         3256 0.0039062500 0.0078125000 0.0000000000 0.0000000000
## 29         3303 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 30         3413 0.1000000000 0.0000000000 0.0000000000 0.0000000000
## 31         3472 0.0011587486 0.0000000000 0.0000000000 0.0000000000
## 32         3861 0.0086956522 0.0000000000 0.0000000000 0.0043478261
## 33         3953 0.0048076923 0.0000000000 0.0000000000 0.0000000000
## 34         3954 0.0012610340 0.0012610340 0.0000000000 0.0012610340
## 35         4113 0.0029154519 0.0000000000 0.0000000000 0.0000000000
## 36         4260 0.0054054054 0.0000000000 0.0000000000 0.0000000000
## 37         4666 0.0869565217 0.0000000000 0.0000000000 0.0434782609
## 38         4691 0.0400000000 0.0000000000 0.0000000000 0.0057142857
## 39         4760 0.0138888889 0.0000000000 0.0069444444 0.0000000000
## 40         5356 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 41         5369 0.2500000000 0.0000000000 0.0000000000 0.2500000000
## 42         5419 0.0052356021 0.0000000000 0.0000000000 0.0000000000
## 43         5567 0.0106382979 0.0000000000 0.0000000000 0.0000000000
## 44         5751 0.0003390980 0.0033909800 0.0000000000 0.0006781960
## 45         5762 0.0008818342 0.0000000000 0.0000000000 0.0008818342
## 46         5876 0.0013661202 0.0013661202 0.0000000000 0.0000000000
## 47         5914 0.0028901734 0.0000000000 0.0000000000 0.0000000000
## 48         5947 0.0909090909 0.4545454545 0.0909090909 0.0000000000
## 49         5978 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50         6157 0.5000000000 0.0000000000 0.0000000000 0.5000000000
## 51         6168 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52         6328 0.0035971223 0.0000000000 0.0000000000 0.0107913669
## 53         6421 0.0033444816 0.0000000000 0.0000000000 0.0033444816
## 54         6689 0.0357142857 0.0000000000 0.0000000000 0.0000000000
## 55         6753 0.0050761421 0.0000000000 0.0152284264 0.0000000000
## 56         6852 0.0005146680 0.0005146680 0.0000000000 0.0000000000
## 57         6982 0.0075757576 0.0000000000 0.0000000000 0.0000000000
## 58         7176 0.0019920319 0.0000000000 0.0000000000 0.0019920319
## 59         7222 0.0012755102 0.0000000000 0.0000000000 0.0000000000
## 60         7224 0.0065789474 0.0000000000 0.0000000000 0.0065789474
## 61         7372 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62         7402 0.0869565217 0.0000000000 0.0000000000 0.0000000000
## 63         7685 0.0029585799 0.0029585799 0.0000000000 0.0000000000
## 64         7736 0.4000000000 0.2000000000 0.1000000000 0.3000000000
## 65         7766 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 66         7810 0.0076775432 0.0019193858 0.0000000000 0.0000000000
## 67         7986 0.0238095238 0.0000000000 0.0000000000 0.0000000000
## 68         8020 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 69         8352 0.0007147963 0.0007147963 0.0007147963 0.0000000000
## 70         8507 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 71         8803 0.1666666667 0.0000000000 0.0000000000 0.1666666667
## 72         9011 0.0161290323 0.0000000000 0.0161290323 0.0000000000
## 73         9430 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 74         9515 0.0005476451 0.0000000000 0.0000000000 0.0000000000
## 75         9649 0.0002854696 0.0000000000 0.0011418784 0.0005709392
## 76         9838 0.0018214936 0.0018214936 0.0000000000 0.0054644809
## 77         9846 0.1250000000 0.1250000000 0.0000000000 0.0000000000
## 78         9946 0.0034364261 0.0000000000 0.0000000000 0.0000000000
## 79        10074 0.0035587189 0.0000000000 0.0000000000 0.0035587189
## 80        10334 0.0370370370 0.0000000000 0.0000000000 0.0000000000
## 81        10500 0.0129310345 0.0086206897 0.0000000000 0.0000000000
## 82        10632 0.0212765957 0.0000000000 0.0000000000 0.0000000000
## 83        10845 0.0028368794 0.0000000000 0.0000000000 0.0000000000
## 84        10864 0.0035971223 0.0000000000 0.0035971223 0.0000000000
## 85        11001 0.0029850746 0.0000000000 0.0029850746 0.0000000000
## 86        11092 0.0031250000 0.0000000000 0.0000000000 0.0000000000
## 87        11281 0.0036231884 0.0000000000 0.0036231884 0.0000000000
## 88        11499 0.0769230769 0.0000000000 0.0000000000 0.0000000000
## 89        11749 0.0005691520 0.0005691520 0.0005691520 0.0017074559
## 90        11766 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91        11779 0.2272727273 0.0454545455 0.0000000000 0.0454545455
## 92        11885 0.0018348624 0.0000000000 0.0000000000 0.0018348624
## 93        11943 0.0032362460 0.0000000000 0.0032362460 0.0000000000
## 94        11963 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95        12017 0.0175438596 0.0000000000 0.0000000000 0.0000000000
## 96        12296 0.0166666667 0.0000000000 0.0000000000 0.0000000000
## 97        12620 0.0006640106 0.0000000000 0.0000000000 0.0019920319
## 98        13019 0.0045662100 0.0000000000 0.0000000000 0.0000000000
## 99        13207 0.0016750419 0.0000000000 0.0000000000 0.0000000000
## 100       13679 0.0273972603 0.0000000000 0.0000000000 0.0000000000
## 101       13969 0.0020000000 0.0000000000 0.0040000000 0.0000000000
## 102       14636 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 103       14744 0.0038610039 0.0000000000 0.0000000000 0.0000000000
## 104       14774 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 105       14870 0.0064516129 0.0000000000 0.0000000000 0.0000000000
## 106       14895 0.0017621145 0.0000000000 0.0000000000 0.0000000000
## 107       15175 0.0039682540 0.0079365079 0.0158730159 0.0000000000
## 108       15260 0.0366972477 0.0000000000 0.0000000000 0.0091743119
## 109       15658 0.0008849558 0.0000000000 0.0000000000 0.0000000000
## 110       15670 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 111       15687 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 112       15690 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 113       15831 0.0008802817 0.0000000000 0.0000000000 0.0000000000
## 114       15896 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115       16083 0.0005988024 0.0000000000 0.0000000000 0.0000000000
## 116       16126 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 117       16773 0.0095238095 0.0000000000 0.0000000000 0.0000000000
## 118       16897 0.0005068424 0.0000000000 0.0000000000 0.0015205271
## 119       17224 0.0588235294 0.0000000000 0.0000000000 0.0000000000
## 120       17634 0.0285714286 0.0000000000 0.0000000000 0.0285714286
## 121       17663 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122       17845 0.0027472527 0.0000000000 0.0000000000 0.0000000000
## 123       18195 0.0013175231 0.0000000000 0.0000000000 0.0000000000
## 124       18687 0.0022883295 0.0000000000 0.0000000000 0.0000000000
## 125       18737 0.0123456790 0.0123456790 0.0000000000 0.0000000000
## 126       19169 0.0011890606 0.0000000000 0.0000000000 0.0000000000
## 127       19365 0.0227272727 0.0000000000 0.0000000000 0.0000000000
## 128       19763 0.0006715917 0.0000000000 0.0006715917 0.0000000000
## 129       19778 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 130       19803 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 131       19973 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 132       20087 0.0018903592 0.0075614367 0.0018903592 0.0000000000
## 133       20095 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 134       20109 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135       20206 0.0003763643 0.0000000000 0.0000000000 0.0000000000
## 136       20286 0.0100000000 0.0000000000 0.0000000000 0.0000000000
## 137       20528 0.0044444444 0.0044444444 0.0000000000 0.0044444444
## 138       20929 0.6666666667 0.3333333333 0.0000000000 0.0000000000
## 139       21115 0.0013661202 0.0000000000 0.0000000000 0.0000000000
## 140       21206 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141       21380 0.0256410256 0.0000000000 0.0000000000 0.0000000000
## 142       21388 0.0086580087 0.0000000000 0.0000000000 0.0000000000
## 143       21407 0.0277777778 0.0000000000 0.0000000000 0.0000000000
## 144       21464 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145       21469 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 146       21609 0.0033003300 0.0000000000 0.0000000000 0.0000000000
## 147       21695 0.0196078431 0.0000000000 0.0000000000 0.0000000000
## 148       21856 0.0294117647 0.0294117647 0.0294117647 0.0000000000
## 149       21914 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150       21987 0.2727272727 0.0000000000 0.0454545455 0.0000000000
## 151       22175 0.5000000000 0.0000000000 0.5000000000 0.0000000000
## 152       22178 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153       22358 0.0169491525 0.0000000000 0.0000000000 0.0000000000
## 154       22658 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155       22984 0.0009099181 0.0000000000 0.0009099181 0.0009099181
## 156       23055 0.0005133470 0.0000000000 0.0000000000 0.0005133470
## 157       23328 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158       23396 0.0081967213 0.0000000000 0.0000000000 0.0000000000
## 159       23490 0.0012562814 0.0000000000 0.0000000000 0.0012562814
## 160       23878 0.0007272727 0.0000000000 0.0000000000 0.0000000000
## 161       23994 0.0035087719 0.0000000000 0.0000000000 0.0000000000
## 162       24008 0.0106382979 0.0000000000 0.0000000000 0.0000000000
## 163       24227 0.0229885057 0.0000000000 0.0000000000 0.0000000000
## 164       24245 0.0048899756 0.0000000000 0.0000000000 0.0000000000
## 165       24454 0.0072992701 0.0145985401 0.0000000000 0.0072992701
## 166       24508 0.0004662005 0.0000000000 0.0000000000 0.0000000000
## 167       24512 0.0048780488 0.0000000000 0.0000000000 0.0000000000
## 168       24529 0.0169491525 0.0000000000 0.0000000000 0.0000000000
## 169       24635 0.0297619048 0.0000000000 0.0000000000 0.0059523810
## 170       24780 0.0205479452 0.0000000000 0.0068493151 0.0000000000
## 171       24830 0.0236686391 0.0000000000 0.0059171598 0.0000000000
## 172       24844 0.2571428571 0.0000000000 0.0285714286 0.0000000000
## 173       24934 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 174       25041 0.0040363269 0.0010090817 0.0000000000 0.0000000000
## 175       25150 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176       25265 0.0043478261 0.0000000000 0.0000000000 0.0000000000
## 177       25326 0.3333333333 0.0000000000 0.3333333333 0.3333333333
## 178       25431 0.0003691399 0.0000000000 0.0000000000 0.0000000000
## 179       25656 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180       26037 0.0035714286 0.0107142857 0.0035714286 0.0000000000
## 181       26152 0.0004474273 0.0000000000 0.0000000000 0.0002237136
## 182       26196 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 183       26345 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184       26719 0.6666666667 0.0000000000 0.0000000000 0.0000000000
## 185       26964 0.0004576659 0.0000000000 0.0000000000 0.0000000000
## 186       26984 0.0009041591 0.0000000000 0.0000000000 0.0009041591
## 187       27001 0.0175438596 0.0000000000 0.0000000000 0.0000000000
## 188       27090 0.0022271715 0.0000000000 0.0022271715 0.0000000000
## 189       27228 0.0021505376 0.0000000000 0.0000000000 0.0000000000
## 190       27418 0.0042016807 0.0000000000 0.0000000000 0.0000000000
## 191       27456 0.0156250000 0.0000000000 0.0000000000 0.0000000000
## 192       27651 0.0007451565 0.0000000000 0.0022354694 0.0014903130
## 193       27659 0.0046728972 0.0000000000 0.0000000000 0.0000000000
## 194       27802 0.0087336245 0.0000000000 0.0000000000 0.0000000000
## 195       28009 0.0111111111 0.0000000000 0.0222222222 0.0000000000
## 196       28326 0.1250000000 0.0000000000 0.5000000000 0.2500000000
## 197       28387 0.0057915058 0.0038610039 0.0000000000 0.0000000000
## 198       28423 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 199       28432 0.2500000000 0.0000000000 0.2500000000 0.0000000000
## 200       28457 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201       28491 0.0021929825 0.0000000000 0.0021929825 0.0000000000
## 202       28526 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 203       28782 0.0533333333 0.0000000000 0.0000000000 0.0133333333
## 204       28798 0.0038022814 0.0076045627 0.0000000000 0.0038022814
## 205       28922 0.0005837712 0.0000000000 0.0000000000 0.0005837712
## 206       29359 0.0161290323 0.0000000000 0.0023041475 0.0000000000
## 207       29477 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 208       29549 0.0112359551 0.0056179775 0.0224719101 0.0000000000
## 209       29719 0.3333333333 0.3333333333 0.0000000000 0.3333333333
## 210       29877 0.2000000000 0.0000000000 0.2000000000 0.2000000000
## 211       29911 0.2000000000 0.2000000000 0.0000000000 0.0000000000
## 212       30022 0.5000000000 0.5000000000 0.0000000000 0.0000000000
## 213       30305 0.0023696682 0.0000000000 0.0000000000 0.0000000000
## 214       30515 0.0270270270 0.0000000000 0.0000000000 0.0000000000
## 215       30614 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 216       30831 0.0174418605 0.0000000000 0.0000000000 0.0058139535
## 217       30854 0.0097087379 0.0000000000 0.0000000000 0.0000000000
## 218       31175 0.0071428571 0.0000000000 0.0000000000 0.0071428571
## 219       31322 0.0645161290 0.0000000000 0.0322580645 0.0000000000
## 220       31444 0.1153846154 0.0096153846 0.0000000000 0.0000000000
## 221       31513 0.0063694268 0.0000000000 0.0000000000 0.0000000000
## 222       31775 0.0005216484 0.0000000000 0.0000000000 0.0005216484
## 223       31832 0.0045662100 0.0000000000 0.0000000000 0.0000000000
## 224       31906 0.0909090909 0.9090909091 0.0000000000 0.0000000000
## 225       32019 0.0019011407 0.0000000000 0.0000000000 0.0000000000
## 226       32065 0.0526315789 0.0000000000 0.0000000000 0.0526315789
## 227       32245 0.0259740260 0.0129870130 0.0259740260 0.0000000000
## 228       32254 0.0285714286 0.0000000000 0.0095238095 0.0000000000
## 229       32290 0.0057208238 0.0000000000 0.0011441648 0.0045766590
## 230       32341 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231       32374 0.0001978631 0.0001978631 0.0000000000 0.0000000000
## 232       32680 0.0054644809 0.0000000000 0.0000000000 0.0054644809
## 233       32794 0.0123456790 0.0000000000 0.0123456790 0.0000000000
## 234       33142 0.0034168565 0.0000000000 0.0000000000 0.0000000000
## 235       33180 0.0015151515 0.0000000000 0.0000000000 0.0000000000
## 236       33523 0.0003137747 0.0000000000 0.0000000000 0.0000000000
## 237       33622 0.0009460738 0.0000000000 0.0000000000 0.0000000000
## 238       33816 0.0010157440 0.0000000000 0.0000000000 0.0005078720
## 239       33821 0.0018587361 0.0000000000 0.0000000000 0.0018587361
## 240       33982 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 241       33996 0.0096153846 0.0000000000 0.0000000000 0.0000000000
## 242       34040 0.0018248175 0.0000000000 0.0009124088 0.0000000000
## 243       34360 0.0119047619 0.0000000000 0.0000000000 0.0039682540
## 244       34471 0.0050632911 0.0000000000 0.0000000000 0.0000000000
## 245       34633 0.0088235294 0.0000000000 0.0147058824 0.0000000000
## 246       34675 0.0014556041 0.0029112082 0.0000000000 0.0000000000
## 247       34692 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 248       34787 0.0028735632 0.0000000000 0.0028735632 0.0000000000
## 249       34889 0.0086956522 0.0000000000 0.0000000000 0.0086956522
## 250       35221 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 251       35250 0.0089285714 0.0000000000 0.0000000000 0.0000000000
## 252       35304 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 253       35340 0.0156250000 0.0000000000 0.0000000000 0.0000000000
## 254       35617 0.0136986301 0.0000000000 0.0000000000 0.0000000000
## 255       35828 0.0153846154 0.0000000000 0.0000000000 0.0000000000
## 256       35862 0.0108695652 0.0108695652 0.0000000000 0.0000000000
## 257       35917 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 258       36059 0.0263157895 0.0000000000 0.0000000000 0.0263157895
## 259       36230 0.1159420290 0.0144927536 0.0000000000 0.0000000000
## 260       36318 0.0096153846 0.0000000000 0.0000000000 0.0000000000
## 261       36349 0.0333333333 0.0166666667 0.0000000000 0.0000000000
## 262       36404 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 263       36419 0.0151515152 0.0151515152 0.0000000000 0.0000000000
## 264       36587 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 265       37533 0.0022573363 0.0022573363 0.0000000000 0.0000000000
## 266       37535 0.0060975610 0.0000000000 0.0000000000 0.0000000000
## 267       37751 0.0008648025 0.0000000000 0.0000000000 0.0000000000
## 268       38152 0.0033407572 0.0011135857 0.0000000000 0.0000000000
## 269       38227 0.0147058824 0.0000000000 0.0147058824 0.0000000000
## 270       38597 0.0076923077 0.0000000000 0.0000000000 0.0000000000
## 271       38598 0.0121951220 0.0000000000 0.0000000000 0.0000000000
## 272       38624 0.0190476190 0.0000000000 0.0000000000 0.0000000000
## 273       38635 0.0070921986 0.0070921986 0.0000000000 0.0000000000
## 274       38646 0.0078125000 0.0078125000 0.0000000000 0.0000000000
## 275       38658 0.0169491525 0.0000000000 0.0000000000 0.0000000000
## 276       38659 0.0072463768 0.0000000000 0.0000000000 0.0072463768
## 277       39002 0.0136718750 0.0039062500 0.0000000000 0.0000000000
## 278       39311 0.0047095761 0.0000000000 0.0000000000 0.0000000000
## 279       39751 0.0100000000 0.0000000000 0.0000000000 0.0000000000
## 280       39770 0.0081967213 0.0081967213 0.0000000000 0.0000000000
## 281       40177 0.0126582278 0.0126582278 0.0126582278 0.0000000000
## 282       40360 0.2222222222 0.0000000000 0.0000000000 0.0000000000
## 283       40450 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 284       40754 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 285       40913 0.0384615385 0.0000000000 0.0000000000 0.0384615385
## 286       41015 0.0500000000 0.0000000000 0.0000000000 0.0500000000
## 287       41271 0.0909090909 0.0000000000 0.0000000000 0.0909090909
## 288       41274 0.0769230769 0.0000000000 0.0000000000 0.0769230769
## 289       41276 0.1111111111 0.0000000000 0.0000000000 0.1111111111
## 290       41383 0.0151515152 0.0000000000 0.0000000000 0.0000000000
## 291       41491 0.0434782609 0.0000000000 0.0000000000 0.0434782609
## 292       41504 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 293       41778 0.0714285714 0.0000000000 0.0000000000 0.0714285714
## 294       41848 0.0192307692 0.0192307692 0.0000000000 0.0000000000
## 295       42282 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 296       42812 0.0131578947 0.0000000000 0.0131578947 0.0000000000
## 297       42877 0.1063829787 0.0000000000 0.0000000000 0.0000000000
## 298       43195 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299       43374 0.0434782609 0.0000000000 0.0000000000 0.0434782609
## 300       43659 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 301       43866 0.0040540541 0.0000000000 0.0013513514 0.0000000000
## 302       44408 0.0370370370 0.0000000000 0.0000000000 0.0000000000
## 303       44672 0.0224719101 0.0000000000 0.0000000000 0.0000000000
## 304       44831 0.0096153846 0.0096153846 0.0000000000 0.0000000000
## 305       45185 0.0097087379 0.0048543689 0.0097087379 0.0000000000
## 306       45330 0.0005537099 0.0005537099 0.0005537099 0.0000000000
## 307       45652 0.0048780488 0.0000000000 0.0000000000 0.0000000000
## 308       46120 0.0508474576 0.0000000000 0.0000000000 0.0000000000
## 309       46931 0.0157480315 0.0000000000 0.0000000000 0.0000000000
## 310       47052 0.3333333333 0.3333333333 0.0000000000 0.0000000000
## 311       47595 0.0008326395 0.0000000000 0.0016652789 0.0000000000
## 312       47702 0.0007022472 0.0000000000 0.0000000000 0.0000000000
## 313       47902 0.2000000000 0.0000000000 0.2000000000 0.0000000000
## 314       48352 0.0056497175 0.0000000000 0.0000000000 0.0000000000
## 315       48653 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 316       48836 0.0039682540 0.0000000000 0.0000000000 0.0000000000
## 317       48876 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318       48897 0.0019801980 0.0000000000 0.0000000000 0.0000000000
## 319       48906 0.0081300813 0.0000000000 0.0000000000 0.0000000000
## 320       48969 0.0042826552 0.0000000000 0.0000000000 0.0000000000
## 321       49443 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 322       49460 0.0555555556 0.0000000000 0.0000000000 0.0000000000
## 323       50027 0.0042918455 0.0000000000 0.0000000000 0.0000000000
## 324       50230 0.0312500000 0.0104166667 0.0000000000 0.0000000000
## 325       50359 0.0851063830 0.0000000000 0.0000000000 0.0000000000
## 326       50411 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327       50458 0.0065359477 0.0000000000 0.0000000000 0.0000000000
## 328       50676 0.1120000000 0.0000000000 0.0160000000 0.0000000000
## 329       50677 0.0013986014 0.0000000000 0.0000000000 0.0000000000
## 330       50682 0.0555555556 0.0000000000 0.0000000000 0.0000000000
## 331       50693 0.0085470085 0.0000000000 0.0000000000 0.0000000000
## 332       50778 0.0007645260 0.0030581040 0.0007645260 0.0000000000
## 333       50874 0.0058479532 0.0000000000 0.0000000000 0.0000000000
## 334       51273 0.0026490066 0.0013245033 0.0000000000 0.0000000000
## 335       51303 0.0328947368 0.0000000000 0.0065789474 0.0000000000
## 336       51483 0.0026525199 0.0000000000 0.0000000000 0.0000000000
## 337       51611 0.0033333333 0.0022222222 0.0000000000 0.0000000000
## 338       51664 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 339       52368 0.4000000000 0.0000000000 0.0000000000 0.0000000000
## 340       52495 0.0028169014 0.0000000000 0.0056338028 0.0000000000
## 341       53036 0.0050590219 0.0000000000 0.0118043845 0.0033726813
## 342       53159 0.0151515152 0.0000000000 0.0000000000 0.0151515152
## 343       53253 0.0137741047 0.0000000000 0.0000000000 0.0000000000
## 344       53500 0.8000000000 0.0000000000 0.0000000000 0.0000000000
## 345       53512 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 346       53555 0.0243902439 0.0000000000 0.0121951220 0.0000000000
## 347       54136 0.0047393365 0.0000000000 0.0000000000 0.0142180095
## 348       54175 0.0081521739 0.0000000000 0.0000000000 0.0000000000
## 349       55688 0.0055248619 0.0000000000 0.0027624309 0.0000000000
## 350       55766 0.0263157895 0.0000000000 0.0000000000 0.0263157895
## 351       55832 0.0021881838 0.0000000000 0.0000000000 0.0000000000
## 352       55858 0.3333333333 0.0000000000 0.6666666667 0.0000000000
## 353       56007 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354       56588 0.0080000000 0.0000000000 0.0000000000 0.0000000000
## 355       56617 0.0137931034 0.0000000000 0.0000000000 0.0000000000
## 356       56633 0.0150375940 0.0000000000 0.0000000000 0.0000000000
## 357       57111 0.0620689655 0.0000000000 0.0000000000 0.0068965517
## 358       57602 0.0045454545 0.0000000000 0.0000000000 0.0000000000
## 359       57642 0.5000000000 0.0000000000 0.5000000000 0.0000000000
## 360       57843 0.0038363171 0.0000000000 0.0000000000 0.0000000000
## 361       57993 0.0097087379 0.0000000000 0.0000000000 0.0036407767
## 362       58116 0.0065789474 0.0000000000 0.0131578947 0.0065789474
## 363       58410 0.0003828484 0.0000000000 0.0000000000 0.0030627871
## 364       58495 0.0153846154 0.0000000000 0.0000000000 0.0051282051
## 365       58597 0.2380952381 0.0000000000 0.0000000000 0.0000000000
## 366       58603 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367       58644 0.0041322314 0.0082644628 0.0020661157 0.0041322314
## 368       59156 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 369       59215 0.2222222222 0.0000000000 0.0000000000 0.0000000000
## 370       59256 0.2857142857 0.2857142857 0.1428571429 0.1428571429
## 371       59370 0.0256410256 0.0000000000 0.0256410256 0.0000000000
## 372       59399 0.0129449838 0.0000000000 0.0000000000 0.0000000000
## 373       59405 0.0444444444 0.0000000000 0.0000000000 0.0000000000
## 374       59496 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375       59551 0.0011185682 0.0011185682 0.0022371365 0.0000000000
## 376       59592 0.0064102564 0.0000000000 0.0000000000 0.0000000000
## 377       59604 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 378       59771 0.0063291139 0.0000000000 0.0000000000 0.0000000000
## 379       59906 0.0028129395 0.0014064698 0.0000000000 0.0014064698
## 380       59926 0.0066225166 0.0000000000 0.0000000000 0.0000000000
## 381       60199 0.2000000000 0.2000000000 0.0000000000 0.2000000000
## 382       60341 0.0018596002 0.0000000000 0.0004649000 0.0004649000
## 383       60383 0.0263157895 0.0000000000 0.0526315789 0.0000000000
## 384       60700 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 385       60891 0.0017421603 0.0000000000 0.0017421603 0.0000000000
## 386       61056 0.2941176471 0.0000000000 0.0588235294 0.0000000000
## 387       61157 0.0033898305 0.0033898305 0.0000000000 0.0033898305
## 388       61165 0.0198675497 0.0860927152 0.0198675497 0.0000000000
## 389       61322 0.0010111223 0.0000000000 0.0030333670 0.0000000000
## 390       61480 0.0363636364 0.0000000000 0.0000000000 0.0000000000
## 391       61700 0.0055248619 0.0000000000 0.0000000000 0.0055248619
## 392       61769 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393       61788 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 394       61829 0.0158730159 0.0079365079 0.0039682540 0.0000000000
## 395       61855 0.0070721358 0.0014144272 0.0000000000 0.0056577086
## 396       62085 0.0178571429 0.0000000000 0.0000000000 0.0000000000
## 397       62125 0.0014992504 0.0014992504 0.0000000000 0.0000000000
## 398       62305 0.0869565217 0.0000000000 0.0000000000 0.0000000000
## 399       62479 0.0048000000 0.0064000000 0.0080000000 0.0016000000
## 400       62743 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 401       63295 0.6000000000 0.0000000000 0.4000000000 0.0000000000
## 402       63328 0.0070671378 0.0000000000 0.0070671378 0.0000000000
## 403       63531 0.0030627871 0.0030627871 0.0000000000 0.0015313936
## 404       63630 0.0053191489 0.0000000000 0.0000000000 0.0000000000
## 405       63658 0.0113636364 0.0000000000 0.0000000000 0.0000000000
## 406       63916 0.6428571429 0.0714285714 0.0714285714 0.0714285714
## 407       64382 0.4000000000 0.0000000000 0.2000000000 0.0000000000
## 408       64523 0.0100502513 0.0050251256 0.0000000000 0.0050251256
## 409       64669 0.0119047619 0.0238095238 0.0000000000 0.0000000000
## 410       65128 0.0285714286 0.0285714286 0.0000000000 0.0000000000
## 411       65141 0.0064294899 0.0008572653 0.0000000000 0.0012858980
## 412       65236 0.0113636364 0.0113636364 0.0000000000 0.0000000000
## 413       65432 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 414       65734 0.0018231541 0.0000000000 0.0009115770 0.0009115770
## 415       65829 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416       65840 0.0046082949 0.0000000000 0.0000000000 0.0000000000
## 417       65852 0.2000000000 0.0000000000 0.0666666667 0.2000000000
## 418       66054 0.0044943820 0.0067415730 0.0134831461 0.0022471910
## 419       66380 0.0166666667 0.0000000000 0.0000000000 0.0000000000
## 420       66524 0.0123966942 0.0000000000 0.0000000000 0.0061983471
## 421       66865 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 422       66886 0.0396825397 0.0000000000 0.0000000000 0.0079365079
## 423       67246 0.0298507463 0.0000000000 0.0000000000 0.0149253731
## 424       67287 0.0229885057 0.0229885057 0.0000000000 0.0000000000
## 425       67536 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426       67981 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 427       68029 0.0058207218 0.0023282887 0.0011641444 0.0000000000
## 428       68245 0.0350000000 0.0050000000 0.0000000000 0.0000000000
## 429       68386 0.1549295775 0.0000000000 0.0140845070 0.0000000000
## 430       68532 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 431       68545 0.0238095238 0.0000000000 0.0000000000 0.0000000000
## 432       68625 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 433       68726 0.0317460317 0.0079365079 0.0317460317 0.0158730159
## 434       69236 0.0070921986 0.0000000000 0.0000000000 0.0165484634
## 435       70147 0.1093750000 0.0000000000 0.0156250000 0.0000000000
## 436       70181 0.0390625000 0.0000000000 0.0000000000 0.0000000000
## 437       70218 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438       70350 0.0229007634 0.0000000000 0.0000000000 0.0000000000
## 439       70528 0.0392156863 0.0000000000 0.0000000000 0.0196078431
## 440       70659 0.0090090090 0.0000000000 0.0090090090 0.0000000000
## 441       70727 0.0638297872 0.0000000000 0.0000000000 0.0000000000
## 442       70887 0.0051282051 0.0000000000 0.0051282051 0.0102564103
## 443       71611 0.0526315789 0.0000000000 0.0000000000 0.0526315789
## 444       71788 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445       71975 0.0054644809 0.0000000000 0.0000000000 0.0000000000
## 446       72431 0.0545454545 0.0000000000 0.0181818182 0.0363636364
## 447       72677 0.0138888889 0.0138888889 0.0000000000 0.0000000000
## 448       72740 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 449       72758 0.0034602076 0.0121107266 0.0000000000 0.0000000000
## 450       72887 0.0015923567 0.0000000000 0.0015923567 0.0000000000
## 451       73016 0.0909090909 0.0000000000 0.0000000000 0.0303030303
## 452       73059 0.2000000000 0.0000000000 0.2000000000 0.0000000000
## 453       73463 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 454       74425 0.0142857143 0.0000000000 0.0000000000 0.0000000000
## 455       74510 0.0526315789 0.0000000000 0.0000000000 0.0526315789
## 456       75472 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 457       75773 0.0126984127 0.0095238095 0.0000000000 0.0000000000
## 458       76193 0.0131578947 0.0263157895 0.0000000000 0.0000000000
## 459       76492 0.0224719101 0.0112359551 0.0000000000 0.0000000000
## 460       76568 0.0029411765 0.0000000000 0.0029411765 0.0029411765
## 461       76929 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 462       77163 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 463       77368 0.0120481928 0.0361445783 0.0000000000 0.0000000000
## 464       77396 0.0102040816 0.0204081633 0.0000000000 0.0000000000
## 465       77414 0.0034843206 0.0139372822 0.0000000000 0.0000000000
## 466       77643 0.0312500000 0.0000000000 0.0000000000 0.0000000000
## 467       77845 0.3636363636 0.0000000000 0.0000000000 0.0909090909
## 468       77854 0.0072992701 0.0000000000 0.0145985401 0.0000000000
## 469       77894 0.0237154150 0.0039525692 0.0000000000 0.0000000000
## 470       78371 0.0070671378 0.0035335689 0.0106007067 0.0000000000
## 471       78713 0.0322580645 0.0000000000 0.0000000000 0.0000000000
## 472       78966 0.0129310345 0.0129310345 0.0000000000 0.0000000000
## 473       79374 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 474       79376 0.1714285714 0.0000000000 0.0000000000 0.0000000000
## 475       79533 0.0138888889 0.0000000000 0.0000000000 0.0000000000
## 476       79843 0.0352422907 0.0088105727 0.0000000000 0.0000000000
## 477       79866 0.7058823529 0.2352941176 0.0000000000 0.0588235294
## 478       80059 0.0571428571 0.0000000000 0.0000000000 0.0000000000
## 479       80225 0.0155038760 0.0000000000 0.0000000000 0.0000000000
## 480       80517 0.0714285714 0.0000000000 0.0000000000 0.0714285714
## 481       81492 0.0036231884 0.0072463768 0.0000000000 0.0000000000
## 482       81588 0.1818181818 0.0000000000 0.0000000000 0.0000000000
## 483       81928 0.0555555556 0.0000000000 0.0000000000 0.0000000000
## 484       82001 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 485       82160 0.0869565217 0.0000000000 0.0000000000 0.0000000000
## 486       82247 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487       82512 0.0079365079 0.0079365079 0.0000000000 0.0000000000
## 488       82972 0.1204819277 0.0000000000 0.0000000000 0.0000000000
## 489       83011 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 490       83133 0.0140845070 0.0000000000 0.0000000000 0.0000000000
## 491       83737 0.1000000000 0.0000000000 0.0000000000 0.0000000000
## 492       84217 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493       84227 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 494       84237 0.0023266636 0.0000000000 0.0000000000 0.0000000000
## 495       84306 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 496       84443 0.0229885057 0.0114942529 0.0000000000 0.0114942529
## 497       84573 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498       84600 0.0689655172 0.0000000000 0.0000000000 0.0000000000
## 499       84999 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 500       85158 0.0666666667 0.0000000000 0.0000000000 0.0000000000
## 501       85277 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502       85495 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 503       85694 0.0133333333 0.0044444444 0.0000000000 0.0000000000
## 504       86419 0.0017241379 0.0000000000 0.0000000000 0.0000000000
## 505       87179 0.0179211470 0.0000000000 0.0000000000 0.0011947431
## 506       87433 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 507       87682 0.0350877193 0.0000000000 0.0175438596 0.0000000000
## 508       87774 0.0018083183 0.0000000000 0.0000000000 0.0018083183
## 509       88011 0.0454545455 0.1363636364 0.0000000000 0.0000000000
## 510       88151 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511       88807 0.0074349442 0.0000000000 0.0000000000 0.0000000000
## 512       88915 0.0280373832 0.0280373832 0.0000000000 0.0093457944
## 513       88922 0.0206185567 0.0103092784 0.0103092784 0.0000000000
## 514       89061 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 515       90111 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 516       90270 0.0666666667 0.0000000000 0.0000000000 0.0000000000
## 517       90301 0.0625000000 0.0000000000 0.0000000000 0.0000000000
## 518       90323 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 519       90694 0.0266159696 0.0000000000 0.0000000000 0.0038022814
## 520       90850 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 521       91178 0.0612244898 0.0000000000 0.0204081633 0.0000000000
## 522       91203 0.0033333333 0.0033333333 0.0166666667 0.0000000000
## 523       91450 0.0204081633 0.0204081633 0.0000000000 0.0000000000
## 524       91547 0.0196078431 0.0196078431 0.0000000000 0.0000000000
## 525       91577 0.0181818182 0.0181818182 0.0000000000 0.0000000000
## 526       91608 0.0298507463 0.0149253731 0.0000000000 0.0000000000
## 527       91941 0.0126582278 0.0126582278 0.0126582278 0.0000000000
## 528       91982 0.0060240964 0.0060240964 0.0120481928 0.0000000000
## 529       91990 0.0103092784 0.0103092784 0.0000000000 0.0000000000
## 530       91991 0.0196078431 0.0196078431 0.0000000000 0.0000000000
## 531       92046 0.0303030303 0.0303030303 0.0303030303 0.0000000000
## 532       92265 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 533       92556 0.0038461538 0.0076923077 0.0038461538 0.0000000000
## 534       92788 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 535       93044 0.0144927536 0.0000000000 0.0000000000 0.0000000000
## 536       93208 0.0204081633 0.0000000000 0.0000000000 0.0000000000
## 537       93264 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 538       93388 0.0222222222 0.0000000000 0.0000000000 0.0000000000
## 539       93598 0.0222222222 0.0000000000 0.0000000000 0.0000000000
## 540       93660 0.0303030303 0.0000000000 0.0000000000 0.0000000000
## 541       93997 0.0142180095 0.0000000000 0.0000000000 0.0000000000
## 542       94567 0.0163934426 0.0000000000 0.0000000000 0.0000000000
## 543       94721 0.0172413793 0.0172413793 0.0000000000 0.0172413793
## 544       94849 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 545       94869 0.0769230769 0.0000000000 0.0000000000 0.0000000000
## 546       95088 0.0208333333 0.0000000000 0.0208333333 0.0000000000
## 547       95171 0.0093023256 0.0046511628 0.0000000000 0.0000000000
## 548       95287 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549       95476 0.0095238095 0.0000000000 0.0000000000 0.0000000000
## 550       95611 0.0204081633 0.0000000000 0.0000000000 0.0000000000
## 551       95701 0.0163934426 0.0000000000 0.0000000000 0.0000000000
## 552       96150 0.0212765957 0.0000000000 0.0000000000 0.0000000000
## 553       96242 0.0208333333 0.0000000000 0.0000000000 0.0000000000
## 554       96341 0.0169491525 0.0000000000 0.0000000000 0.0000000000
## 555       96348 0.0153846154 0.0000000000 0.0000000000 0.0000000000
## 556       96820 0.0153846154 0.0000000000 0.0000000000 0.0000000000
## 557       97092 0.0212765957 0.0141843972 0.0000000000 0.0000000000
## 558       97480 0.0222222222 0.0000000000 0.0222222222 0.0000000000
## 559       97659 0.0142857143 0.0000000000 0.0000000000 0.0000000000
## 560       98082 0.1052631579 0.0000000000 0.0000000000 0.0000000000
## 561       98200 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 562       98230 0.2222222222 0.0000000000 0.0000000000 0.0000000000
## 563       98543 0.0068807339 0.0000000000 0.0068807339 0.0000000000
## 564       98917 0.0487804878 0.0000000000 0.0000000000 0.0000000000
## 565       99177 0.1875000000 0.0000000000 0.0625000000 0.0000000000
## 566       99233 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 567       99740 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 568       99810 0.0370370370 0.0370370370 0.0000000000 0.0000000000
## 569       99955 0.0108695652 0.0018115942 0.0036231884 0.0018115942
## 570      100169 0.0062893082 0.0000000000 0.0000000000 0.0031446541
## 571      100563 0.0048076923 0.0000000000 0.0000000000 0.0000000000
## 572      100643 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 573      100646 0.1034482759 0.0000000000 0.0000000000 0.0000000000
## 574      100766 0.0095238095 0.0000000000 0.0000000000 0.0000000000
## 575      100987 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 576      100992 0.1200000000 0.0000000000 0.0000000000 0.0000000000
## 577      101015 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 578      101026 0.2142857143 0.0000000000 0.0000000000 0.0000000000
## 579      101073 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 580      101084 0.1071428571 0.0000000000 0.0000000000 0.0000000000
## 581      101793 0.1000000000 0.0000000000 0.0000000000 0.0000000000
## 582      101927 0.0178571429 0.0178571429 0.0000000000 0.0000000000
## 583      102047 0.0093023256 0.0000000000 0.0000000000 0.0046511628
## 584      102151 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 585      102298 0.0675000000 0.0025000000 0.0000000000 0.0000000000
## 586      102793 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 587      102797 0.0007905138 0.0000000000 0.0000000000 0.0000000000
## 588      102807 0.0468750000 0.0000000000 0.0000000000 0.0000000000
## 589      102965 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 590      103444 0.0133333333 0.0000000000 0.0000000000 0.0000000000
## 591      103454 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 592      103561 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 593      104202 0.0195272354 0.0051387461 0.0030832477 0.0020554985
## 594      104570 0.0344827586 0.0000000000 0.1034482759 0.0000000000
## 595      104594 0.0357142857 0.0000000000 0.1071428571 0.0000000000
## 596      104636 0.0344827586 0.0000000000 0.1034482759 0.0000000000
## 597      104669 0.0384615385 0.0000000000 0.1153846154 0.0000000000
## 598      104688 0.0144927536 0.0000000000 0.0434782609 0.0000000000
## 599      105251 0.0227272727 0.0000000000 0.0000000000 0.0000000000
## 600      105273 0.0270270270 0.0000000000 0.0540540541 0.0000000000
## 601      105692 0.0400000000 0.0000000000 0.0800000000 0.0000000000
## 602      106725 0.0384615385 0.0000000000 0.0769230769 0.0000000000
## 603      106832 0.0058139535 0.0000000000 0.0116279070 0.0000000000
## 604      106932 0.0384615385 0.0000000000 0.0769230769 0.0000000000
## 605      107157 0.0476190476 0.0000000000 0.0952380952 0.0000000000
## 606      107580 0.0333333333 0.0000000000 0.0666666667 0.0000000000
## 607      107582 0.0357142857 0.0000000000 0.0714285714 0.0000000000
## 608      107727 0.0039215686 0.0000000000 0.0078431373 0.0000000000
## 609      107896 0.0357142857 0.0357142857 0.0714285714 0.0000000000
## 610      107909 0.0136986301 0.0000000000 0.0273972603 0.0000000000
## 611      107927 0.0344827586 0.0000000000 0.0689655172 0.0000000000
## 612      108070 0.0322580645 0.0000000000 0.0645161290 0.0000000000
## 613      108175 0.0400000000 0.0000000000 0.0800000000 0.0000000000
## 614      108345 0.0072992701 0.0072992701 0.0072992701 0.0000000000
## 615      108371 0.0277777778 0.0000000000 0.0277777778 0.0000000000
## 616      108518 0.0192307692 0.0000000000 0.0192307692 0.0000000000
## 617      108905 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 618      109338 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 619      109350 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 620      109475 0.0083333333 0.0000000000 0.0083333333 0.0000000000
## 621      109493 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 622      109713 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 623      109785 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 624      109816 0.0196078431 0.0000000000 0.0196078431 0.0000000000
## 625      109844 0.0256410256 0.0000000000 0.0256410256 0.0000000000
## 626      109970 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 627      110017 0.0057803468 0.0000000000 0.0057803468 0.0000000000
## 628      110087 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 629      110148 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 630      110394 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 631      110774 0.0153846154 0.0000000000 0.0153846154 0.0000000000
## 632      110865 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 633      110988 0.0071428571 0.0000000000 0.0071428571 0.0000000000
## 634      110998 0.0227272727 0.0000000000 0.0227272727 0.0000000000
## 635      111035 0.0238095238 0.0000000000 0.0238095238 0.0000000000
## 636      111194 0.0102040816 0.0000000000 0.0204081633 0.0102040816
## 637      111273 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 638      111397 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 639      111424 0.0312500000 0.0000000000 0.0312500000 0.0000000000
## 640      111425 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 641      111723 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 642      111746 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 643      111807 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 644      111868 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 645      112147 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 646      112272 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 647      112279 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 648      112417 0.0050761421 0.0000000000 0.0050761421 0.0000000000
## 649      112489 0.0370370370 0.0740740741 0.0370370370 0.0000000000
## 650      112550 0.0040816327 0.0000000000 0.0040816327 0.0000000000
## 651      112635 0.0178571429 0.0000000000 0.0178571429 0.0000000000
## 652      112672 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 653      112917 0.0689655172 0.0000000000 0.0344827586 0.0000000000
## 654      113070 0.0127551020 0.0025510204 0.0012755102 0.0025510204
## 655      113093 0.1106557377 0.0000000000 0.0000000000 0.0000000000
## 656      113214 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657      113323 0.0129870130 0.0000000000 0.0000000000 0.0000000000
## 658      113416 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 659      113904 0.0083333333 0.0000000000 0.0083333333 0.0000000000
## 660      114000 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 661      114025 0.0104166667 0.0000000000 0.0104166667 0.0000000000
## 662      114185 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 663      114222 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 664      114449 0.0071942446 0.0000000000 0.0071942446 0.0000000000
## 665      114496 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 666      114546 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 667      114804 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 668      114873 0.0303030303 0.0000000000 0.0303030303 0.0000000000
## 669      115027 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 670      115107 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 671      115482 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 672      115590 0.0294117647 0.0000000000 0.0294117647 0.0000000000
## 673      115605 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 674      115725 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 675      115772 0.0136986301 0.0000000000 0.0136986301 0.0000000000
## 676      115904 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 677      115909 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 678      115948 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 679      116042 0.0208333333 0.0000000000 0.0208333333 0.0000000000
## 680      116160 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 681      116195 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 682      116198 0.0625000000 0.0000000000 0.0625000000 0.0000000000
## 683      116254 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 684      116321 0.0294117647 0.0000000000 0.0294117647 0.0000000000
## 685      116346 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 686      116351 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 687      116420 0.0065359477 0.0000000000 0.0065359477 0.0000000000
## 688      116449 0.0037593985 0.0000000000 0.0037593985 0.0000000000
## 689      116477 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 690      116509 0.0270270270 0.0000000000 0.0270270270 0.0000000000
## 691      116523 0.0196078431 0.0000000000 0.0196078431 0.0000000000
## 692      116653 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 693      117081 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 694      117120 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 695      117201 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 696      117661 0.0086206897 0.0000000000 0.0086206897 0.0000000000
## 697      117710 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 698      117876 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699      117903 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 700      117954 0.0129870130 0.0000000000 0.0129870130 0.0000000000
## 701      117970 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 702      118015 0.0128205128 0.0000000000 0.0128205128 0.0000000000
## 703      118142 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 704      118489 0.0238095238 0.0000000000 0.0000000000 0.0000000000
## 705      118506 0.0270270270 0.0000000000 0.0000000000 0.0000000000
## 706      118665 0.0303030303 0.0000000000 0.0000000000 0.0000000000
## 707      118724 0.0370370370 0.0370370370 0.0000000000 0.0000000000
## 708      118751 0.0263157895 0.0000000000 0.0000000000 0.0000000000
## 709      118758 0.0294117647 0.0000000000 0.0000000000 0.0000000000
## 710      118798 0.0020449898 0.0000000000 0.0020449898 0.0000000000
## 711      118891 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 712      119129 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 713      119188 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 714      119240 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 715      119314 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 716      119334 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 717      119346 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 718      119380 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 719      119554 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 720      119709 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 721      119787 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 722      120301 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 723      120363 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 724      120421 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 725      120479 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 726      120626 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 727      120634 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 728      120798 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 729      121185 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 730      121207 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 731      121409 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 732      121443 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 733      121453 0.0196078431 0.0000000000 0.0196078431 0.0000000000
## 734      121659 0.0227272727 0.0000000000 0.0227272727 0.0000000000
## 735      121739 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 736      121945 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 737      121999 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 738      122189 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 739      122268 0.0181818182 0.0000000000 0.0181818182 0.0000000000
## 740      122419 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 741      122428 0.0322580645 0.0000000000 0.0322580645 0.0000000000
## 742      122465 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 743      122506 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 744      122586 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 745      123042 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 746      123157 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 747      123219 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 748      123546 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 749      123589 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 750      123608 0.0270270270 0.0000000000 0.0270270270 0.0000000000
## 751      123923 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 752      123944 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 753      124003 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 754      124104 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 755      124239 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 756      124711 0.0086956522 0.0000000000 0.0086956522 0.0000000000
## 757      124863 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 758      124926 0.0144927536 0.0000000000 0.0144927536 0.0000000000
## 759      124973 0.0056818182 0.0000000000 0.0056818182 0.0000000000
## 760      124974 0.0096153846 0.0000000000 0.0096153846 0.0000000000
## 761      125003 0.0123456790 0.0000000000 0.0123456790 0.0000000000
## 762      125130 0.0178571429 0.0000000000 0.0178571429 0.0000000000
## 763      125146 0.0081300813 0.0000000000 0.0081300813 0.0000000000
## 764      125933 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 765      126036 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 766      126053 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 767      126084 0.0080000000 0.0000000000 0.0080000000 0.0000000000
## 768      126399 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 769      126449 0.0116279070 0.0000000000 0.0116279070 0.0000000000
## 770      126463 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 771      126523 0.0243902439 0.0000000000 0.0243902439 0.0000000000
## 772      126544 0.0128205128 0.0128205128 0.0000000000 0.0000000000
## 773      126751 0.0033783784 0.0000000000 0.0033783784 0.0000000000
## 774      127046 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 775      127060 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 776      127200 0.0625000000 0.0000000000 0.0625000000 0.0000000000
## 777      127268 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 778      127284 0.0322580645 0.0000000000 0.0322580645 0.0000000000
## 779      127307 0.0277777778 0.0000000000 0.0277777778 0.0000000000
## 780      127385 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 781      127447 0.0128205128 0.0000000000 0.0128205128 0.0000000000
## 782      127472 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 783      127829 0.0101010101 0.0000000000 0.0101010101 0.0000000000
## 784      127913 0.0212765957 0.0000000000 0.0212765957 0.0000000000
## 785      128179 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 786      128236 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 787      128473 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 788      128792 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 789      128868 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 790      128948 0.0032154341 0.0000000000 0.0032154341 0.0000000000
## 791      129330 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 792      129350 0.0476190476 0.0000000000 0.0476190476 0.0000000000
## 793      129434 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 794      129508 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 795      129694 0.0055865922 0.0000000000 0.0055865922 0.0000000000
## 796      129867 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 797      130085 0.0303030303 0.0000000000 0.0303030303 0.0000000000
## 798      130201 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 799      130292 0.0227272727 0.0000000000 0.0227272727 0.0000000000
## 800      130326 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 801      130418 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 802      130658 0.0322580645 0.0000000000 0.0322580645 0.0000000000
## 803      130780 0.0263157895 0.0000000000 0.0000000000 0.0263157895
## 804      130805 0.0277777778 0.0000000000 0.0000000000 0.0000000000
## 805      130928 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 806      131147 0.1666666667 0.0000000000 0.1666666667 0.0000000000
## 807      131405 0.0588235294 0.0000000000 0.0588235294 0.0000000000
## 808      131500 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 809      131512 0.0185185185 0.0000000000 0.0185185185 0.0000000000
## 810      131583 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 811      131653 0.0294117647 0.0000000000 0.0294117647 0.0000000000
## 812      131742 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 813      132176 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 814      132218 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 815      132368 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 816      132488 0.0160000000 0.0080000000 0.0080000000 0.0000000000
## 817      132569 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 818      132769 0.1000000000 0.0000000000 0.1000000000 0.0000000000
## 819      133013 0.0270270270 0.0000000000 0.0270270270 0.0000000000
## 820      133106 0.0294117647 0.0000000000 0.0294117647 0.0000000000
## 821      133141 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 822      133274 0.1111111111 0.0000000000 0.1111111111 0.0000000000
## 823      133435 0.5000000000 0.0000000000 0.5000000000 0.0000000000
## 824      133547 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 825      133848 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 826      134046 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 827      134086 0.0094339623 0.0000000000 0.0094339623 0.0000000000
## 828      134159 0.0625000000 0.0000000000 0.0625000000 0.0000000000
## 829      134191 0.0625000000 0.0000000000 0.0625000000 0.0000000000
## 830      134251 0.0526315789 0.0000000000 0.0526315789 0.0000000000
## 831      134302 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 832      134449 0.0192307692 0.0000000000 0.0384615385 0.0000000000
## 833      134458 0.0666666667 0.1333333333 0.0666666667 0.0000000000
## 834      134459 0.0153846154 0.0000000000 0.0153846154 0.0000000000
## 835      135029 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 836      135260 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 837      135329 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 838      135369 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 839      135566 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 840      135569 0.0277777778 0.0000000000 0.0277777778 0.0000000000
## 841      135636 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 842      135806 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 843      135901 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 844      136082 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 845      136182 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 846      136208 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 847      136469 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 848      136539 0.0119047619 0.0000000000 0.0119047619 0.0000000000
## 849      136666 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 850      136681 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 851      136735 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 852      137196 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 853      137247 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 854      137430 0.0256410256 0.0000000000 0.0256410256 0.0000000000
## 855      137575 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 856      137654 0.0142857143 0.0000000000 0.0142857143 0.0000000000
## 857      137689 0.0526315789 0.0526315789 0.0526315789 0.0000000000
## 858      137736 0.0588235294 0.0000000000 0.0588235294 0.0000000000
## 859      137891 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 860      137896 0.0027173913 0.0000000000 0.0018115942 0.0000000000
## 861      138192 0.0037037037 0.0000000000 0.0037037037 0.0000000000
## 862      138388 0.0312500000 0.0000000000 0.0312500000 0.0000000000
## 863      138559 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 864      138742 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 865      138828 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 866      138997 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 867      139002 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 868      139086 0.0095238095 0.0000000000 0.0095238095 0.0000000000
## 869      139110 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 870      139415 0.0098039216 0.0000000000 0.0098039216 0.0000000000
## 871      139439 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 872      139598 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 873      139615 0.0256410256 0.0000000000 0.0256410256 0.0000000000
## 874      139693 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 875      139986 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 876      140144 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 877      140218 0.0588235294 0.0000000000 0.0588235294 0.0000000000
## 878      140223 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 879      140371 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 880      140637 0.0645161290 0.0000000000 0.0000000000 0.0000000000
## 881      140661 0.0171428571 0.0114285714 0.0057142857 0.0171428571
## 882      140672 0.0018796992 0.0000000000 0.0000000000 0.0037593985
## 883      141356 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 884      141430 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 885      141457 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 886      141469 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 887      141476 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 888      141593 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 889      141757 0.0030674847 0.0000000000 0.0000000000 0.0000000000
## 890      142391 0.1428571429 0.0357142857 0.0357142857 0.0000000000
## 891      142447 0.0070671378 0.0000000000 0.0000000000 0.0035335689
## 892      142760 0.0967741935 0.0000000000 0.0000000000 0.0000000000
## 893      143265 0.6666666667 0.0000000000 0.0000000000 0.0000000000
## 894      143289 0.0857142857 0.0000000000 0.0000000000 0.0000000000
## 895      143475 0.0080645161 0.0000000000 0.0040322581 0.0000000000
## 896      143479 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 897      143580 0.0697674419 0.0000000000 0.0000000000 0.0000000000
## 898      143981 0.4545454545 0.0000000000 0.0000000000 0.0000000000
## 899      144264 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 900      144318 0.0571428571 0.0000000000 0.0000000000 0.0000000000
## 901      144490 0.7500000000 0.0000000000 0.0000000000 0.0000000000
## 902      144685 0.0253164557 0.0000000000 0.0000000000 0.0000000000
## 903      144766 0.2448979592 0.0000000000 0.0204081633 0.0204081633
## 904      145072 0.0356083086 0.0000000000 0.0000000000 0.0000000000
## 905      145309 0.0634920635 0.0000000000 0.0000000000 0.0000000000
## 906      145439 0.0019588639 0.0000000000 0.0000000000 0.0000000000
## 907      145541 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908      145790 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909      145844 0.0266666667 0.0000000000 0.0000000000 0.0133333333
## 910      146000 0.0057803468 0.0028901734 0.0028901734 0.0028901734
## 911      146949 0.0086206897 0.0000000000 0.0000000000 0.0000000000
## 912      147117 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913      147237 0.0089285714 0.0089285714 0.0000000000 0.0000000000
## 914      147425 0.6666666667 0.0000000000 0.0000000000 0.1666666667
## 915      147632 0.0034305317 0.0000000000 0.0017152659 0.0000000000
## 916      147722 0.0588235294 0.0000000000 0.0000000000 0.0000000000
## 917      147775 0.0869565217 0.0000000000 0.0000000000 0.0000000000
## 918      148208 0.1000000000 0.4000000000 0.1000000000 0.0000000000
## 919      148223 0.0085470085 0.0000000000 0.0000000000 0.0000000000
## 920      148243 0.1363636364 0.0000000000 0.0000000000 0.0000000000
## 921      148323 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922      148683 0.0090090090 0.0000000000 0.0000000000 0.0000000000
## 923      148846 0.0206185567 0.0515463918 0.0000000000 0.0000000000
## 924      149134 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 925      149240 0.0023041475 0.0000000000 0.0000000000 0.0000000000
## 926      149294 0.0250000000 0.0000000000 0.0000000000 0.0000000000
## 927      150207 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 928      150400 0.0250000000 0.0250000000 0.0000000000 0.0000000000
## 929      150518 0.1111111111 0.1111111111 0.0000000000 0.0000000000
## 930      150582 0.0166666667 0.0000000000 0.0125000000 0.0041666667
## 931      150594 0.1000000000 0.1000000000 0.0000000000 0.0000000000
## 932      150694 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 933      150753 0.0294117647 0.0294117647 0.0000000000 0.0000000000
## 934      150807 0.0384615385 0.0384615385 0.0000000000 0.0000000000
## 935      150811 0.0666666667 0.0666666667 0.0000000000 0.0000000000
## 936      150841 0.0416666667 0.0416666667 0.0000000000 0.0000000000
## 937      151006 0.0454545455 0.0454545455 0.0000000000 0.0000000000
## 938      151088 0.0022321429 0.0022321429 0.0000000000 0.0000000000
## 939      151222 0.0026595745 0.0026595745 0.0000000000 0.0000000000
## 940      151268 0.0434782609 0.0434782609 0.0000000000 0.0000000000
## 941      151351 0.0104166667 0.0312500000 0.0000000000 0.0000000000
## 942      151408 0.0212765957 0.0283687943 0.0000000000 0.0000000000
## 943      151439 0.0263157895 0.0000000000 0.0000000000 0.0000000000
## 944      151503 0.0186915888 0.0000000000 0.0000000000 0.0000000000
## 945      151606 0.0047169811 0.0047169811 0.0000000000 0.0000000000
## 946      151992 0.0070175439 0.0000000000 0.0000000000 0.0000000000
## 947      152119 0.0084033613 0.0000000000 0.0000000000 0.0000000000
## 948      153229 0.0227272727 0.0227272727 0.0000000000 0.0000000000
## 949      153472 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 950      154020 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951      154170 0.0210084034 0.0042016807 0.0000000000 0.0000000000
## 952      154350 0.0256410256 0.0000000000 0.0000000000 0.0000000000
## 953      154382 0.0615384615 0.0000000000 0.0000000000 0.0000000000
## 954      154568 0.2000000000 0.0000000000 0.0000000000 0.0285714286
## 955      155145 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 956      155410 0.0591715976 0.0000000000 0.0000000000 0.0000000000
## 957      155439 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958      156089 0.0430107527 0.0000000000 0.0000000000 0.0000000000
## 959      156095 0.0259740260 0.0000000000 0.0194805195 0.0000000000
## 960      156123 0.0048192771 0.0000000000 0.0000000000 0.0000000000
## 961      156602 0.0253807107 0.0000000000 0.0000000000 0.0000000000
## 962      156780 0.0317460317 0.0000000000 0.0000000000 0.0000000000
## 963      157112 0.1842105263 0.0000000000 0.0000000000 0.0000000000
## 964      157154 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965      157538 0.0082644628 0.0000000000 0.0000000000 0.0000000000
## 966      157636 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 967      157715 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 968      157906 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 969      157987 0.0181818182 0.0000000000 0.0000000000 0.0000000000
## 970      158358 0.0036630037 0.0000000000 0.0000000000 0.0000000000
## 971      158795 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972      158866 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973      159499 0.0294117647 0.0294117647 0.0000000000 0.0000000000
## 974      159617 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975      159744 0.0043478261 0.0021739130 0.0000000000 0.0000000000
## 976      159799 0.0392156863 0.0000000000 0.0000000000 0.0000000000
## 977      159864 0.0170454545 0.0056818182 0.0028409091 0.0000000000
## 978      161076 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 979      161186 0.4000000000 0.0000000000 0.0000000000 0.0000000000
## 980      161421 0.0121951220 0.0000000000 0.0000000000 0.0000000000
## 981      161653 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 982      161771 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 983      162371 0.0294117647 0.0073529412 0.0000000000 0.0000000000
## 984      162401 0.0142857143 0.0000000000 0.0000000000 0.0000000000
## 985      162565 0.0146750524 0.0062893082 0.0020964361 0.0083857442
## 986      162695 0.3333333333 0.6666666667 0.0000000000 0.0000000000
## 987      162864 0.0005948840 0.0000000000 0.0000000000 0.0017846520
## 988      162871 1.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989      163072 0.0070422535 0.0000000000 0.0000000000 0.0000000000
## 990      163466 0.0427350427 0.0170940171 0.0000000000 0.0000000000
## 991      182000 0.0001986097 0.0000000000 0.0001986097 0.0005958292
## 992      308577 0.0032679739 0.0000000000 0.0000000000 0.0000000000
## 993      623231 0.0038461538 0.0000000000 0.0000000000 0.0000000000
## 994     1795597 0.0015151515 0.0000000000 0.0000000000 0.0015151515
## 995     3687095 0.0103092784 0.0000000000 0.0000000000 0.0000000000
## 996     9969267 0.6666666667 0.0000000000 0.0000000000 0.0000000000
## 997    12505972 0.0011013216 0.0000000000 0.0000000000 0.0000000000
## 998    13472387 0.1666666667 0.0000000000 0.0000000000 0.0833333333
## 999    14099209 0.0090830450 0.0000000000 0.0000000000 0.0021626298
## 1000   14301875 0.0039525692 0.0000000000 0.0039525692 0.0000000000
##                 4            5            6            7            8
## 1    0.0014430014 0.0021645022 0.0036075036 0.0021645022 0.0000000000
## 2    0.0000000000 0.0000000000 0.0000000000 0.0131578947 0.0131578947
## 3    0.0000000000 0.0000000000 0.1250000000 0.0000000000 0.1250000000
## 4    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 5    0.0006238303 0.0000000000 0.0043668122 0.0000000000 0.0000000000
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0001851509 0.0000000000 0.0014812072 0.0014812072 0.0014812072
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0172413793 0.0000000000 0.0172413793 0.0517241379 0.0000000000
## 11   0.0007132668 0.0000000000 0.0007132668 0.0021398003 0.0007132668
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0000000000 0.0175438596 0.0000000000 0.0000000000
## 14   0.0083333333 0.0166666667 0.0000000000 0.0000000000 0.0000000000
## 15   0.0000000000 0.0000000000 0.0370370370 0.0000000000 0.0000000000
## 16   0.0000000000 0.0000000000 0.0322580645 0.0000000000 0.0000000000
## 17   0.0040160643 0.0000000000 0.0040160643 0.0000000000 0.0000000000
## 18   0.0000000000 0.0068965517 0.0000000000 0.0000000000 0.0000000000
## 19   0.0000000000 0.0500000000 0.0000000000 0.0000000000 0.0000000000
## 20   0.0035026270 0.0000000000 0.0000000000 0.0017513135 0.0000000000
## 21   0.0000000000 0.0070588235 0.0000000000 0.0000000000 0.0000000000
## 22   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 23   0.0000000000 0.0000000000 0.0000000000 0.0059880240 0.0019960080
## 24   0.0000000000 0.0067796610 0.0000000000 0.0000000000 0.0000000000
## 25   0.0000000000 0.1136363636 0.0227272727 0.0000000000 0.0000000000
## 26   0.0256410256 0.0000000000 0.0000000000 0.0000000000 0.0512820513
## 27   0.0000000000 0.0000000000 0.0057471264 0.0114942529 0.0057471264
## 28   0.0000000000 0.0039062500 0.0039062500 0.0000000000 0.0078125000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 31   0.0011587486 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 32   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 33   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 34   0.0012610340 0.0000000000 0.0000000000 0.0025220681 0.0000000000
## 35   0.0000000000 0.0029154519 0.0000000000 0.0029154519 0.0000000000
## 36   0.0108108108 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 37   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 38   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 39   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 40   0.0000000000 0.0000000000 0.0000000000 0.1428571429 0.0000000000
## 41   0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0000000000 0.0052356021 0.0000000000 0.0000000000
## 43   0.0000000000 0.0106382979 0.0000000000 0.0000000000 0.0000000000
## 44   0.0003390980 0.0013563920 0.0003390980 0.0010172940 0.0000000000
## 45   0.0000000000 0.0008818342 0.0008818342 0.0008818342 0.0026455026
## 46   0.0000000000 0.0000000000 0.0000000000 0.0013661202 0.0027322404
## 47   0.0000000000 0.0000000000 0.0028901734 0.0000000000 0.0000000000
## 48   0.0000000000 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0071942446 0.0035971223 0.0035971223 0.0000000000 0.0000000000
## 53   0.0000000000 0.0033444816 0.0000000000 0.0000000000 0.0000000000
## 54   0.0178571429 0.0000000000 0.0000000000 0.0000000000 0.0178571429
## 55   0.0050761421 0.0000000000 0.0000000000 0.0203045685 0.0101522843
## 56   0.0005146680 0.0015440041 0.0000000000 0.0005146680 0.0005146680
## 57   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 58   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 59   0.0000000000 0.0012755102 0.0000000000 0.0000000000 0.0000000000
## 60   0.0065789474 0.0394736842 0.0197368421 0.0000000000 0.0065789474
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 63   0.0000000000 0.0000000000 0.0059171598 0.0000000000 0.0000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 66   0.0000000000 0.0000000000 0.0000000000 0.0019193858 0.0000000000
## 67   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 68   0.0000000000 0.0000000000 0.2000000000 0.0000000000 0.0000000000
## 69   0.0007147963 0.0014295926 0.0007147963 0.0007147963 0.0014295926
## 70   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0227272727
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1666666667
## 72   0.0000000000 0.0000000000 0.0000000000 0.0161290323 0.0000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.8750000000
## 74   0.0005476451 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 75   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0002854696
## 76   0.0000000000 0.0000000000 0.0000000000 0.0018214936 0.0000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0000000000 0.0000000000 0.0000000000 0.0034364261 0.0068728522
## 79   0.0000000000 0.0000000000 0.0000000000 0.0035587189 0.0000000000
## 80   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0185185185
## 81   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 82   0.0000000000 0.0000000000 0.0638297872 0.0106382979 0.0000000000
## 83   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0014184397
## 84   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0035971223
## 85   0.0000000000 0.0000000000 0.0029850746 0.0029850746 0.0000000000
## 86   0.0000000000 0.0031250000 0.0000000000 0.0000000000 0.0000000000
## 87   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 89   0.0000000000 0.0000000000 0.0005691520 0.0034149118 0.0011383039
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 92   0.0000000000 0.0018348624 0.0036697248 0.0000000000 0.0000000000
## 93   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0032362460
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 96   0.0000000000 0.0000000000 0.0333333333 0.0000000000 0.0166666667
## 97   0.0006640106 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 98   0.0000000000 0.0136986301 0.0000000000 0.0091324201 0.0000000000
## 99   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 100  0.0000000000 0.0273972603 0.0000000000 0.0000000000 0.0000000000
## 101  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0060000000
## 102  0.0000000000 0.0000000000 0.2500000000 0.0000000000 0.0000000000
## 103  0.0038610039 0.0077220077 0.0000000000 0.0000000000 0.0000000000
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 105  0.0000000000 0.0000000000 0.0129032258 0.0000000000 0.0000000000
## 106  0.0017621145 0.0000000000 0.0008810573 0.0000000000 0.0000000000
## 107  0.0039682540 0.0000000000 0.0039682540 0.0000000000 0.0000000000
## 108  0.0091743119 0.0000000000 0.0091743119 0.0000000000 0.0000000000
## 109  0.0000000000 0.0000000000 0.0000000000 0.0008849558 0.0000000000
## 110  0.0000000000 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 111  0.0000000000 0.0000000000 0.2500000000 0.0000000000 0.0000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0000000000 0.0017605634 0.0000000000 0.0008802817 0.0000000000
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0000000000 0.0005988024 0.0000000000 0.0005988024 0.0005988024
## 116  0.0000000000 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 117  0.0000000000 0.0000000000 0.0095238095 0.0095238095 0.0285714286
## 118  0.0005068424 0.0000000000 0.0005068424 0.0015205271 0.0005068424
## 119  0.0000000000 0.0000000000 0.0000000000 0.0588235294 0.0000000000
## 120  0.0000000000 0.0000000000 0.0285714286 0.0000000000 0.0000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 123  0.0000000000 0.0065876153 0.0000000000 0.0013175231 0.0000000000
## 124  0.0000000000 0.0045766590 0.0000000000 0.0000000000 0.0068649886
## 125  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0123456790
## 126  0.0000000000 0.0000000000 0.0000000000 0.0059453032 0.0011890606
## 127  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0227272727
## 128  0.0000000000 0.0000000000 0.0013431833 0.0020147750 0.0000000000
## 129  0.0000000000 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 132  0.0037807183 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0001881822 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 136  0.0100000000 0.0100000000 0.0000000000 0.0000000000 0.0100000000
## 137  0.0000000000 0.0044444444 0.0000000000 0.0044444444 0.0000000000
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 142  0.0000000000 0.0000000000 0.0000000000 0.0086580087 0.0000000000
## 143  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.5000000000 0.0000000000
## 146  0.0000000000 0.0033003300 0.0000000000 0.0000000000 0.0033003300
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0294117647
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0000000000 0.0000000000 0.0169491525 0.0000000000 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 156  0.0020533881 0.0025667351 0.0005133470 0.0000000000 0.0000000000
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0163934426 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 159  0.0000000000 0.0012562814 0.0000000000 0.0012562814 0.0000000000
## 160  0.0018181818 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 161  0.0000000000 0.0070175439 0.0070175439 0.0000000000 0.0000000000
## 162  0.0000000000 0.0106382979 0.0000000000 0.0000000000 0.0000000000
## 163  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 164  0.0024449878 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 165  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0364963504
## 166  0.0000000000 0.0009324009 0.0023310023 0.0000000000 0.0000000000
## 167  0.0000000000 0.0000000000 0.0048780488 0.0000000000 0.0000000000
## 168  0.0169491525 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 169  0.0000000000 0.0000000000 0.0119047619 0.0059523810 0.0000000000
## 170  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 171  0.0000000000 0.0118343195 0.0000000000 0.0000000000 0.0118343195
## 172  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 174  0.0010090817 0.0000000000 0.0000000000 0.0020181635 0.0010090817
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0000000000 0.0043478261 0.0000000000 0.0000000000 0.0000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0000000000 0.0007382798 0.0000000000 0.0000000000 0.0000000000
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0000000000 0.0035714286 0.0142857143 0.0035714286 0.0000000000
## 181  0.0000000000 0.0002237136 0.0000000000 0.0004474273 0.0000000000
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 185  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 186  0.0000000000 0.0009041591 0.0009041591 0.0054249548 0.0009041591
## 187  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 188  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 189  0.0000000000 0.0000000000 0.0043010753 0.0043010753 0.0000000000
## 190  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 191  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 192  0.0007451565 0.0007451565 0.0000000000 0.0000000000 0.0000000000
## 193  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 194  0.0000000000 0.0000000000 0.0043668122 0.0000000000 0.0000000000
## 195  0.0000000000 0.0111111111 0.0000000000 0.0111111111 0.0000000000
## 196  0.0000000000 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0019305019 0.0000000000 0.0000000000 0.0009652510 0.0000000000
## 198  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0000000000
## 199  0.2500000000 0.0000000000 0.2500000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0021929825 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 202  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 203  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 204  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0005837712
## 206  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 208  0.0000000000 0.0280898876 0.0000000000 0.0000000000 0.0056179775
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.4000000000
## 211  0.2000000000 0.2000000000 0.2000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0000000000 0.0000000000 0.0000000000 0.0023696682 0.0000000000
## 214  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 216  0.0000000000 0.0058139535 0.0058139535 0.0000000000 0.0000000000
## 217  0.0388349515 0.0000000000 0.0097087379 0.0000000000 0.0000000000
## 218  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 219  0.0322580645 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 220  0.0000000000 0.0000000000 0.0096153846 0.0000000000 0.0096153846
## 221  0.0000000000 0.0063694268 0.0000000000 0.0000000000 0.0000000000
## 222  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 223  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0000000000 0.0019011407 0.0000000000 0.0000000000 0.0019011407
## 226  0.0000000000 0.0000000000 0.1052631579 0.0000000000 0.1578947368
## 227  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 228  0.0000000000 0.0000000000 0.0095238095 0.0000000000 0.0000000000
## 229  0.0011441648 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 232  0.0218579235 0.0000000000 0.0000000000 0.0000000000 0.0273224044
## 233  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0041152263
## 234  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 235  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 236  0.0000000000 0.0000000000 0.0006275494 0.0000000000 0.0000000000
## 237  0.0047303690 0.0009460738 0.0009460738 0.0009460738 0.0000000000
## 238  0.0000000000 0.0000000000 0.0010157440 0.0000000000 0.0005078720
## 239  0.0000000000 0.0018587361 0.0000000000 0.0000000000 0.0037174721
## 240  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 241  0.0000000000 0.0000000000 0.0000000000 0.0096153846 0.0000000000
## 242  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 243  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 244  0.0000000000 0.0025316456 0.0050632911 0.0000000000 0.0000000000
## 245  0.0000000000 0.0058823529 0.0088235294 0.0117647059 0.0029411765
## 246  0.0043668122 0.0000000000 0.0000000000 0.0014556041 0.0029112082
## 247  0.0166666667 0.0166666667 0.0000000000 0.0000000000 0.0000000000
## 248  0.0057471264 0.0143678161 0.0000000000 0.0000000000 0.0000000000
## 249  0.0000000000 0.0086956522 0.0000000000 0.0000000000 0.0000000000
## 250  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 251  0.0089285714 0.0089285714 0.0000000000 0.0000000000 0.0000000000
## 252  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0120481928
## 253  0.0156250000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 254  0.0273972603 0.0000000000 0.0136986301 0.0000000000 0.0273972603
## 255  0.0230769231 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 256  0.0000000000 0.0108695652 0.0108695652 0.0000000000 0.0108695652
## 257  0.0000000000 0.0000000000 0.0000000000 0.0384615385 0.0192307692
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 259  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0144927536
## 260  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0192307692
## 261  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0166666667
## 262  0.0000000000 0.0000000000 0.0000000000 0.0158730159 0.0158730159
## 263  0.0000000000 0.0303030303 0.0000000000 0.0000000000 0.0151515152
## 264  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 265  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 266  0.0000000000 0.0020325203 0.0000000000 0.0000000000 0.0101626016
## 267  0.0002882675 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 268  0.0044543430 0.0000000000 0.0000000000 0.0011135857 0.0022271715
## 269  0.0000000000 0.0294117647 0.0000000000 0.0147058824 0.0294117647
## 270  0.0000000000 0.0000000000 0.0076923077 0.0615384615 0.0000000000
## 271  0.0000000000 0.0000000000 0.0121951220 0.0000000000 0.0000000000
## 272  0.0000000000 0.0000000000 0.0095238095 0.0000000000 0.0190476190
## 273  0.0000000000 0.0070921986 0.0000000000 0.0000000000 0.0000000000
## 274  0.0000000000 0.0000000000 0.0078125000 0.0000000000 0.0000000000
## 275  0.0000000000 0.0000000000 0.0084745763 0.0000000000 0.0000000000
## 276  0.0000000000 0.0000000000 0.0072463768 0.0072463768 0.0144927536
## 277  0.0019531250 0.0019531250 0.0000000000 0.0097656250 0.0000000000
## 278  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0015698587
## 279  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 280  0.0081967213 0.0000000000 0.0000000000 0.0081967213 0.0000000000
## 281  0.0000000000 0.0126582278 0.0000000000 0.0000000000 0.0000000000
## 282  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 290  0.0000000000 0.0151515152 0.0000000000 0.0000000000 0.0000000000
## 291  0.0434782609 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.5000000000 0.0000000000 0.0000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 294  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 295  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0096153846
## 296  0.0000000000 0.0131578947 0.0131578947 0.0131578947 0.0000000000
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 301  0.0000000000 0.0000000000 0.0040540541 0.0040540541 0.0000000000
## 302  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 303  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 304  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 305  0.0072815534 0.0000000000 0.0000000000 0.0000000000 0.0048543689
## 306  0.0005537099 0.0011074197 0.0011074197 0.0005537099 0.0005537099
## 307  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 308  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 309  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0078740157
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 311  0.0000000000 0.0000000000 0.0008326395 0.0033305579 0.0024979184
## 312  0.0000000000 0.0000000000 0.0000000000 0.0010533708 0.0045646067
## 313  0.4000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 314  0.0225988701 0.0056497175 0.0000000000 0.0056497175 0.0056497175
## 315  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 316  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0019801980 0.0000000000 0.0000000000 0.0000000000 0.0019801980
## 319  0.0000000000 0.0000000000 0.0162601626 0.0162601626 0.0243902439
## 320  0.0000000000 0.0000000000 0.0000000000 0.0021413276 0.0021413276
## 321  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0000000000 0.0214592275 0.0000000000 0.0000000000 0.0000000000
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0104166667
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 328  0.0000000000 0.0000000000 0.0160000000 0.0000000000 0.0000000000
## 329  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 331  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 332  0.0015290520 0.0000000000 0.0000000000 0.0030581040 0.0000000000
## 333  0.0116959064 0.0116959064 0.0000000000 0.0000000000 0.0000000000
## 334  0.0000000000 0.0013245033 0.0225165563 0.0039735099 0.0119205298
## 335  0.0065789474 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 336  0.0053050398 0.0000000000 0.0026525199 0.0000000000 0.0000000000
## 337  0.0011111111 0.0000000000 0.0033333333 0.0033333333 0.0000000000
## 338  0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.2000000000 0.0000000000 0.0000000000
## 340  0.0028169014 0.0169014085 0.0028169014 0.0028169014 0.0056338028
## 341  0.0000000000 0.0000000000 0.0033726813 0.0000000000 0.0067453626
## 342  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 343  0.0027548209 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 346  0.0121951220 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 347  0.0142180095 0.0047393365 0.0000000000 0.0000000000 0.0000000000
## 348  0.0000000000 0.0027173913 0.0027173913 0.0000000000 0.0027173913
## 349  0.0000000000 0.0000000000 0.0041436464 0.0000000000 0.0000000000
## 350  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 351  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 355  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 356  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 357  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 358  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0000000000 0.0012787724 0.0012787724 0.0000000000 0.0012787724
## 361  0.0036407767 0.0048543689 0.0000000000 0.0000000000 0.0000000000
## 362  0.0000000000 0.0065789474 0.0000000000 0.0000000000 0.0000000000
## 363  0.0026799387 0.0000000000 0.0011485452 0.0007656968 0.0011485452
## 364  0.0000000000 0.0000000000 0.0051282051 0.0000000000 0.0153846154
## 365  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0000000000 0.0123966942 0.0061983471 0.0020661157 0.0000000000
## 368  0.0000000000 0.0040650407 0.0040650407 0.0000000000 0.0000000000
## 369  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 372  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0032362460
## 373  0.0000000000 0.0000000000 0.0222222222 0.0000000000 0.0000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0055928412 0.0011185682 0.0011185682 0.0000000000 0.0033557047
## 376  0.0064102564 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 377  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 378  0.0126582278 0.0000000000 0.0126582278 0.0063291139 0.0063291139
## 379  0.0028129395 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 380  0.0000000000 0.0198675497 0.0000000000 0.1125827815 0.0132450331
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0000000000 0.0004649000 0.0000000000 0.0000000000 0.0000000000
## 383  0.0526315789 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 384  0.0000000000 0.0000000000 0.0172413793 0.0000000000 0.0000000000
## 385  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0017421603
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 387  0.0067796610 0.0000000000 0.0000000000 0.0000000000 0.0101694915
## 388  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 389  0.0000000000 0.0010111223 0.0000000000 0.0010111223 0.0000000000
## 390  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 391  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 394  0.0000000000 0.0000000000 0.0039682540 0.0000000000 0.0000000000
## 395  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 396  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 397  0.0014992504 0.0000000000 0.0029985007 0.0000000000 0.0000000000
## 398  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 399  0.0000000000 0.0000000000 0.0032000000 0.0000000000 0.0016000000
## 400  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0333333333
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0000000000 0.0000000000 0.0000000000 0.0035335689 0.0000000000
## 403  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 404  0.0000000000 0.0159574468 0.0000000000 0.0000000000 0.0000000000
## 405  0.0113636364 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 406  0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 407  0.0000000000 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 408  0.0000000000 0.0000000000 0.0000000000 0.0100502513 0.0100502513
## 409  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 410  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 411  0.0000000000 0.0000000000 0.0008572653 0.0000000000 0.0012858980
## 412  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 413  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 414  0.0000000000 0.0009115770 0.0072926162 0.0018231541 0.0000000000
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 417  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 418  0.0044943820 0.0000000000 0.0000000000 0.0022471910 0.0000000000
## 419  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 420  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0061983471
## 421  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 422  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 423  0.0149253731 0.0000000000 0.0597014925 0.0000000000 0.0000000000
## 424  0.0000000000 0.0114942529 0.0000000000 0.0000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 427  0.0000000000 0.0000000000 0.0011641444 0.0000000000 0.0023282887
## 428  0.0000000000 0.0000000000 0.0100000000 0.0000000000 0.0000000000
## 429  0.0000000000 0.1690140845 0.0000000000 0.0000000000 0.0422535211
## 430  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 431  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 432  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 433  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0158730159
## 434  0.0000000000 0.0000000000 0.0000000000 0.0023640662 0.0023640662
## 435  0.0468750000 0.0468750000 0.0000000000 0.0000000000 0.0000000000
## 436  0.0078125000 0.0000000000 0.0000000000 0.0000000000 0.0078125000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 439  0.0196078431 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 440  0.0090090090 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 441  0.0000000000 0.0000000000 0.0106382979 0.0000000000 0.0000000000
## 442  0.0102564103 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 443  0.0000000000 0.0000000000 0.1052631579 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0072859745
## 446  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0181818182
## 447  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 448  0.0000000000 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 449  0.0173010381 0.0051903114 0.0069204152 0.0017301038 0.0069204152
## 450  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 451  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 453  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 454  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0142857143
## 455  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 456  0.0000000000 0.0000000000 0.0000000000 0.0175438596 0.0000000000
## 457  0.0000000000 0.0222222222 0.0031746032 0.0000000000 0.0031746032
## 458  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 459  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1123595506
## 460  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 462  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0200000000
## 463  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 464  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 465  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 467  0.1818181818 0.0000000000 0.0909090909 0.0000000000 0.1818181818
## 468  0.0000000000 0.0072992701 0.0145985401 0.0000000000 0.0000000000
## 469  0.0079051383 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 470  0.0424028269 0.0106007067 0.0000000000 0.0070671378 0.0000000000
## 471  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 472  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 473  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 474  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 475  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 476  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0285714286 0.0285714286 0.0000000000 0.0857142857 0.0000000000
## 479  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 480  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 481  0.0072463768 0.0072463768 0.0036231884 0.0108695652 0.0000000000
## 482  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 483  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 484  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 485  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 488  0.0120481928 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 489  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 490  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 491  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 494  0.0000000000 0.0004653327 0.0023266636 0.0000000000 0.0000000000
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 503  0.0000000000 0.0133333333 0.0044444444 0.0088888889 0.0044444444
## 504  0.0112068966 0.0025862069 0.0000000000 0.0000000000 0.0000000000
## 505  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0011947431
## 506  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 507  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 508  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 509  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0074349442
## 512  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 513  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 514  0.0048076923 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 519  0.0038022814 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 522  0.0000000000 0.0000000000 0.0000000000 0.0100000000 0.0000000000
## 523  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 524  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 525  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 526  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 527  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 528  0.0000000000 0.0060240964 0.0060240964 0.0000000000 0.0000000000
## 529  0.0103092784 0.0103092784 0.0000000000 0.0000000000 0.0000000000
## 530  0.0000000000 0.0196078431 0.0000000000 0.0000000000 0.0000000000
## 531  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 533  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 534  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 535  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 536  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 537  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 538  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 539  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 540  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 542  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 543  0.0000000000 0.0000000000 0.0086206897 0.0000000000 0.0000000000
## 544  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 545  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 546  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 547  0.0046511628 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 550  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 551  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 552  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 553  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 554  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 555  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 556  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 557  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0070921986
## 558  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0222222222
## 559  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 560  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 563  0.0137614679 0.0022935780 0.0000000000 0.0045871560 0.0022935780
## 564  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 565  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 569  0.0000000000 0.0108695652 0.0099637681 0.0009057971 0.0045289855
## 570  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 571  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 572  0.0000000000 0.0000000000 0.0000000000 0.0131578947 0.0000000000
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0344827586
## 574  0.0000000000 0.0000000000 0.0000000000 0.0253968254 0.0000000000
## 575  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 576  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 578  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 579  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 580  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 581  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 582  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 583  0.0000000000 0.0093023256 0.0186046512 0.0000000000 0.0139534884
## 584  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 585  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0200000000
## 586  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 587  0.0000000000 0.0000000000 0.0000000000 0.0023715415 0.0007905138
## 588  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0156250000
## 589  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 590  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 592  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 593  0.0071942446 0.0000000000 0.0030832477 0.0041109969 0.0102774923
## 594  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 595  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 596  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 597  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 598  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 601  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 602  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 603  0.0000000000 0.0058139535 0.0000000000 0.0000000000 0.0058139535
## 604  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 605  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 606  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 607  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 608  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 609  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 610  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 611  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 614  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0277777778
## 616  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 617  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 620  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 624  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0196078431
## 625  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0256410256
## 626  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 627  0.0000000000 0.0000000000 0.0115606936 0.0000000000 0.0057803468
## 628  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 629  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 630  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0153846154
## 632  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 633  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 635  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 636  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0204081633
## 637  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 649  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 650  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0040816327
## 651  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 653  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 654  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 655  0.0000000000 0.0000000000 0.0040983607 0.0000000000 0.0081967213
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0129870130 0.0000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 659  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0083333333
## 660  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 662  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 663  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 667  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0333333333
## 670  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 674  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 680  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 685  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 686  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 687  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 688  0.0000000000 0.0000000000 0.0000000000 0.0037593985 0.0000000000
## 689  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 690  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 692  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 696  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 703  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 704  0.0000000000 0.0000000000 0.0238095238 0.0000000000 0.0000000000
## 705  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 706  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 707  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 708  0.0263157895 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 709  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 710  0.0000000000 0.0000000000 0.0000000000 0.0020449898 0.0000000000
## 711  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 712  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 716  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 718  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 729  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 730  0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0344827586
## 743  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 751  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 754  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 755  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0086956522
## 757  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 758  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 759  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 760  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 762  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 763  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 764  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 767  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 768  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 770  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 771  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 772  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 773  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 774  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 779  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 781  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 782  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0101010101
## 784  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0370370370
## 789  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0032154341
## 791  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 794  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 795  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0055865922
## 796  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0227272727
## 800  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 802  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 803  0.0000000000 0.0000000000 0.0000000000 0.0263157895 0.0000000000
## 804  0.0277777778 0.0000000000 0.0000000000 0.0277777778 0.0000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 806  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 816  0.0000000000 0.0160000000 0.0000000000 0.0160000000 0.0080000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0094339623
## 828  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0192307692
## 833  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 834  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0153846154
## 835  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 838  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 839  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 844  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 848  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0119047619
## 849  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0454545455
## 851  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 852  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 854  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 855  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 856  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 857  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 860  0.0027173913 0.0000000000 0.0000000000 0.0000000000 0.0027173913
## 861  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 862  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0312500000
## 863  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 868  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0095238095
## 869  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 878  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 881  0.0114285714 0.0228571429 0.0000000000 0.0057142857 0.0000000000
## 882  0.0000000000 0.0009398496 0.0000000000 0.0009398496 0.0000000000
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 889  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 890  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 891  0.0000000000 0.0000000000 0.0000000000 0.0106007067 0.0000000000
## 892  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0322580645
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0000000000 0.0000000000 0.0000000000 0.0857142857 0.0000000000
## 895  0.0040322581 0.0000000000 0.0060483871 0.0040322581 0.0020161290
## 896  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 897  0.0000000000 0.0000000000 0.0232558140 0.0000000000 0.0000000000
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 899  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 900  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 901  0.2500000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0126582278
## 903  0.0612244898 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 904  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 905  0.0000000000 0.0000000000 0.0000000000 0.0158730159 0.0000000000
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 910  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0028901734
## 911  0.0000000000 0.0028735632 0.0000000000 0.0114942529 0.0287356322
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0089285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 914  0.0000000000 0.0000000000 0.0000000000 0.1666666667 0.0000000000
## 915  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 916  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0294117647
## 917  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 919  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 920  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 923  0.0000000000 0.0000000000 0.0000000000 0.0103092784 0.0824742268
## 924  0.0192307692 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 925  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 926  0.0166666667 0.0000000000 0.0000000000 0.0083333333 0.0000000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0000000000 0.0083333333 0.0083333333 0.0000000000 0.0000000000
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 934  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 937  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 938  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 939  0.0000000000 0.0000000000 0.0000000000 0.0026595745 0.0000000000
## 940  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 941  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 942  0.0070921986 0.0070921986 0.0000000000 0.0000000000 0.0000000000
## 943  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 944  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 945  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 946  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0070175439
## 947  0.0126050420 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 948  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0042016807 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 952  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0769230769
## 953  0.0000000000 0.0000000000 0.0000000000 0.0153846154 0.0000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 955  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 956  0.0059171598 0.0059171598 0.0000000000 0.0000000000 0.0000000000
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 959  0.0000000000 0.0000000000 0.0000000000 0.0064935065 0.0000000000
## 960  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0024096386
## 961  0.0050761421 0.0000000000 0.0000000000 0.0000000000 0.0253807107
## 962  0.0000000000 0.0158730159 0.0000000000 0.0158730159 0.0000000000
## 963  0.0000000000 0.0263157895 0.0000000000 0.0000000000 0.0000000000
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 966  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0172413793
## 967  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 968  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 969  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 970  0.0000000000 0.0000000000 0.0036630037 0.0073260073 0.0073260073
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0000000000 0.0000000000 0.0021739130 0.0065217391 0.0000000000
## 976  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 977  0.0028409091 0.0000000000 0.0000000000 0.0028409091 0.0142045455
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 980  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 981  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0133333333
## 982  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 983  0.0000000000 0.0073529412 0.0000000000 0.0000000000 0.0000000000
## 984  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0035714286
## 985  0.0020964361 0.0020964361 0.0000000000 0.0062893082 0.0020964361
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0000000000 0.0005948840 0.0000000000 0.0005948840 0.0000000000
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0140845070
## 990  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 991  0.0003972195 0.0021847071 0.0005958292 0.0000000000 0.0007944389
## 992  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 993  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 994  0.0000000000 0.0015151515 0.0000000000 0.0000000000 0.0000000000
## 995  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 997  0.0000000000 0.0005506608 0.0000000000 0.0000000000 0.0000000000
## 998  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 999  0.0004325260 0.0004325260 0.0000000000 0.0069204152 0.0021626298
## 1000 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0039525692
##                 9           10           11           12           13
## 1    0.0014430014 0.0007215007 0.0014430014 0.0000000000 0.0043290043
## 2    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 3    0.0000000000 0.0000000000 0.1250000000 0.0000000000 0.0000000000
## 4    0.0018552876 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 5    0.0012476606 0.0006238303 0.0012476606 0.0000000000 0.0006238303
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0037030180 0.0035178671 0.0001851509 0.0011109054 0.0005554527
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0000000000 0.0172413793 0.0517241379 0.0172413793 0.0000000000
## 11   0.0000000000 0.0028530670 0.0014265335 0.0007132668 0.0007132668
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 14   0.0000000000 0.0000000000 0.0083333333 0.0250000000 0.0000000000
## 15   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 17   0.0040160643 0.0000000000 0.0040160643 0.0200803213 0.0120481928
## 18   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 19   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 20   0.0000000000 0.0000000000 0.0017513135 0.0017513135 0.0000000000
## 21   0.0023529412 0.0000000000 0.0000000000 0.0070588235 0.0047058824
## 22   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 23   0.0000000000 0.0000000000 0.0009980040 0.0000000000 0.0000000000
## 24   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 25   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 26   0.0000000000 0.0000000000 0.0256410256 0.0256410256 0.0000000000
## 27   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 28   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 31   0.0000000000 0.0011587486 0.0023174971 0.0000000000 0.0000000000
## 32   0.0000000000 0.0000000000 0.0130434783 0.0000000000 0.0000000000
## 33   0.0000000000 0.0000000000 0.0048076923 0.0048076923 0.0000000000
## 34   0.0000000000 0.0012610340 0.0025220681 0.0000000000 0.0050441362
## 35   0.0000000000 0.0000000000 0.0058309038 0.0000000000 0.0029154519
## 36   0.0000000000 0.0000000000 0.0054054054 0.0000000000 0.0054054054
## 37   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 38   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 39   0.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
## 40   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0000000000 0.0000000000 0.0052356021 0.0000000000
## 43   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 44   0.0016954900 0.0040691760 0.0023736860 0.0010172940 0.0027127840
## 45   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0008818342
## 46   0.0013661202 0.0000000000 0.0000000000 0.0000000000 0.0013661202
## 47   0.0000000000 0.0000000000 0.0028901734 0.0000000000 0.0000000000
## 48   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0000000000 0.0035971223 0.0000000000 0.0000000000 0.0035971223
## 53   0.0000000000 0.0000000000 0.0000000000 0.0033444816 0.0000000000
## 54   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 55   0.0050761421 0.0050761421 0.0050761421 0.0000000000 0.0000000000
## 56   0.0000000000 0.0005146680 0.0005146680 0.0010293361 0.0000000000
## 57   0.0000000000 0.0000000000 0.0075757576 0.0000000000 0.0000000000
## 58   0.0000000000 0.0079681275 0.0000000000 0.0000000000 0.0000000000
## 59   0.0000000000 0.0000000000 0.0000000000 0.0012755102 0.0000000000
## 60   0.0000000000 0.0526315789 0.0065789474 0.0000000000 0.0328947368
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 63   0.0118343195 0.0000000000 0.0000000000 0.0059171598 0.0000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 66   0.0038387716 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 67   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 68   0.0000000000 0.2000000000 0.4000000000 0.0000000000 0.0000000000
## 69   0.0007147963 0.0007147963 0.0007147963 0.0014295926 0.0000000000
## 70   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0227272727
## 71   0.0000000000 0.0000000000 0.1666666667 0.0000000000 0.0000000000
## 72   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0161290323
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 74   0.0005476451 0.0027382256 0.0027382256 0.0005476451 0.0032858708
## 75   0.0008564088 0.0005709392 0.0005709392 0.0008564088 0.0002854696
## 76   0.0000000000 0.0018214936 0.0000000000 0.0036429872 0.0000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0034364261 0.0000000000 0.0034364261 0.0206185567 0.0000000000
## 79   0.0000000000 0.0035587189 0.0000000000 0.0000000000 0.0000000000
## 80   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 81   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 82   0.0000000000 0.0106382979 0.0000000000 0.0000000000 0.0000000000
## 83   0.0000000000 0.0014184397 0.0000000000 0.0000000000 0.0000000000
## 84   0.0000000000 0.0000000000 0.0000000000 0.0035971223 0.0000000000
## 85   0.0000000000 0.0000000000 0.0000000000 0.0029850746 0.0000000000
## 86   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 87   0.0072463768 0.0072463768 0.0000000000 0.0000000000 0.0000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 89   0.0005691520 0.0000000000 0.0000000000 0.0005691520 0.0005691520
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 92   0.0000000000 0.0000000000 0.0055045872 0.0073394495 0.0000000000
## 93   0.0032362460 0.0000000000 0.0000000000 0.0064724919 0.0000000000
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0175438596 0.0175438596 0.0175438596 0.0000000000 0.0000000000
## 96   0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.0000000000
## 97   0.0019920319 0.0006640106 0.0006640106 0.0019920319 0.0006640106
## 98   0.0000000000 0.0000000000 0.0045662100 0.0000000000 0.0000000000
## 99   0.0000000000 0.0000000000 0.0016750419 0.0000000000 0.0000000000
## 100  0.0000000000 0.0000000000 0.0000000000 0.0136986301 0.0000000000
## 101  0.0000000000 0.0000000000 0.0020000000 0.0000000000 0.0000000000
## 102  0.0000000000 0.0000000000 0.2500000000 0.2500000000 0.0000000000
## 103  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 105  0.0000000000 0.0000000000 0.0064516129 0.0000000000 0.0193548387
## 106  0.0000000000 0.0008810573 0.0026431718 0.0017621145 0.0008810573
## 107  0.0039682540 0.0000000000 0.0000000000 0.0000000000 0.0158730159
## 108  0.0000000000 0.0000000000 0.0000000000 0.0091743119 0.0000000000
## 109  0.0000000000 0.0000000000 0.0008849558 0.0000000000 0.0008849558
## 110  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0035211268 0.0000000000 0.0008802817 0.0008802817 0.0000000000
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0000000000 0.0000000000 0.0000000000 0.0017964072 0.0000000000
## 116  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 117  0.0000000000 0.0000000000 0.0000000000 0.0095238095 0.0571428571
## 118  0.0010136847 0.0000000000 0.0020273695 0.0015205271 0.0005068424
## 119  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 120  0.1142857143 0.0285714286 0.0000000000 0.0000000000 0.1428571429
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0027472527 0.0000000000 0.0027472527 0.0000000000 0.0000000000
## 123  0.0000000000 0.0000000000 0.0000000000 0.0013175231 0.0013175231
## 124  0.0000000000 0.0160183066 0.0000000000 0.0022883295 0.0000000000
## 125  0.0123456790 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 126  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0011890606
## 127  0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 128  0.0013431833 0.0006715917 0.0020147750 0.0006715917 0.0006715917
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0416666667 0.0000000000
## 132  0.0245746692 0.0018903592 0.0018903592 0.0000000000 0.0000000000
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0003763643 0.0001881822 0.0016936394 0.0007527286 0.0007527286
## 136  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 137  0.0044444444 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0000000000 0.0000000000 0.0006830601 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0256410256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 142  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 143  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2500000000
## 146  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0000000000 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0000000000 0.0000000000 0.0000000000 0.0169491525 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0018198362 0.0027297543 0.0009099181 0.0081892630 0.0000000000
## 156  0.0000000000 0.0030800821 0.0005133470 0.0000000000 0.0005133470
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0000000000 0.0000000000 0.0081967213 0.0000000000 0.0000000000
## 159  0.0000000000 0.0000000000 0.0000000000 0.0012562814 0.0012562814
## 160  0.0000000000 0.0003636364 0.0007272727 0.0003636364 0.0003636364
## 161  0.0000000000 0.0035087719 0.0035087719 0.0000000000 0.0000000000
## 162  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 163  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 164  0.0000000000 0.0024449878 0.0024449878 0.0000000000 0.0000000000
## 165  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 166  0.0004662005 0.0023310023 0.0000000000 0.0000000000 0.0009324009
## 167  0.0000000000 0.0000000000 0.0048780488 0.0000000000 0.0000000000
## 168  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 169  0.0000000000 0.0000000000 0.0000000000 0.0059523810 0.0000000000
## 170  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 171  0.0118343195 0.0295857988 0.0177514793 0.0000000000 0.0059171598
## 172  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2222222222
## 174  0.0020181635 0.0000000000 0.0030272452 0.0010090817 0.0010090817
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0000000000 0.0011074197 0.0000000000 0.0000000000 0.0000000000
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0000000000 0.0000000000 0.0107142857 0.0000000000 0.0000000000
## 181  0.0000000000 0.0011185682 0.0000000000 0.0002237136 0.0011185682
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.3333333333 0.0000000000 0.0000000000
## 185  0.0004576659 0.0022883295 0.0018306636 0.0000000000 0.0000000000
## 186  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 187  0.0058479532 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 188  0.0022271715 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 189  0.0021505376 0.0000000000 0.0000000000 0.0043010753 0.0000000000
## 190  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 191  0.0156250000 0.0000000000 0.0000000000 0.0000000000 0.0468750000
## 192  0.0037257824 0.0022354694 0.0007451565 0.0000000000 0.0007451565
## 193  0.0000000000 0.0186915888 0.0000000000 0.0000000000 0.0000000000
## 194  0.0043668122 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 195  0.0000000000 0.0111111111 0.0000000000 0.0111111111 0.0000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0019305019 0.0000000000 0.0000000000 0.0000000000 0.0009652510
## 198  0.0200000000 0.0200000000 0.0400000000 0.0000000000 0.0000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0000000000 0.0000000000 0.0021929825 0.0000000000 0.0021929825
## 202  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 203  0.0000000000 0.0000000000 0.0000000000 0.0133333333 0.0000000000
## 204  0.0038022814 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0000000000 0.0005837712 0.0000000000 0.0000000000 0.0000000000
## 206  0.0000000000 0.0000000000 0.0000000000 0.0046082949 0.0023041475
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 208  0.0056179775 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0000000000 0.0000000000 0.0000000000 0.0011848341 0.0000000000
## 214  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 216  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 217  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 218  0.0142857143 0.0000000000 0.0142857143 0.0000000000 0.0000000000
## 219  0.0000000000 0.0322580645 0.0322580645 0.0000000000 0.0000000000
## 220  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 221  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0063694268
## 222  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0005216484
## 223  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0019011407 0.0000000000 0.0019011407 0.0000000000 0.0000000000
## 226  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 227  0.0129870130 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 228  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 229  0.0011441648 0.0000000000 0.0000000000 0.0022883295 0.0045766590
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0000000000 0.0000000000 0.0003957262 0.0001978631 0.0001978631
## 232  0.0109289617 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 233  0.0000000000 0.0123456790 0.0123456790 0.0000000000 0.0000000000
## 234  0.0011389522 0.0000000000 0.0000000000 0.0000000000 0.0011389522
## 235  0.0015151515 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 236  0.0000000000 0.0006275494 0.0003137747 0.0012550988 0.0006275494
## 237  0.0000000000 0.0000000000 0.0009460738 0.0028382214 0.0151371807
## 238  0.0015236160 0.0000000000 0.0015236160 0.0015236160 0.0010157440
## 239  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 240  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 241  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 242  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 243  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 244  0.0025316456 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 245  0.0000000000 0.0058823529 0.0029411765 0.0029411765 0.0000000000
## 246  0.0058224163 0.0000000000 0.0000000000 0.0014556041 0.0000000000
## 247  0.0000000000 0.0166666667 0.0000000000 0.0166666667 0.0000000000
## 248  0.0057471264 0.0086206897 0.0000000000 0.0028735632 0.0000000000
## 249  0.0000000000 0.0000000000 0.0173913043 0.0000000000 0.0000000000
## 250  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 251  0.0000000000 0.0089285714 0.0000000000 0.0089285714 0.0000000000
## 252  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 253  0.0156250000 0.0000000000 0.0312500000 0.0156250000 0.0156250000
## 254  0.0273972603 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 255  0.0076923077 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 256  0.0108695652 0.0000000000 0.0000000000 0.0108695652 0.0000000000
## 257  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0192307692
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 259  0.0289855072 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 260  0.0096153846 0.0000000000 0.0000000000 0.0096153846 0.0000000000
## 261  0.0166666667 0.0000000000 0.0000000000 0.0166666667 0.0000000000
## 262  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 263  0.0151515152 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 264  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 265  0.0045146727 0.0045146727 0.0000000000 0.0000000000 0.0000000000
## 266  0.0000000000 0.0000000000 0.0020325203 0.0020325203 0.0000000000
## 267  0.0031709426 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 268  0.0000000000 0.0022271715 0.0011135857 0.0022271715 0.0000000000
## 269  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 270  0.0000000000 0.0000000000 0.0000000000 0.0230769231 0.0000000000
## 271  0.0000000000 0.0000000000 0.0121951220 0.0121951220 0.0000000000
## 272  0.0000000000 0.0095238095 0.0000000000 0.0095238095 0.0000000000
## 273  0.0000000000 0.0000000000 0.0070921986 0.0070921986 0.0000000000
## 274  0.0000000000 0.0078125000 0.0000000000 0.0000000000 0.0078125000
## 275  0.0000000000 0.0000000000 0.0000000000 0.0084745763 0.0000000000
## 276  0.0000000000 0.0000000000 0.0000000000 0.0072463768 0.0144927536
## 277  0.0019531250 0.0000000000 0.0019531250 0.0019531250 0.0000000000
## 278  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 279  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0300000000
## 280  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 281  0.0000000000 0.0126582278 0.0000000000 0.0000000000 0.0253164557
## 282  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 290  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 291  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 294  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 295  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 296  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 301  0.0000000000 0.0094594595 0.0013513514 0.0027027027 0.0000000000
## 302  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 303  0.0000000000 0.0112359551 0.0000000000 0.0000000000 0.0000000000
## 304  0.0000000000 0.0000000000 0.0096153846 0.0000000000 0.0000000000
## 305  0.0000000000 0.0024271845 0.0024271845 0.0024271845 0.0000000000
## 306  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 307  0.0000000000 0.0048780488 0.0000000000 0.0000000000 0.0000000000
## 308  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 309  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0078740157
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 311  0.0000000000 0.0008326395 0.0049958368 0.0049958368 0.0008326395
## 312  0.0017556180 0.0000000000 0.0000000000 0.0007022472 0.0014044944
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 314  0.0112994350 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 315  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 316  0.0000000000 0.0000000000 0.0019841270 0.0000000000 0.0000000000
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0000000000 0.0019801980 0.0019801980 0.0019801980 0.0000000000
## 319  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 320  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 321  0.0000000000 0.0000000000 0.0000000000 0.0060240964 0.0120481928
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0042918455 0.0042918455 0.0000000000 0.0021459227 0.0021459227
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0104166667
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0065359477
## 328  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 329  0.0000000000 0.0000000000 0.0013986014 0.0000000000 0.0000000000
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 331  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0085470085
## 332  0.0000000000 0.0007645260 0.0022935780 0.0000000000 0.0000000000
## 333  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 334  0.0052980132 0.0000000000 0.0000000000 0.0066225166 0.0000000000
## 335  0.0065789474 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 336  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0053050398
## 337  0.0000000000 0.0011111111 0.0000000000 0.0033333333 0.0044444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 340  0.0112676056 0.0000000000 0.0028169014 0.0000000000 0.0112676056
## 341  0.0000000000 0.0033726813 0.0050590219 0.0016863406 0.0000000000
## 342  0.0000000000 0.0000000000 0.0000000000 0.0151515152 0.0000000000
## 343  0.0165289256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 346  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 347  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 348  0.0000000000 0.0027173913 0.0027173913 0.0000000000 0.0081521739
## 349  0.0013812155 0.0096685083 0.0027624309 0.0000000000 0.0441988950
## 350  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 351  0.0087527352 0.0043763676 0.0000000000 0.0000000000 0.0000000000
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 355  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 356  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 357  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 358  0.0000000000 0.0000000000 0.0045454545 0.0000000000 0.0000000000
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 361  0.0012135922 0.0000000000 0.0000000000 0.0000000000 0.0024271845
## 362  0.0000000000 0.0000000000 0.0000000000 0.0065789474 0.0131578947
## 363  0.0003828484 0.0003828484 0.0003828484 0.0019142420 0.0030627871
## 364  0.0000000000 0.0051282051 0.0000000000 0.0000000000 0.0051282051
## 365  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0041322314 0.0000000000 0.0020661157 0.0041322314 0.0000000000
## 368  0.0000000000 0.0040650407 0.0040650407 0.0000000000 0.0000000000
## 369  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0256410256 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 372  0.0000000000 0.0000000000 0.0032362460 0.0000000000 0.0000000000
## 373  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0044742729 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 376  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 377  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 378  0.0000000000 0.0063291139 0.0000000000 0.0000000000 0.0379746835
## 379  0.0000000000 0.0014064698 0.0014064698 0.0000000000 0.0000000000
## 380  0.0000000000 0.0000000000 0.0000000000 0.0066225166 0.0198675497
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0000000000 0.0000000000 0.0000000000 0.0004649000 0.0000000000
## 383  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 384  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 385  0.0017421603 0.0000000000 0.0017421603 0.0000000000 0.0000000000
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 387  0.0000000000 0.0237288136 0.0271186441 0.0169491525 0.0101694915
## 388  0.0066225166 0.0198675497 0.0463576159 0.0000000000 0.0066225166
## 389  0.0020222447 0.0010111223 0.0010111223 0.0000000000 0.0000000000
## 390  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 391  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0000000000 0.0333333333 0.0000000000 0.0000000000 0.0333333333
## 394  0.0000000000 0.0000000000 0.0000000000 0.0079365079 0.0158730159
## 395  0.0014144272 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 396  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 397  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 398  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 399  0.0032000000 0.0000000000 0.0000000000 0.0016000000 0.0000000000
## 400  0.0333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 403  0.0030627871 0.0000000000 0.0030627871 0.0000000000 0.0000000000
## 404  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 405  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 408  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0050251256
## 409  0.0000000000 0.0119047619 0.0119047619 0.0238095238 0.0297619048
## 410  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 411  0.0004286327 0.0012858980 0.0038576940 0.0012858980 0.0004286327
## 412  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 413  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 414  0.0000000000 0.0009115770 0.0009115770 0.0054694622 0.0036463081
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0046082949
## 417  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 418  0.0000000000 0.0000000000 0.0000000000 0.0022471910 0.0000000000
## 419  0.0000000000 0.0000000000 0.0500000000 0.0166666667 0.0166666667
## 420  0.0000000000 0.0000000000 0.0020661157 0.0020661157 0.0000000000
## 421  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 422  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 423  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 424  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 427  0.0000000000 0.0011641444 0.0000000000 0.0023282887 0.0011641444
## 428  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 429  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 430  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 431  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 432  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 433  0.0555555556 0.0000000000 0.0000000000 0.0000000000 0.0158730159
## 434  0.0000000000 0.0000000000 0.0047281324 0.0118203310 0.0023640662
## 435  0.0156250000 0.0000000000 0.0000000000 0.0156250000 0.0000000000
## 436  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0076335878
## 439  0.0000000000 0.0000000000 0.0196078431 0.0000000000 0.0000000000
## 440  0.0000000000 0.0090090090 0.0000000000 0.0000000000 0.0000000000
## 441  0.0000000000 0.0000000000 0.0000000000 0.0106382979 0.0000000000
## 442  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 443  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 446  0.0000000000 0.0000000000 0.0181818182 0.0000000000 0.0000000000
## 447  0.0000000000 0.0138888889 0.0000000000 0.0972222222 0.0138888889
## 448  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 449  0.0017301038 0.0000000000 0.0069204152 0.0000000000 0.0000000000
## 450  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 451  0.0000000000 0.0303030303 0.0000000000 0.0303030303 0.0000000000
## 452  0.0000000000 0.0000000000 0.6000000000 0.0000000000 0.0000000000
## 453  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 454  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 455  0.0000000000 0.1578947368 0.0000000000 0.0000000000 0.0000000000
## 456  0.0000000000 0.0175438596 0.0350877193 0.0000000000 0.0000000000
## 457  0.0063492063 0.0000000000 0.0063492063 0.0031746032 0.0000000000
## 458  0.0000000000 0.0131578947 0.0131578947 0.0000000000 0.0263157895
## 459  0.0000000000 0.0000000000 0.0112359551 0.0000000000 0.0000000000
## 460  0.0058823529 0.0088235294 0.0000000000 0.0000000000 0.0058823529
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 462  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0000000000
## 463  0.0000000000 0.0120481928 0.0240963855 0.0000000000 0.0000000000
## 464  0.0102040816 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 465  0.0034843206 0.0000000000 0.0000000000 0.0000000000 0.0209059233
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 467  0.0909090909 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 468  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 469  0.0000000000 0.0000000000 0.0355731225 0.0118577075 0.0000000000
## 470  0.0141342756 0.0106007067 0.0000000000 0.0000000000 0.0000000000
## 471  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 472  0.0000000000 0.0000000000 0.0000000000 0.0043103448 0.0000000000
## 473  0.0000000000 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 474  0.0000000000 0.0285714286 0.0285714286 0.0000000000 0.0285714286
## 475  0.0000000000 0.0000000000 0.0694444444 0.0000000000 0.0277777778
## 476  0.0088105727 0.0000000000 0.0000000000 0.0000000000 0.0132158590
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 479  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 480  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 481  0.0000000000 0.0000000000 0.0181159420 0.0000000000 0.0000000000
## 482  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 483  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 484  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 485  0.0217391304 0.0217391304 0.0000000000 0.0000000000 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0000000000 0.0000000000 0.0079365079 0.0079365079 0.0000000000
## 488  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 489  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 490  0.0000000000 0.0000000000 0.0000000000 0.0140845070 0.0000000000
## 491  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 494  0.0004653327 0.0004653327 0.0000000000 0.0013959981 0.0009306654
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 503  0.0000000000 0.0000000000 0.0000000000 0.0222222222 0.0000000000
## 504  0.0000000000 0.0000000000 0.0051724138 0.0000000000 0.0025862069
## 505  0.0011947431 0.0000000000 0.0011947431 0.0000000000 0.0023894863
## 506  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 507  0.0000000000 0.0000000000 0.0000000000 0.0350877193 0.0175438596
## 508  0.0000000000 0.0018083183 0.0000000000 0.0036166365 0.0000000000
## 509  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0000000000 0.0000000000 0.0037174721 0.0185873606 0.0000000000
## 512  0.0186915888 0.0000000000 0.0093457944 0.0000000000 0.0000000000
## 513  0.0103092784 0.0206185567 0.0000000000 0.0000000000 0.0000000000
## 514  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 519  0.0000000000 0.0000000000 0.0190114068 0.0000000000 0.0000000000
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 522  0.0133333333 0.0100000000 0.0033333333 0.0000000000 0.0000000000
## 523  0.0204081633 0.0408163265 0.0000000000 0.0000000000 0.0000000000
## 524  0.0196078431 0.0392156863 0.0000000000 0.0000000000 0.0000000000
## 525  0.0181818182 0.0363636364 0.0000000000 0.0000000000 0.0000000000
## 526  0.0149253731 0.0298507463 0.0000000000 0.0000000000 0.0000000000
## 527  0.0126582278 0.0253164557 0.0000000000 0.0000000000 0.0000000000
## 528  0.0060240964 0.0060240964 0.0000000000 0.0000000000 0.0000000000
## 529  0.0103092784 0.0103092784 0.0103092784 0.0000000000 0.0000000000
## 530  0.0196078431 0.0196078431 0.0000000000 0.0000000000 0.0000000000
## 531  0.0303030303 0.0303030303 0.0000000000 0.0000000000 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 533  0.0000000000 0.0000000000 0.0038461538 0.0038461538 0.0230769231
## 534  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 535  0.0144927536 0.0289855072 0.0000000000 0.0000000000 0.0000000000
## 536  0.0204081633 0.0408163265 0.0000000000 0.0000000000 0.0000000000
## 537  0.0200000000 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 538  0.0222222222 0.0222222222 0.0000000000 0.0000000000 0.0000000000
## 539  0.0222222222 0.0444444444 0.0000000000 0.0000000000 0.0000000000
## 540  0.0303030303 0.0303030303 0.0000000000 0.0000000000 0.0000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 542  0.0163934426 0.0163934426 0.0000000000 0.0000000000 0.0000000000
## 543  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 544  0.0243902439 0.0487804878 0.0000000000 0.0000000000 0.0000000000
## 545  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 546  0.0208333333 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 547  0.0046511628 0.0046511628 0.1209302326 0.0186046512 0.0000000000
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 550  0.0204081633 0.0408163265 0.0000000000 0.0000000000 0.0000000000
## 551  0.0163934426 0.0327868852 0.0000000000 0.0000000000 0.0000000000
## 552  0.0212765957 0.0425531915 0.0000000000 0.0000000000 0.0000000000
## 553  0.0208333333 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 554  0.0169491525 0.0169491525 0.0000000000 0.0000000000 0.0000000000
## 555  0.0153846154 0.0153846154 0.0000000000 0.0000000000 0.0000000000
## 556  0.0153846154 0.0307692308 0.0000000000 0.0000000000 0.0000000000
## 557  0.0070921986 0.0000000000 0.0000000000 0.0070921986 0.0070921986
## 558  0.0666666667 0.0000000000 0.0000000000 0.0222222222 0.0000000000
## 559  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 560  0.0526315789 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 563  0.0045871560 0.0000000000 0.0000000000 0.0000000000 0.0045871560
## 564  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0243902439
## 565  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 569  0.0009057971 0.0036231884 0.0045289855 0.0000000000 0.0000000000
## 570  0.0000000000 0.0094339623 0.0000000000 0.0000000000 0.0000000000
## 571  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 572  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 574  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 575  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 576  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 578  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 579  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 580  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 581  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 582  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 583  0.0046511628 0.0000000000 0.0093023256 0.0232558140 0.0232558140
## 584  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 585  0.0025000000 0.0075000000 0.0025000000 0.0000000000 0.0000000000
## 586  0.0000000000 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 587  0.0000000000 0.0000000000 0.0015810277 0.0000000000 0.0039525692
## 588  0.0000000000 0.0000000000 0.0000000000 0.0156250000 0.0000000000
## 589  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 590  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 592  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 593  0.0010277492 0.0082219938 0.0102774923 0.0051387461 0.0195272354
## 594  0.0344827586 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 595  0.0357142857 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 596  0.0344827586 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 597  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 598  0.0144927536 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 600  0.0270270270 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 601  0.0400000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 602  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 603  0.0116279070 0.0000000000 0.0116279070 0.0000000000 0.0058139535
## 604  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 605  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 606  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 607  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 608  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 609  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 610  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0273972603
## 611  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 614  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 616  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 617  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 620  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 624  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 625  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 626  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 627  0.0000000000 0.0462427746 0.0000000000 0.0000000000 0.0000000000
## 628  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 629  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 630  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 633  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 635  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 636  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 637  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 649  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 650  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 651  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 653  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 654  0.0012755102 0.0012755102 0.0000000000 0.0038265306 0.0038265306
## 655  0.0000000000 0.0204918033 0.0081967213 0.0081967213 0.0000000000
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 659  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 660  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 662  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 663  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 667  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 670  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 674  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 680  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 685  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 686  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 687  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 688  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 689  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 690  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 692  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 696  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 703  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 704  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 705  0.0000000000 0.0000000000 0.0000000000 0.0270270270 0.0000000000
## 706  0.0303030303 0.0000000000 0.0303030303 0.0000000000 0.0606060606
## 707  0.0000000000 0.0000000000 0.0370370370 0.0000000000 0.0000000000
## 708  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 709  0.0000000000 0.0000000000 0.0294117647 0.0000000000 0.0000000000
## 710  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 711  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 712  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 716  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 718  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 729  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0000000000
## 730  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 743  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 751  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 754  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 755  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 757  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 758  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 759  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 760  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 762  0.0000000000 0.0000000000 0.0357142857 0.0000000000 0.0000000000
## 763  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 764  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 767  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 768  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 770  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 771  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 772  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0128205128
## 773  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 774  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 779  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 781  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 782  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 784  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 789  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 791  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 794  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 795  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 796  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 800  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 802  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 803  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 804  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 806  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 816  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0080000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 828  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 834  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 835  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 838  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 839  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 844  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 848  0.0000000000 0.0000000000 0.0119047619 0.0000000000 0.0000000000
## 849  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 852  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 854  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 855  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 856  0.0142857143 0.0000000000 0.0000000000 0.0000000000 0.0142857143
## 857  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 860  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0018115942
## 861  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 862  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 863  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 868  0.0000000000 0.0000000000 0.0000000000 0.0380952381 0.0000000000
## 869  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 878  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 879  0.5000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 881  0.0057142857 0.0114285714 0.0000000000 0.0114285714 0.0057142857
## 882  0.0000000000 0.0009398496 0.0000000000 0.0000000000 0.0028195489
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 887  0.0000000000 0.0000000000 0.1250000000 0.0000000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 889  0.0030674847 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 890  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 891  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 892  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 893  0.3333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 895  0.0020161290 0.0100806452 0.0060483871 0.0000000000 0.0080645161
## 896  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 897  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 899  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 900  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0000000000 0.0126582278 0.0126582278 0.0126582278 0.0000000000
## 903  0.0000000000 0.0204081633 0.0000000000 0.0204081633 0.0000000000
## 904  0.0000000000 0.0000000000 0.0059347181 0.0000000000 0.0000000000
## 905  0.0000000000 0.0000000000 0.0000000000 0.0793650794 0.0000000000
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0133333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 910  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0144508671
## 911  0.0000000000 0.0172413793 0.0086206897 0.0057471264 0.0114942529
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0000000000 0.0000000000 0.0089285714 0.0000000000 0.0089285714
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 915  0.0017152659 0.0017152659 0.0000000000 0.0034305317 0.0017152659
## 916  0.0000000000 0.0294117647 0.0000000000 0.0000000000 0.0000000000
## 917  0.0869565217 0.0000000000 0.0000000000 0.0000000000 0.0434782609
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 919  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 920  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0000000000 0.0000000000 0.0090090090 0.0000000000 0.0540540541
## 923  0.0000000000 0.0309278351 0.0000000000 0.0000000000 0.0000000000
## 924  0.0192307692 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 925  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0023041475
## 926  0.0000000000 0.0000000000 0.0000000000 0.0083333333 0.0000000000
## 927  0.0000000000 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0000000000 0.0083333333 0.0000000000 0.0000000000 0.0000000000
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 934  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 937  0.0000000000 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 938  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 939  0.0026595745 0.0000000000 0.0053191489 0.0000000000 0.0000000000
## 940  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 941  0.0000000000 0.0208333333 0.0000000000 0.0000000000 0.0104166667
## 942  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 943  0.0263157895 0.0000000000 0.0000000000 0.0263157895 0.0000000000
## 944  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 945  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 946  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 947  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 948  0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0454545455
## 949  0.0000000000 0.2222222222 0.0000000000 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0000000000 0.0000000000 0.0000000000 0.0042016807 0.0042016807
## 952  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 953  0.0307692308 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 955  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 956  0.0000000000 0.0000000000 0.0059171598 0.0177514793 0.0059171598
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 959  0.0064935065 0.0000000000 0.0000000000 0.0064935065 0.0000000000
## 960  0.0024096386 0.0000000000 0.0048192771 0.0096385542 0.0120481928
## 961  0.0000000000 0.0050761421 0.0000000000 0.0000000000 0.0000000000
## 962  0.0000000000 0.0000000000 0.0317460317 0.0000000000 0.0000000000
## 963  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 966  0.0000000000 0.0000000000 0.0172413793 0.0000000000 0.0172413793
## 967  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 968  0.0000000000 0.0000000000 0.0000000000 0.0240963855 0.0120481928
## 969  0.0000000000 0.0000000000 0.0000000000 0.0181818182 0.0000000000
## 970  0.0183150183 0.0036630037 0.0036630037 0.0036630037 0.0036630037
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0000000000 0.0000000000 0.0000000000 0.0065217391 0.0065217391
## 976  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 977  0.0000000000 0.0028409091 0.0000000000 0.0085227273 0.0000000000
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.2000000000 0.0000000000 0.0000000000
## 980  0.0000000000 0.0000000000 0.0000000000 0.0121951220 0.0000000000
## 981  0.0000000000 0.0133333333 0.0133333333 0.0000000000 0.0000000000
## 982  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 983  0.0073529412 0.0073529412 0.0000000000 0.0000000000 0.0000000000
## 984  0.0000000000 0.0035714286 0.0000000000 0.0321428571 0.0035714286
## 985  0.0020964361 0.0000000000 0.0000000000 0.0000000000 0.0083857442
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0005948840 0.0000000000 0.0000000000 0.0035693040 0.0000000000
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 990  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0170940171
## 991  0.0005958292 0.0003972195 0.0005958292 0.0017874876 0.0000000000
## 992  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 993  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 994  0.0015151515 0.0000000000 0.0015151515 0.0000000000 0.0030303030
## 995  0.0000000000 0.0000000000 0.0103092784 0.0000000000 0.0000000000
## 996  0.0000000000 0.0000000000 0.3333333333 0.0000000000 0.0000000000
## 997  0.0000000000 0.0000000000 0.0016519824 0.0005506608 0.0000000000
## 998  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 999  0.0056228374 0.0017301038 0.0004325260 0.0034602076 0.0047577855
## 1000 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##                14           15           16           17           18
## 1    0.0021645022 0.0014430014 0.0021645022 0.0014430014 0.0007215007
## 2    0.0000000000 0.0394736842 0.0000000000 0.0000000000 0.0394736842
## 3    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
## 4    0.0018552876 0.0018552876 0.0074211503 0.0037105751 0.0018552876
## 5    0.0006238303 0.0031191516 0.0012476606 0.0018714910 0.0118527760
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0085169413 0.0022218108 0.0016663581 0.0016663581 0.0075911868
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 11   0.0014265335 0.0014265335 0.0000000000 0.0028530670 0.0042796006
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 14   0.0166666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 15   0.0370370370 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 16   0.0645161290 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 17   0.0040160643 0.0000000000 0.0040160643 0.0000000000 0.0000000000
## 18   0.0000000000 0.0206896552 0.0000000000 0.0000000000 0.0000000000
## 19   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 20   0.0017513135 0.0017513135 0.0017513135 0.0000000000 0.0052539405
## 21   0.0000000000 0.0023529412 0.0000000000 0.0023529412 0.0000000000
## 22   0.0000000000 0.0000000000 0.0208333333 0.0000000000 0.0000000000
## 23   0.0009980040 0.0019960080 0.0009980040 0.0009980040 0.0039920160
## 24   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 25   0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 26   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 27   0.0000000000 0.0000000000 0.0172413793 0.0000000000 0.0000000000
## 28   0.0000000000 0.0039062500 0.0117187500 0.0000000000 0.0000000000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 30   0.0000000000 0.0000000000 0.1000000000 0.0000000000 0.0000000000
## 31   0.0000000000 0.0000000000 0.0034762457 0.0000000000 0.0000000000
## 32   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 33   0.0000000000 0.0048076923 0.0000000000 0.0096153846 0.0000000000
## 34   0.0012610340 0.0025220681 0.0000000000 0.0012610340 0.0000000000
## 35   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 36   0.0324324324 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 37   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 38   0.0000000000 0.0000000000 0.0057142857 0.0000000000 0.0000000000
## 39   0.0069444444 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 40   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0052356021 0.0000000000 0.0000000000 0.0000000000
## 43   0.0212765957 0.0000000000 0.0106382979 0.0000000000 0.0000000000
## 44   0.0030518820 0.0003390980 0.0023736860 0.0057646660 0.0023736860
## 45   0.0008818342 0.0000000000 0.0000000000 0.0000000000 0.0017636684
## 46   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 47   0.0000000000 0.0000000000 0.0000000000 0.0028901734 0.0000000000
## 48   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0000000000 0.0000000000 0.0000000000 0.0035971223 0.0000000000
## 53   0.0033444816 0.0033444816 0.0000000000 0.0267558528 0.0033444816
## 54   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 55   0.0050761421 0.0000000000 0.0050761421 0.0050761421 0.0000000000
## 56   0.0041173443 0.0010293361 0.0051466804 0.0015440041 0.0010293361
## 57   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 58   0.0000000000 0.0000000000 0.0019920319 0.0000000000 0.0498007968
## 59   0.0000000000 0.0012755102 0.0000000000 0.0000000000 0.0063775510
## 60   0.0065789474 0.0394736842 0.0065789474 0.0000000000 0.0000000000
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 63   0.0000000000 0.0000000000 0.0029585799 0.0029585799 0.0000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.6666666667 0.0000000000 0.0000000000
## 66   0.0000000000 0.0000000000 0.0000000000 0.0019193858 0.0230326296
## 67   0.0000000000 0.0000000000 0.0119047619 0.0000000000 0.0000000000
## 68   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 69   0.0000000000 0.0014295926 0.0007147963 0.0007147963 0.0021443888
## 70   0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
## 72   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0161290323
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 74   0.0000000000 0.0000000000 0.0000000000 0.0021905805 0.0000000000
## 75   0.0011418784 0.0008564088 0.0011418784 0.0011418784 0.0000000000
## 76   0.0000000000 0.0036429872 0.0036429872 0.0000000000 0.0000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0000000000 0.0000000000 0.0103092784 0.0000000000 0.0000000000
## 79   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 80   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 81   0.0000000000 0.0000000000 0.0129310345 0.0086206897 0.0172413793
## 82   0.0000000000 0.0000000000 0.0000000000 0.0212765957 0.0000000000
## 83   0.0014184397 0.0014184397 0.0028368794 0.0014184397 0.0028368794
## 84   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 85   0.0029850746 0.0000000000 0.0000000000 0.0000000000 0.0029850746
## 86   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 87   0.0000000000 0.0072463768 0.0000000000 0.0000000000 0.0000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 89   0.0005691520 0.0000000000 0.0051223677 0.0017074559 0.0005691520
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 92   0.0000000000 0.0000000000 0.0018348624 0.0000000000 0.0036697248
## 93   0.0000000000 0.0000000000 0.0032362460 0.0097087379 0.0000000000
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0000000000 0.0000000000 0.0000000000 0.0350877193 0.0175438596
## 96   0.0000000000 0.0500000000 0.0000000000 0.0000000000 0.0166666667
## 97   0.0006640106 0.0013280212 0.0033200531 0.0000000000 0.0006640106
## 98   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 99   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0134003350
## 100  0.0136986301 0.0000000000 0.0000000000 0.0136986301 0.0000000000
## 101  0.0000000000 0.0020000000 0.0000000000 0.0020000000 0.0000000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 103  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0344827586
## 105  0.0064516129 0.0064516129 0.0000000000 0.0000000000 0.0000000000
## 106  0.0035242291 0.0035242291 0.0000000000 0.0017621145 0.0000000000
## 107  0.0000000000 0.0000000000 0.0079365079 0.0119047619 0.0000000000
## 108  0.0091743119 0.0458715596 0.0000000000 0.0275229358 0.0000000000
## 109  0.0000000000 0.0008849558 0.0106194690 0.0008849558 0.0008849558
## 110  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 111  0.0000000000 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0000000000 0.0026408451 0.0017605634 0.0008802817 0.0017605634
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0059880240 0.0005988024 0.0005988024 0.0000000000 0.0000000000
## 116  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 117  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 118  0.0040547390 0.0005068424 0.0005068424 0.0000000000 0.0020273695
## 119  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 120  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0285714286
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0000000000 0.0000000000 0.0027472527 0.0000000000 0.0027472527
## 123  0.0000000000 0.0000000000 0.0105401845 0.0000000000 0.0000000000
## 124  0.0114416476 0.0000000000 0.0022883295 0.0000000000 0.0045766590
## 125  0.0000000000 0.0000000000 0.0000000000 0.0123456790 0.0000000000
## 126  0.0023781213 0.0035671819 0.0035671819 0.0023781213 0.0000000000
## 127  0.0000000000 0.0227272727 0.0000000000 0.0000000000 0.0227272727
## 128  0.0013431833 0.0000000000 0.0006715917 0.0033579584 0.0000000000
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0416666667
## 132  0.0000000000 0.0094517958 0.0000000000 0.0000000000 0.0094517958
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0007527286 0.0000000000 0.0001881822 0.0003763643 0.0001881822
## 136  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 137  0.0000000000 0.0000000000 0.0044444444 0.0000000000 0.0088888889
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 142  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 143  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 146  0.0000000000 0.0000000000 0.0033003300 0.0000000000 0.0000000000
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0294117647
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0027297543 0.0000000000 0.0009099181 0.0009099181 0.0018198362
## 156  0.0005133470 0.0015400411 0.0005133470 0.0000000000 0.0010266940
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 159  0.0025125628 0.0050251256 0.0075376884 0.0138190955 0.0000000000
## 160  0.0000000000 0.0000000000 0.0000000000 0.0003636364 0.0018181818
## 161  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0035087719
## 162  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 163  0.0000000000 0.0000000000 0.0000000000 0.0114942529 0.0000000000
## 164  0.0024449878 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 165  0.0000000000 0.0072992701 0.0000000000 0.0000000000 0.0072992701
## 166  0.0000000000 0.0027972028 0.0000000000 0.0000000000 0.0027972028
## 167  0.0000000000 0.0097560976 0.0048780488 0.0000000000 0.0146341463
## 168  0.0169491525 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 169  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 170  0.0000000000 0.0000000000 0.0000000000 0.0205479452 0.0000000000
## 171  0.0000000000 0.0000000000 0.0000000000 0.0650887574 0.0000000000
## 172  0.0857142857 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2222222222
## 174  0.0000000000 0.0030272452 0.0000000000 0.0030272452 0.0000000000
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0086956522 0.0000000000 0.0000000000 0.0086956522 0.0000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0003691399 0.0007382798 0.0003691399 0.0003691399 0.0007382798
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0000000000 0.0000000000 0.0000000000 0.0035714286 0.0000000000
## 181  0.0006711409 0.0000000000 0.0004474273 0.0006711409 0.0000000000
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 185  0.0000000000 0.0004576659 0.0041189931 0.0004576659 0.0013729977
## 186  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 187  0.0000000000 0.0000000000 0.0029239766 0.0000000000 0.0000000000
## 188  0.0000000000 0.0000000000 0.0022271715 0.0000000000 0.0000000000
## 189  0.0043010753 0.0043010753 0.0000000000 0.0043010753 0.0000000000
## 190  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 191  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 192  0.0007451565 0.0014903130 0.0029806259 0.0000000000 0.0044709389
## 193  0.0000000000 0.0000000000 0.0046728972 0.0046728972 0.0046728972
## 194  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 195  0.0000000000 0.0111111111 0.0000000000 0.0000000000 0.0000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 198  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0021929825 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 202  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 203  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 204  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0000000000 0.0011675423 0.0005837712 0.0000000000 0.0000000000
## 206  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 208  0.0000000000 0.0112359551 0.0000000000 0.0000000000 0.0000000000
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0000000000 0.0023696682 0.0000000000 0.0011848341 0.0023696682
## 214  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 216  0.0058139535 0.0000000000 0.0000000000 0.0000000000 0.0116279070
## 217  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 218  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0071428571
## 219  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 220  0.0000000000 0.0000000000 0.0096153846 0.0192307692 0.0384615385
## 221  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 222  0.0005216484 0.0000000000 0.0000000000 0.0005216484 0.0000000000
## 223  0.0000000000 0.0000000000 0.0000000000 0.0045662100 0.0000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0038022814 0.0019011407 0.0000000000 0.0608365019 0.0038022814
## 226  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 227  0.0000000000 0.0000000000 0.0000000000 0.0129870130 0.0000000000
## 228  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 229  0.0000000000 0.0000000000 0.0102974828 0.0000000000 0.0034324943
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0001978631 0.0005935892 0.0000000000 0.0007914523 0.0001978631
## 232  0.0000000000 0.0000000000 0.0000000000 0.0054644809 0.0000000000
## 233  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 234  0.0000000000 0.0011389522 0.0022779043 0.0000000000 0.0034168565
## 235  0.0000000000 0.0090909091 0.0000000000 0.0015151515 0.0075757576
## 236  0.0009413241 0.0018826483 0.0000000000 0.0003137747 0.0003137747
## 237  0.0208136235 0.0094607379 0.0000000000 0.0018921476 0.0018921476
## 238  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0005078720
## 239  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0037174721
## 240  0.0000000000 0.0000000000 0.0400000000 0.0000000000 0.0000000000
## 241  0.0000000000 0.0000000000 0.0096153846 0.0000000000 0.0000000000
## 242  0.0009124088 0.0000000000 0.0009124088 0.0000000000 0.0009124088
## 243  0.0000000000 0.0000000000 0.0000000000 0.0079365079 0.0000000000
## 244  0.0000000000 0.0000000000 0.0000000000 0.0025316456 0.0000000000
## 245  0.0000000000 0.0000000000 0.0029411765 0.0323529412 0.0000000000
## 246  0.0058224163 0.0262008734 0.0262008734 0.0101892285 0.0087336245
## 247  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 248  0.0000000000 0.0201149425 0.0201149425 0.0143678161 0.0172413793
## 249  0.0000000000 0.0086956522 0.0173913043 0.0434782609 0.0086956522
## 250  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 251  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 252  0.0120481928 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 253  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 254  0.0000000000 0.0273972603 0.0136986301 0.0000000000 0.0000000000
## 255  0.0000000000 0.0000000000 0.0076923077 0.0538461538 0.0000000000
## 256  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 257  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 259  0.0000000000 0.0000000000 0.0144927536 0.0000000000 0.0000000000
## 260  0.0000000000 0.0000000000 0.0096153846 0.0000000000 0.0000000000
## 261  0.0333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 262  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 263  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 264  0.0000000000 0.0131578947 0.0000000000 0.0263157895 0.0000000000
## 265  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 266  0.0000000000 0.0000000000 0.0020325203 0.0000000000 0.0020325203
## 267  0.0005765350 0.0000000000 0.0023061401 0.0005765350 0.0005765350
## 268  0.0011135857 0.0033407572 0.0000000000 0.0022271715 0.0066815145
## 269  0.0000000000 0.0000000000 0.0000000000 0.1323529412 0.0000000000
## 270  0.0076923077 0.0076923077 0.0000000000 0.0000000000 0.0000000000
## 271  0.0000000000 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 272  0.0000000000 0.0095238095 0.0000000000 0.0000000000 0.0190476190
## 273  0.0000000000 0.0212765957 0.0000000000 0.0141843972 0.0000000000
## 274  0.0156250000 0.0156250000 0.0000000000 0.0078125000 0.0000000000
## 275  0.0000000000 0.0169491525 0.0000000000 0.0254237288 0.0000000000
## 276  0.0000000000 0.0144927536 0.0000000000 0.0144927536 0.0000000000
## 277  0.0000000000 0.0117187500 0.0019531250 0.0000000000 0.0019531250
## 278  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0062794349
## 279  0.0000000000 0.0000000000 0.0100000000 0.0000000000 0.0000000000
## 280  0.0000000000 0.0000000000 0.0000000000 0.0081967213 0.0000000000
## 281  0.0000000000 0.0000000000 0.0126582278 0.0000000000 0.0000000000
## 282  0.0000000000 0.0000000000 0.0000000000 0.1111111111 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 287  0.0000000000 0.2727272727 0.0000000000 0.0000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 290  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 291  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 294  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 295  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 296  0.0131578947 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 301  0.0000000000 0.0000000000 0.0000000000 0.0013513514 0.0000000000
## 302  0.0000000000 0.0000000000 0.0370370370 0.0370370370 0.0000000000
## 303  0.0000000000 0.0000000000 0.0000000000 0.0224719101 0.0000000000
## 304  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 305  0.0000000000 0.0000000000 0.0024271845 0.0024271845 0.0000000000
## 306  0.0011074197 0.0022148394 0.0027685493 0.0060908084 0.0000000000
## 307  0.0000000000 0.0000000000 0.0048780488 0.0000000000 0.0000000000
## 308  0.0000000000 0.0000000000 0.0000000000 0.0508474576 0.0000000000
## 309  0.0000000000 0.0157480315 0.0000000000 0.0000000000 0.0000000000
## 310  0.0000000000 0.0000000000 0.3333333333 0.0000000000 0.0000000000
## 311  0.0141548709 0.0016652789 0.0016652789 0.0024979184 0.0041631973
## 312  0.0007022472 0.0003511236 0.0007022472 0.0010533708 0.0007022472
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2000000000
## 314  0.0000000000 0.0112994350 0.0056497175 0.0000000000 0.0000000000
## 315  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 316  0.0039682540 0.0000000000 0.0059523810 0.0000000000 0.0000000000
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0019801980 0.0059405941 0.0000000000 0.0059405941 0.0000000000
## 319  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0243902439
## 320  0.0021413276 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 321  0.0000000000 0.0120481928 0.0000000000 0.0060240964 0.0120481928
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 328  0.0000000000 0.0000000000 0.0080000000 0.0000000000 0.0080000000
## 329  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 330  0.0000000000 0.0000000000 0.0555555556 0.0000000000 0.0000000000
## 331  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 332  0.0053516820 0.0000000000 0.0000000000 0.0015290520 0.0000000000
## 333  0.0000000000 0.0000000000 0.0058479532 0.0000000000 0.0058479532
## 334  0.0000000000 0.0000000000 0.0066225166 0.0079470199 0.0013245033
## 335  0.0065789474 0.0000000000 0.0000000000 0.0000000000 0.0131578947
## 336  0.0026525199 0.0000000000 0.0026525199 0.0000000000 0.0000000000
## 337  0.0000000000 0.0000000000 0.0000000000 0.0144444444 0.0044444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 340  0.0000000000 0.0056338028 0.0000000000 0.0000000000 0.0000000000
## 341  0.0016863406 0.0033726813 0.0050590219 0.0050590219 0.0033726813
## 342  0.0151515152 0.0000000000 0.0000000000 0.0151515152 0.0000000000
## 343  0.0000000000 0.0000000000 0.0027548209 0.0027548209 0.0000000000
## 344  0.1000000000 0.1000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0208333333
## 346  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 347  0.0142180095 0.0047393365 0.0000000000 0.0000000000 0.0047393365
## 348  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 349  0.0000000000 0.0151933702 0.0055248619 0.0193370166 0.0787292818
## 350  0.0000000000 0.0000000000 0.0000000000 0.1052631579 0.0000000000
## 351  0.0000000000 0.0000000000 0.0021881838 0.0000000000 0.0000000000
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0000000000 0.0000000000 0.0000000000 0.0026666667 0.0000000000
## 355  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0068965517
## 356  0.0150375940 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 357  0.0000000000 0.0000000000 0.0000000000 0.0068965517 0.0000000000
## 358  0.0000000000 0.0000000000 0.0000000000 0.0045454545 0.0045454545
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 361  0.0012135922 0.0000000000 0.0000000000 0.0012135922 0.0024271845
## 362  0.0000000000 0.0000000000 0.0000000000 0.0065789474 0.0000000000
## 363  0.0011485452 0.0007656968 0.0007656968 0.0019142420 0.0348392037
## 364  0.0000000000 0.0000000000 0.0051282051 0.0000000000 0.0051282051
## 365  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0000000000 0.0041322314 0.0000000000 0.0000000000 0.0123966942
## 368  0.0000000000 0.0162601626 0.0040650407 0.0040650407 0.0000000000
## 369  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0256410256
## 372  0.0000000000 0.0064724919 0.0097087379 0.0032362460 0.0064724919
## 373  0.0222222222 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0044742729 0.0000000000 0.0011185682 0.0011185682 0.0055928412
## 376  0.0064102564 0.0064102564 0.0000000000 0.0000000000 0.0000000000
## 377  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 378  0.0000000000 0.0063291139 0.0000000000 0.0000000000 0.0189873418
## 379  0.0000000000 0.0014064698 0.0000000000 0.0014064698 0.0000000000
## 380  0.0198675497 0.0132450331 0.0066225166 0.0000000000 0.0132450331
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0000000000 0.0004649000 0.0000000000 0.0000000000 0.0000000000
## 383  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 384  0.0172413793 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 385  0.0000000000 0.0017421603 0.0000000000 0.0017421603 0.0017421603
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 387  0.0067796610 0.0033898305 0.0169491525 0.0338983051 0.0033898305
## 388  0.0000000000 0.0000000000 0.0132450331 0.0000000000 0.0000000000
## 389  0.0000000000 0.0000000000 0.0000000000 0.0010111223 0.0010111223
## 390  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 391  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0333333333
## 394  0.0000000000 0.0039682540 0.0158730159 0.0039682540 0.0000000000
## 395  0.0000000000 0.0028288543 0.0000000000 0.0028288543 0.0028288543
## 396  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 397  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0014992504
## 398  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 399  0.0016000000 0.0000000000 0.0016000000 0.0000000000 0.0112000000
## 400  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0318021201 0.0070671378 0.0035335689 0.0035335689 0.0000000000
## 403  0.0030627871 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 404  0.0000000000 0.0106382979 0.0319148936 0.0159574468 0.0053191489
## 405  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 408  0.0100502513 0.0000000000 0.0050251256 0.0000000000 0.0050251256
## 409  0.0000000000 0.0000000000 0.0059523810 0.0059523810 0.0000000000
## 410  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 411  0.0025717960 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 412  0.0000000000 0.0000000000 0.0000000000 0.0113636364 0.0000000000
## 413  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 414  0.0000000000 0.0000000000 0.0009115770 0.0000000000 0.0027347311
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0000000000 0.0138248848 0.0000000000 0.0092165899 0.0046082949
## 417  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 418  0.0000000000 0.0000000000 0.0000000000 0.0067415730 0.0000000000
## 419  0.0166666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 420  0.0165289256 0.0020661157 0.0020661157 0.0000000000 0.0000000000
## 421  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 422  0.0000000000 0.0000000000 0.0000000000 0.0158730159 0.0079365079
## 423  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 424  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 427  0.0000000000 0.0000000000 0.0023282887 0.0000000000 0.0000000000
## 428  0.0000000000 0.0000000000 0.0050000000 0.0000000000 0.0000000000
## 429  0.0000000000 0.0000000000 0.0140845070 0.0000000000 0.0000000000
## 430  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 431  0.0000000000 0.0000000000 0.0000000000 0.0238095238 0.0238095238
## 432  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 433  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 434  0.0000000000 0.0094562648 0.0070921986 0.0070921986 0.0047281324
## 435  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 436  0.0000000000 0.0000000000 0.0078125000 0.0000000000 0.0000000000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 439  0.0000000000 0.0000000000 0.0196078431 0.0000000000 0.0000000000
## 440  0.0000000000 0.0090090090 0.0000000000 0.0000000000 0.0090090090
## 441  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 442  0.0000000000 0.0461538462 0.0000000000 0.0307692308 0.0000000000
## 443  0.0000000000 0.1578947368 0.0000000000 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0000000000 0.0000000000 0.0000000000 0.0054644809 0.0000000000
## 446  0.0363636364 0.0000000000 0.0181818182 0.0000000000 0.0000000000
## 447  0.0000000000 0.0277777778 0.0000000000 0.0000000000 0.0277777778
## 448  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0158730159
## 449  0.0034602076 0.0069204152 0.0346020761 0.0000000000 0.0069204152
## 450  0.0015923567 0.0000000000 0.0031847134 0.0000000000 0.0047770701
## 451  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 453  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 454  0.0142857143 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 455  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 456  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 457  0.0000000000 0.0285714286 0.0063492063 0.0000000000 0.0126984127
## 458  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 459  0.0000000000 0.0337078652 0.0000000000 0.0000000000 0.0000000000
## 460  0.0058823529 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 462  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 463  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 464  0.0000000000 0.0000000000 0.0051020408 0.0000000000 0.0000000000
## 465  0.0174216028 0.0069686411 0.0209059233 0.0034843206 0.0243902439
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 467  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 468  0.0000000000 0.0000000000 0.0072992701 0.0000000000 0.0072992701
## 469  0.0237154150 0.0079051383 0.0000000000 0.0039525692 0.0079051383
## 470  0.0035335689 0.0176678445 0.0106007067 0.0000000000 0.0035335689
## 471  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 472  0.0043103448 0.0043103448 0.0000000000 0.0086206897 0.0043103448
## 473  0.0526315789 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 474  0.0000000000 0.0285714286 0.0000000000 0.0285714286 0.0000000000
## 475  0.0138888889 0.0000000000 0.0000000000 0.0138888889 0.0138888889
## 476  0.0088105727 0.0044052863 0.0000000000 0.0000000000 0.0000000000
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 479  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0232558140
## 480  0.0000000000 0.0714285714 0.0000000000 0.1428571429 0.0000000000
## 481  0.0000000000 0.0000000000 0.0000000000 0.0036231884 0.0000000000
## 482  0.0000000000 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 483  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 484  0.0000000000 0.0000000000 0.0200000000 0.0200000000 0.0000000000
## 485  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0000000000 0.0079365079 0.0000000000 0.0000000000 0.0079365079
## 488  0.0000000000 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 489  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 490  0.0000000000 0.0000000000 0.0140845070 0.0000000000 0.0000000000
## 491  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 494  0.0000000000 0.0004653327 0.0009306654 0.0000000000 0.0009306654
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 503  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 504  0.0034482759 0.0008620690 0.0000000000 0.0068965517 0.0051724138
## 505  0.0000000000 0.0000000000 0.0000000000 0.0023894863 0.0000000000
## 506  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 507  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 508  0.0000000000 0.0000000000 0.0018083183 0.0000000000 0.0072332731
## 509  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0148698885 0.0037174721 0.0037174721 0.0000000000 0.0000000000
## 512  0.0000000000 0.0000000000 0.0093457944 0.0280373832 0.0000000000
## 513  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 514  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0048076923
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0000000000 0.0000000000 0.0333333333 0.0000000000 0.0000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0625000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0526315789
## 519  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0204081633
## 522  0.0033333333 0.0000000000 0.0033333333 0.0000000000 0.0033333333
## 523  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 524  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 525  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 526  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 527  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0126582278
## 528  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 529  0.0103092784 0.0000000000 0.0000000000 0.0103092784 0.0103092784
## 530  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0196078431
## 531  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 533  0.0230769231 0.0153846154 0.0000000000 0.0076923077 0.0038461538
## 534  0.0833333333 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 535  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 536  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 537  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0000000000
## 538  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 539  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 540  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 542  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 543  0.0086206897 0.0000000000 0.0000000000 0.0000000000 0.0086206897
## 544  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 545  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 546  0.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
## 547  0.0046511628 0.0046511628 0.0232558140 0.0093023256 0.0000000000
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0000000000 0.0000000000 0.0000000000 0.0095238095 0.0190476190
## 550  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 551  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 552  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 553  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 554  0.0000000000 0.0000000000 0.0169491525 0.0000000000 0.0000000000
## 555  0.0000000000 0.0000000000 0.0153846154 0.0000000000 0.0000000000
## 556  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 557  0.0070921986 0.0141843972 0.0070921986 0.0000000000 0.0000000000
## 558  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0222222222
## 559  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 560  0.0000000000 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1111111111
## 563  0.0000000000 0.0000000000 0.0000000000 0.0183486239 0.0275229358
## 564  0.0000000000 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 565  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 569  0.0009057971 0.0009057971 0.0018115942 0.0009057971 0.0009057971
## 570  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0125786164
## 571  0.0000000000 0.0000000000 0.0000000000 0.0096153846 0.0000000000
## 572  0.0000000000 0.0000000000 0.0131578947 0.0000000000 0.0000000000
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 574  0.0031746032 0.0000000000 0.0000000000 0.0031746032 0.0000000000
## 575  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 576  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 578  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 579  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 580  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 581  0.0333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 582  0.0000000000 0.0000000000 0.0178571429 0.0000000000 0.0000000000
## 583  0.0046511628 0.0046511628 0.0232558140 0.0232558140 0.0000000000
## 584  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 585  0.0000000000 0.0000000000 0.0025000000 0.0000000000 0.0075000000
## 586  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 587  0.0000000000 0.0007905138 0.0015810277 0.0000000000 0.0015810277
## 588  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 589  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 590  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 592  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0000000000
## 593  0.0174717369 0.0113052415 0.0164439877 0.0102774923 0.0318602261
## 594  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 595  0.0000000000 0.0000000000 0.0000000000 0.0357142857 0.0000000000
## 596  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 597  0.0000000000 0.0000000000 0.0000000000 0.0384615385 0.0000000000
## 598  0.0000000000 0.0000000000 0.0000000000 0.0144927536 0.0000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 601  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 602  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 603  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 604  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 605  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 606  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 607  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 608  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 609  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 610  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 611  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 614  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 616  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 617  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 620  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 624  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 625  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 626  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 627  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 628  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 629  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 630  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 633  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 635  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 636  0.0204081633 0.0000000000 0.0204081633 0.0000000000 0.0000000000
## 637  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 649  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 650  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 651  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 653  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 654  0.0025510204 0.0051020408 0.0114795918 0.0012755102 0.0369897959
## 655  0.0040983607 0.0000000000 0.0000000000 0.0000000000 0.0040983607
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 658  0.2500000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 659  0.0000000000 0.0000000000 0.0000000000 0.0083333333 0.0000000000
## 660  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0104166667
## 662  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0434782609
## 663  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 667  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 670  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 674  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 680  0.0000000000 0.0000000000 0.0400000000 0.0000000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 685  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 686  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 687  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0065359477
## 688  0.0037593985 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 689  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 690  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 692  0.1000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 696  0.0258620690 0.0086206897 0.0000000000 0.0000000000 0.0000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 703  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 704  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 705  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 706  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 707  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 708  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 709  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 710  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 711  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 712  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 716  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 718  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 729  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 730  0.0000000000 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 743  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 751  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 754  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 755  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 757  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 758  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 759  0.0000000000 0.0056818182 0.0000000000 0.0000000000 0.0000000000
## 760  0.0000000000 0.0096153846 0.0000000000 0.0000000000 0.0000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 762  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 763  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 764  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 767  0.0000000000 0.0080000000 0.0000000000 0.0000000000 0.0000000000
## 768  0.0000000000 0.0000000000 0.0476190476 0.0476190476 0.0000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0116279070 0.0000000000
## 770  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 771  0.0000000000 0.0000000000 0.0487804878 0.0000000000 0.0487804878
## 772  0.0256410256 0.0000000000 0.0128205128 0.0128205128 0.0000000000
## 773  0.0000000000 0.0000000000 0.0067567568 0.0000000000 0.0000000000
## 774  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 779  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 781  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 782  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.0101010101 0.0101010101
## 784  0.0000000000 0.0000000000 0.0000000000 0.0212765957 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 789  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 791  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 794  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 795  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 796  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 800  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 802  0.0000000000 0.0000000000 0.0645161290 0.0000000000 0.0000000000
## 803  0.0000000000 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 804  0.0000000000 0.0000000000 0.0555555556 0.0000000000 0.0000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 806  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0294117647 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 816  0.0000000000 0.0240000000 0.0240000000 0.0240000000 0.0320000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0270270270 0.0000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 828  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.1052631579 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 834  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 835  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 838  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 839  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 844  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 848  0.0000000000 0.0000000000 0.0000000000 0.0119047619 0.0000000000
## 849  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0769230769
## 852  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 854  0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 855  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 856  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 857  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 860  0.0018115942 0.0000000000 0.0000000000 0.0009057971 0.0000000000
## 861  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0111111111
## 862  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 863  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 868  0.0000000000 0.0190476190 0.0000000000 0.0000000000 0.0000000000
## 869  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 878  0.0000000000 0.0000000000 0.0357142857 0.0000000000 0.0000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 881  0.0000000000 0.0000000000 0.0057142857 0.0000000000 0.0000000000
## 882  0.0000000000 0.0009398496 0.0028195489 0.0028195489 0.0000000000
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1250000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.1428571429 0.0000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.1428571429 0.0000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.1111111111 0.0000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.1250000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1428571429
## 889  0.0000000000 0.0000000000 0.0000000000 0.0030674847 0.0000000000
## 890  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 891  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 892  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0285714286 0.0000000000 0.0285714286 0.0000000000 0.0000000000
## 895  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0120967742
## 896  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 897  0.0000000000 0.0232558140 0.0000000000 0.0000000000 0.0232558140
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 899  0.0000000000 0.0000000000 0.0666666667 0.0000000000 0.0000000000
## 900  0.0000000000 0.0000000000 0.0285714286 0.0000000000 0.0000000000
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0000000000 0.0000000000 0.0000000000 0.0126582278 0.0126582278
## 903  0.0000000000 0.0204081633 0.0204081633 0.0000000000 0.0000000000
## 904  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 905  0.0000000000 0.0000000000 0.1587301587 0.0158730159 0.0158730159
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0000000000 0.0000000000 0.0000000000 0.0800000000 0.0000000000
## 910  0.0000000000 0.0086705202 0.0000000000 0.0000000000 0.0000000000
## 911  0.0114942529 0.0086206897 0.0316091954 0.0172413793 0.0028735632
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0000000000 0.0000000000 0.0267857143 0.0000000000 0.0000000000
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 915  0.0000000000 0.0000000000 0.0034305317 0.0068610635 0.0137221269
## 916  0.0000000000 0.0000000000 0.0000000000 0.0294117647 0.0294117647
## 917  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 919  0.0000000000 0.0000000000 0.0000000000 0.0170940171 0.0000000000
## 920  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0000000000 0.0000000000 0.0090090090 0.0270270270 0.0180180180
## 923  0.0000000000 0.0103092784 0.0309278351 0.0103092784 0.0000000000
## 924  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 925  0.0000000000 0.0023041475 0.0000000000 0.0069124424 0.0046082949
## 926  0.0250000000 0.0000000000 0.0000000000 0.0083333333 0.0000000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0000000000 0.0000000000 0.0000000000 0.0250000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0458333333 0.0000000000 0.0083333333 0.0125000000 0.0041666667
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0294117647
## 934  0.0000000000 0.0000000000 0.0000000000 0.1538461538 0.0000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0416666667 0.0416666667 0.0000000000
## 937  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 938  0.0000000000 0.0066964286 0.0000000000 0.0022321429 0.0000000000
## 939  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 940  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 941  0.0000000000 0.0000000000 0.0104166667 0.0104166667 0.0000000000
## 942  0.0000000000 0.0000000000 0.0141843972 0.0000000000 0.0000000000
## 943  0.0263157895 0.0000000000 0.0000000000 0.1578947368 0.0000000000
## 944  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 945  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 946  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 947  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 948  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 949  0.2222222222 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0000000000 0.0042016807 0.0084033613 0.0336134454 0.0126050420
## 952  0.0256410256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 953  0.0000000000 0.0000000000 0.0307692308 0.0000000000 0.0000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 955  0.0000000000 0.0000000000 0.0000000000 0.0869565217 0.0000000000
## 956  0.0000000000 0.0118343195 0.0000000000 0.0118343195 0.0000000000
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0215053763
## 959  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 960  0.0024096386 0.0048192771 0.0000000000 0.0000000000 0.0072289157
## 961  0.0101522843 0.0000000000 0.0050761421 0.0000000000 0.0000000000
## 962  0.0000000000 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 963  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 966  0.0000000000 0.0172413793 0.0000000000 0.0000000000 0.0000000000
## 967  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0172413793
## 968  0.0000000000 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 969  0.0000000000 0.0727272727 0.0000000000 0.0000000000 0.0000000000
## 970  0.0036630037 0.0256410256 0.0109890110 0.0219780220 0.0000000000
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0000000000 0.0882352941 0.0294117647 0.0294117647 0.0882352941
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0000000000 0.0021739130 0.0043478261 0.0043478261 0.0000000000
## 976  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 977  0.0056818182 0.0000000000 0.0000000000 0.0028409091 0.0056818182
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.4000000000
## 979  0.0000000000 0.4000000000 0.0000000000 0.0000000000 0.0000000000
## 980  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0243902439
## 981  0.0000000000 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 982  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 983  0.0147058824 0.0073529412 0.0147058824 0.0220588235 0.0220588235
## 984  0.0178571429 0.0035714286 0.0000000000 0.0000000000 0.0107142857
## 985  0.0020964361 0.0041928721 0.0020964361 0.0083857442 0.0167714885
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0000000000 0.0000000000 0.0017846520 0.0011897680 0.0017846520
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0000000000 0.0070422535 0.0000000000 0.0070422535 0.0000000000
## 990  0.0085470085 0.0000000000 0.0085470085 0.0000000000 0.0085470085
## 991  0.0023833168 0.0015888779 0.0085402185 0.0033763654 0.0011916584
## 992  0.0000000000 0.0000000000 0.0000000000 0.0196078431 0.0032679739
## 993  0.0000000000 0.0000000000 0.0038461538 0.0000000000 0.0000000000
## 994  0.0000000000 0.0015151515 0.0000000000 0.0000000000 0.0075757576
## 995  0.0000000000 0.0103092784 0.0000000000 0.0103092784 0.0000000000
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 997  0.0000000000 0.0000000000 0.0016519824 0.0000000000 0.0005506608
## 998  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 999  0.0021626298 0.0021626298 0.0021626298 0.0043252595 0.0047577855
## 1000 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
##                19           20           21           22           23
## 1    0.0014430014 0.0043290043 0.0036075036 0.0036075036 0.0021645022
## 2    0.0131578947 0.0000000000 0.0131578947 0.0000000000 0.0394736842
## 3    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 4    0.0037105751 0.0018552876 0.0000000000 0.0000000000 0.0055658627
## 5    0.0024953213 0.0012476606 0.0018714910 0.0006238303 0.0006238303
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0012960563 0.0003703018 0.0035178671 0.0038881689 0.0116645066
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0862068966 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 11   0.0078459344 0.0021398003 0.0007132668 0.0021398003 0.0007132668
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0000000000 0.0000000000 0.0175438596 0.0175438596
## 14   0.0000000000 0.0000000000 0.0083333333 0.0000000000 0.0166666667
## 15   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 17   0.0000000000 0.0000000000 0.0281124498 0.0000000000 0.0160642570
## 18   0.0000000000 0.0000000000 0.0275862069 0.0000000000 0.0000000000
## 19   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 20   0.0017513135 0.0035026270 0.0035026270 0.0087565674 0.0017513135
## 21   0.0000000000 0.0023529412 0.0023529412 0.0047058824 0.0023529412
## 22   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0208333333
## 23   0.0029940120 0.0069860279 0.0009980040 0.0029940120 0.0000000000
## 24   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 25   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 26   0.0512820513 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 27   0.0000000000 0.0402298851 0.0000000000 0.0000000000 0.0000000000
## 28   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 31   0.0011587486 0.0000000000 0.0000000000 0.0011587486 0.0000000000
## 32   0.0130434783 0.0000000000 0.0000000000 0.0086956522 0.0130434783
## 33   0.0144230769 0.0000000000 0.0000000000 0.0000000000 0.0048076923
## 34   0.0012610340 0.0025220681 0.0100882724 0.0075662043 0.0000000000
## 35   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 36   0.0054054054 0.0000000000 0.0054054054 0.0000000000 0.0000000000
## 37   0.0434782609 0.0000000000 0.0869565217 0.0434782609 0.0000000000
## 38   0.0000000000 0.0057142857 0.0114285714 0.0057142857 0.0000000000
## 39   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 40   0.1428571429 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0052356021 0.0000000000 0.0052356021 0.0052356021
## 43   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0106382979
## 44   0.0040691760 0.0033909800 0.0010172940 0.0040691760 0.0010172940
## 45   0.0000000000 0.0017636684 0.0008818342 0.0008818342 0.0008818342
## 46   0.0000000000 0.0000000000 0.0000000000 0.0013661202 0.0013661202
## 47   0.0000000000 0.0000000000 0.0057803468 0.0000000000 0.0000000000
## 48   0.0909090909 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 53   0.0133779264 0.0000000000 0.0066889632 0.0133779264 0.0100334448
## 54   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 55   0.0101522843 0.0304568528 0.0152284264 0.0000000000 0.0050761421
## 56   0.0020586722 0.0005146680 0.0005146680 0.0025733402 0.0010293361
## 57   0.0000000000 0.0000000000 0.0075757576 0.0000000000 0.0227272727
## 58   0.0000000000 0.0000000000 0.0099601594 0.0039840637 0.0019920319
## 59   0.0012755102 0.0000000000 0.0012755102 0.0000000000 0.0000000000
## 60   0.0000000000 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 63   0.0000000000 0.0029585799 0.0000000000 0.0000000000 0.0000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 66   0.0000000000 0.0000000000 0.0019193858 0.0038387716 0.0000000000
## 67   0.0119047619 0.0000000000 0.0000000000 0.0238095238 0.0000000000
## 68   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 69   0.0014295926 0.0014295926 0.0007147963 0.0007147963 0.0028591851
## 70   0.0681818182 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 72   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 74   0.0000000000 0.0000000000 0.0005476451 0.0000000000 0.0027382256
## 75   0.0002854696 0.0005709392 0.0005709392 0.0002854696 0.0002854696
## 76   0.0091074681 0.0018214936 0.0036429872 0.0036429872 0.0000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0034364261 0.0034364261 0.0068728522 0.0000000000 0.0000000000
## 79   0.0000000000 0.0000000000 0.0355871886 0.0000000000 0.0035587189
## 80   0.0000000000 0.0000000000 0.0185185185 0.0000000000 0.0000000000
## 81   0.0129310345 0.0000000000 0.0215517241 0.0000000000 0.0129310345
## 82   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0106382979
## 83   0.0000000000 0.0028368794 0.0070921986 0.0014184397 0.0000000000
## 84   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0035971223
## 85   0.0000000000 0.0059701493 0.0000000000 0.0000000000 0.0119402985
## 86   0.0000000000 0.0000000000 0.0000000000 0.0031250000 0.0000000000
## 87   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 88   0.0769230769 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 89   0.0034149118 0.0005691520 0.0005691520 0.0011383039 0.0022766079
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 92   0.0000000000 0.0018348624 0.0036697248 0.0036697248 0.0018348624
## 93   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0000000000 0.0000000000 0.0000000000 0.0175438596 0.0175438596
## 96   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0166666667
## 97   0.0006640106 0.0066401062 0.0033200531 0.0006640106 0.0013280212
## 98   0.0000000000 0.0000000000 0.0045662100 0.0000000000 0.0045662100
## 99   0.0000000000 0.0016750419 0.0000000000 0.0000000000 0.0000000000
## 100  0.0000000000 0.0000000000 0.0273972603 0.0273972603 0.0000000000
## 101  0.0000000000 0.0000000000 0.0020000000 0.0020000000 0.0000000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 103  0.0077220077 0.0077220077 0.0000000000 0.0347490347 0.0077220077
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 105  0.0000000000 0.0000000000 0.0000000000 0.0064516129 0.0000000000
## 106  0.0017621145 0.0000000000 0.0000000000 0.0035242291 0.0035242291
## 107  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0079365079
## 108  0.0550458716 0.0091743119 0.0000000000 0.0000000000 0.0000000000
## 109  0.0008849558 0.0026548673 0.0000000000 0.0026548673 0.0000000000
## 110  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 112  0.3333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0017605634 0.0000000000 0.0035211268 0.0017605634 0.0017605634
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0023952096 0.0011976048 0.0023952096 0.0005988024 0.0011976048
## 116  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 117  0.0285714286 0.0000000000 0.0190476190 0.0000000000 0.0000000000
## 118  0.0000000000 0.0005068424 0.0010136847 0.0010136847 0.0020273695
## 119  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 120  0.0285714286 0.0000000000 0.0285714286 0.0000000000 0.0000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0027472527 0.0000000000 0.0054945055 0.0000000000 0.0000000000
## 123  0.0000000000 0.0039525692 0.0013175231 0.0039525692 0.0052700922
## 124  0.0000000000 0.0022883295 0.0000000000 0.0068649886 0.0022883295
## 125  0.0123456790 0.0246913580 0.0000000000 0.0000000000 0.0000000000
## 126  0.0035671819 0.0011890606 0.0011890606 0.0000000000 0.0011890606
## 127  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 128  0.0040295500 0.0013431833 0.0026863667 0.0006715917 0.0006715917
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0416666667
## 132  0.0018903592 0.0018903592 0.0000000000 0.0018903592 0.0000000000
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0005645465 0.0007527286 0.0030109146 0.0005645465 0.0001881822
## 136  0.0000000000 0.0400000000 0.0000000000 0.0200000000 0.0000000000
## 137  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 142  0.0043290043 0.0000000000 0.0000000000 0.0043290043 0.0129870130
## 143  0.0555555556 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 146  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0169491525 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0018198362 0.0000000000 0.0009099181 0.0018198362 0.0018198362
## 156  0.0010266940 0.0000000000 0.0010266940 0.0000000000 0.0005133470
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 159  0.0000000000 0.0012562814 0.0062814070 0.0012562814 0.0125628141
## 160  0.0050909091 0.0003636364 0.0010909091 0.0003636364 0.0010909091
## 161  0.1157894737 0.0140350877 0.0070175439 0.0000000000 0.0035087719
## 162  0.0000000000 0.0000000000 0.0000000000 0.0319148936 0.0106382979
## 163  0.0000000000 0.0000000000 0.0000000000 0.0114942529 0.0000000000
## 164  0.0000000000 0.0024449878 0.0000000000 0.0000000000 0.0000000000
## 165  0.0364963504 0.0072992701 0.0072992701 0.0072992701 0.0000000000
## 166  0.0009324009 0.0004662005 0.0032634033 0.0000000000 0.0000000000
## 167  0.0000000000 0.0000000000 0.0000000000 0.0195121951 0.0000000000
## 168  0.1186440678 0.0000000000 0.0338983051 0.0847457627 0.0000000000
## 169  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 170  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 171  0.0118343195 0.0000000000 0.0177514793 0.0000000000 0.0059171598
## 172  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 173  0.0000000000 0.1111111111 0.1111111111 0.1111111111 0.1111111111
## 174  0.0010090817 0.0030272452 0.0000000000 0.0000000000 0.0020181635
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0000000000 0.0000000000 0.0173913043 0.0000000000 0.0000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0000000000 0.0011074197 0.0011074197 0.0000000000 0.0000000000
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0000000000 0.0000000000 0.0000000000 0.0142857143 0.0035714286
## 181  0.0020134228 0.0002237136 0.0002237136 0.0002237136 0.0002237136
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 185  0.0004576659 0.0032036613 0.0009153318 0.0013729977 0.0018306636
## 186  0.0018083183 0.0018083183 0.0000000000 0.0000000000 0.0009041591
## 187  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 188  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 189  0.0279569892 0.0279569892 0.0172043011 0.0150537634 0.0043010753
## 190  0.0042016807 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 191  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 192  0.0007451565 0.0014903130 0.0081967213 0.0007451565 0.0029806259
## 193  0.0000000000 0.0000000000 0.0046728972 0.0000000000 0.0046728972
## 194  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0087336245
## 195  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0019305019
## 198  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0000000000 0.0021929825 0.0000000000 0.0000000000 0.0000000000
## 202  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 203  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 204  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0000000000 0.0000000000 0.0005837712 0.0023350846 0.0017513135
## 206  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0092165899
## 207  0.0000000000 0.0000000000 0.1388888889 0.7500000000 0.0000000000
## 208  0.0000000000 0.0000000000 0.0056179775 0.0112359551 0.0168539326
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0000000000 0.0047393365 0.0130331754 0.0000000000 0.0011848341
## 214  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 216  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0116279070
## 217  0.0000000000 0.0000000000 0.0000000000 0.0097087379 0.0000000000
## 218  0.0000000000 0.0571428571 0.0000000000 0.0000000000 0.0000000000
## 219  0.0645161290 0.0000000000 0.0000000000 0.0645161290 0.0000000000
## 220  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 221  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 222  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0010432968
## 223  0.0000000000 0.0000000000 0.0000000000 0.0045662100 0.0000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 226  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 227  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0519480519
## 228  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 229  0.0057208238 0.0000000000 0.0000000000 0.0000000000 0.0022883295
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0000000000 0.0000000000 0.0001978631 0.0000000000 0.0001978631
## 232  0.0000000000 0.0109289617 0.0054644809 0.0000000000 0.0054644809
## 233  0.0041152263 0.0041152263 0.0000000000 0.0000000000 0.0000000000
## 234  0.0000000000 0.0000000000 0.0011389522 0.0000000000 0.0056947608
## 235  0.0000000000 0.0000000000 0.0000000000 0.0045454545 0.0045454545
## 236  0.0009413241 0.0012550988 0.0028239724 0.0003137747 0.0000000000
## 237  0.0113528855 0.0037842952 0.0018921476 0.0000000000 0.0018921476
## 238  0.0137125444 0.0000000000 0.0000000000 0.0015236160 0.0005078720
## 239  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0018587361
## 240  0.0000000000 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 241  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0096153846
## 242  0.0000000000 0.0018248175 0.0009124088 0.0000000000 0.0000000000
## 243  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 244  0.0050632911 0.0000000000 0.0177215190 0.0000000000 0.0000000000
## 245  0.0000000000 0.0000000000 0.0029411765 0.0000000000 0.0029411765
## 246  0.0116448326 0.0000000000 0.0043668122 0.0043668122 0.0014556041
## 247  0.0000000000 0.0166666667 0.0000000000 0.0000000000 0.0000000000
## 248  0.0172413793 0.0028735632 0.0143678161 0.0028735632 0.0028735632
## 249  0.0000000000 0.0173913043 0.0000000000 0.0000000000 0.0000000000
## 250  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 251  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0089285714
## 252  0.0000000000 0.0361445783 0.0000000000 0.0120481928 0.0000000000
## 253  0.0156250000 0.0000000000 0.0156250000 0.0000000000 0.0000000000
## 254  0.0000000000 0.0000000000 0.0136986301 0.0136986301 0.0136986301
## 255  0.0076923077 0.0000000000 0.0076923077 0.0000000000 0.0076923077
## 256  0.0000000000 0.0000000000 0.0108695652 0.0000000000 0.0000000000
## 257  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 259  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0144927536
## 260  0.0000000000 0.0096153846 0.0000000000 0.0096153846 0.0000000000
## 261  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0166666667
## 262  0.0000000000 0.0000000000 0.0000000000 0.0158730159 0.0000000000
## 263  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0151515152
## 264  0.0000000000 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 265  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 266  0.0020325203 0.0081300813 0.0000000000 0.0020325203 0.0000000000
## 267  0.0002882675 0.0000000000 0.0020178726 0.0005765350 0.0014413376
## 268  0.0044543430 0.0033407572 0.0055679287 0.0044543430 0.0055679287
## 269  0.0147058824 0.0147058824 0.0000000000 0.0000000000 0.0000000000
## 270  0.0000000000 0.0000000000 0.0000000000 0.0153846154 0.0000000000
## 271  0.0121951220 0.0000000000 0.0000000000 0.0243902439 0.0000000000
## 272  0.0190476190 0.0000000000 0.0095238095 0.0285714286 0.0000000000
## 273  0.0000000000 0.0000000000 0.0000000000 0.0141843972 0.0000000000
## 274  0.0000000000 0.0000000000 0.0078125000 0.0078125000 0.0000000000
## 275  0.0000000000 0.0084745763 0.0169491525 0.0169491525 0.0000000000
## 276  0.0072463768 0.0072463768 0.0144927536 0.0072463768 0.0217391304
## 277  0.0078125000 0.0039062500 0.0058593750 0.0019531250 0.0039062500
## 278  0.0000000000 0.0000000000 0.0047095761 0.0015698587 0.0062794349
## 279  0.0100000000 0.0000000000 0.0000000000 0.0100000000 0.0000000000
## 280  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 281  0.0000000000 0.0000000000 0.0000000000 0.0126582278 0.0000000000
## 282  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 284  0.0000000000 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 285  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0384615385
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0500000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0769230769
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1111111111
## 290  0.0000000000 0.0000000000 0.0000000000 0.0151515152 0.0151515152
## 291  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0434782609
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 293  0.0000000000 0.0000000000 0.0714285714 0.0000000000 0.0000000000
## 294  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 295  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 296  0.0000000000 0.0000000000 0.0131578947 0.0000000000 0.0131578947
## 297  0.0212765957 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 300  0.0000000000 0.0192307692 0.0384615385 0.0000000000 0.0192307692
## 301  0.0000000000 0.0013513514 0.0108108108 0.0067567568 0.0040540541
## 302  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 303  0.0000000000 0.0224719101 0.0000000000 0.0112359551 0.0000000000
## 304  0.0000000000 0.0000000000 0.0096153846 0.0000000000 0.0000000000
## 305  0.0000000000 0.0024271845 0.0000000000 0.0000000000 0.0000000000
## 306  0.0033222591 0.0005537099 0.0005537099 0.0016611296 0.0005537099
## 307  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 308  0.0000000000 0.0000000000 0.0000000000 0.0169491525 0.0000000000
## 309  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 311  0.0033305579 0.0000000000 0.0000000000 0.0016652789 0.0000000000
## 312  0.0024578652 0.0084269663 0.0014044944 0.0028089888 0.0010533708
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 314  0.0000000000 0.0056497175 0.0000000000 0.0000000000 0.0112994350
## 315  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0909090909
## 316  0.0178571429 0.0000000000 0.0019841270 0.0039682540 0.0059523810
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0257425743 0.0019801980 0.0059405941 0.0000000000 0.0158415842
## 319  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 320  0.0000000000 0.0000000000 0.0021413276 0.0000000000 0.0000000000
## 321  0.0060240964 0.0120481928 0.0000000000 0.0000000000 0.0000000000
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0021459227 0.0000000000 0.0021459227 0.0042918455 0.0021459227
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0130718954 0.0000000000 0.0000000000
## 328  0.0000000000 0.0080000000 0.0240000000 0.0080000000 0.0000000000
## 329  0.0000000000 0.0000000000 0.0013986014 0.0000000000 0.0013986014
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 331  0.0085470085 0.0170940171 0.0000000000 0.0000000000 0.0000000000
## 332  0.0007645260 0.0015290520 0.0000000000 0.0007645260 0.0000000000
## 333  0.0000000000 0.0000000000 0.0467836257 0.0000000000 0.0058479532
## 334  0.0066225166 0.0000000000 0.0013245033 0.0039735099 0.0052980132
## 335  0.0000000000 0.0065789474 0.0000000000 0.0000000000 0.0197368421
## 336  0.0026525199 0.0000000000 0.0000000000 0.0026525199 0.0000000000
## 337  0.0122222222 0.0100000000 0.0044444444 0.0011111111 0.0044444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 340  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 341  0.0050590219 0.0016863406 0.0016863406 0.0033726813 0.0050590219
## 342  0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 343  0.0000000000 0.0027548209 0.0000000000 0.0000000000 0.0000000000
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0000000000 0.0208333333 0.0000000000 0.0000000000 0.0625000000
## 346  0.0000000000 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 347  0.0094786730 0.0047393365 0.0331753555 0.0142180095 0.0000000000
## 348  0.0000000000 0.0081521739 0.0000000000 0.0000000000 0.0000000000
## 349  0.0414364641 0.0165745856 0.0676795580 0.0165745856 0.0552486188
## 350  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 351  0.0000000000 0.0000000000 0.0109409190 0.0043763676 0.0043763676
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0053333333 0.0026666667 0.0000000000 0.0026666667 0.0000000000
## 355  0.0137931034 0.0000000000 0.0000000000 0.0068965517 0.0068965517
## 356  0.0300751880 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 357  0.0000000000 0.0000000000 0.0068965517 0.0000000000 0.0000000000
## 358  0.0000000000 0.0000000000 0.0045454545 0.0000000000 0.0000000000
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0000000000 0.0038363171 0.0000000000 0.0051150895 0.0051150895
## 361  0.0012135922 0.0024271845 0.0012135922 0.0012135922 0.0072815534
## 362  0.0000000000 0.0000000000 0.0000000000 0.0065789474 0.0000000000
## 363  0.0026799387 0.0038284839 0.0034456355 0.0072741194 0.0049770291
## 364  0.0051282051 0.0051282051 0.0102564103 0.0000000000 0.0102564103
## 365  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0000000000 0.0020661157 0.0185950413 0.0165289256 0.0309917355
## 368  0.0000000000 0.0162601626 0.0081300813 0.0243902439 0.0000000000
## 369  0.3333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0256410256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 372  0.0064724919 0.0000000000 0.0000000000 0.0000000000 0.0064724919
## 373  0.0000000000 0.0222222222 0.0444444444 0.0000000000 0.0000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0044742729 0.0011185682 0.0011185682 0.0055928412 0.0022371365
## 376  0.0064102564 0.0064102564 0.0064102564 0.0000000000 0.0000000000
## 377  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 378  0.0063291139 0.0000000000 0.0000000000 0.0063291139 0.0063291139
## 379  0.0014064698 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 380  0.0000000000 0.0066225166 0.0264900662 0.0198675497 0.0066225166
## 381  0.0000000000 0.4000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0023245002 0.0004649000 0.0000000000 0.0004649000 0.0004649000
## 383  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 384  0.0000000000 0.0172413793 0.0000000000 0.0000000000 0.0000000000
## 385  0.0000000000 0.0226480836 0.0000000000 0.0261324042 0.0104529617
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0588235294
## 387  0.0169491525 0.0372881356 0.0033898305 0.0000000000 0.0101694915
## 388  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0132450331
## 389  0.0000000000 0.0020222447 0.0000000000 0.0010111223 0.0020222447
## 390  0.0000000000 0.0000000000 0.0181818182 0.0000000000 0.0363636364
## 391  0.0055248619 0.0055248619 0.0000000000 0.0110497238 0.0055248619
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0000000000 0.0000000000 0.1000000000 0.0000000000 0.0666666667
## 394  0.0039682540 0.0000000000 0.0000000000 0.0119047619 0.0079365079
## 395  0.0014144272 0.0014144272 0.0000000000 0.0000000000 0.0042432815
## 396  0.0000000000 0.0000000000 0.0535714286 0.0000000000 0.0178571429
## 397  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 398  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 399  0.0000000000 0.0080000000 0.0112000000 0.0032000000 0.0128000000
## 400  0.0000000000 0.0000000000 0.0333333333 0.0000000000 0.0000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0106007067 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 403  0.0015313936 0.0000000000 0.0015313936 0.0000000000 0.0030627871
## 404  0.0000000000 0.0106382979 0.0425531915 0.0159574468 0.0053191489
## 405  0.0000000000 0.0000000000 0.0113636364 0.0113636364 0.0340909091
## 406  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 408  0.0050251256 0.0050251256 0.0000000000 0.0050251256 0.0000000000
## 409  0.0000000000 0.0833333333 0.0000000000 0.0059523810 0.0059523810
## 410  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 411  0.0004286327 0.0008572653 0.0042863266 0.0000000000 0.0012858980
## 412  0.0227272727 0.0340909091 0.0227272727 0.0227272727 0.0340909091
## 413  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0857142857
## 414  0.0000000000 0.0009115770 0.0009115770 0.0009115770 0.0045578851
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0000000000 0.0046082949 0.0046082949 0.0092165899 0.0230414747
## 417  0.0000000000 0.0000000000 0.0666666667 0.0000000000 0.0000000000
## 418  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0089887640
## 419  0.0166666667 0.0000000000 0.0000000000 0.0000000000 0.0166666667
## 420  0.0061983471 0.0041322314 0.0000000000 0.0082644628 0.0000000000
## 421  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 422  0.0079365079 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 423  0.0149253731 0.0149253731 0.0000000000 0.0149253731 0.0149253731
## 424  0.0229885057 0.0000000000 0.0344827586 0.0459770115 0.0459770115
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.1052631579 0.0000000000 0.0526315789 0.0526315789
## 427  0.0011641444 0.0000000000 0.0058207218 0.0023282887 0.0000000000
## 428  0.0000000000 0.0000000000 0.0050000000 0.0050000000 0.0100000000
## 429  0.0000000000 0.0000000000 0.0000000000 0.0281690141 0.0000000000
## 430  0.0000000000 0.1428571429 0.1428571429 0.1428571429 0.0000000000
## 431  0.0000000000 0.0000000000 0.0238095238 0.0952380952 0.0238095238
## 432  0.0000000000 0.0384615385 0.0769230769 0.0384615385 0.2307692308
## 433  0.0079365079 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 434  0.0047281324 0.0118203310 0.0165484634 0.0047281324 0.0047281324
## 435  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 436  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0078125000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 439  0.0000000000 0.0196078431 0.0392156863 0.0196078431 0.0000000000
## 440  0.0000000000 0.0000000000 0.0000000000 0.0180180180 0.0270270270
## 441  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0212765957
## 442  0.0153846154 0.0153846154 0.0000000000 0.0051282051 0.0410256410
## 443  0.0000000000 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0000000000 0.0000000000 0.0000000000 0.0018214936 0.0000000000
## 446  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0181818182
## 447  0.0000000000 0.0000000000 0.0277777778 0.0000000000 0.0000000000
## 448  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0158730159
## 449  0.0051903114 0.0051903114 0.0051903114 0.0103806228 0.0069204152
## 450  0.0015923567 0.0286624204 0.0143312102 0.0047770701 0.0031847134
## 451  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0606060606
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 453  0.0000000000 0.0714285714 0.0000000000 0.0000000000 0.0714285714
## 454  0.0142857143 0.0142857143 0.0142857143 0.0571428571 0.0428571429
## 455  0.1052631579 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 456  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 457  0.0063492063 0.0031746032 0.0190476190 0.0126984127 0.0000000000
## 458  0.0000000000 0.0131578947 0.0263157895 0.0263157895 0.0263157895
## 459  0.0786516854 0.0000000000 0.0337078652 0.0000000000 0.0449438202
## 460  0.0029411765 0.0088235294 0.0000000000 0.0029411765 0.0000000000
## 461  0.0000000000 0.0434782609 0.0000000000 0.0434782609 0.0434782609
## 462  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0400000000
## 463  0.0000000000 0.0120481928 0.0000000000 0.0120481928 0.0240963855
## 464  0.0000000000 0.0000000000 0.0000000000 0.0102040816 0.0102040816
## 465  0.0034843206 0.0069686411 0.0034843206 0.0034843206 0.0104529617
## 466  0.0000000000 0.0000000000 0.0000000000 0.0937500000 0.0312500000
## 467  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 468  0.0000000000 0.0000000000 0.0072992701 0.0000000000 0.0000000000
## 469  0.0000000000 0.0000000000 0.0118577075 0.0000000000 0.0039525692
## 470  0.0318021201 0.0282685512 0.0141342756 0.0176678445 0.0035335689
## 471  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 472  0.0043103448 0.0000000000 0.0172413793 0.0215517241 0.0086206897
## 473  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 474  0.0000000000 0.0000000000 0.0285714286 0.0285714286 0.0571428571
## 475  0.0000000000 0.0000000000 0.0416666667 0.0000000000 0.0000000000
## 476  0.0000000000 0.0000000000 0.0044052863 0.0000000000 0.0088105727
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0285714286 0.0285714286 0.0571428571 0.0571428571 0.0857142857
## 479  0.0775193798 0.0155038760 0.0155038760 0.0155038760 0.0000000000
## 480  0.0714285714 0.0000000000 0.0714285714 0.0000000000 0.0000000000
## 481  0.0000000000 0.0000000000 0.0000000000 0.0036231884 0.0000000000
## 482  0.0454545455 0.0000000000 0.0000000000 0.0000000000 0.0454545455
## 483  0.0000000000 0.0000000000 0.0185185185 0.0185185185 0.0000000000
## 484  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0200000000
## 485  0.0217391304 0.0000000000 0.0217391304 0.0652173913 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0079365079 0.0000000000 0.0079365079 0.0079365079 0.0000000000
## 488  0.0481927711 0.0120481928 0.0120481928 0.0120481928 0.0000000000
## 489  0.0714285714 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 490  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 491  0.0000000000 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0714285714 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 494  0.0032573290 0.0023266636 0.0000000000 0.0018613309 0.0032573290
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0114942529 0.0000000000 0.0114942529 0.0000000000
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0344827586 0.0000000000 0.1034482759 0.0344827586
## 499  0.0909090909 0.0909090909 0.0909090909 0.0000000000 0.0909090909
## 500  0.0000000000 0.0000000000 0.0666666667 0.0666666667 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.0000000000 0.0000000000 0.1111111111 0.0000000000 0.0000000000
## 503  0.0000000000 0.0222222222 0.0044444444 0.0044444444 0.0000000000
## 504  0.0051724138 0.0017241379 0.0043103448 0.0017241379 0.0034482759
## 505  0.0023894863 0.0059737157 0.0023894863 0.0107526882 0.0011947431
## 506  0.0000000000 0.0000000000 0.0400000000 0.0400000000 0.0400000000
## 507  0.0000000000 0.0175438596 0.0000000000 0.0000000000 0.0000000000
## 508  0.0000000000 0.0018083183 0.0036166365 0.0036166365 0.0054249548
## 509  0.0454545455 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0037174721 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 512  0.0000000000 0.0000000000 0.0000000000 0.0093457944 0.0000000000
## 513  0.0103092784 0.0000000000 0.0103092784 0.0206185567 0.0000000000
## 514  0.0000000000 0.0096153846 0.0000000000 0.0144230769 0.0096153846
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0000000000 0.0000000000 0.1000000000 0.0000000000 0.0000000000
## 517  0.0000000000 0.0000000000 0.0625000000 0.0000000000 0.0000000000
## 518  0.0000000000 0.0000000000 0.1052631579 0.0000000000 0.0000000000
## 519  0.0076045627 0.0000000000 0.0076045627 0.0038022814 0.0038022814
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0000000000 0.0204081633 0.0204081633 0.0000000000
## 522  0.0100000000 0.0100000000 0.0266666667 0.0100000000 0.0000000000
## 523  0.0204081633 0.0000000000 0.0408163265 0.0408163265 0.0000000000
## 524  0.0196078431 0.0000000000 0.0392156863 0.0588235294 0.0000000000
## 525  0.0181818182 0.0000000000 0.0363636364 0.0545454545 0.0000000000
## 526  0.0149253731 0.0000000000 0.0597014925 0.0597014925 0.0000000000
## 527  0.0126582278 0.0000000000 0.0126582278 0.0253164557 0.0126582278
## 528  0.0060240964 0.0000000000 0.0120481928 0.0120481928 0.0000000000
## 529  0.0103092784 0.0000000000 0.0618556701 0.0206185567 0.0000000000
## 530  0.0196078431 0.0000000000 0.0392156863 0.0392156863 0.0000000000
## 531  0.0000000000 0.0000000000 0.0000000000 0.0606060606 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 533  0.0000000000 0.0038461538 0.0384615385 0.0000000000 0.0000000000
## 534  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 535  0.0144927536 0.0000000000 0.0289855072 0.0434782609 0.0144927536
## 536  0.0204081633 0.0000000000 0.0408163265 0.0408163265 0.0000000000
## 537  0.0200000000 0.0000000000 0.0400000000 0.0600000000 0.0000000000
## 538  0.0444444444 0.0000000000 0.0222222222 0.0444444444 0.0000000000
## 539  0.0222222222 0.0000000000 0.0222222222 0.0444444444 0.0000000000
## 540  0.0000000000 0.0303030303 0.0303030303 0.0606060606 0.0000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0047393365
## 542  0.0163934426 0.0000000000 0.0163934426 0.0327868852 0.0327868852
## 543  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0172413793
## 544  0.0000000000 0.0243902439 0.0243902439 0.0243902439 0.0000000000
## 545  0.0000000000 0.0000000000 0.2307692308 0.0000000000 0.0000000000
## 546  0.0208333333 0.0208333333 0.0416666667 0.0208333333 0.0000000000
## 547  0.0000000000 0.0046511628 0.0093023256 0.0139534884 0.0279069767
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0095238095 0.0000000000 0.0190476190 0.0190476190 0.0190476190
## 550  0.0204081633 0.0000000000 0.0204081633 0.0204081633 0.0000000000
## 551  0.0163934426 0.0000000000 0.0163934426 0.0163934426 0.0163934426
## 552  0.0212765957 0.0000000000 0.0212765957 0.0212765957 0.0000000000
## 553  0.0208333333 0.0000000000 0.0208333333 0.0208333333 0.0000000000
## 554  0.0169491525 0.0169491525 0.0169491525 0.0169491525 0.0000000000
## 555  0.0153846154 0.0000000000 0.0153846154 0.0153846154 0.0000000000
## 556  0.0153846154 0.0000000000 0.0153846154 0.0153846154 0.0000000000
## 557  0.0070921986 0.0070921986 0.0141843972 0.0070921986 0.0000000000
## 558  0.0000000000 0.0222222222 0.0222222222 0.0000000000 0.0000000000
## 559  0.0000000000 0.0000000000 0.0142857143 0.0142857143 0.0000000000
## 560  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 562  0.0000000000 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 563  0.0114678899 0.0000000000 0.0091743119 0.0137614679 0.0091743119
## 564  0.0243902439 0.0000000000 0.0243902439 0.0000000000 0.0000000000
## 565  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0192307692 0.0576923077 0.0384615385 0.0000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0370370370 0.0000000000 0.0000000000 0.0000000000
## 569  0.0027173913 0.0045289855 0.0054347826 0.0036231884 0.0054347826
## 570  0.0000000000 0.0031446541 0.0000000000 0.0031446541 0.0000000000
## 571  0.0048076923 0.0000000000 0.0000000000 0.0000000000 0.0048076923
## 572  0.0000000000 0.0000000000 0.0000000000 0.0131578947 0.0263157895
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 574  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 575  0.0000000000 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 576  0.0000000000 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 577  0.0000000000 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 578  0.0000000000 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 579  0.0000000000 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 580  0.0000000000 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 581  0.0000000000 0.0000000000 0.0333333333 0.0333333333 0.0000000000
## 582  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 583  0.0000000000 0.0279069767 0.0232558140 0.0139534884 0.0046511628
## 584  0.0000000000 0.0833333333 0.0000000000 0.0833333333 0.0000000000
## 585  0.0025000000 0.0025000000 0.0025000000 0.0075000000 0.0150000000
## 586  0.0000000000 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 587  0.0000000000 0.0031620553 0.0015810277 0.0015810277 0.0015810277
## 588  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 589  0.0000000000 0.0158730159 0.0158730159 0.0000000000 0.0000000000
## 590  0.0000000000 0.0133333333 0.0000000000 0.0000000000 0.0000000000
## 591  0.0000000000 0.1111111111 0.0000000000 0.1111111111 0.0000000000
## 592  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 593  0.0113052415 0.0082219938 0.0102774923 0.0215827338 0.0184994861
## 594  0.0000000000 0.0000000000 0.0344827586 0.0000000000 0.0000000000
## 595  0.0000000000 0.0000000000 0.0357142857 0.0000000000 0.0000000000
## 596  0.0000000000 0.0000000000 0.0344827586 0.0000000000 0.0000000000
## 597  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0000000000
## 598  0.0000000000 0.0144927536 0.0144927536 0.0000000000 0.0000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 600  0.0270270270 0.0000000000 0.0270270270 0.0000000000 0.0000000000
## 601  0.0400000000 0.0000000000 0.0400000000 0.0000000000 0.0000000000
## 602  0.0000000000 0.0384615385 0.0384615385 0.0000000000 0.0000000000
## 603  0.0000000000 0.0000000000 0.0058139535 0.0058139535 0.0000000000
## 604  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0000000000
## 605  0.0000000000 0.0000000000 0.0476190476 0.0000000000 0.0000000000
## 606  0.0000000000 0.0000000000 0.0333333333 0.0000000000 0.0000000000
## 607  0.0000000000 0.0000000000 0.0357142857 0.0000000000 0.0000000000
## 608  0.0000000000 0.0039215686 0.0000000000 0.0039215686 0.0156862745
## 609  0.0000000000 0.0000000000 0.0000000000 0.0357142857 0.0000000000
## 610  0.0000000000 0.0000000000 0.0136986301 0.0136986301 0.0000000000
## 611  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.0400000000 0.0000000000
## 614  0.0000000000 0.0000000000 0.0000000000 0.0072992701 0.0000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.0277777778 0.0000000000
## 616  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 617  0.0400000000 0.0000000000 0.0000000000 0.0400000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 620  0.0000000000 0.0000000000 0.0000000000 0.0083333333 0.0000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 623  0.0000000000 0.0344827586 0.0344827586 0.1379310345 0.0344827586
## 624  0.0000000000 0.0000000000 0.0000000000 0.0196078431 0.0196078431
## 625  0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0256410256
## 626  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 627  0.0000000000 0.0000000000 0.0000000000 0.0057803468 0.0115606936
## 628  0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.0000000000
## 629  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 630  0.0000000000 0.0000000000 0.0000000000 0.0357142857 0.0000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0153846154 0.0000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.0357142857 0.0000000000
## 633  0.0071428571 0.0000000000 0.0000000000 0.0071428571 0.0000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 635  0.0000000000 0.0000000000 0.0000000000 0.0238095238 0.0000000000
## 636  0.0102040816 0.0102040816 0.0204081633 0.0000000000 0.0000000000
## 637  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0312500000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0384615385 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 644  0.0000000000 0.0400000000 0.0000000000 0.0800000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0952380952 0.0000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0689655172 0.0000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0101522843 0.0050761421
## 649  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 650  0.0000000000 0.0000000000 0.0000000000 0.0081632653 0.0040816327
## 651  0.0000000000 0.0000000000 0.0000000000 0.0178571429 0.0000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 653  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 654  0.0038265306 0.0025510204 0.0051020408 0.0076530612 0.0025510204
## 655  0.0000000000 0.0000000000 0.0245901639 0.0000000000 0.0040983607
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0129870130 0.0649350649
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2500000000
## 659  0.0000000000 0.0083333333 0.0000000000 0.0083333333 0.0000000000
## 660  0.0454545455 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0104166667 0.0000000000
## 662  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 663  0.0333333333 0.0000000000 0.0000000000 0.0333333333 0.0000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0143884892 0.0000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0500000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0384615385 0.0384615385
## 667  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0303030303 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.0333333333
## 670  0.0000000000 0.0000000000 0.0000000000 0.0416666667 0.0416666667
## 671  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0294117647 0.0294117647
## 673  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0500000000
## 674  0.0000000000 0.0250000000 0.0000000000 0.0500000000 0.0250000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0273972603 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
## 680  0.0000000000 0.0000000000 0.0000000000 0.0400000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0625000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 684  0.0294117647 0.0000000000 0.0000000000 0.0294117647 0.0294117647
## 685  0.0384615385 0.0000000000 0.0000000000 0.0384615385 0.0000000000
## 686  0.0384615385 0.0000000000 0.0000000000 0.0384615385 0.0000000000
## 687  0.0065359477 0.0065359477 0.0000000000 0.0065359477 0.0000000000
## 688  0.0037593985 0.0000000000 0.0000000000 0.0037593985 0.0037593985
## 689  0.0285714286 0.0000000000 0.0000000000 0.0285714286 0.0285714286
## 690  0.0270270270 0.0000000000 0.0270270270 0.0270270270 0.0000000000
## 691  0.0196078431 0.0000000000 0.0000000000 0.0196078431 0.0196078431
## 692  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.1000000000
## 693  0.0000000000 0.0000000000 0.0357142857 0.0357142857 0.0000000000
## 694  0.0000000000 0.0000000000 0.0769230769 0.0769230769 0.0000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.2666666667 0.0000000000
## 696  0.0086206897 0.0000000000 0.0000000000 0.0086206897 0.0086206897
## 697  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0129870130 0.0000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.0128205128 0.0128205128
## 703  0.0909090909 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 704  0.0000000000 0.0000000000 0.0238095238 0.0714285714 0.0476190476
## 705  0.0000000000 0.0000000000 0.0540540541 0.1081081081 0.0270270270
## 706  0.0000000000 0.0303030303 0.0000000000 0.1212121212 0.0303030303
## 707  0.0000000000 0.0000000000 0.0000000000 0.1111111111 0.0370370370
## 708  0.0000000000 0.0000000000 0.0263157895 0.0526315789 0.0263157895
## 709  0.0000000000 0.0000000000 0.0294117647 0.0294117647 0.0294117647
## 710  0.0020449898 0.0040899796 0.0000000000 0.0061349693 0.0000000000
## 711  0.0714285714 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 712  0.0666666667 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 713  0.0285714286 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 716  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 718  0.0000000000 0.0384615385 0.0384615385 0.0384615385 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 726  0.0000000000 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.1666666667 0.0000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 729  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 730  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0196078431 0.0000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0181818182 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0400000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 743  0.0526315789 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 744  0.0526315789 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 745  0.0000000000 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 746  0.0000000000 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 747  0.0000000000 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.0344827586 0.0000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.0270270270 0.0270270270
## 751  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 754  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 755  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0086956522 0.0000000000
## 757  0.0000000000 0.0555555556 0.0000000000 0.0555555556 0.0000000000
## 758  0.0000000000 0.0000000000 0.0000000000 0.0144927536 0.0000000000
## 759  0.0000000000 0.0000000000 0.0000000000 0.0056818182 0.0000000000
## 760  0.0000000000 0.0000000000 0.0000000000 0.0096153846 0.0000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0123456790 0.0000000000
## 762  0.0000000000 0.0357142857 0.0000000000 0.0178571429 0.0000000000
## 763  0.0000000000 0.0162601626 0.0000000000 0.0081300813 0.0000000000
## 764  0.0250000000 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 765  0.0000000000 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 766  0.0000000000 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 767  0.0000000000 0.0080000000 0.0000000000 0.0080000000 0.0240000000
## 768  0.0000000000 0.0000000000 0.0476190476 0.0952380952 0.0000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0116279070 0.0000000000
## 770  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 771  0.0000000000 0.0000000000 0.0000000000 0.0243902439 0.0243902439
## 772  0.0000000000 0.0000000000 0.0000000000 0.0128205128 0.0128205128
## 773  0.0000000000 0.0000000000 0.0000000000 0.0033783784 0.0000000000
## 774  0.0000000000 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.0625000000 0.0000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.0250000000 0.0000000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 779  0.0000000000 0.0000000000 0.0000000000 0.0277777778 0.0000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 781  0.0000000000 0.0000000000 0.0000000000 0.0128205128 0.0000000000
## 782  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.0202020202 0.0000000000
## 784  0.0000000000 0.0000000000 0.0000000000 0.0212765957 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0416666667 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 787  0.0000000000 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 788  0.0000000000 0.0370370370 0.0000000000 0.0370370370 0.0000000000
## 789  0.0000000000 0.0250000000 0.0000000000 0.0250000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0032154341 0.0064308682 0.0000000000
## 791  0.0000000000 0.0000000000 0.0000000000 0.0909090909 0.0454545455
## 792  0.0000000000 0.0000000000 0.0000000000 0.0952380952 0.0476190476
## 793  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0416666667
## 794  0.0000000000 0.0000000000 0.0000000000 0.0571428571 0.0000000000
## 795  0.0000000000 0.0000000000 0.0000000000 0.0111731844 0.0000000000
## 796  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 797  0.0303030303 0.0000000000 0.0000000000 0.0303030303 0.0000000000
## 798  0.0555555556 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0227272727 0.0000000000
## 800  0.0454545455 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 802  0.0322580645 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 803  0.0000000000 0.0789473684 0.0000000000 0.1052631579 0.0000000000
## 804  0.0000000000 0.0277777778 0.0000000000 0.0833333333 0.0000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0370370370
## 806  0.0000000000 0.0000000000 0.0000000000 0.1666666667 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0588235294 0.0000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0185185185 0.0000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0588235294 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 816  0.0000000000 0.0560000000 0.0080000000 0.0160000000 0.0240000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.1000000000 0.0000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0270270270 0.0000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0294117647 0.0000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0370370370 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.1111111111 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0094339623 0.0188679245
## 828  0.0000000000 0.0000000000 0.0000000000 0.0625000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0625000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 834  0.0153846154 0.0000000000 0.0000000000 0.0153846154 0.0000000000
## 835  0.0000000000 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 836  0.0000000000 0.0500000000 0.0000000000 0.0500000000 0.0000000000
## 837  0.0000000000 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 838  0.0000000000 0.0666666667 0.0000000000 0.0666666667 0.0000000000
## 839  0.0000000000 0.0416666667 0.0000000000 0.0416666667 0.0000000000
## 840  0.0000000000 0.0000000000 0.0277777778 0.0277777778 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0555555556 0.0000000000
## 842  0.0000000000 0.0400000000 0.0000000000 0.0400000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.0869565217 0.0000000000
## 844  0.0000000000 0.0384615385 0.0000000000 0.0384615385 0.0000000000
## 845  0.0000000000 0.0454545455 0.0454545455 0.0454545455 0.0000000000
## 846  0.0000000000 0.0869565217 0.0000000000 0.0434782609 0.0000000000
## 847  0.0000000000 0.0357142857 0.0000000000 0.0357142857 0.0000000000
## 848  0.0000000000 0.0119047619 0.0000000000 0.0238095238 0.0000000000
## 849  0.0000000000 0.0344827586 0.0000000000 0.0344827586 0.0000000000
## 850  0.0000000000 0.0454545455 0.0000000000 0.0454545455 0.0000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.1538461538 0.0000000000
## 852  0.0357142857 0.0000000000 0.0000000000 0.0357142857 0.0000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 854  0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 855  0.0000000000 0.0000000000 0.0000000000 0.0416666667 0.0000000000
## 856  0.0000000000 0.0000000000 0.0000000000 0.0142857143 0.0000000000
## 857  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.0588235294 0.0000000000
## 859  0.0909090909 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 860  0.0000000000 0.0000000000 0.0000000000 0.0018115942 0.0000000000
## 861  0.0037037037 0.0000000000 0.0000000000 0.0037037037 0.0000000000
## 862  0.0000000000 0.0312500000 0.0000000000 0.0312500000 0.0000000000
## 863  0.0500000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 864  0.0769230769 0.0000000000 0.0000000000 0.0769230769 0.0769230769
## 865  0.0666666667 0.0000000000 0.0000000000 0.0666666667 0.0666666667
## 866  0.0000000000 0.0909090909 0.0000000000 0.0909090909 0.0000000000
## 867  0.0000000000 0.0714285714 0.0000000000 0.0714285714 0.0000000000
## 868  0.0000000000 0.0095238095 0.0000000000 0.0285714286 0.0000000000
## 869  0.0000000000 0.0769230769 0.0000000000 0.0769230769 0.0000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0098039216 0.0000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0400000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0909090909 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0454545455
## 877  0.0000000000 0.0000000000 0.0000000000 0.0588235294 0.0588235294
## 878  0.0000000000 0.0000000000 0.0357142857 0.0357142857 0.0357142857
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 881  0.0000000000 0.0171428571 0.0114285714 0.0000000000 0.0057142857
## 882  0.0018796992 0.0018796992 0.0009398496 0.0028195489 0.0056390977
## 883  0.0000000000 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 884  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 885  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 886  0.0000000000 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 887  0.0000000000 0.1250000000 0.1250000000 0.0000000000 0.0000000000
## 888  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 889  0.0000000000 0.0000000000 0.0000000000 0.0061349693 0.0030674847
## 890  0.0000000000 0.0357142857 0.0000000000 0.0000000000 0.0000000000
## 891  0.0035335689 0.0035335689 0.0035335689 0.0070671378 0.0000000000
## 892  0.0000000000 0.0000000000 0.0322580645 0.0645161290 0.0000000000
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0285714286
## 895  0.0020161290 0.0221774194 0.0080645161 0.0040322581 0.0000000000
## 896  0.0000000000 0.0000000000 0.1666666667 0.0000000000 0.0000000000
## 897  0.0000000000 0.0000000000 0.0000000000 0.0232558140 0.0000000000
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 899  0.0000000000 0.0666666667 0.0000000000 0.0000000000 0.1333333333
## 900  0.0000000000 0.0571428571 0.0000000000 0.0000000000 0.0000000000
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0126582278 0.0126582278 0.0000000000 0.0126582278 0.0000000000
## 903  0.0204081633 0.0000000000 0.0408163265 0.0000000000 0.0204081633
## 904  0.0000000000 0.0029673591 0.0059347181 0.0118694362 0.0000000000
## 905  0.0158730159 0.0158730159 0.0000000000 0.0158730159 0.0000000000
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0133333333 0.0933333333 0.0266666667 0.0266666667 0.0133333333
## 910  0.0057803468 0.0086705202 0.0057803468 0.0028901734 0.0000000000
## 911  0.0201149425 0.0114942529 0.0057471264 0.0028735632 0.0287356322
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0089285714 0.0089285714 0.0178571429 0.0000000000 0.0178571429
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 915  0.0120068611 0.0171526587 0.0120068611 0.0120068611 0.0274442539
## 916  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 917  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1000000000
## 919  0.0170940171 0.0000000000 0.0085470085 0.0085470085 0.2735042735
## 920  0.0454545455 0.0000000000 0.0909090909 0.0000000000 0.0000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0090090090 0.0000000000 0.0090090090 0.0090090090 0.0090090090
## 923  0.0000000000 0.0000000000 0.0103092784 0.0103092784 0.0000000000
## 924  0.0000000000 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 925  0.0023041475 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 926  0.0083333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0000000000 0.0000000000 0.0250000000 0.0000000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0125000000 0.0125000000 0.0000000000 0.0125000000 0.0125000000
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0294117647 0.0000000000 0.0588235294 0.0000000000 0.0000000000
## 934  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0384615385
## 935  0.0000000000 0.0666666667 0.0000000000 0.0000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0416666667 0.0000000000 0.0416666667
## 937  0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 938  0.0066964286 0.0000000000 0.0044642857 0.0044642857 0.0178571429
## 939  0.0053191489 0.0000000000 0.0053191489 0.0000000000 0.0079787234
## 940  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.0000000000
## 941  0.0312500000 0.0000000000 0.0104166667 0.0000000000 0.0208333333
## 942  0.0070921986 0.0070921986 0.0070921986 0.0070921986 0.0000000000
## 943  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 944  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 945  0.0094339623 0.0094339623 0.0047169811 0.0000000000 0.0047169811
## 946  0.0000000000 0.0000000000 0.0035087719 0.0000000000 0.0035087719
## 947  0.0000000000 0.0042016807 0.0000000000 0.0000000000 0.0210084034
## 948  0.0000000000 0.2045454545 0.0000000000 0.0000000000 0.0000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0042016807 0.0000000000 0.0126050420 0.0210084034 0.0126050420
## 952  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 953  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 954  0.0571428571 0.0000000000 0.0571428571 0.0000000000 0.0000000000
## 955  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 956  0.0059171598 0.0059171598 0.0059171598 0.0000000000 0.0236686391
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0000000000 0.0107526882 0.0430107527 0.0107526882 0.0000000000
## 959  0.0000000000 0.0194805195 0.0000000000 0.0064935065 0.0129870130
## 960  0.0072289157 0.0024096386 0.0144578313 0.0096385542 0.0048192771
## 961  0.0152284264 0.0000000000 0.0000000000 0.0000000000 0.0050761421
## 962  0.0158730159 0.0158730159 0.0000000000 0.0000000000 0.0000000000
## 963  0.0000000000 0.0000000000 0.0789473684 0.0263157895 0.0263157895
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0247933884 0.0165289256 0.0000000000 0.0000000000
## 966  0.0000000000 0.0000000000 0.0172413793 0.0000000000 0.0000000000
## 967  0.0172413793 0.0000000000 0.0172413793 0.0344827586 0.0000000000
## 968  0.0000000000 0.0120481928 0.0240963855 0.0000000000 0.0240963855
## 969  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0181818182
## 970  0.0109890110 0.0073260073 0.0146520147 0.0256410256 0.0073260073
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0294117647 0.0294117647 0.0000000000 0.0000000000 0.0000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0000000000 0.0000000000 0.0021739130 0.0021739130 0.0021739130
## 976  0.0000000000 0.0980392157 0.0000000000 0.0392156863 0.0784313725
## 977  0.0113636364 0.0028409091 0.0000000000 0.0000000000 0.0000000000
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 980  0.0000000000 0.0000000000 0.0121951220 0.0243902439 0.0121951220
## 981  0.0000000000 0.0000000000 0.0000000000 0.0133333333 0.0000000000
## 982  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 983  0.0073529412 0.0073529412 0.0147058824 0.0147058824 0.0147058824
## 984  0.0035714286 0.0035714286 0.0000000000 0.0178571429 0.0035714286
## 985  0.0062893082 0.0104821803 0.0020964361 0.0083857442 0.0146750524
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0023795360 0.0005948840 0.0053539560 0.0017846520 0.0005948840
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0000000000 0.0140845070 0.0070422535 0.0140845070 0.0000000000
## 990  0.0000000000 0.0085470085 0.0170940171 0.0170940171 0.0000000000
## 991  0.0011916584 0.0011916584 0.0013902681 0.0015888779 0.0007944389
## 992  0.0032679739 0.0000000000 0.0032679739 0.0000000000 0.0000000000
## 993  0.0038461538 0.0038461538 0.0000000000 0.0038461538 0.0038461538
## 994  0.0015151515 0.0015151515 0.0030303030 0.0030303030 0.0015151515
## 995  0.0000000000 0.0000000000 0.0000000000 0.0515463918 0.0000000000
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 997  0.0033039648 0.0000000000 0.0000000000 0.0022026432 0.0005506608
## 998  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 999  0.0294117647 0.0121107266 0.0194636678 0.0125432526 0.0086505190
## 1000 0.0000000000 0.0039525692 0.0039525692 0.0079051383 0.0000000000
##                24           25           26           27           28
## 1    0.0072150072 0.0043290043 0.0043290043 0.0050505051 0.0043290043
## 2    0.0000000000 0.0000000000 0.0000000000 0.0131578947 0.0000000000
## 3    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 4    0.0037105751 0.0018552876 0.0037105751 0.0037105751 0.0037105751
## 5    0.0000000000 0.0037429819 0.0024953213 0.0018714910 0.0037429819
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0127754120 0.0031475653 0.0127754120 0.0079614886 0.0040733198
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 11   0.0007132668 0.0007132668 0.0028530670 0.0000000000 0.0042796006
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0175438596 0.0175438596 0.0000000000 0.0000000000
## 14   0.0083333333 0.0083333333 0.0083333333 0.0083333333 0.0083333333
## 15   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 17   0.0240963855 0.0361445783 0.0000000000 0.0120481928 0.0000000000
## 18   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 19   0.0000000000 0.1500000000 0.0000000000 0.0000000000 0.1000000000
## 20   0.0035026270 0.0052539405 0.0017513135 0.0035026270 0.0000000000
## 21   0.0023529412 0.0023529412 0.0023529412 0.0047058824 0.0000000000
## 22   0.0208333333 0.0208333333 0.0000000000 0.0000000000 0.0833333333
## 23   0.0029940120 0.0029940120 0.0079840319 0.0029940120 0.0029940120
## 24   0.0033898305 0.0000000000 0.0135593220 0.0000000000 0.0135593220
## 25   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0227272727
## 26   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 27   0.0000000000 0.0000000000 0.0057471264 0.0000000000 0.0000000000
## 28   0.0000000000 0.0039062500 0.0039062500 0.0117187500 0.0078125000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 30   0.0000000000 0.3000000000 0.0000000000 0.0000000000 0.0000000000
## 31   0.0023174971 0.0011587486 0.0000000000 0.0011587486 0.0000000000
## 32   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 33   0.0000000000 0.0000000000 0.0096153846 0.0048076923 0.0096153846
## 34   0.0088272383 0.0037831021 0.0012610340 0.0063051702 0.0113493064
## 35   0.0000000000 0.0000000000 0.0087463557 0.0029154519 0.0029154519
## 36   0.0000000000 0.0000000000 0.0054054054 0.0000000000 0.0000000000
## 37   0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 38   0.0000000000 0.0000000000 0.0000000000 0.0057142857 0.0114285714
## 39   0.0000000000 0.0000000000 0.0069444444 0.0069444444 0.0069444444
## 40   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 43   0.0000000000 0.0000000000 0.0106382979 0.0000000000 0.0000000000
## 44   0.0030518820 0.0044082740 0.0074601560 0.0050864700 0.0077992540
## 45   0.0026455026 0.0097001764 0.0035273369 0.0000000000 0.0000000000
## 46   0.0040983607 0.0000000000 0.0122950820 0.0000000000 0.0000000000
## 47   0.0000000000 0.0028901734 0.0057803468 0.0028901734 0.0000000000
## 48   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0909090909
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0000000000 0.0000000000 0.0107913669 0.0000000000 0.0000000000
## 53   0.0066889632 0.0033444816 0.0066889632 0.0000000000 0.0133779264
## 54   0.0000000000 0.0357142857 0.0000000000 0.0000000000 0.0178571429
## 55   0.0000000000 0.0000000000 0.0050761421 0.0000000000 0.0000000000
## 56   0.0030880082 0.0010293361 0.0000000000 0.0020586722 0.0041173443
## 57   0.0151515152 0.0303030303 0.0000000000 0.0303030303 0.0000000000
## 58   0.0000000000 0.0000000000 0.0059760956 0.0019920319 0.0019920319
## 59   0.0000000000 0.0012755102 0.0000000000 0.0000000000 0.0025510204
## 60   0.0197368421 0.0131578947 0.0000000000 0.0000000000 0.0131578947
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0869565217 0.0000000000 0.0434782609 0.0434782609
## 63   0.0029585799 0.0266272189 0.0000000000 0.0029585799 0.0029585799
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 66   0.0057581574 0.0095969290 0.0057581574 0.0038387716 0.0000000000
## 67   0.0000000000 0.0119047619 0.0000000000 0.1071428571 0.0238095238
## 68   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 69   0.0157255182 0.0021443888 0.0050035740 0.0000000000 0.0035739814
## 70   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 72   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 74   0.0010952903 0.0005476451 0.0010952903 0.0027382256 0.0010952903
## 75   0.0011418784 0.0011418784 0.0025692264 0.0011418784 0.0051384528
## 76   0.0072859745 0.0054644809 0.0054644809 0.0000000000 0.0000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0103092784 0.0000000000 0.0034364261 0.0068728522 0.0000000000
## 79   0.0071174377 0.0035587189 0.0071174377 0.0000000000 0.0106761566
## 80   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 81   0.0043103448 0.0301724138 0.0172413793 0.0086206897 0.0215517241
## 82   0.0106382979 0.0106382979 0.0000000000 0.0106382979 0.0000000000
## 83   0.0014184397 0.0014184397 0.0014184397 0.0028368794 0.0056737589
## 84   0.0071942446 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 85   0.0000000000 0.0000000000 0.0059701493 0.0000000000 0.0029850746
## 86   0.0000000000 0.0656250000 0.0031250000 0.0000000000 0.0062500000
## 87   0.0000000000 0.0000000000 0.0000000000 0.0036231884 0.0000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 89   0.0034149118 0.0068298236 0.0335799659 0.0125213432 0.0079681275
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 92   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 93   0.0000000000 0.0000000000 0.0032362460 0.0000000000 0.0097087379
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0000000000 0.0000000000 0.0350877193 0.0000000000 0.0350877193
## 96   0.0166666667 0.0000000000 0.0000000000 0.0000000000 0.0333333333
## 97   0.0026560425 0.0046480744 0.0046480744 0.0026560425 0.0053120850
## 98   0.0136986301 0.0091324201 0.0045662100 0.0045662100 0.0136986301
## 99   0.0000000000 0.0016750419 0.0000000000 0.0000000000 0.0033500838
## 100  0.0000000000 0.0000000000 0.0000000000 0.0273972603 0.0000000000
## 101  0.0040000000 0.0000000000 0.0000000000 0.0060000000 0.0120000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 103  0.0038610039 0.0000000000 0.0077220077 0.0115830116 0.0154440154
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 105  0.0000000000 0.0000000000 0.0000000000 0.0129032258 0.0129032258
## 106  0.0158590308 0.0052863436 0.0035242291 0.0000000000 0.0035242291
## 107  0.0000000000 0.0000000000 0.0079365079 0.0079365079 0.0000000000
## 108  0.0091743119 0.0091743119 0.0183486239 0.0000000000 0.0000000000
## 109  0.0035398230 0.0008849558 0.0017699115 0.0008849558 0.0035398230
## 110  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0008802817 0.0008802817 0.0017605634 0.0008802817 0.0008802817
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0005988024 0.0029940120 0.0035928144 0.0119760479 0.0095808383
## 116  0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.1000000000
## 117  0.0095238095 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 118  0.0000000000 0.0005068424 0.0010136847 0.0010136847 0.0000000000
## 119  0.1176470588 0.0588235294 0.0000000000 0.0000000000 0.0000000000
## 120  0.0000000000 0.0000000000 0.0000000000 0.0571428571 0.0000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0054945055 0.0000000000 0.0027472527 0.0054945055 0.0027472527
## 123  0.0000000000 0.0039525692 0.0039525692 0.0039525692 0.0013175231
## 124  0.0068649886 0.0091533181 0.0297482838 0.0022883295 0.0068649886
## 125  0.0246913580 0.0000000000 0.0000000000 0.0123456790 0.0123456790
## 126  0.0047562426 0.0035671819 0.0023781213 0.0011890606 0.0011890606
## 127  0.0454545455 0.0227272727 0.0000000000 0.0000000000 0.0000000000
## 128  0.0006715917 0.0000000000 0.0006715917 0.0026863667 0.0026863667
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 132  0.0113421550 0.0075614367 0.0699432892 0.0189035917 0.0113421550
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0007527286 0.0015054573 0.0009409108 0.0020700038 0.0030109146
## 136  0.0000000000 0.0300000000 0.0000000000 0.0000000000 0.0000000000
## 137  0.0000000000 0.0000000000 0.0044444444 0.0000000000 0.0133333333
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0000000000 0.0000000000 0.0006830601 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 142  0.0000000000 0.0129870130 0.0086580087 0.0043290043 0.0173160173
## 143  0.0277777778 0.0277777778 0.0277777778 0.0000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 146  0.0000000000 0.0000000000 0.0000000000 0.0033003300 0.0033003300
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0454545455 0.0000000000 0.0000000000 0.2272727273 0.2272727273
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0000000000 0.0000000000 0.0000000000 0.0338983051 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0018198362 0.0027297543 0.0027297543 0.0400363967 0.0081892630
## 156  0.0010266940 0.0005133470 0.0005133470 0.0005133470 0.0010266940
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 159  0.0037688442 0.0100502513 0.0062814070 0.0276381910 0.0087939698
## 160  0.0000000000 0.0010909091 0.0010909091 0.0032727273 0.0047272727
## 161  0.0035087719 0.0000000000 0.0280701754 0.0070175439 0.0070175439
## 162  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 163  0.0229885057 0.0229885057 0.0000000000 0.0114942529 0.0344827586
## 164  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 165  0.0000000000 0.0000000000 0.0000000000 0.0364963504 0.0000000000
## 166  0.0018648019 0.0000000000 0.0009324009 0.0018648019 0.0013986014
## 167  0.0000000000 0.0048780488 0.0000000000 0.0048780488 0.0243902439
## 168  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 169  0.0000000000 0.0000000000 0.0059523810 0.0119047619 0.0178571429
## 170  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0273972603
## 171  0.0118343195 0.0118343195 0.0118343195 0.0118343195 0.0059171598
## 172  0.0000000000 0.0000000000 0.0000000000 0.1142857143 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 174  0.0020181635 0.0040363269 0.0050454087 0.0100908174 0.0131180626
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0130434783 0.0000000000 0.0000000000 0.0000000000 0.0086956522
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0011074197 0.0000000000 0.0007382798 0.0025839793 0.0047988188
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0035714286 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 181  0.0020134228 0.0008948546 0.0006711409 0.0008948546 0.0024608501
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 185  0.0022883295 0.0013729977 0.0004576659 0.0013729977 0.0059496568
## 186  0.0009041591 0.0018083183 0.0009041591 0.0054249548 0.0045207957
## 187  0.0000000000 0.0029239766 0.0029239766 0.0058479532 0.0000000000
## 188  0.0000000000 0.0000000000 0.0000000000 0.0089086860 0.0000000000
## 189  0.0344086022 0.0021505376 0.0086021505 0.0043010753 0.0107526882
## 190  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 191  0.0156250000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 192  0.0007451565 0.0000000000 0.0067064083 0.0000000000 0.0044709389
## 193  0.0046728972 0.0000000000 0.0000000000 0.0000000000 0.0140186916
## 194  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0174672489
## 195  0.0000000000 0.0333333333 0.0000000000 0.0000000000 0.0222222222
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0019305019 0.0000000000 0.0019305019 0.0000000000 0.0038610039
## 198  0.0000000000 0.0200000000 0.0400000000 0.0000000000 0.0400000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0000000000 0.0021929825 0.0021929825 0.0043859649 0.0021929825
## 202  0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 203  0.0000000000 0.0000000000 0.0000000000 0.0266666667 0.0400000000
## 204  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0000000000 0.0000000000 0.0023350846 0.0005837712 0.0023350846
## 206  0.0000000000 0.0000000000 0.0023041475 0.0046082949 0.0000000000
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 208  0.0112359551 0.0393258427 0.0000000000 0.0000000000 0.0000000000
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0047393365 0.0000000000 0.0047393365 0.0023696682 0.0130331754
## 214  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 216  0.0000000000 0.0000000000 0.0116279070 0.0058139535 0.0000000000
## 217  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 218  0.0000000000 0.0142857143 0.0000000000 0.0142857143 0.0214285714
## 219  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 220  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0192307692
## 221  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 222  0.0000000000 0.0000000000 0.0000000000 0.0020865936 0.0005216484
## 223  0.0000000000 0.0045662100 0.0000000000 0.0045662100 0.0000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0057034221 0.0019011407 0.0000000000 0.0000000000 0.0266159696
## 226  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 227  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 228  0.0000000000 0.0000000000 0.0000000000 0.0095238095 0.0095238095
## 229  0.0080091533 0.0080091533 0.0091533181 0.0034324943 0.0068649886
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0000000000 0.0005935892 0.0009893154 0.0011871785 0.0000000000
## 232  0.0000000000 0.0109289617 0.0000000000 0.0054644809 0.0054644809
## 233  0.0000000000 0.0000000000 0.0000000000 0.0041152263 0.0164609053
## 234  0.0000000000 0.0000000000 0.0000000000 0.0011389522 0.0102505695
## 235  0.0000000000 0.0015151515 0.0000000000 0.0030303030 0.0015151515
## 236  0.0006275494 0.0003137747 0.0012550988 0.0025101977 0.0018826483
## 237  0.0198675497 0.0104068117 0.0085146641 0.0028382214 0.0037842952
## 238  0.0000000000 0.0005078720 0.0005078720 0.0000000000 0.0005078720
## 239  0.0000000000 0.0018587361 0.0018587361 0.0018587361 0.0000000000
## 240  0.0200000000 0.0000000000 0.0000000000 0.0200000000 0.0200000000
## 241  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 242  0.0027372263 0.0009124088 0.0063868613 0.0082116788 0.0009124088
## 243  0.0000000000 0.0079365079 0.0000000000 0.0039682540 0.0039682540
## 244  0.0025316456 0.0202531646 0.0025316456 0.0050632911 0.0000000000
## 245  0.0000000000 0.0058823529 0.0000000000 0.0029411765 0.0029411765
## 246  0.0058224163 0.0087336245 0.0029112082 0.0072780204 0.0058224163
## 247  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 248  0.0028735632 0.0114942529 0.0143678161 0.0086206897 0.0114942529
## 249  0.0000000000 0.0086956522 0.0000000000 0.0086956522 0.0000000000
## 250  0.2857142857 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 251  0.0000000000 0.0000000000 0.0089285714 0.0000000000 0.0089285714
## 252  0.0120481928 0.0000000000 0.0000000000 0.0000000000 0.0120481928
## 253  0.0000000000 0.0000000000 0.0156250000 0.0000000000 0.0000000000
## 254  0.0000000000 0.0000000000 0.0136986301 0.0000000000 0.0000000000
## 255  0.0076923077 0.0000000000 0.0076923077 0.0846153846 0.0000000000
## 256  0.0217391304 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 257  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 259  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 260  0.0000000000 0.0000000000 0.0096153846 0.0096153846 0.0096153846
## 261  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 262  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 263  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 264  0.0000000000 0.0131578947 0.0000000000 0.0131578947 0.0263157895
## 265  0.0022573363 0.0022573363 0.0000000000 0.0022573363 0.0158013544
## 266  0.0020325203 0.0000000000 0.0000000000 0.0060975610 0.0081300813
## 267  0.0005765350 0.0023061401 0.0000000000 0.0008648025 0.0017296051
## 268  0.0122494432 0.0100222717 0.0055679287 0.0022271715 0.0167037862
## 269  0.0000000000 0.0147058824 0.0294117647 0.0000000000 0.0000000000
## 270  0.0000000000 0.0000000000 0.0153846154 0.0000000000 0.0076923077
## 271  0.0000000000 0.0121951220 0.0000000000 0.0121951220 0.0121951220
## 272  0.0190476190 0.0000000000 0.0000000000 0.0000000000 0.0095238095
## 273  0.0496453901 0.0141843972 0.0000000000 0.0000000000 0.0212765957
## 274  0.0078125000 0.0000000000 0.0078125000 0.0078125000 0.0000000000
## 275  0.0084745763 0.0000000000 0.0000000000 0.0000000000 0.0084745763
## 276  0.0072463768 0.0072463768 0.0072463768 0.0000000000 0.0000000000
## 277  0.0000000000 0.0058593750 0.0019531250 0.0058593750 0.0019531250
## 278  0.0015698587 0.0235478807 0.0031397174 0.0015698587 0.0109890110
## 279  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 280  0.0000000000 0.0000000000 0.0081967213 0.0081967213 0.0000000000
## 281  0.0000000000 0.0253164557 0.0379746835 0.0000000000 0.0000000000
## 282  0.1111111111 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.1111111111 0.0000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 290  0.0000000000 0.0151515152 0.0151515152 0.0000000000 0.0000000000
## 291  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 294  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 295  0.0096153846 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 296  0.0263157895 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0434782609 0.0000000000 0.0000000000 0.0869565217 0.0000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 301  0.0000000000 0.0067567568 0.0027027027 0.0013513514 0.0000000000
## 302  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 303  0.0000000000 0.0000000000 0.0000000000 0.0337078652 0.0000000000
## 304  0.0000000000 0.0192307692 0.0096153846 0.0192307692 0.0096153846
## 305  0.0000000000 0.0024271845 0.0000000000 0.0072815534 0.0000000000
## 306  0.0005537099 0.0033222591 0.0022148394 0.0016611296 0.0044296788
## 307  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0195121951
## 308  0.0000000000 0.0508474576 0.0000000000 0.0000000000 0.0000000000
## 309  0.0000000000 0.0000000000 0.0000000000 0.0078740157 0.0000000000
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 311  0.0058284763 0.0083263947 0.0000000000 0.0041631973 0.0083263947
## 312  0.0049157303 0.0049157303 0.0196629213 0.0052668539 0.0087780899
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 314  0.0000000000 0.0395480226 0.0000000000 0.0000000000 0.0056497175
## 315  0.0909090909 0.0000000000 0.0000000000 0.3636363636 0.0000000000
## 316  0.0059523810 0.0039682540 0.0059523810 0.0099206349 0.0079365079
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0079207921 0.0000000000 0.0059405941 0.0000000000 0.0000000000
## 319  0.0000000000 0.0000000000 0.0081300813 0.0000000000 0.0081300813
## 320  0.0021413276 0.0021413276 0.0107066381 0.0064239829 0.0021413276
## 321  0.0000000000 0.0060240964 0.0000000000 0.0120481928 0.0180722892
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0000000000 0.0021459227 0.0021459227 0.0000000000 0.0021459227
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0104166667
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0261437908 0.0000000000 0.0196078431 0.0000000000 0.0000000000
## 328  0.0000000000 0.0000000000 0.0080000000 0.0000000000 0.0000000000
## 329  0.0000000000 0.0027972028 0.0055944056 0.0013986014 0.0041958042
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 331  0.0000000000 0.0000000000 0.0170940171 0.0000000000 0.0000000000
## 332  0.0007645260 0.0053516820 0.0038226300 0.0000000000 0.0015290520
## 333  0.0000000000 0.0000000000 0.0000000000 0.0116959064 0.0000000000
## 334  0.0039735099 0.0158940397 0.0013245033 0.0066225166 0.0039735099
## 335  0.0000000000 0.0065789474 0.0000000000 0.0000000000 0.0065789474
## 336  0.0026525199 0.0026525199 0.0079575597 0.0291777188 0.0106100796
## 337  0.0133333333 0.0066666667 0.0055555556 0.0044444444 0.0044444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2000000000
## 340  0.0000000000 0.0028169014 0.0028169014 0.0028169014 0.0084507042
## 341  0.0016863406 0.0168634064 0.0000000000 0.0050590219 0.0033726813
## 342  0.0000000000 0.0151515152 0.0151515152 0.0757575758 0.0151515152
## 343  0.0000000000 0.0027548209 0.0000000000 0.0027548209 0.0000000000
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0000000000 0.0000000000 0.0208333333 0.0000000000 0.0000000000
## 346  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0121951220
## 347  0.0000000000 0.0047393365 0.0000000000 0.0284360190 0.0189573460
## 348  0.0000000000 0.0108695652 0.0027173913 0.0027173913 0.0054347826
## 349  0.0179558011 0.0151933702 0.0082872928 0.0055248619 0.0165745856
## 350  0.0526315789 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 351  0.0000000000 0.0021881838 0.0000000000 0.0065645514 0.0065645514
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0053333333 0.0000000000 0.0026666667 0.0080000000 0.0026666667
## 355  0.0000000000 0.0068965517 0.0068965517 0.0068965517 0.0068965517
## 356  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0075187970
## 357  0.0000000000 0.0000000000 0.0137931034 0.0068965517 0.0000000000
## 358  0.0045454545 0.0000000000 0.0000000000 0.0181818182 0.0090909091
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0051150895 0.0063938619 0.0115089514 0.0038363171 0.0217391304
## 361  0.0012135922 0.0024271845 0.0036407767 0.0072815534 0.0060679612
## 362  0.0592105263 0.0131578947 0.0723684211 0.0000000000 0.0197368421
## 363  0.0030627871 0.0022970904 0.0011485452 0.0022970904 0.0022970904
## 364  0.0000000000 0.0051282051 0.0051282051 0.0051282051 0.0000000000
## 365  0.0000000000 0.0000000000 0.0000000000 0.0476190476 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0227272727 0.0020661157 0.0144628099 0.0144628099 0.0041322314
## 368  0.0081300813 0.0000000000 0.0000000000 0.0040650407 0.0000000000
## 369  0.1111111111 0.3333333333 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0000000000 0.0256410256 0.0000000000 0.0000000000 0.0256410256
## 372  0.0032362460 0.0064724919 0.0032362460 0.0032362460 0.0032362460
## 373  0.0000000000 0.0000000000 0.0000000000 0.0222222222 0.0222222222
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0033557047 0.0156599553 0.0033557047 0.0044742729 0.0067114094
## 376  0.0256410256 0.0320512821 0.0128205128 0.0000000000 0.0128205128
## 377  0.0000000000 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 378  0.0000000000 0.0000000000 0.0000000000 0.0063291139 0.0000000000
## 379  0.0000000000 0.0014064698 0.0000000000 0.0014064698 0.0000000000
## 380  0.0066225166 0.0132450331 0.0132450331 0.0066225166 0.0198675497
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0004649000 0.0000000000 0.0027894003 0.0004649000 0.0013947001
## 383  0.0000000000 0.1842105263 0.0000000000 0.0789473684 0.0000000000
## 384  0.0344827586 0.0000000000 0.0517241379 0.0000000000 0.0344827586
## 385  0.0069686411 0.0017421603 0.0104529617 0.0017421603 0.0052264808
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 387  0.0372881356 0.0000000000 0.0000000000 0.0101694915 0.0033898305
## 388  0.0000000000 0.0066225166 0.0000000000 0.0000000000 0.0066225166
## 389  0.0010111223 0.0010111223 0.0010111223 0.0000000000 0.0050556117
## 390  0.0000000000 0.0181818182 0.0000000000 0.0000000000 0.0181818182
## 391  0.0110497238 0.0055248619 0.0165745856 0.0000000000 0.0276243094
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0000000000 0.0000000000 0.0666666667 0.0000000000 0.1333333333
## 394  0.0079365079 0.0119047619 0.0000000000 0.0039682540 0.0119047619
## 395  0.0056577086 0.0014144272 0.0028288543 0.0000000000 0.0056577086
## 396  0.0000000000 0.0178571429 0.0000000000 0.0178571429 0.0000000000
## 397  0.0029985007 0.0000000000 0.0089955022 0.0000000000 0.0014992504
## 398  0.0000000000 0.0000000000 0.1304347826 0.0434782609 0.0000000000
## 399  0.0128000000 0.0112000000 0.0176000000 0.0288000000 0.0032000000
## 400  0.0000000000 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0035335689 0.0000000000 0.0035335689 0.0000000000 0.0035335689
## 403  0.0000000000 0.0015313936 0.0183767228 0.0030627871 0.0091883614
## 404  0.0053191489 0.0053191489 0.0106382979 0.0106382979 0.0159574468
## 405  0.0113636364 0.0000000000 0.0113636364 0.0000000000 0.0000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.2000000000
## 408  0.0351758794 0.0050251256 0.0050251256 0.0150753769 0.0150753769
## 409  0.0059523810 0.0119047619 0.0119047619 0.0238095238 0.0000000000
## 410  0.0000000000 0.0000000000 0.0285714286 0.0000000000 0.0285714286
## 411  0.0004286327 0.0030004286 0.0248606944 0.0711530219 0.0055722246
## 412  0.0113636364 0.0227272727 0.0454545455 0.0000000000 0.0000000000
## 413  0.0000000000 0.0000000000 0.0571428571 0.0285714286 0.0000000000
## 414  0.0036463081 0.0036463081 0.0018231541 0.0036463081 0.0100273473
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0000000000 0.0276497696 0.0138248848 0.0092165899 0.0138248848
## 417  0.0000000000 0.0000000000 0.0000000000 0.2000000000 0.0666666667
## 418  0.0000000000 0.0000000000 0.0067415730 0.0044943820 0.0044943820
## 419  0.0166666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 420  0.0020661157 0.0103305785 0.0082644628 0.0123966942 0.0082644628
## 421  0.0000000000 0.0714285714 0.1071428571 0.0357142857 0.0000000000
## 422  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0238095238
## 423  0.0000000000 0.0000000000 0.0000000000 0.0597014925 0.0298507463
## 424  0.0344827586 0.0114942529 0.0000000000 0.0000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 427  0.0023282887 0.0046565774 0.0023282887 0.0023282887 0.0139697322
## 428  0.0050000000 0.0050000000 0.0050000000 0.0150000000 0.0200000000
## 429  0.0140845070 0.0422535211 0.0563380282 0.0140845070 0.0140845070
## 430  0.1428571429 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 431  0.0238095238 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 432  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0384615385
## 433  0.0079365079 0.0317460317 0.0000000000 0.0158730159 0.0000000000
## 434  0.0094562648 0.0283687943 0.0141843972 0.0000000000 0.0047281324
## 435  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 436  0.0156250000 0.0000000000 0.0000000000 0.0000000000 0.0156250000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0000000000 0.0076335878 0.0000000000 0.0534351145 0.0000000000
## 439  0.0392156863 0.0196078431 0.0196078431 0.0196078431 0.0196078431
## 440  0.0270270270 0.0090090090 0.0180180180 0.0000000000 0.0000000000
## 441  0.0106382979 0.0319148936 0.0106382979 0.0000000000 0.0000000000
## 442  0.0153846154 0.0000000000 0.0102564103 0.0153846154 0.0102564103
## 443  0.0526315789 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0054644809 0.0018214936 0.0692167577 0.0109289617 0.0018214936
## 446  0.0181818182 0.0000000000 0.0000000000 0.0000000000 0.0181818182
## 447  0.0000000000 0.0277777778 0.0000000000 0.0138888889 0.0277777778
## 448  0.0158730159 0.0317460317 0.0000000000 0.0000000000 0.0000000000
## 449  0.0051903114 0.0051903114 0.0017301038 0.0034602076 0.0000000000
## 450  0.0015923567 0.0000000000 0.0111464968 0.0127388535 0.0175159236
## 451  0.0000000000 0.0000000000 0.0303030303 0.0000000000 0.0606060606
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 453  0.0000000000 0.0000000000 0.0714285714 0.0000000000 0.0000000000
## 454  0.0571428571 0.0000000000 0.0000000000 0.0142857143 0.0285714286
## 455  0.0526315789 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 456  0.0000000000 0.0000000000 0.0701754386 0.0000000000 0.0175438596
## 457  0.0126984127 0.0031746032 0.0000000000 0.0222222222 0.0031746032
## 458  0.0131578947 0.0000000000 0.0000000000 0.0263157895 0.0131578947
## 459  0.0000000000 0.0000000000 0.0449438202 0.0000000000 0.0112359551
## 460  0.0000000000 0.0000000000 0.0058823529 0.0117647059 0.0205882353
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 462  0.0200000000 0.0000000000 0.0000000000 0.0200000000 0.0000000000
## 463  0.0000000000 0.0000000000 0.0120481928 0.0361445783 0.0000000000
## 464  0.0000000000 0.0000000000 0.0051020408 0.0102040816 0.0000000000
## 465  0.0034843206 0.0000000000 0.0000000000 0.0034843206 0.0000000000
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0312500000
## 467  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 468  0.0072992701 0.0000000000 0.0000000000 0.0218978102 0.0437956204
## 469  0.0000000000 0.0000000000 0.0079051383 0.0118577075 0.0079051383
## 470  0.0424028269 0.0106007067 0.0247349823 0.0247349823 0.1519434629
## 471  0.0000000000 0.0000000000 0.1290322581 0.0000000000 0.0000000000
## 472  0.0172413793 0.0129310345 0.0258620690 0.0043103448 0.0301724138
## 473  0.0000000000 0.0526315789 0.0000000000 0.0000000000 0.0000000000
## 474  0.0285714286 0.0285714286 0.0000000000 0.0000000000 0.0285714286
## 475  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 476  0.0000000000 0.0088105727 0.0044052863 0.0044052863 0.0088105727
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0285714286
## 479  0.0077519380 0.0077519380 0.0077519380 0.0077519380 0.0077519380
## 480  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 481  0.0000000000 0.0000000000 0.0036231884 0.0000000000 0.0108695652
## 482  0.0454545455 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 483  0.0000000000 0.0000000000 0.0185185185 0.0000000000 0.0000000000
## 484  0.0000000000 0.0000000000 0.0200000000 0.0000000000 0.0000000000
## 485  0.0000000000 0.0217391304 0.0434782609 0.0217391304 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 488  0.0000000000 0.0120481928 0.0120481928 0.0000000000 0.0000000000
## 489  0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 490  0.0000000000 0.0000000000 0.0000000000 0.0281690141 0.0000000000
## 491  0.0333333333 0.0000000000 0.0333333333 0.0666666667 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0000000000 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 494  0.1256398325 0.0046533271 0.0032573290 0.0027919963 0.0181479758
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0000000000 0.0459770115 0.0114942529 0.0229885057
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0689655172
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 500  0.0666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.1111111111 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 503  0.0044444444 0.0044444444 0.0266666667 0.0000000000 0.0000000000
## 504  0.0008620690 0.0051724138 0.0137931034 0.0068965517 0.0051724138
## 505  0.0059737157 0.0047789725 0.0059737157 0.0000000000 0.0011947431
## 506  0.0400000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 507  0.0000000000 0.0175438596 0.0000000000 0.0000000000 0.0000000000
## 508  0.0018083183 0.0054249548 0.0018083183 0.0036166365 0.0108499096
## 509  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0148698885
## 512  0.0186915888 0.0000000000 0.0093457944 0.0093457944 0.0186915888
## 513  0.0103092784 0.0206185567 0.0515463918 0.0103092784 0.0000000000
## 514  0.0000000000 0.0096153846 0.0000000000 0.0000000000 0.0192307692
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 519  0.0114068441 0.0304182510 0.0190114068 0.0000000000 0.0114068441
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0408163265 0.0000000000 0.0204081633 0.0408163265
## 522  0.0033333333 0.0133333333 0.0100000000 0.0366666667 0.0133333333
## 523  0.0000000000 0.0000000000 0.1020408163 0.0204081633 0.0000000000
## 524  0.0000000000 0.0588235294 0.0392156863 0.0196078431 0.0000000000
## 525  0.0000000000 0.0545454545 0.0363636364 0.0181818182 0.0000000000
## 526  0.0447761194 0.0000000000 0.1044776119 0.0149253731 0.0000000000
## 527  0.0000000000 0.0000000000 0.0379746835 0.0126582278 0.0126582278
## 528  0.0000000000 0.0000000000 0.0361445783 0.0120481928 0.0000000000
## 529  0.0000000000 0.0412371134 0.0412371134 0.0206185567 0.0000000000
## 530  0.0000000000 0.0588235294 0.0588235294 0.0196078431 0.0000000000
## 531  0.0000000000 0.0000000000 0.0606060606 0.1212121212 0.0000000000
## 532  0.0000000000 0.0000000000 0.5000000000 0.0000000000 0.0000000000
## 533  0.0038461538 0.0038461538 0.0153846154 0.0153846154 0.0153846154
## 534  0.0000000000 0.0000000000 0.0833333333 0.0000000000 0.0000000000
## 535  0.0000000000 0.0000000000 0.0434782609 0.0579710145 0.0144927536
## 536  0.0000000000 0.0000000000 0.0816326531 0.0204081633 0.0000000000
## 537  0.0000000000 0.0000000000 0.0400000000 0.0200000000 0.0000000000
## 538  0.0000000000 0.0222222222 0.0666666667 0.0222222222 0.0000000000
## 539  0.0000000000 0.0000000000 0.0444444444 0.0222222222 0.0000000000
## 540  0.0000000000 0.0000000000 0.1212121212 0.0303030303 0.0000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0189573460 0.0189573460
## 542  0.0000000000 0.0000000000 0.0327868852 0.0163934426 0.0000000000
## 543  0.0086206897 0.0000000000 0.0086206897 0.0172413793 0.0086206897
## 544  0.0000000000 0.0000000000 0.0975609756 0.0243902439 0.0000000000
## 545  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 546  0.0208333333 0.0000000000 0.0416666667 0.0208333333 0.0208333333
## 547  0.0186046512 0.0139534884 0.0186046512 0.0139534884 0.0465116279
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0190476190 0.0000000000 0.0000000000 0.0000000000 0.0190476190
## 550  0.0000000000 0.0000000000 0.0816326531 0.0204081633 0.0000000000
## 551  0.0163934426 0.0000000000 0.0327868852 0.0163934426 0.0000000000
## 552  0.0000000000 0.0000000000 0.0638297872 0.0425531915 0.0000000000
## 553  0.0000000000 0.0000000000 0.0625000000 0.0208333333 0.0000000000
## 554  0.0000000000 0.0169491525 0.0677966102 0.0169491525 0.0000000000
## 555  0.0000000000 0.0153846154 0.0615384615 0.0153846154 0.0000000000
## 556  0.0000000000 0.0000000000 0.1230769231 0.0153846154 0.0000000000
## 557  0.0000000000 0.0070921986 0.0000000000 0.0283687943 0.0000000000
## 558  0.0000000000 0.0888888889 0.0000000000 0.0444444444 0.0000000000
## 559  0.0000000000 0.0285714286 0.0142857143 0.0000000000 0.0428571429
## 560  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 563  0.0160550459 0.0114678899 0.0183486239 0.0022935780 0.0160550459
## 564  0.0243902439 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 565  0.0000000000 0.0000000000 0.0625000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0192307692
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 569  0.0063405797 0.0036231884 0.0081521739 0.0027173913 0.0009057971
## 570  0.0000000000 0.0031446541 0.0062893082 0.0094339623 0.0031446541
## 571  0.0000000000 0.0192307692 0.0096153846 0.0000000000 0.0000000000
## 572  0.0000000000 0.0131578947 0.0000000000 0.0000000000 0.0000000000
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 574  0.0253968254 0.0000000000 0.0063492063 0.0031746032 0.0000000000
## 575  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 576  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 578  0.0000000000 0.0000000000 0.0714285714 0.0000000000 0.0000000000
## 579  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0833333333
## 580  0.0357142857 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 581  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 582  0.0000000000 0.0178571429 0.0178571429 0.0000000000 0.0000000000
## 583  0.0046511628 0.0186046512 0.0046511628 0.0000000000 0.0000000000
## 584  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 585  0.0050000000 0.0100000000 0.0225000000 0.0150000000 0.0025000000
## 586  0.0000000000 0.0200000000 0.0000000000 0.0000000000 0.0000000000
## 587  0.0007905138 0.0023715415 0.0047430830 0.0063241107 0.0110671937
## 588  0.0000000000 0.0156250000 0.0156250000 0.0156250000 0.0156250000
## 589  0.0158730159 0.0158730159 0.0476190476 0.0000000000 0.0000000000
## 590  0.0133333333 0.0000000000 0.0533333333 0.0000000000 0.0000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 592  0.0192307692 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 593  0.0092497431 0.0133607400 0.0143884892 0.0113052415 0.0226104830
## 594  0.0000000000 0.1724137931 0.0344827586 0.0344827586 0.0000000000
## 595  0.0000000000 0.1071428571 0.0357142857 0.0000000000 0.0000000000
## 596  0.0000000000 0.1724137931 0.0344827586 0.0000000000 0.0000000000
## 597  0.0000000000 0.1153846154 0.0384615385 0.0000000000 0.0000000000
## 598  0.0289855072 0.0434782609 0.0434782609 0.0000000000 0.0000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 600  0.0270270270 0.0810810811 0.0270270270 0.0000000000 0.0000000000
## 601  0.0000000000 0.1600000000 0.0400000000 0.0000000000 0.0000000000
## 602  0.0000000000 0.1538461538 0.0384615385 0.0000000000 0.0000000000
## 603  0.0116279070 0.0465116279 0.0116279070 0.0174418605 0.0000000000
## 604  0.0000000000 0.1538461538 0.0384615385 0.0000000000 0.0384615385
## 605  0.0000000000 0.1904761905 0.0476190476 0.0000000000 0.0476190476
## 606  0.0000000000 0.1333333333 0.0333333333 0.0333333333 0.0000000000
## 607  0.0000000000 0.1428571429 0.0357142857 0.0357142857 0.0000000000
## 608  0.0000000000 0.0235294118 0.0117647059 0.0117647059 0.0078431373
## 609  0.0000000000 0.1071428571 0.0357142857 0.0000000000 0.0000000000
## 610  0.0000000000 0.0273972603 0.0136986301 0.0000000000 0.0000000000
## 611  0.0000000000 0.1379310345 0.0344827586 0.0000000000 0.0000000000
## 612  0.0000000000 0.1290322581 0.0322580645 0.0000000000 0.0322580645
## 613  0.0000000000 0.1600000000 0.0400000000 0.0000000000 0.0400000000
## 614  0.0000000000 0.0291970803 0.0072992701 0.0000000000 0.0072992701
## 615  0.0000000000 0.1111111111 0.0277777778 0.0000000000 0.0000000000
## 616  0.0000000000 0.0769230769 0.0192307692 0.0000000000 0.0000000000
## 617  0.0000000000 0.0800000000 0.0400000000 0.0000000000 0.0000000000
## 618  0.0000000000 0.1904761905 0.0476190476 0.0000000000 0.0000000000
## 619  0.0526315789 0.1052631579 0.0526315789 0.0000000000 0.0000000000
## 620  0.0166666667 0.0250000000 0.0166666667 0.0000000000 0.0000000000
## 621  0.0571428571 0.0857142857 0.0571428571 0.0000000000 0.0000000000
## 622  0.0476190476 0.1904761905 0.0476190476 0.0000000000 0.0000000000
## 623  0.0000000000 0.0689655172 0.0344827586 0.0000000000 0.0000000000
## 624  0.0196078431 0.0784313725 0.0392156863 0.0000000000 0.0000000000
## 625  0.0256410256 0.0512820513 0.0256410256 0.0000000000 0.0000000000
## 626  0.0000000000 0.1739130435 0.0434782609 0.0000000000 0.0000000000
## 627  0.0231213873 0.0115606936 0.0173410405 0.0000000000 0.0115606936
## 628  0.0333333333 0.1000000000 0.0333333333 0.0000000000 0.0000000000
## 629  0.0285714286 0.0571428571 0.0285714286 0.0000000000 0.0000000000
## 630  0.0714285714 0.0714285714 0.0357142857 0.0000000000 0.0000000000
## 631  0.0153846154 0.0615384615 0.0153846154 0.0000000000 0.0307692308
## 632  0.0000000000 0.1428571429 0.0714285714 0.0000000000 0.0000000000
## 633  0.0000000000 0.0428571429 0.0071428571 0.0000000000 0.0000000000
## 634  0.0000000000 0.0909090909 0.0227272727 0.0000000000 0.0000000000
## 635  0.0000000000 0.0476190476 0.0238095238 0.0000000000 0.0000000000
## 636  0.0408163265 0.0306122449 0.0612244898 0.0102040816 0.0102040816
## 637  0.0000000000 0.2222222222 0.0555555556 0.0000000000 0.0000000000
## 638  0.0000000000 0.1052631579 0.0526315789 0.0000000000 0.0000000000
## 639  0.0000000000 0.1250000000 0.0312500000 0.0000000000 0.0000000000
## 640  0.0000000000 0.2105263158 0.0526315789 0.0000000000 0.0000000000
## 641  0.0000000000 0.2222222222 0.0555555556 0.0000000000 0.0000000000
## 642  0.0000000000 0.1538461538 0.0384615385 0.0000000000 0.0000000000
## 643  0.0000000000 0.1000000000 0.0500000000 0.0000000000 0.0000000000
## 644  0.0000000000 0.1600000000 0.0400000000 0.0000000000 0.0000000000
## 645  0.0000000000 0.1481481481 0.0370370370 0.0000000000 0.0000000000
## 646  0.0000000000 0.0952380952 0.0476190476 0.0000000000 0.0000000000
## 647  0.0000000000 0.0689655172 0.0344827586 0.0000000000 0.0000000000
## 648  0.0000000000 0.0101522843 0.0050761421 0.0101522843 0.0101522843
## 649  0.0000000000 0.0740740741 0.0370370370 0.0000000000 0.0000000000
## 650  0.0000000000 0.0163265306 0.0040816327 0.0000000000 0.0000000000
## 651  0.0000000000 0.0357142857 0.0178571429 0.0000000000 0.0000000000
## 652  0.0000000000 0.1379310345 0.0344827586 0.0000000000 0.0000000000
## 653  0.0000000000 0.0689655172 0.0344827586 0.0000000000 0.0000000000
## 654  0.0051020408 0.0038265306 0.0063775510 0.0076530612 0.0012755102
## 655  0.0000000000 0.0081967213 0.0000000000 0.0000000000 0.0000000000
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0519480519 0.0000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 659  0.0000000000 0.0333333333 0.0166666667 0.0000000000 0.0000000000
## 660  0.0000000000 0.0909090909 0.0454545455 0.0000000000 0.0000000000
## 661  0.0000000000 0.0416666667 0.0104166667 0.0000000000 0.0000000000
## 662  0.0000000000 0.1739130435 0.0434782609 0.0000000000 0.0000000000
## 663  0.0000000000 0.0666666667 0.0333333333 0.0000000000 0.0000000000
## 664  0.0071942446 0.0143884892 0.0071942446 0.0000000000 0.0000000000
## 665  0.0500000000 0.1000000000 0.0500000000 0.0000000000 0.0000000000
## 666  0.1153846154 0.1153846154 0.0384615385 0.0000000000 0.0000000000
## 667  0.0000000000 0.1111111111 0.0555555556 0.0555555556 0.0000000000
## 668  0.0000000000 0.1212121212 0.0303030303 0.0303030303 0.0000000000
## 669  0.0000000000 0.1333333333 0.0333333333 0.0000000000 0.0000000000
## 670  0.0000000000 0.1250000000 0.0416666667 0.0000000000 0.0000000000
## 671  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 672  0.0294117647 0.0588235294 0.1176470588 0.0000000000 0.0000000000
## 673  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 674  0.0250000000 0.0500000000 0.0250000000 0.0000000000 0.0000000000
## 675  0.0136986301 0.0136986301 0.0136986301 0.0000000000 0.0000000000
## 676  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 677  0.0000000000 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 678  0.0000000000 0.0869565217 0.0000000000 0.0000000000 0.0000000000
## 679  0.0208333333 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 680  0.0000000000 0.0400000000 0.0000000000 0.0000000000 0.0000000000
## 681  0.0555555556 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 682  0.0000000000 0.1875000000 0.0000000000 0.0000000000 0.0000000000
## 683  0.0000000000 0.1000000000 0.0000000000 0.0000000000 0.0000000000
## 684  0.0000000000 0.0882352941 0.0588235294 0.0000000000 0.0000000000
## 685  0.0000000000 0.1153846154 0.0384615385 0.0000000000 0.0000000000
## 686  0.0384615385 0.1153846154 0.0384615385 0.0000000000 0.0000000000
## 687  0.0000000000 0.0326797386 0.0065359477 0.0000000000 0.0000000000
## 688  0.0000000000 0.0075187970 0.0037593985 0.0000000000 0.0000000000
## 689  0.0000000000 0.0857142857 0.0285714286 0.0000000000 0.0000000000
## 690  0.0000000000 0.1351351351 0.0270270270 0.0000000000 0.0000000000
## 691  0.0000000000 0.0392156863 0.0196078431 0.0000000000 0.0000000000
## 692  0.0000000000 0.2000000000 0.1000000000 0.0000000000 0.0000000000
## 693  0.0000000000 0.0357142857 0.0000000000 0.0000000000 0.0000000000
## 694  0.0000000000 0.0769230769 0.0000000000 0.0000000000 0.0000000000
## 695  0.0000000000 0.0666666667 0.0000000000 0.0000000000 0.0000000000
## 696  0.0000000000 0.0431034483 0.0000000000 0.0000000000 0.0086206897
## 697  0.0000000000 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.2727272727 0.0000000000 0.0000000000 0.0000000000
## 700  0.0000000000 0.0129870130 0.0000000000 0.0000000000 0.0129870130
## 701  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
## 702  0.0000000000 0.0128205128 0.0000000000 0.0000000000 0.0000000000
## 703  0.0000000000 0.1818181818 0.0000000000 0.0000000000 0.0000000000
## 704  0.0238095238 0.0000000000 0.0238095238 0.0238095238 0.0000000000
## 705  0.0000000000 0.0000000000 0.0270270270 0.0270270270 0.0000000000
## 706  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 707  0.0000000000 0.0000000000 0.0370370370 0.0000000000 0.0000000000
## 708  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 709  0.0000000000 0.0000000000 0.0294117647 0.0000000000 0.0000000000
## 710  0.0000000000 0.0040899796 0.0000000000 0.0000000000 0.0040899796
## 711  0.0000000000 0.0714285714 0.0357142857 0.0357142857 0.0000000000
## 712  0.0000000000 0.1333333333 0.0000000000 0.0000000000 0.0000000000
## 713  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0857142857
## 714  0.0000000000 0.1538461538 0.0000000000 0.0000000000 0.0000000000
## 715  0.0000000000 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 716  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 717  0.0000000000 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 718  0.0000000000 0.1153846154 0.0000000000 0.0000000000 0.0000000000
## 719  0.0000000000 0.2000000000 0.0000000000 0.0000000000 0.0000000000
## 720  0.0000000000 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 721  0.0000000000 0.1578947368 0.0000000000 0.0000000000 0.0000000000
## 722  0.0000000000 0.2307692308 0.0000000000 0.0000000000 0.0000000000
## 723  0.0000000000 0.0500000000 0.0000000000 0.0000000000 0.0000000000
## 724  0.0000000000 0.2727272727 0.0000000000 0.0000000000 0.0000000000
## 725  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 726  0.0666666667 0.1333333333 0.0000000000 0.0000000000 0.0000000000
## 727  0.0000000000 0.0833333333 0.0000000000 0.0000000000 0.0000000000
## 728  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 729  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0000000000
## 730  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 731  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
## 732  0.0000000000 0.1538461538 0.0000000000 0.0000000000 0.0000000000
## 733  0.0000000000 0.0588235294 0.0000000000 0.0000000000 0.0000000000
## 734  0.0000000000 0.0681818182 0.0000000000 0.0000000000 0.0000000000
## 735  0.0000000000 0.2142857143 0.0000000000 0.0000000000 0.0000000000
## 736  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
## 737  0.0000000000 0.1333333333 0.0000000000 0.0000000000 0.0000000000
## 738  0.0000000000 0.2307692308 0.0000000000 0.0000000000 0.0000000000
## 739  0.0181818182 0.0181818182 0.0181818182 0.0000000000 0.0000000000
## 740  0.0400000000 0.0800000000 0.0400000000 0.0000000000 0.0000000000
## 741  0.0000000000 0.0967741935 0.0322580645 0.0000000000 0.0000000000
## 742  0.0344827586 0.0344827586 0.0344827586 0.0000000000 0.0000000000
## 743  0.0000000000 0.0526315789 0.0526315789 0.0000000000 0.0000000000
## 744  0.0000000000 0.1578947368 0.0526315789 0.0000000000 0.0000000000
## 745  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 746  0.0000000000 0.1034482759 0.0344827586 0.0000000000 0.0000000000
## 747  0.0000000000 0.0416666667 0.0416666667 0.0000000000 0.0000000000
## 748  0.0000000000 0.1818181818 0.0454545455 0.0000000000 0.0000000000
## 749  0.0000000000 0.0344827586 0.0344827586 0.0000000000 0.0000000000
## 750  0.0000000000 0.1081081081 0.0270270270 0.0000000000 0.0000000000
## 751  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 752  0.0000000000 0.1578947368 0.0526315789 0.0000000000 0.0000000000
## 753  0.0000000000 0.0526315789 0.0526315789 0.0000000000 0.0000000000
## 754  0.0000000000 0.1304347826 0.0434782609 0.0000000000 0.0000000000
## 755  0.0000000000 0.1578947368 0.0526315789 0.0000000000 0.0000000000
## 756  0.0086956522 0.0173913043 0.0086956522 0.0000000000 0.0000000000
## 757  0.0000000000 0.0555555556 0.0555555556 0.0000000000 0.0000000000
## 758  0.0000000000 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 759  0.0056818182 0.0113636364 0.0056818182 0.0056818182 0.0000000000
## 760  0.0096153846 0.0192307692 0.0096153846 0.0096153846 0.0000000000
## 761  0.0123456790 0.0246913580 0.0246913580 0.0123456790 0.0000000000
## 762  0.0357142857 0.0178571429 0.0178571429 0.0000000000 0.0000000000
## 763  0.0081300813 0.0081300813 0.0081300813 0.0000000000 0.0000000000
## 764  0.0000000000 0.0750000000 0.0250000000 0.0000000000 0.0000000000
## 765  0.0000000000 0.0500000000 0.0500000000 0.0000000000 0.0000000000
## 766  0.0000000000 0.1538461538 0.0384615385 0.0000000000 0.0000000000
## 767  0.0080000000 0.0080000000 0.0000000000 0.0160000000 0.0000000000
## 768  0.0476190476 0.0952380952 0.0476190476 0.0476190476 0.0000000000
## 769  0.0232558140 0.0116279070 0.0000000000 0.0116279070 0.0000000000
## 770  0.1111111111 0.0370370370 0.0000000000 0.0000000000 0.0000000000
## 771  0.0243902439 0.0487804878 0.0243902439 0.0487804878 0.0243902439
## 772  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 773  0.0033783784 0.0067567568 0.0067567568 0.0000000000 0.0067567568
## 774  0.0454545455 0.0454545455 0.0909090909 0.0000000000 0.0000000000
## 775  0.0434782609 0.0869565217 0.0434782609 0.0000000000 0.0434782609
## 776  0.0625000000 0.1250000000 0.0000000000 0.0000000000 0.0000000000
## 777  0.0000000000 0.1000000000 0.0250000000 0.0000000000 0.0000000000
## 778  0.0000000000 0.1290322581 0.0322580645 0.0000000000 0.0000000000
## 779  0.0000000000 0.1111111111 0.0277777778 0.0000000000 0.0000000000
## 780  0.0000000000 0.0476190476 0.0476190476 0.0000000000 0.0000000000
## 781  0.0512820513 0.0128205128 0.0128205128 0.0000000000 0.0000000000
## 782  0.0476190476 0.0952380952 0.0476190476 0.0000000000 0.0000000000
## 783  0.0101010101 0.0101010101 0.0101010101 0.0000000000 0.0000000000
## 784  0.0000000000 0.0212765957 0.0212765957 0.0000000000 0.0000000000
## 785  0.0000000000 0.0833333333 0.0416666667 0.0000000000 0.0000000000
## 786  0.0000000000 0.1666666667 0.0555555556 0.0000000000 0.0000000000
## 787  0.0000000000 0.0357142857 0.0357142857 0.0000000000 0.0000000000
## 788  0.0000000000 0.1111111111 0.0370370370 0.0000000000 0.0000000000
## 789  0.0000000000 0.0250000000 0.0250000000 0.0000000000 0.0000000000
## 790  0.0000000000 0.0064308682 0.0032154341 0.0000000000 0.0000000000
## 791  0.0000000000 0.0909090909 0.0454545455 0.0000000000 0.0000000000
## 792  0.0000000000 0.0952380952 0.0476190476 0.0000000000 0.0000000000
## 793  0.0000000000 0.0416666667 0.0416666667 0.0000000000 0.0000000000
## 794  0.0285714286 0.0285714286 0.0285714286 0.0000000000 0.0000000000
## 795  0.0000000000 0.0167597765 0.0055865922 0.0000000000 0.0000000000
## 796  0.0000000000 0.2000000000 0.0500000000 0.0000000000 0.0000000000
## 797  0.0000000000 0.0909090909 0.0606060606 0.0000000000 0.0000000000
## 798  0.1111111111 0.0555555556 0.0555555556 0.0000000000 0.0000000000
## 799  0.0000000000 0.0909090909 0.0227272727 0.0000000000 0.0000000000
## 800  0.0000000000 0.1363636364 0.0454545455 0.0000000000 0.0000000000
## 801  0.0000000000 0.1333333333 0.0666666667 0.0000000000 0.0000000000
## 802  0.0000000000 0.0967741935 0.0322580645 0.0000000000 0.0000000000
## 803  0.0263157895 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 804  0.0000000000 0.0000000000 0.0555555556 0.0277777778 0.0555555556
## 805  0.0370370370 0.1111111111 0.0370370370 0.0000000000 0.0000000000
## 806  0.0000000000 0.5000000000 0.0000000000 0.0000000000 0.0000000000
## 807  0.0000000000 0.1176470588 0.0588235294 0.0000000000 0.0000000000
## 808  0.0000000000 0.1333333333 0.0000000000 0.0000000000 0.0000000000
## 809  0.0000000000 0.0555555556 0.0185185185 0.0000000000 0.0000000000
## 810  0.0000000000 0.1363636364 0.0454545455 0.0000000000 0.0000000000
## 811  0.0294117647 0.0882352941 0.0294117647 0.0000000000 0.0000000000
## 812  0.0555555556 0.0555555556 0.0555555556 0.0000000000 0.0000000000
## 813  0.0000000000 0.1363636364 0.0454545455 0.0000000000 0.0000000000
## 814  0.0000000000 0.1428571429 0.0714285714 0.0000000000 0.0000000000
## 815  0.0000000000 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 816  0.0080000000 0.0000000000 0.0000000000 0.0160000000 0.0000000000
## 817  0.0000000000 0.2307692308 0.0000000000 0.0000000000 0.0000000000
## 818  0.0000000000 0.3000000000 0.0000000000 0.0000000000 0.0000000000
## 819  0.0000000000 0.0810810811 0.0270270270 0.0000000000 0.0000000000
## 820  0.0000000000 0.0882352941 0.0000000000 0.0000000000 0.0000000000
## 821  0.0000000000 0.1111111111 0.0000000000 0.0000000000 0.0000000000
## 822  0.0000000000 0.2222222222 0.0000000000 0.0000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.1666666667 0.0000000000 0.0000000000 0.0000000000
## 825  0.0000000000 0.2727272727 0.0000000000 0.0000000000 0.0000000000
## 826  0.0000000000 0.2000000000 0.0666666667 0.0000000000 0.0000000000
## 827  0.0000000000 0.0094339623 0.0094339623 0.0000000000 0.0000000000
## 828  0.0000000000 0.1875000000 0.0625000000 0.0000000000 0.0000000000
## 829  0.0000000000 0.0625000000 0.0625000000 0.0000000000 0.0000000000
## 830  0.0000000000 0.1578947368 0.0526315789 0.0000000000 0.0000000000
## 831  0.0000000000 0.0769230769 0.0769230769 0.0000000000 0.0000000000
## 832  0.0192307692 0.0576923077 0.0192307692 0.0000000000 0.0000000000
## 833  0.0000000000 0.0666666667 0.1333333333 0.0000000000 0.0000000000
## 834  0.0153846154 0.0461538462 0.0153846154 0.0153846154 0.0000000000
## 835  0.0000000000 0.0666666667 0.0666666667 0.0000000000 0.0666666667
## 836  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 837  0.0000000000 0.1363636364 0.0454545455 0.0000000000 0.0000000000
## 838  0.0000000000 0.0666666667 0.0666666667 0.0000000000 0.0000000000
## 839  0.0000000000 0.2083333333 0.0416666667 0.0000000000 0.0000000000
## 840  0.0000000000 0.0833333333 0.0277777778 0.0000000000 0.0000000000
## 841  0.0000000000 0.1111111111 0.0555555556 0.0000000000 0.0000000000
## 842  0.0000000000 0.1200000000 0.0400000000 0.0000000000 0.0000000000
## 843  0.0000000000 0.0434782609 0.0434782609 0.0000000000 0.0000000000
## 844  0.0000000000 0.1538461538 0.0384615385 0.0000000000 0.0000000000
## 845  0.0000000000 0.1363636364 0.0454545455 0.0000000000 0.0000000000
## 846  0.0000000000 0.1739130435 0.0434782609 0.0000000000 0.0000000000
## 847  0.0000000000 0.0357142857 0.0357142857 0.0000000000 0.0000000000
## 848  0.0000000000 0.0238095238 0.0119047619 0.0000000000 0.0000000000
## 849  0.0000000000 0.1034482759 0.0344827586 0.0000000000 0.0000000000
## 850  0.0000000000 0.0454545455 0.0454545455 0.0000000000 0.0000000000
## 851  0.0000000000 0.2307692308 0.0769230769 0.0000000000 0.0000000000
## 852  0.0000000000 0.0357142857 0.0357142857 0.0000000000 0.0000000000
## 853  0.0000000000 0.1500000000 0.0000000000 0.0000000000 0.0000000000
## 854  0.0256410256 0.0256410256 0.0000000000 0.0000000000 0.0000000000
## 855  0.0000000000 0.1666666667 0.0416666667 0.0000000000 0.0000000000
## 856  0.0000000000 0.0428571429 0.0428571429 0.0000000000 0.0000000000
## 857  0.0000000000 0.2105263158 0.0526315789 0.0000000000 0.0000000000
## 858  0.0000000000 0.1176470588 0.0000000000 0.0000000000 0.0000000000
## 859  0.0909090909 0.1818181818 0.0454545455 0.0000000000 0.0000000000
## 860  0.0018115942 0.0009057971 0.0009057971 0.0009057971 0.0018115942
## 861  0.0000000000 0.0148148148 0.0037037037 0.0000000000 0.0000000000
## 862  0.0000000000 0.0937500000 0.0312500000 0.0000000000 0.0000000000
## 863  0.0000000000 0.1500000000 0.0500000000 0.0000000000 0.0000000000
## 864  0.0000000000 0.0769230769 0.0000000000 0.0000000000 0.0000000000
## 865  0.0000000000 0.0666666667 0.0666666667 0.0000000000 0.0000000000
## 866  0.0000000000 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 867  0.0000000000 0.0714285714 0.0000000000 0.0000000000 0.0000000000
## 868  0.0190476190 0.0095238095 0.0095238095 0.0000000000 0.0000000000
## 869  0.0000000000 0.2307692308 0.0000000000 0.0000000000 0.0000000000
## 870  0.0098039216 0.0392156863 0.0098039216 0.0000000000 0.0098039216
## 871  0.0833333333 0.2500000000 0.0000000000 0.0000000000 0.0000000000
## 872  0.0000000000 0.1600000000 0.0000000000 0.0000000000 0.0000000000
## 873  0.0000000000 0.0256410256 0.0512820513 0.0000000000 0.0256410256
## 874  0.0000000000 0.2500000000 0.0833333333 0.0000000000 0.0000000000
## 875  0.0000000000 0.2727272727 0.0000000000 0.0909090909 0.0000000000
## 876  0.0000000000 0.0909090909 0.0454545455 0.0000000000 0.0000000000
## 877  0.0000000000 0.0588235294 0.0588235294 0.0000000000 0.0000000000
## 878  0.0000000000 0.1428571429 0.0357142857 0.0000000000 0.0000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0322580645 0.0322580645 0.0645161290 0.0322580645
## 881  0.0057142857 0.0057142857 0.0057142857 0.0057142857 0.0057142857
## 882  0.0009398496 0.0046992481 0.0018796992 0.0037593985 0.0028195489
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 889  0.0030674847 0.0030674847 0.0030674847 0.0000000000 0.0000000000
## 890  0.0000000000 0.0357142857 0.0714285714 0.0357142857 0.0000000000
## 891  0.0000000000 0.0070671378 0.0106007067 0.0035335689 0.0070671378
## 892  0.0000000000 0.0645161290 0.0000000000 0.0000000000 0.0645161290
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 895  0.0141129032 0.0020161290 0.0080645161 0.0000000000 0.0282258065
## 896  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 897  0.0232558140 0.0000000000 0.0232558140 0.0000000000 0.0232558140
## 898  0.0000000000 0.0000000000 0.0909090909 0.0000000000 0.0000000000
## 899  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 900  0.0857142857 0.0285714286 0.0000000000 0.0000000000 0.0571428571
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0126582278
## 903  0.0000000000 0.0000000000 0.0204081633 0.0408163265 0.0204081633
## 904  0.0000000000 0.0089020772 0.0000000000 0.0000000000 0.0029673591
## 905  0.0476190476 0.0476190476 0.0000000000 0.0000000000 0.0000000000
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0000000000 0.0133333333 0.0000000000 0.0133333333 0.0000000000
## 910  0.0057803468 0.0028901734 0.0086705202 0.0144508671 0.0057803468
## 911  0.0201149425 0.0028735632 0.0000000000 0.0258620690 0.0028735632
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0535714286 0.0089285714 0.0000000000 0.0089285714 0.0000000000
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 915  0.0240137221 0.0668953688 0.0497427101 0.0531732419 0.0497427101
## 916  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0294117647
## 917  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 919  0.0256410256 0.0000000000 0.0085470085 0.0000000000 0.0000000000
## 920  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0454545455
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0360360360 0.0000000000 0.0000000000 0.0090090090 0.0450450450
## 923  0.0103092784 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 924  0.0192307692 0.0192307692 0.0384615385 0.0000000000 0.0000000000
## 925  0.0000000000 0.0023041475 0.0023041475 0.0023041475 0.0000000000
## 926  0.0000000000 0.0000000000 0.0083333333 0.0000000000 0.0250000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0750000000 0.0250000000 0.0000000000 0.0000000000 0.0000000000
## 929  0.3333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0041666667 0.0000000000 0.0000000000 0.0125000000 0.0000000000
## 931  0.2000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0294117647 0.0294117647 0.0000000000 0.0000000000 0.0000000000
## 934  0.0769230769 0.0769230769 0.0000000000 0.0000000000 0.0000000000
## 935  0.0666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 936  0.0416666667 0.0416666667 0.0000000000 0.0000000000 0.0000000000
## 937  0.0454545455 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 938  0.0089285714 0.0044642857 0.0000000000 0.0022321429 0.0000000000
## 939  0.0106382979 0.0026595745 0.0000000000 0.0079787234 0.0000000000
## 940  0.0434782609 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 941  0.0104166667 0.0104166667 0.0312500000 0.0104166667 0.0208333333
## 942  0.0070921986 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 943  0.0263157895 0.0000000000 0.0263157895 0.0000000000 0.0263157895
## 944  0.0000000000 0.0000000000 0.0000000000 0.0062305296 0.0000000000
## 945  0.0047169811 0.0141509434 0.0188679245 0.0094339623 0.0000000000
## 946  0.0070175439 0.0491228070 0.0105263158 0.0070175439 0.0035087719
## 947  0.0168067227 0.0042016807 0.0168067227 0.0042016807 0.0000000000
## 948  0.0000000000 0.0227272727 0.0000000000 0.0227272727 0.0000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0084033613 0.0210084034 0.0126050420 0.0084033613 0.0126050420
## 952  0.0000000000 0.0512820513 0.0000000000 0.0000000000 0.0000000000
## 953  0.0153846154 0.0000000000 0.0307692308 0.0000000000 0.0000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 955  0.0434782609 0.0000000000 0.0434782609 0.0000000000 0.0869565217
## 956  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0059171598
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0107526882 0.0000000000 0.0000000000 0.0430107527 0.0000000000
## 959  0.0129870130 0.0194805195 0.0064935065 0.0129870130 0.0000000000
## 960  0.0000000000 0.0120481928 0.0144578313 0.0000000000 0.0072289157
## 961  0.0050761421 0.0000000000 0.0050761421 0.0050761421 0.0050761421
## 962  0.0000000000 0.0158730159 0.0158730159 0.0158730159 0.0000000000
## 963  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0263157895
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0082644628 0.0082644628 0.0000000000 0.0082644628
## 966  0.0000000000 0.0689655172 0.0000000000 0.0344827586 0.0000000000
## 967  0.0172413793 0.0000000000 0.0344827586 0.0344827586 0.0172413793
## 968  0.0240963855 0.0000000000 0.0000000000 0.0120481928 0.0120481928
## 969  0.0000000000 0.0000000000 0.0181818182 0.0000000000 0.0000000000
## 970  0.0073260073 0.0036630037 0.0000000000 0.0000000000 0.0146520147
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0000000000 0.0294117647 0.0000000000 0.0000000000 0.0294117647
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0173913043 0.0130434783 0.0043478261 0.0021739130 0.0130434783
## 976  0.0000000000 0.0196078431 0.0196078431 0.0000000000 0.0000000000
## 977  0.0000000000 0.0028409091 0.0056818182 0.0056818182 0.0085227273
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 980  0.0243902439 0.0121951220 0.0487804878 0.0000000000 0.1097560976
## 981  0.0000000000 0.0000000000 0.0000000000 0.0533333333 0.0133333333
## 982  0.0000000000 0.0263157895 0.0000000000 0.0000000000 0.0000000000
## 983  0.0073529412 0.0000000000 0.0073529412 0.0367647059 0.0294117647
## 984  0.0035714286 0.0000000000 0.0035714286 0.0000000000 0.0178571429
## 985  0.0209643606 0.0188679245 0.0062893082 0.0545073375 0.0104821803
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0011897680 0.0000000000 0.0011897680 0.0005948840 0.0059488400
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0492957746 0.0000000000 0.0281690141 0.0000000000 0.0000000000
## 990  0.0085470085 0.0000000000 0.0000000000 0.0085470085 0.0170940171
## 991  0.0001986097 0.0025819265 0.0009930487 0.0023833168 0.0003972195
## 992  0.0065359477 0.0000000000 0.0032679739 0.0065359477 0.0032679739
## 993  0.0076923077 0.0038461538 0.0115384615 0.0000000000 0.0192307692
## 994  0.0015151515 0.0000000000 0.0015151515 0.0015151515 0.0000000000
## 995  0.0103092784 0.0000000000 0.0000000000 0.0206185567 0.0103092784
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 997  0.0022026432 0.0005506608 0.0005506608 0.0016519824 0.0011013216
## 998  0.4166666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 999  0.0138408304 0.0069204152 0.0190311419 0.0190311419 0.0043252595
## 1000 0.0000000000 0.0118577075 0.0118577075 0.0000000000 0.0000000000
##                29           30           31           32           33
## 1    0.0057720058 0.0036075036 0.0057720058 0.0021645022 0.0064935065
## 2    0.0131578947 0.0000000000 0.0263157895 0.0131578947 0.0000000000
## 3    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 4    0.0018552876 0.0037105751 0.0018552876 0.0000000000 0.0074211503
## 5    0.0056144729 0.0112289457 0.0049906425 0.0043668122 0.0087336245
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 8    0.0118496575 0.0083317904 0.0133308647 0.0168487317 0.0085169413
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 10   0.0000000000 0.0000000000 0.0000000000 0.0172413793 0.0000000000
## 11   0.0000000000 0.0042796006 0.0049928673 0.0042796006 0.0021398003
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 13   0.0000000000 0.0000000000 0.0175438596 0.0000000000 0.0000000000
## 14   0.0166666667 0.0000000000 0.0000000000 0.0250000000 0.0083333333
## 15   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 17   0.0000000000 0.0040160643 0.0040160643 0.0000000000 0.0080321285
## 18   0.0068965517 0.0000000000 0.0000000000 0.0344827586 0.0068965517
## 19   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 20   0.0052539405 0.0070052539 0.0017513135 0.0000000000 0.0052539405
## 21   0.0047058824 0.0047058824 0.0070588235 0.0023529412 0.0023529412
## 22   0.0208333333 0.0000000000 0.0208333333 0.0000000000 0.0000000000
## 23   0.0049900200 0.0059880240 0.0079840319 0.0039920160 0.0069860279
## 24   0.0000000000 0.0000000000 0.0000000000 0.0135593220 0.0067796610
## 25   0.0227272727 0.0000000000 0.0227272727 0.0000000000 0.0000000000
## 26   0.0000000000 0.0000000000 0.0000000000 0.0256410256 0.0000000000
## 27   0.0000000000 0.0402298851 0.0172413793 0.0114942529 0.0172413793
## 28   0.0039062500 0.0312500000 0.0156250000 0.0429687500 0.0273437500
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 30   0.1000000000 0.2000000000 0.1000000000 0.0000000000 0.0000000000
## 31   0.0011587486 0.0023174971 0.0034762457 0.0011587486 0.0011587486
## 32   0.0000000000 0.0130434783 0.0043478261 0.0000000000 0.0086956522
## 33   0.0096153846 0.0048076923 0.0048076923 0.0096153846 0.0048076923
## 34   0.0050441362 0.0100882724 0.0050441362 0.0126103405 0.0025220681
## 35   0.0174927114 0.0058309038 0.0029154519 0.0058309038 0.0029154519
## 36   0.0000000000 0.0054054054 0.0000000000 0.0054054054 0.0216216216
## 37   0.0000000000 0.0434782609 0.0000000000 0.0434782609 0.0000000000
## 38   0.0000000000 0.0114285714 0.0057142857 0.0057142857 0.0000000000
## 39   0.0000000000 0.0000000000 0.0625000000 0.0069444444 0.0069444444
## 40   0.0000000000 0.0000000000 0.5714285714 0.0000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 42   0.0000000000 0.0000000000 0.0104712042 0.0157068063 0.0000000000
## 43   0.0000000000 0.0425531915 0.0000000000 0.0106382979 0.0000000000
## 44   0.0064428620 0.0091556460 0.0033909800 0.0088165480 0.0047473720
## 45   0.0061728395 0.0000000000 0.0008818342 0.0026455026 0.0052910053
## 46   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 47   0.0000000000 0.0000000000 0.0202312139 0.0000000000 0.0028901734
## 48   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 52   0.0000000000 0.0071942446 0.0000000000 0.0143884892 0.0035971223
## 53   0.0066889632 0.0066889632 0.0000000000 0.0066889632 0.0133779264
## 54   0.0178571429 0.0000000000 0.0000000000 0.0000000000 0.0535714286
## 55   0.0050761421 0.0152284264 0.0000000000 0.0203045685 0.0000000000
## 56   0.0066906845 0.0056613484 0.0010293361 0.0051466804 0.0061760165
## 57   0.0000000000 0.0075757576 0.0075757576 0.0000000000 0.0000000000
## 58   0.0019920319 0.0000000000 0.0079681275 0.0039840637 0.0039840637
## 59   0.0000000000 0.0012755102 0.0000000000 0.0000000000 0.0000000000
## 60   0.0000000000 0.0000000000 0.0065789474 0.0000000000 0.0065789474
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0434782609
## 63   0.0088757396 0.0088757396 0.0000000000 0.0029585799 0.0147928994
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 66   0.0057581574 0.0057581574 0.0038387716 0.0134357006 0.0172744722
## 67   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 68   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 69   0.0014295926 0.0021443888 0.0007147963 0.0014295926 0.0035739814
## 70   0.0000000000 0.0454545455 0.0000000000 0.0227272727 0.0000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 72   0.0000000000 0.0000000000 0.0000000000 0.0161290323 0.0000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 74   0.0010952903 0.0010952903 0.0000000000 0.0016429354 0.0000000000
## 75   0.0011418784 0.0137025407 0.0025692264 0.0045675136 0.0014273480
## 76   0.0054644809 0.0072859745 0.0127504554 0.0054644809 0.0072859745
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 78   0.0000000000 0.0034364261 0.0034364261 0.0000000000 0.0034364261
## 79   0.0000000000 0.0106761566 0.0035587189 0.0035587189 0.0071174377
## 80   0.0185185185 0.0000000000 0.0000000000 0.0000000000 0.0185185185
## 81   0.0086206897 0.0086206897 0.0301724138 0.0086206897 0.0043103448
## 82   0.0000000000 0.0425531915 0.0000000000 0.0000000000 0.0000000000
## 83   0.0014184397 0.0127659574 0.0000000000 0.0141843972 0.0056737589
## 84   0.0000000000 0.0000000000 0.0000000000 0.0071942446 0.0000000000
## 85   0.0000000000 0.0029850746 0.0029850746 0.0000000000 0.0000000000
## 86   0.0093750000 0.0093750000 0.0062500000 0.0218750000 0.0062500000
## 87   0.0072463768 0.0108695652 0.0108695652 0.0144927536 0.0036231884
## 88   0.0769230769 0.0000000000 0.2307692308 0.0769230769 0.0769230769
## 89   0.0022766079 0.0039840637 0.0108138873 0.0147979511 0.0045532157
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 91   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 92   0.0073394495 0.0165137615 0.0055045872 0.0000000000 0.0073394495
## 93   0.0000000000 0.0032362460 0.0000000000 0.0064724919 0.0032362460
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 95   0.0175438596 0.0175438596 0.0000000000 0.0000000000 0.0175438596
## 96   0.0166666667 0.0000000000 0.0000000000 0.2500000000 0.0166666667
## 97   0.0033200531 0.0039840637 0.0033200531 0.0066401062 0.0019920319
## 98   0.0045662100 0.0091324201 0.0000000000 0.0000000000 0.0273972603
## 99   0.0016750419 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 100  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 101  0.0100000000 0.0060000000 0.0020000000 0.0060000000 0.0060000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 103  0.0077220077 0.0000000000 0.0038610039 0.0270270270 0.0000000000
## 104  0.0000000000 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 105  0.0000000000 0.0064516129 0.0129032258 0.0000000000 0.0064516129
## 106  0.0070484581 0.0026431718 0.0096916300 0.0035242291 0.0079295154
## 107  0.0039682540 0.0039682540 0.0000000000 0.0198412698 0.0198412698
## 108  0.0000000000 0.0183486239 0.0000000000 0.0000000000 0.0091743119
## 109  0.0008849558 0.0106194690 0.0026548673 0.0079646018 0.0194690265
## 110  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 111  0.2500000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 112  0.3333333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 113  0.0008802817 0.0026408451 0.0035211268 0.0026408451 0.0246478873
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 115  0.0029940120 0.0035928144 0.0035928144 0.0029940120 0.0089820359
## 116  0.0666666667 0.0000000000 0.0333333333 0.0000000000 0.0333333333
## 117  0.0000000000 0.0190476190 0.0095238095 0.0000000000 0.0095238095
## 118  0.0000000000 0.0065889508 0.0025342119 0.0010136847 0.0030410542
## 119  0.0000000000 0.0588235294 0.0588235294 0.0588235294 0.0000000000
## 120  0.0000000000 0.0285714286 0.1142857143 0.0000000000 0.0000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 122  0.0027472527 0.0000000000 0.0027472527 0.0027472527 0.0027472527
## 123  0.0079051383 0.0092226614 0.0092226614 0.0013175231 0.0171277997
## 124  0.0160183066 0.0022883295 0.0137299771 0.0228832952 0.0274599542
## 125  0.0000000000 0.0246913580 0.0123456790 0.0000000000 0.0000000000
## 126  0.0011890606 0.0047562426 0.0035671819 0.0023781213 0.0047562426
## 127  0.0000000000 0.0000000000 0.0227272727 0.0000000000 0.0000000000
## 128  0.0000000000 0.0026863667 0.0060443251 0.0033579584 0.0026863667
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 132  0.0075614367 0.0075614367 0.0075614367 0.0132325142 0.0094517958
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 135  0.0037636432 0.0024463681 0.0015054573 0.0030109146 0.0086563794
## 136  0.0000000000 0.0000000000 0.0000000000 0.0300000000 0.0000000000
## 137  0.0000000000 0.0044444444 0.0133333333 0.0000000000 0.0000000000
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 139  0.0000000000 0.0013661202 0.0000000000 0.0020491803 0.0006830601
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 142  0.0043290043 0.0173160173 0.0043290043 0.0000000000 0.0000000000
## 143  0.0000000000 0.0000000000 0.0277777778 0.0000000000 0.0555555556
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 146  0.0033003300 0.0198019802 0.0000000000 0.0033003300 0.0099009901
## 147  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 148  0.0000000000 0.0882352941 0.0000000000 0.0000000000 0.0000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 150  0.0000000000 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 153  0.0169491525 0.0000000000 0.0508474576 0.0000000000 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 155  0.0045495905 0.0136487716 0.0027297543 0.0072793449 0.0054595086
## 156  0.0020533881 0.0051334702 0.0061601643 0.0082135524 0.0005133470
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 158  0.0327868852 0.0000000000 0.0081967213 0.0000000000 0.0081967213
## 159  0.0062814070 0.0100502513 0.0050251256 0.0037688442 0.0075376884
## 160  0.0050909091 0.0032727273 0.0047272727 0.0040000000 0.0047272727
## 161  0.0070175439 0.0070175439 0.0070175439 0.0000000000 0.0175438596
## 162  0.0000000000 0.0000000000 0.0000000000 0.0106382979 0.0319148936
## 163  0.0000000000 0.0000000000 0.0114942529 0.0229885057 0.0344827586
## 164  0.0000000000 0.0024449878 0.0024449878 0.0024449878 0.0000000000
## 165  0.0072992701 0.0000000000 0.0364963504 0.0072992701 0.0072992701
## 166  0.0023310023 0.0032634033 0.0060606061 0.0083916084 0.0013986014
## 167  0.0048780488 0.0000000000 0.0097560976 0.0146341463 0.0146341463
## 168  0.0169491525 0.0338983051 0.0847457627 0.0169491525 0.0000000000
## 169  0.0178571429 0.0297619048 0.0357142857 0.0119047619 0.0000000000
## 170  0.0068493151 0.0068493151 0.0068493151 0.0000000000 0.0136986301
## 171  0.0059171598 0.0059171598 0.0059171598 0.0059171598 0.0000000000
## 172  0.0000000000 0.0285714286 0.0285714286 0.0000000000 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 174  0.0050454087 0.0040363269 0.0020181635 0.0000000000 0.0050454087
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 176  0.0217391304 0.0217391304 0.0043478261 0.0043478261 0.0000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 178  0.0070136582 0.0073827981 0.0066445183 0.0051679587 0.0937615356
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 180  0.0000000000 0.0071428571 0.0142857143 0.0035714286 0.0000000000
## 181  0.0076062640 0.0029082774 0.0026845638 0.0022371365 0.0022371365
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 185  0.0022883295 0.0013729977 0.0032036613 0.0027459954 0.0032036613
## 186  0.0009041591 0.0000000000 0.0054249548 0.0198915009 0.0144665461
## 187  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 188  0.0000000000 0.0089086860 0.0044543430 0.0044543430 0.0066815145
## 189  0.0086021505 0.0043010753 0.0043010753 0.0021505376 0.0021505376
## 190  0.0042016807 0.0000000000 0.0084033613 0.0000000000 0.0000000000
## 191  0.0000000000 0.0156250000 0.0156250000 0.0000000000 0.0000000000
## 192  0.0022354694 0.0037257824 0.0044709389 0.0037257824 0.0171385991
## 193  0.0233644860 0.0046728972 0.0140186916 0.0233644860 0.0233644860
## 194  0.0043668122 0.0000000000 0.0043668122 0.0000000000 0.0000000000
## 195  0.0333333333 0.0111111111 0.0000000000 0.0000000000 0.0555555556
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 197  0.0000000000 0.0028957529 0.0048262548 0.0115830116 0.0000000000
## 198  0.0600000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 201  0.0065789474 0.0043859649 0.0065789474 0.0065789474 0.0087719298
## 202  0.0000000000 0.1818181818 0.0000000000 0.0000000000 0.0000000000
## 203  0.0133333333 0.0000000000 0.0000000000 0.0400000000 0.0133333333
## 204  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 205  0.0035026270 0.0005837712 0.0005837712 0.0005837712 0.0005837712
## 206  0.0023041475 0.0069124424 0.0046082949 0.0046082949 0.0000000000
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 208  0.0168539326 0.0112359551 0.0000000000 0.0955056180 0.0112359551
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 213  0.0059241706 0.0047393365 0.0059241706 0.0059241706 0.0035545024
## 214  0.0000000000 0.0000000000 0.0000000000 0.0135135135 0.0000000000
## 215  0.0000000000 0.0333333333 0.0000000000 0.0000000000 0.0000000000
## 216  0.0000000000 0.0000000000 0.0058139535 0.0116279070 0.0000000000
## 217  0.0000000000 0.0097087379 0.0000000000 0.0000000000 0.0097087379
## 218  0.0000000000 0.0000000000 0.0285714286 0.0142857143 0.0071428571
## 219  0.0000000000 0.0322580645 0.0322580645 0.0000000000 0.0000000000
## 220  0.0480769231 0.0096153846 0.0000000000 0.0961538462 0.0096153846
## 221  0.0191082803 0.0000000000 0.0000000000 0.0063694268 0.0000000000
## 222  0.0000000000 0.0000000000 0.0000000000 0.0010432968 0.0005216484
## 223  0.0182648402 0.0000000000 0.0136986301 0.0091324201 0.0456621005
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 225  0.0057034221 0.0133079848 0.0076045627 0.0152091255 0.0057034221
## 226  0.0000000000 0.0526315789 0.0000000000 0.0526315789 0.0526315789
## 227  0.0000000000 0.0259740260 0.0259740260 0.0000000000 0.0000000000
## 228  0.0000000000 0.0000000000 0.0095238095 0.0000000000 0.0095238095
## 229  0.0045766590 0.0091533181 0.0080091533 0.0034324943 0.0137299771
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 231  0.0005935892 0.0001978631 0.0007914523 0.0007914523 0.0005935892
## 232  0.0000000000 0.0000000000 0.0109289617 0.0000000000 0.0054644809
## 233  0.0041152263 0.0082304527 0.0123456790 0.0041152263 0.0082304527
## 234  0.0022779043 0.0000000000 0.0000000000 0.0000000000 0.0022779043
## 235  0.0045454545 0.0121212121 0.0030303030 0.0090909091 0.0075757576
## 236  0.0018826483 0.0043928459 0.0043928459 0.0025101977 0.0040790712
## 237  0.0056764428 0.0085146641 0.0028382214 0.0009460738 0.0151371807
## 238  0.0010157440 0.0005078720 0.0096495683 0.0035551041 0.0015236160
## 239  0.0018587361 0.0037174721 0.0000000000 0.0018587361 0.0018587361
## 240  0.0400000000 0.0200000000 0.0200000000 0.0000000000 0.0000000000
## 241  0.0384615385 0.0000000000 0.0192307692 0.0288461538 0.0384615385
## 242  0.0082116788 0.0072992701 0.0018248175 0.0009124088 0.0000000000
## 243  0.0000000000 0.0039682540 0.0000000000 0.0039682540 0.0000000000
## 244  0.0025316456 0.0000000000 0.0000000000 0.0075949367 0.0227848101
## 245  0.0235294118 0.0176470588 0.0029411765 0.0029411765 0.0088235294
## 246  0.0058224163 0.0131004367 0.0072780204 0.0116448326 0.0262008734
## 247  0.0000000000 0.0000000000 0.0000000000 0.0166666667 0.0000000000
## 248  0.0086206897 0.0086206897 0.0057471264 0.0086206897 0.0143678161
## 249  0.0086956522 0.0000000000 0.0000000000 0.0000000000 0.0086956522
## 250  0.0000000000 0.0000000000 0.0000000000 0.0714285714 0.0000000000
## 251  0.0000000000 0.0000000000 0.0089285714 0.0178571429 0.0267857143
## 252  0.0240963855 0.0120481928 0.0000000000 0.0000000000 0.0240963855
## 253  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0312500000
## 254  0.0273972603 0.0136986301 0.0136986301 0.0000000000 0.0273972603
## 255  0.0000000000 0.0000000000 0.0076923077 0.0230769231 0.0230769231
## 256  0.0434782609 0.0217391304 0.0108695652 0.0000000000 0.0108695652
## 257  0.0384615385 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 258  0.0000000000 0.0000000000 0.0000000000 0.0263157895 0.0263157895
## 259  0.0000000000 0.0289855072 0.0144927536 0.0144927536 0.0000000000
## 260  0.0192307692 0.0096153846 0.0096153846 0.0192307692 0.0096153846
## 261  0.0000000000 0.0333333333 0.0333333333 0.0000000000 0.0000000000
## 262  0.0317460317 0.0158730159 0.0158730159 0.0000000000 0.0000000000
## 263  0.0000000000 0.0454545455 0.0151515152 0.0000000000 0.0000000000
## 264  0.0131578947 0.0000000000 0.0000000000 0.0394736842 0.0000000000
## 265  0.0000000000 0.0000000000 0.0090293454 0.0067720090 0.0000000000
## 266  0.0020325203 0.0081300813 0.0040650407 0.0060975610 0.0121951220
## 267  0.0014413376 0.0025944076 0.0008648025 0.0023061401 0.0020178726
## 268  0.0133630290 0.0111358575 0.0122494432 0.0144766147 0.0167037862
## 269  0.0000000000 0.0000000000 0.0441176471 0.0147058824 0.0000000000
## 270  0.0153846154 0.0153846154 0.0000000000 0.0076923077 0.0076923077
## 271  0.0121951220 0.0243902439 0.0000000000 0.0000000000 0.0121951220
## 272  0.0285714286 0.0095238095 0.0095238095 0.0000000000 0.0190476190
## 273  0.0283687943 0.0070921986 0.0070921986 0.0070921986 0.0141843972
## 274  0.0234375000 0.0078125000 0.0156250000 0.0078125000 0.0156250000
## 275  0.0084745763 0.0169491525 0.0169491525 0.0084745763 0.0169491525
## 276  0.0072463768 0.0144927536 0.0217391304 0.0072463768 0.0434782609
## 277  0.0058593750 0.0078125000 0.0058593750 0.0078125000 0.0019531250
## 278  0.0015698587 0.0109890110 0.0015698587 0.0015698587 0.0172684458
## 279  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 280  0.0245901639 0.0081967213 0.0081967213 0.0000000000 0.0163934426
## 281  0.0126582278 0.0126582278 0.0126582278 0.0000000000 0.0126582278
## 282  0.2222222222 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.3333333333
## 284  0.1111111111 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 285  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 287  0.0000000000 0.1818181818 0.0000000000 0.0000000000 0.0909090909
## 288  0.0000000000 0.0000000000 0.0769230769 0.0000000000 0.0000000000
## 289  0.1111111111 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 290  0.0000000000 0.0151515152 0.0000000000 0.0151515152 0.0303030303
## 291  0.0000000000 0.0000000000 0.1304347826 0.0000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 293  0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 294  0.0000000000 0.0000000000 0.0384615385 0.0000000000 0.0192307692
## 295  0.0000000000 0.0000000000 0.0000000000 0.0192307692 0.0000000000
## 296  0.0131578947 0.0131578947 0.0000000000 0.0263157895 0.0000000000
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 299  0.0434782609 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 300  0.0384615385 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 301  0.0162162162 0.0027027027 0.0067567568 0.0040540541 0.0013513514
## 302  0.0370370370 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 303  0.0224719101 0.0224719101 0.0112359551 0.0000000000 0.0224719101
## 304  0.0000000000 0.0192307692 0.0096153846 0.0096153846 0.0096153846
## 305  0.0048543689 0.0048543689 0.0000000000 0.0072815534 0.0169902913
## 306  0.0044296788 0.0055370986 0.0022148394 0.0149501661 0.0066445183
## 307  0.0195121951 0.0097560976 0.0048780488 0.0097560976 0.0000000000
## 308  0.0000000000 0.0000000000 0.1016949153 0.0169491525 0.0338983051
## 309  0.0236220472 0.0000000000 0.0000000000 0.0157480315 0.0000000000
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 311  0.0091590341 0.0108243131 0.0049958368 0.0091590341 0.0041631973
## 312  0.0031601124 0.0119382022 0.0126404494 0.0154494382 0.0098314607
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 314  0.0056497175 0.0112994350 0.0112994350 0.0056497175 0.0225988701
## 315  0.0000000000 0.0909090909 0.0000000000 0.0000000000 0.0000000000
## 316  0.0019841270 0.0099206349 0.0059523810 0.0079365079 0.0039682540
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 318  0.0019801980 0.0138613861 0.0079207921 0.0000000000 0.0118811881
## 319  0.0081300813 0.0081300813 0.0731707317 0.0081300813 0.0243902439
## 320  0.0000000000 0.0064239829 0.0064239829 0.0042826552 0.0064239829
## 321  0.0060240964 0.0361445783 0.0000000000 0.0120481928 0.0000000000
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 323  0.0000000000 0.0000000000 0.0107296137 0.0021459227 0.0085836910
## 324  0.0312500000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0130718954 0.0000000000 0.0000000000
## 328  0.0080000000 0.0080000000 0.0160000000 0.0160000000 0.0400000000
## 329  0.0041958042 0.0027972028 0.0041958042 0.0055944056 0.0055944056
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 331  0.0170940171 0.0085470085 0.0000000000 0.0085470085 0.0000000000
## 332  0.0038226300 0.0015290520 0.0000000000 0.0022935780 0.0038226300
## 333  0.0058479532 0.0000000000 0.0175438596 0.0000000000 0.0000000000
## 334  0.0066225166 0.0013245033 0.0039735099 0.0026490066 0.0039735099
## 335  0.0065789474 0.0065789474 0.0000000000 0.0197368421 0.0000000000
## 336  0.0000000000 0.0132625995 0.0026525199 0.0026525199 0.0000000000
## 337  0.0200000000 0.0088888889 0.0066666667 0.0266666667 0.0144444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 340  0.0028169014 0.0084507042 0.0000000000 0.0000000000 0.0000000000
## 341  0.0134907251 0.0067453626 0.0118043845 0.0151770658 0.0101180438
## 342  0.0151515152 0.0000000000 0.0000000000 0.0454545455 0.0303030303
## 343  0.0000000000 0.0000000000 0.0000000000 0.0082644628 0.0055096419
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 345  0.0208333333 0.0000000000 0.0000000000 0.0416666667 0.0000000000
## 346  0.0000000000 0.0243902439 0.0000000000 0.0000000000 0.0000000000
## 347  0.0284360190 0.0000000000 0.0094786730 0.0284360190 0.0189573460
## 348  0.0027173913 0.0163043478 0.0054347826 0.0000000000 0.0000000000
## 349  0.0069060773 0.0069060773 0.0027624309 0.0069060773 0.0000000000
## 350  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0789473684
## 351  0.0153172867 0.0021881838 0.0043763676 0.0000000000 0.0021881838
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 354  0.0346666667 0.0026666667 0.0000000000 0.0133333333 0.0000000000
## 355  0.0068965517 0.0068965517 0.0068965517 0.0137931034 0.0137931034
## 356  0.0150375940 0.0000000000 0.0075187970 0.0676691729 0.0150375940
## 357  0.0000000000 0.0068965517 0.0137931034 0.0000000000 0.0000000000
## 358  0.0045454545 0.0000000000 0.0272727273 0.0000000000 0.0272727273
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 360  0.0038363171 0.0063938619 0.0076726343 0.0000000000 0.0012787724
## 361  0.0036407767 0.0048543689 0.0048543689 0.0084951456 0.0060679612
## 362  0.0592105263 0.0263157895 0.0000000000 0.0000000000 0.0263157895
## 363  0.0068912711 0.0042113323 0.0015313936 0.0061255743 0.0026799387
## 364  0.0205128205 0.0000000000 0.0051282051 0.0000000000 0.0205128205
## 365  0.0000000000 0.1428571429 0.0000000000 0.0000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 367  0.0061983471 0.0165289256 0.0082644628 0.0123966942 0.0041322314
## 368  0.0203252033 0.0000000000 0.0081300813 0.0081300813 0.0243902439
## 369  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 371  0.0256410256 0.0000000000 0.0000000000 0.0256410256 0.0769230769
## 372  0.0064724919 0.0032362460 0.0161812298 0.0064724919 0.0064724919
## 373  0.0000000000 0.0000000000 0.0000000000 0.0222222222 0.0000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 375  0.0022371365 0.0022371365 0.0100671141 0.0100671141 0.0011185682
## 376  0.0128205128 0.0128205128 0.0064102564 0.0000000000 0.0000000000
## 377  0.0555555556 0.0555555556 0.0555555556 0.0000000000 0.0000000000
## 378  0.0000000000 0.0316455696 0.0000000000 0.0063291139 0.0000000000
## 379  0.0000000000 0.0028129395 0.0028129395 0.0000000000 0.0000000000
## 380  0.0132450331 0.0132450331 0.0198675497 0.0000000000 0.0066225166
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 382  0.0004649000 0.0009298001 0.0009298001 0.0000000000 0.0004649000
## 383  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 384  0.0172413793 0.0344827586 0.0000000000 0.0000000000 0.0344827586
## 385  0.0052264808 0.0034843206 0.0191637631 0.0069686411 0.0052264808
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 387  0.0101694915 0.0474576271 0.0033898305 0.0033898305 0.0169491525
## 388  0.0397350993 0.0000000000 0.0198675497 0.0331125828 0.0000000000
## 389  0.0010111223 0.0000000000 0.0010111223 0.0121334681 0.0050556117
## 390  0.0181818182 0.0000000000 0.0000000000 0.0181818182 0.0000000000
## 391  0.0000000000 0.0220994475 0.0000000000 0.0000000000 0.0441988950
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 393  0.0333333333 0.0333333333 0.0000000000 0.0000000000 0.0333333333
## 394  0.0039682540 0.0000000000 0.0000000000 0.0039682540 0.0079365079
## 395  0.0056577086 0.0042432815 0.0028288543 0.0042432815 0.0099009901
## 396  0.0178571429 0.0357142857 0.0000000000 0.0000000000 0.0000000000
## 397  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0044977511
## 398  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 399  0.0016000000 0.0016000000 0.0032000000 0.0000000000 0.0000000000
## 400  0.0000000000 0.0000000000 0.0333333333 0.0000000000 0.0000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 402  0.0000000000 0.0000000000 0.0035335689 0.0000000000 0.0035335689
## 403  0.0076569678 0.0000000000 0.0030627871 0.0122511485 0.0153139357
## 404  0.0319148936 0.0319148936 0.0159574468 0.0319148936 0.0585106383
## 405  0.0000000000 0.0113636364 0.0000000000 0.0000000000 0.0000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 408  0.0050251256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 409  0.0059523810 0.0000000000 0.0000000000 0.0119047619 0.0059523810
## 410  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 411  0.0042863266 0.0098585512 0.0188598371 0.0270038577 0.0098585512
## 412  0.0113636364 0.0113636364 0.0113636364 0.0113636364 0.0000000000
## 413  0.0000000000 0.0000000000 0.0285714286 0.0285714286 0.0285714286
## 414  0.0063810392 0.0054694622 0.0118505014 0.0045578851 0.0483135825
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 416  0.0184331797 0.0046082949 0.0046082949 0.0000000000 0.0046082949
## 417  0.0000000000 0.0000000000 0.0666666667 0.0000000000 0.0000000000
## 418  0.0022471910 0.0044943820 0.0044943820 0.0089887640 0.0292134831
## 419  0.0166666667 0.0000000000 0.0000000000 0.0166666667 0.1000000000
## 420  0.0185950413 0.0144628099 0.0082644628 0.0640495868 0.0082644628
## 421  0.0357142857 0.0000000000 0.0000000000 0.0000000000 0.1071428571
## 422  0.0000000000 0.0000000000 0.0158730159 0.0000000000 0.0000000000
## 423  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 424  0.0114942529 0.0114942529 0.0000000000 0.0000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 427  0.0000000000 0.0011641444 0.0023282887 0.0011641444 0.0011641444
## 428  0.0250000000 0.0050000000 0.0000000000 0.0050000000 0.0100000000
## 429  0.0140845070 0.0845070423 0.0000000000 0.0000000000 0.0140845070
## 430  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1428571429
## 431  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 432  0.0384615385 0.0000000000 0.0000000000 0.0384615385 0.0000000000
## 433  0.0079365079 0.0079365079 0.0079365079 0.0000000000 0.0634920635
## 434  0.0070921986 0.0047281324 0.0330969267 0.0141843972 0.0118203310
## 435  0.0000000000 0.0156250000 0.0156250000 0.0781250000 0.0156250000
## 436  0.0000000000 0.0468750000 0.0078125000 0.0078125000 0.0000000000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 438  0.0076335878 0.0000000000 0.0000000000 0.0076335878 0.0076335878
## 439  0.0000000000 0.0000000000 0.0196078431 0.0000000000 0.0000000000
## 440  0.0000000000 0.0090090090 0.0000000000 0.0090090090 0.0450450450
## 441  0.0000000000 0.0000000000 0.0212765957 0.0106382979 0.0000000000
## 442  0.0000000000 0.0000000000 0.0102564103 0.0000000000 0.0000000000
## 443  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 445  0.0000000000 0.0091074681 0.0018214936 0.0109289617 0.0127504554
## 446  0.0000000000 0.0181818182 0.0000000000 0.0181818182 0.0181818182
## 447  0.0000000000 0.0000000000 0.0000000000 0.0138888889 0.0000000000
## 448  0.0476190476 0.0000000000 0.0000000000 0.0158730159 0.0000000000
## 449  0.0051903114 0.0259515571 0.0173010381 0.0103806228 0.0173010381
## 450  0.0000000000 0.0095541401 0.0015923567 0.0079617834 0.0015923567
## 451  0.0000000000 0.0000000000 0.0000000000 0.0606060606 0.0000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 453  0.1428571429 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 454  0.0142857143 0.0285714286 0.0142857143 0.0428571429 0.0285714286
## 455  0.0000000000 0.0000000000 0.0526315789 0.0000000000 0.0000000000
## 456  0.0000000000 0.0175438596 0.0175438596 0.0000000000 0.0000000000
## 457  0.0285714286 0.0031746032 0.0095238095 0.0000000000 0.0063492063
## 458  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 459  0.0000000000 0.0224719101 0.0337078652 0.0112359551 0.0224719101
## 460  0.0000000000 0.0029411765 0.0000000000 0.0000000000 0.0088235294
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 462  0.0000000000 0.0200000000 0.0000000000 0.0200000000 0.0400000000
## 463  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 464  0.0051020408 0.0306122449 0.0000000000 0.0000000000 0.0102040816
## 465  0.0104529617 0.0069686411 0.0104529617 0.0278745645 0.0104529617
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 467  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 468  0.0072992701 0.0000000000 0.0000000000 0.0437956204 0.0145985401
## 469  0.0158102767 0.0118577075 0.0000000000 0.0079051383 0.0079051383
## 470  0.0141342756 0.0035335689 0.0000000000 0.0000000000 0.0282685512
## 471  0.0322580645 0.0000000000 0.0000000000 0.0322580645 0.0000000000
## 472  0.0043103448 0.0086206897 0.0086206897 0.0086206897 0.0172413793
## 473  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 474  0.0000000000 0.0285714286 0.0285714286 0.0571428571 0.0000000000
## 475  0.0277777778 0.0000000000 0.0138888889 0.0277777778 0.0000000000
## 476  0.0044052863 0.0044052863 0.0000000000 0.0000000000 0.0000000000
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 478  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 479  0.0000000000 0.0000000000 0.0155038760 0.0155038760 0.0155038760
## 480  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 481  0.0471014493 0.0000000000 0.0217391304 0.0217391304 0.0072463768
## 482  0.0000000000 0.0000000000 0.0454545455 0.0000000000 0.0000000000
## 483  0.0000000000 0.0370370370 0.0555555556 0.0000000000 0.0000000000
## 484  0.0200000000 0.0000000000 0.0000000000 0.0200000000 0.0000000000
## 485  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 487  0.0000000000 0.0000000000 0.0000000000 0.0317460317 0.0000000000
## 488  0.0120481928 0.0000000000 0.0361445783 0.0000000000 0.0120481928
## 489  0.0000000000 0.0000000000 0.0714285714 0.0000000000 0.0000000000
## 490  0.0140845070 0.0140845070 0.0140845070 0.0281690141 0.0000000000
## 491  0.0666666667 0.0000000000 0.0333333333 0.0000000000 0.0333333333
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 494  0.0209399721 0.0604932527 0.0144253141 0.0107026524 0.0083759888
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 496  0.0000000000 0.0229885057 0.0344827586 0.0000000000 0.0114942529
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.3333333333 0.0000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 502  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 503  0.0266666667 0.0177777778 0.0044444444 0.0088888889 0.0222222222
## 504  0.0000000000 0.0112068966 0.0043103448 0.0060344828 0.0077586207
## 505  0.0011947431 0.0047789725 0.0023894863 0.0011947431 0.0083632019
## 506  0.0000000000 0.0000000000 0.0400000000 0.0800000000 0.0000000000
## 507  0.0000000000 0.0000000000 0.0175438596 0.0000000000 0.0000000000
## 508  0.0072332731 0.0036166365 0.0054249548 0.0036166365 0.0325497288
## 509  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 511  0.0037174721 0.0000000000 0.0000000000 0.0185873606 0.0223048327
## 512  0.0000000000 0.0000000000 0.0093457944 0.0000000000 0.0280373832
## 513  0.0103092784 0.0206185567 0.0000000000 0.0000000000 0.0000000000
## 514  0.0000000000 0.0048076923 0.0096153846 0.0144230769 0.0288461538
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 516  0.0666666667 0.0333333333 0.0000000000 0.0333333333 0.0000000000
## 517  0.0625000000 0.0000000000 0.0000000000 0.0000000000 0.0625000000
## 518  0.0526315789 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 519  0.0532319392 0.0076045627 0.0152091255 0.0152091255 0.0266159696
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 521  0.0000000000 0.0204081633 0.0000000000 0.0204081633 0.0000000000
## 522  0.0133333333 0.0066666667 0.0266666667 0.0166666667 0.0000000000
## 523  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 524  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 525  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 526  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 527  0.0000000000 0.0000000000 0.0126582278 0.0000000000 0.0000000000
## 528  0.0060240964 0.0180722892 0.0120481928 0.0000000000 0.0000000000
## 529  0.0000000000 0.0000000000 0.0000000000 0.0103092784 0.0000000000
## 530  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 531  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 533  0.0000000000 0.0115384615 0.0230769231 0.0038461538 0.0076923077
## 534  0.0833333333 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 535  0.0000000000 0.0144927536 0.0144927536 0.0000000000 0.0144927536
## 536  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 537  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 538  0.0000000000 0.0222222222 0.0000000000 0.0000000000 0.0222222222
## 539  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 540  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0303030303
## 541  0.0094786730 0.0331753555 0.0094786730 0.0000000000 0.0047393365
## 542  0.0655737705 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 543  0.0000000000 0.0000000000 0.0000000000 0.0172413793 0.0344827586
## 544  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 545  0.0769230769 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 546  0.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
## 547  0.0046511628 0.0139534884 0.0139534884 0.0232558140 0.0139534884
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 549  0.0095238095 0.0000000000 0.0095238095 0.0190476190 0.0000000000
## 550  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0408163265
## 551  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 552  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 553  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 554  0.0338983051 0.0000000000 0.0000000000 0.0677966102 0.0000000000
## 555  0.0153846154 0.0000000000 0.0000000000 0.0461538462 0.0000000000
## 556  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 557  0.0212765957 0.0638297872 0.0212765957 0.0212765957 0.0000000000
## 558  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 559  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 560  0.1052631579 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.5000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 563  0.0000000000 0.0389908257 0.0206422018 0.0275229358 0.0596330275
## 564  0.0000000000 0.0000000000 0.0000000000 0.0243902439 0.0731707317
## 565  0.0000000000 0.0000000000 0.1250000000 0.0000000000 0.0000000000
## 566  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0370370370 0.0000000000 0.0000000000
## 569  0.0063405797 0.0108695652 0.0027173913 0.0108695652 0.0163043478
## 570  0.0094339623 0.0031446541 0.0062893082 0.0094339623 0.0125786164
## 571  0.0144230769 0.0240384615 0.0144230769 0.0000000000 0.0000000000
## 572  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 573  0.0000000000 0.0000000000 0.0344827586 0.0000000000 0.0000000000
## 574  0.1174603175 0.0031746032 0.0126984127 0.0000000000 0.0063492063
## 575  0.1666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 576  0.0800000000 0.0000000000 0.0000000000 0.0000000000 0.0400000000
## 577  0.1666666667 0.0000000000 0.0000000000 0.0000000000 0.0833333333
## 578  0.0714285714 0.0000000000 0.0000000000 0.0714285714 0.0714285714
## 579  0.0833333333 0.0000000000 0.0000000000 0.0833333333 0.0000000000
## 580  0.0714285714 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 581  0.0666666667 0.0000000000 0.0333333333 0.0000000000 0.0000000000
## 582  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 583  0.0046511628 0.0279069767 0.0186046512 0.0325581395 0.0651162791
## 584  0.3333333333 0.0000000000 0.0833333333 0.0000000000 0.0000000000
## 585  0.0100000000 0.0275000000 0.0125000000 0.0100000000 0.0075000000
## 586  0.0000000000 0.0600000000 0.0000000000 0.0200000000 0.0400000000
## 587  0.0055335968 0.0260869565 0.0213438735 0.0213438735 0.0300395257
## 588  0.0312500000 0.0156250000 0.0000000000 0.0156250000 0.0312500000
## 589  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 590  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 591  0.2222222222 0.0000000000 0.0000000000 0.1111111111 0.0000000000
## 592  0.0000000000 0.0192307692 0.0000000000 0.0192307692 0.0192307692
## 593  0.0174717369 0.0267214800 0.0236382323 0.0400822199 0.0236382323
## 594  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 595  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 596  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 597  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 598  0.0000000000 0.0000000000 0.0000000000 0.0144927536 0.0000000000
## 599  0.0227272727 0.0000000000 0.0000000000 0.0000000000 0.0454545455
## 600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 601  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 602  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 603  0.0174418605 0.0058139535 0.0465116279 0.0523255814 0.0058139535
## 604  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 605  0.0000000000 0.0000000000 0.0476190476 0.0000000000 0.0000000000
## 606  0.0000000000 0.0000000000 0.0000000000 0.0333333333 0.0666666667
## 607  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 608  0.0078431373 0.0117647059 0.0039215686 0.0235294118 0.0156862745
## 609  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 610  0.0000000000 0.0136986301 0.0000000000 0.0136986301 0.0273972603
## 611  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0322580645
## 613  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0400000000
## 614  0.0000000000 0.0000000000 0.0072992701 0.0000000000 0.0218978102
## 615  0.0000000000 0.0555555556 0.0000000000 0.0000000000 0.0000000000
## 616  0.0000000000 0.0192307692 0.0000000000 0.0961538462 0.0000000000
## 617  0.0000000000 0.0000000000 0.0400000000 0.0000000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 620  0.0000000000 0.0000000000 0.0166666667 0.0000000000 0.0000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 624  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 625  0.0000000000 0.0256410256 0.0000000000 0.0000000000 0.0000000000
## 626  0.0000000000 0.0434782609 0.0000000000 0.0000000000 0.0000000000
## 627  0.0000000000 0.0000000000 0.0057803468 0.0057803468 0.0000000000
## 628  0.0000000000 0.0333333333 0.0000000000 0.0666666667 0.0000000000
## 629  0.0000000000 0.0285714286 0.0000000000 0.0000000000 0.0000000000
## 630  0.0000000000 0.0357142857 0.0000000000 0.0000000000 0.0000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 633  0.0071428571 0.0142857143 0.0071428571 0.0071428571 0.0000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0454545455
## 635  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0714285714
## 636  0.0000000000 0.0102040816 0.0102040816 0.0000000000 0.0714285714
## 637  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0101522843
## 649  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 650  0.0000000000 0.0040816327 0.0040816327 0.0081632653 0.0204081633
## 651  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 653  0.1034482759 0.0344827586 0.0000000000 0.0000000000 0.0000000000
## 654  0.0382653061 0.0140306122 0.0063775510 0.0051020408 0.0063775510
## 655  0.0000000000 0.0122950820 0.0040983607 0.0081967213 0.0245901639
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 657  0.0129870130 0.0000000000 0.0129870130 0.0000000000 0.0000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 659  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 660  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 662  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 663  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 667  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0666666667 0.0000000000
## 670  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 674  0.0000000000 0.0000000000 0.0500000000 0.0000000000 0.0000000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0208333333 0.0000000000
## 680  0.0000000000 0.0000000000 0.0400000000 0.0000000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0588235294
## 685  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0384615385
## 686  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0384615385
## 687  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 688  0.0000000000 0.0037593985 0.0075187970 0.0187969925 0.0037593985
## 689  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 690  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 692  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 695  0.0666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 696  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 702  0.0128205128 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 703  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 704  0.0000000000 0.0476190476 0.0476190476 0.0476190476 0.0952380952
## 705  0.0000000000 0.0540540541 0.0270270270 0.0540540541 0.0000000000
## 706  0.0303030303 0.0909090909 0.0000000000 0.0606060606 0.0303030303
## 707  0.0370370370 0.0370370370 0.0370370370 0.1111111111 0.0370370370
## 708  0.0000000000 0.0263157895 0.0000000000 0.0789473684 0.0000000000
## 709  0.0882352941 0.0294117647 0.0294117647 0.0882352941 0.0588235294
## 710  0.0061349693 0.0040899796 0.0000000000 0.0061349693 0.0102249489
## 711  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 712  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.0285714286 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 716  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 718  0.0000000000 0.0384615385 0.0000000000 0.0000000000 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 729  0.0000000000 0.0000000000 0.0000000000 0.1153846154 0.0769230769
## 730  0.0000000000 0.0000000000 0.0000000000 0.1428571429 0.0714285714
## 731  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0322580645
## 742  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 743  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 748  0.0000000000 0.0454545455 0.0000000000 0.0000000000 0.0000000000
## 749  0.0000000000 0.0344827586 0.0000000000 0.1034482759 0.0000000000
## 750  0.0000000000 0.0270270270 0.0000000000 0.0000000000 0.0000000000
## 751  0.0000000000 0.0000000000 0.0000000000 0.0500000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0526315789 0.0000000000
## 754  0.0000000000 0.0434782609 0.0000000000 0.0000000000 0.0434782609
## 755  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 757  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0555555556
## 758  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 759  0.0000000000 0.0397727273 0.0000000000 0.0170454545 0.0000000000
## 760  0.0000000000 0.0192307692 0.0000000000 0.0000000000 0.0000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 762  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 763  0.0000000000 0.0081300813 0.0000000000 0.0000000000 0.0000000000
## 764  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 767  0.0080000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 768  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0116279070 0.0116279070
## 770  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0370370370
## 771  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 772  0.0128205128 0.0128205128 0.0000000000 0.0256410256 0.0128205128
## 773  0.0067567568 0.0000000000 0.0101351351 0.0033783784 0.0033783784
## 774  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 776  0.0000000000 0.0000000000 0.0625000000 0.0000000000 0.0000000000
## 777  0.0250000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 778  0.0322580645 0.0000000000 0.0000000000 0.0000000000 0.0322580645
## 779  0.0277777778 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 780  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 781  0.0128205128 0.0256410256 0.0000000000 0.0000000000 0.0256410256
## 782  0.0476190476 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 783  0.0000000000 0.0101010101 0.0000000000 0.0101010101 0.0000000000
## 784  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 789  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 791  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 794  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0285714286
## 795  0.0000000000 0.0000000000 0.0614525140 0.0055865922 0.0000000000
## 796  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0454545455 0.0000000000
## 800  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 802  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 803  0.0263157895 0.0263157895 0.1842105263 0.0000000000 0.0263157895
## 804  0.0277777778 0.0000000000 0.0555555556 0.0277777778 0.0277777778
## 805  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 806  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 816  0.0000000000 0.0160000000 0.0000000000 0.0480000000 0.0080000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 828  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 834  0.0000000000 0.0153846154 0.0000000000 0.0000000000 0.0000000000
## 835  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 837  0.0000000000 0.0000000000 0.0909090909 0.0000000000 0.0000000000
## 838  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 839  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0434782609 0.0000000000 0.1304347826
## 844  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 848  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 849  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.0769230769 0.0000000000
## 852  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 853  0.0000000000 0.0500000000 0.0000000000 0.0000000000 0.0000000000
## 854  0.0000000000 0.0000000000 0.0256410256 0.0000000000 0.0000000000
## 855  0.0000000000 0.0000000000 0.0416666667 0.0000000000 0.0000000000
## 856  0.0000000000 0.0142857143 0.0285714286 0.0428571429 0.0142857143
## 857  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 858  0.0000000000 0.0588235294 0.0588235294 0.0000000000 0.0000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 860  0.0000000000 0.0036231884 0.0063405797 0.0009057971 0.0181159420
## 861  0.0000000000 0.0037037037 0.0000000000 0.0000000000 0.0000000000
## 862  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 863  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 868  0.0000000000 0.0000000000 0.0000000000 0.0190476190 0.0000000000
## 869  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0196078431
## 871  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 878  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0322580645 0.0000000000 0.0322580645
## 881  0.0000000000 0.0000000000 0.0228571429 0.0057142857 0.0057142857
## 882  0.0000000000 0.0046992481 0.0028195489 0.0018796992 0.0028195489
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 889  0.0122699387 0.0000000000 0.0000000000 0.0122699387 0.0030674847
## 890  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0357142857
## 891  0.0000000000 0.0282685512 0.0000000000 0.0106007067 0.0070671378
## 892  0.0000000000 0.0000000000 0.1290322581 0.0000000000 0.0322580645
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 894  0.0285714286 0.0000000000 0.0000000000 0.0000000000 0.0285714286
## 895  0.0120967742 0.0161290323 0.0181451613 0.0383064516 0.0161290323
## 896  0.1666666667 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 897  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0232558140
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 899  0.0666666667 0.0000000000 0.0666666667 0.0000000000 0.0000000000
## 900  0.0571428571 0.0857142857 0.0285714286 0.0285714286 0.0000000000
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 902  0.0000000000 0.0126582278 0.0126582278 0.0126582278 0.0000000000
## 903  0.0204081633 0.0000000000 0.0000000000 0.0408163265 0.0000000000
## 904  0.0118694362 0.0029673591 0.0000000000 0.0118694362 0.0000000000
## 905  0.0000000000 0.0000000000 0.0000000000 0.0158730159 0.0317460317
## 906  0.0000000000 0.0000000000 0.0019588639 0.0048971596 0.0000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 909  0.0133333333 0.0133333333 0.0266666667 0.0133333333 0.0266666667
## 910  0.0086705202 0.0000000000 0.0028901734 0.0057803468 0.0115606936
## 911  0.0402298851 0.0086206897 0.0114942529 0.0086206897 0.1206896552
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 913  0.0267857143 0.0089285714 0.0178571429 0.0000000000 0.0178571429
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 915  0.0583190395 0.0274442539 0.0205831904 0.0188679245 0.0188679245
## 916  0.0000000000 0.0000000000 0.0000000000 0.0294117647 0.0000000000
## 917  0.0000000000 0.0869565217 0.0000000000 0.1304347826 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 919  0.0000000000 0.0085470085 0.0000000000 0.0341880342 0.0085470085
## 920  0.0000000000 0.0454545455 0.0000000000 0.0000000000 0.0454545455
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 922  0.0450450450 0.0360360360 0.0450450450 0.0180180180 0.0000000000
## 923  0.0309278351 0.0000000000 0.0103092784 0.0000000000 0.0206185567
## 924  0.0384615385 0.0384615385 0.0000000000 0.0384615385 0.0192307692
## 925  0.0000000000 0.0046082949 0.0092165899 0.0161290323 0.0023041475
## 926  0.0083333333 0.0250000000 0.0000000000 0.0500000000 0.0416666667
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 928  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 930  0.0416666667 0.0000000000 0.0000000000 0.0125000000 0.0083333333
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 933  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 934  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0000000000 0.0416666667 0.0000000000
## 937  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 938  0.0044642857 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 939  0.0026595745 0.0000000000 0.0053191489 0.0053191489 0.0106382979
## 940  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.1304347826
## 941  0.0208333333 0.0000000000 0.0104166667 0.0000000000 0.0000000000
## 942  0.0141843972 0.0212765957 0.0283687943 0.0425531915 0.0141843972
## 943  0.0000000000 0.0000000000 0.0263157895 0.0000000000 0.0000000000
## 944  0.0280373832 0.0155763240 0.0031152648 0.0124610592 0.0031152648
## 945  0.0518867925 0.0094339623 0.0000000000 0.0094339623 0.0283018868
## 946  0.0070175439 0.0070175439 0.0140350877 0.0561403509 0.0070175439
## 947  0.0084033613 0.0000000000 0.0000000000 0.0000000000 0.0126050420
## 948  0.0000000000 0.0000000000 0.0227272727 0.0000000000 0.0000000000
## 949  0.1111111111 0.0000000000 0.1111111111 0.0000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 951  0.0042016807 0.0042016807 0.0000000000 0.0126050420 0.0126050420
## 952  0.0256410256 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 953  0.0000000000 0.0000000000 0.0153846154 0.0307692308 0.0000000000
## 954  0.0000000000 0.0000000000 0.0285714286 0.0000000000 0.0000000000
## 955  0.0434782609 0.0000000000 0.0000000000 0.0434782609 0.0000000000
## 956  0.0059171598 0.0000000000 0.0059171598 0.0000000000 0.0059171598
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 958  0.0215053763 0.0322580645 0.0107526882 0.0107526882 0.0107526882
## 959  0.0064935065 0.0259740260 0.0064935065 0.0000000000 0.0064935065
## 960  0.0144578313 0.0096385542 0.0144578313 0.0072289157 0.0096385542
## 961  0.0101522843 0.0000000000 0.0050761421 0.0152284264 0.0456852792
## 962  0.0000000000 0.0476190476 0.0317460317 0.0158730159 0.0158730159
## 963  0.0526315789 0.0526315789 0.0000000000 0.0000000000 0.0263157895
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 965  0.0000000000 0.0000000000 0.0000000000 0.0082644628 0.0000000000
## 966  0.0344827586 0.0000000000 0.0344827586 0.0172413793 0.0344827586
## 967  0.0000000000 0.0172413793 0.0000000000 0.0172413793 0.0000000000
## 968  0.0000000000 0.0000000000 0.0240963855 0.0120481928 0.0000000000
## 969  0.0000000000 0.0000000000 0.0181818182 0.0000000000 0.0000000000
## 970  0.0073260073 0.0036630037 0.0109890110 0.0109890110 0.0183150183
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 973  0.0294117647 0.0000000000 0.0000000000 0.0294117647 0.0294117647
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 975  0.0000000000 0.0130434783 0.0065217391 0.0043478261 0.0065217391
## 976  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0588235294
## 977  0.0000000000 0.0000000000 0.0028409091 0.0227272727 0.0312500000
## 978  0.2000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 980  0.0000000000 0.0365853659 0.0000000000 0.0000000000 0.0121951220
## 981  0.0400000000 0.0000000000 0.0000000000 0.0000000000 0.0133333333
## 982  0.0000000000 0.0000000000 0.0000000000 0.0263157895 0.0000000000
## 983  0.0000000000 0.0220588235 0.0073529412 0.0000000000 0.0147058824
## 984  0.0178571429 0.0071428571 0.0107142857 0.0035714286 0.0107142857
## 985  0.0020964361 0.0125786164 0.0146750524 0.0062893082 0.0083857442
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 987  0.0029744200 0.0059488400 0.0118976800 0.0059488400 0.0053539560
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 989  0.0211267606 0.0000000000 0.0140845070 0.0915492958 0.0352112676
## 990  0.0256410256 0.0000000000 0.0170940171 0.0170940171 0.0170940171
## 991  0.0017874876 0.0015888779 0.0051638530 0.0033763654 0.0019860973
## 992  0.0032679739 0.0163398693 0.0032679739 0.0032679739 0.0032679739
## 993  0.0153846154 0.0038461538 0.0153846154 0.0000000000 0.0000000000
## 994  0.0000000000 0.0030303030 0.0030303030 0.0045454545 0.0090909091
## 995  0.0103092784 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.0000000000
## 997  0.0005506608 0.0033039648 0.0011013216 0.0005506608 0.0011013216
## 998  0.0000000000 0.0000000000 0.0000000000 0.0833333333 0.0833333333
## 999  0.0233564014 0.0173010381 0.0164359862 0.0268166090 0.0419550173
## 1000 0.0000000000 0.0039525692 0.0079051383 0.0000000000 0.0079051383
##                34           35           36          37           38
## 1    0.0021645022 0.0036075036 0.0036075036 0.002886003 0.0137085137
## 2    0.0000000000 0.0263157895 0.0131578947 0.000000000 0.0394736842
## 3    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 4    0.0092764378 0.0092764378 0.0074211503 0.003710575 0.0092764378
## 5    0.0087336245 0.0037429819 0.0049906425 0.006862133 0.0037429819
## 6    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 8    0.0055545269 0.0103684503 0.0096278467 0.007406036 0.0175893353
## 9    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 10   0.0517241379 0.0172413793 0.0000000000 0.000000000 0.0172413793
## 11   0.0092724679 0.0106990014 0.0228245364 0.009985735 0.0185449358
## 12   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 13   0.0350877193 0.0350877193 0.0175438596 0.000000000 0.0000000000
## 14   0.0000000000 0.0083333333 0.0500000000 0.025000000 0.0000000000
## 15   0.0000000000 0.0000000000 0.0370370370 0.074074074 0.0000000000
## 16   0.0000000000 0.0322580645 0.0000000000 0.096774194 0.0000000000
## 17   0.0000000000 0.0040160643 0.0120481928 0.012048193 0.0080321285
## 18   0.0137931034 0.0068965517 0.0000000000 0.027586207 0.0000000000
## 19   0.2000000000 0.0000000000 0.0000000000 0.000000000 0.0500000000
## 20   0.0087565674 0.0017513135 0.0052539405 0.021015762 0.0105078809
## 21   0.0164705882 0.0070588235 0.0000000000 0.021176471 0.0000000000
## 22   0.0000000000 0.0000000000 0.1041666667 0.041666667 0.0000000000
## 23   0.0149700599 0.0049900200 0.0019960080 0.007984032 0.0049900200
## 24   0.0000000000 0.0000000000 0.0101694915 0.010169492 0.0000000000
## 25   0.0000000000 0.0000000000 0.0227272727 0.000000000 0.0000000000
## 26   0.0256410256 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 27   0.0057471264 0.0057471264 0.0000000000 0.000000000 0.0287356322
## 28   0.0156250000 0.0078125000 0.0039062500 0.011718750 0.0195312500
## 29   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 31   0.0069524913 0.0127462341 0.0023174971 0.006952491 0.0046349942
## 32   0.0000000000 0.0565217391 0.0043478261 0.000000000 0.0000000000
## 33   0.0048076923 0.0048076923 0.0000000000 0.000000000 0.0240384615
## 34   0.0037831021 0.0075662043 0.0025220681 0.002522068 0.0138713745
## 35   0.0000000000 0.0029154519 0.0087463557 0.000000000 0.0174927114
## 36   0.0000000000 0.0000000000 0.0270270270 0.010810811 0.0054054054
## 37   0.0434782609 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 38   0.0400000000 0.0057142857 0.0000000000 0.005714286 0.0228571429
## 39   0.0277777778 0.0347222222 0.0138888889 0.006944444 0.0000000000
## 40   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 42   0.0000000000 0.0000000000 0.0104712042 0.010471204 0.0000000000
## 43   0.0106382979 0.0106382979 0.0000000000 0.000000000 0.0319148936
## 44   0.0091556460 0.0077992540 0.0077992540 0.016615802 0.0091556460
## 45   0.0017636684 0.0000000000 0.0026455026 0.002645503 0.0044091711
## 46   0.0081967213 0.0027322404 0.0027322404 0.010928962 0.0013661202
## 47   0.0028901734 0.0028901734 0.0000000000 0.000000000 0.0057803468
## 48   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 52   0.0071942446 0.0071942446 0.0035971223 0.003597122 0.0251798561
## 53   0.0000000000 0.0000000000 0.0234113712 0.003344482 0.0100334448
## 54   0.0357142857 0.0000000000 0.0000000000 0.017857143 0.0000000000
## 55   0.0152284264 0.0050761421 0.0050761421 0.000000000 0.0050761421
## 56   0.0020586722 0.0061760165 0.0046320124 0.026762738 0.0041173443
## 57   0.0075757576 0.0227272727 0.0075757576 0.015151515 0.0000000000
## 58   0.0039840637 0.0039840637 0.0000000000 0.013944223 0.0079681275
## 59   0.0000000000 0.0102040816 0.0255102041 0.006377551 0.0102040816
## 60   0.0000000000 0.0000000000 0.0263157895 0.000000000 0.0000000000
## 61   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 62   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0869565217
## 63   0.0207100592 0.0059171598 0.0000000000 0.000000000 0.0000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 66   0.0134357006 0.0019193858 0.0000000000 0.003838772 0.0287907869
## 67   0.0000000000 0.0000000000 0.0119047619 0.000000000 0.0119047619
## 68   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 69   0.0042887777 0.0135811294 0.0293066476 0.005003574 0.0021443888
## 70   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 72   0.0322580645 0.0161290323 0.0000000000 0.000000000 0.0000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 74   0.0010952903 0.0043811610 0.0038335159 0.002738226 0.0060240964
## 75   0.0019982872 0.0051384528 0.0051384528 0.003711105 0.0025692264
## 76   0.0036429872 0.0036429872 0.0091074681 0.003642987 0.0036429872
## 77   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 78   0.0068728522 0.0068728522 0.0068728522 0.013745704 0.0274914089
## 79   0.0035587189 0.0177935943 0.0106761566 0.010676157 0.0213523132
## 80   0.0000000000 0.0185185185 0.0185185185 0.000000000 0.0000000000
## 81   0.0043103448 0.0129310345 0.0000000000 0.000000000 0.0000000000
## 82   0.0106382979 0.0212765957 0.0319148936 0.053191489 0.0638297872
## 83   0.0085106383 0.0014184397 0.0028368794 0.002836879 0.0028368794
## 84   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 85   0.0238805970 0.0089552239 0.0029850746 0.008955224 0.0059701493
## 86   0.0031250000 0.0093750000 0.0062500000 0.012500000 0.0031250000
## 87   0.0072463768 0.0108695652 0.0000000000 0.007246377 0.0000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 89   0.0039840637 0.0034149118 0.0022766079 0.002845760 0.0147979511
## 90   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 91   0.0454545455 0.0454545455 0.0454545455 0.000000000 0.0000000000
## 92   0.0036697248 0.0073394495 0.0091743119 0.011009174 0.0293577982
## 93   0.0000000000 0.0000000000 0.0032362460 0.009708738 0.0000000000
## 94   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 95   0.0000000000 0.0000000000 0.0701754386 0.017543860 0.0175438596
## 96   0.0500000000 0.0333333333 0.0166666667 0.000000000 0.0000000000
## 97   0.0139442231 0.0112881806 0.0059760956 0.011952191 0.0152722444
## 98   0.0000000000 0.0182648402 0.0136986301 0.013698630 0.0228310502
## 99   0.0050251256 0.0000000000 0.0000000000 0.003350084 0.0067001675
## 100  0.0000000000 0.0273972603 0.0136986301 0.000000000 0.0410958904
## 101  0.0100000000 0.0040000000 0.0020000000 0.002000000 0.0040000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 103  0.0077220077 0.0193050193 0.0193050193 0.015444015 0.0077220077
## 104  0.0000000000 0.0000000000 0.0344827586 0.000000000 0.0000000000
## 105  0.0064516129 0.0193548387 0.0129032258 0.000000000 0.0451612903
## 106  0.0044052863 0.0114537445 0.0044052863 0.003524229 0.0052863436
## 107  0.0119047619 0.0039682540 0.0277777778 0.023809524 0.0039682540
## 108  0.0000000000 0.0000000000 0.0183486239 0.009174312 0.0000000000
## 109  0.0053097345 0.0070796460 0.0008849558 0.004424779 0.0035398230
## 110  0.0434782609 0.0000000000 0.0434782609 0.043478261 0.0000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 113  0.0008802817 0.0000000000 0.0044014085 0.001760563 0.0088028169
## 114  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 115  0.0041916168 0.0023952096 0.0161676647 0.007784431 0.0269461078
## 116  0.0333333333 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 117  0.0380952381 0.0190476190 0.0095238095 0.000000000 0.0000000000
## 118  0.0015205271 0.0025342119 0.0025342119 0.003041054 0.0040547390
## 119  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 120  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 122  0.0082417582 0.0054945055 0.0000000000 0.002747253 0.0082417582
## 123  0.0105401845 0.0105401845 0.0065876153 0.003952569 0.0065876153
## 124  0.0045766590 0.0114416476 0.0022883295 0.009153318 0.0251716247
## 125  0.0000000000 0.0246913580 0.0123456790 0.000000000 0.0000000000
## 126  0.0059453032 0.0083234245 0.0059453032 0.000000000 0.0047562426
## 127  0.0227272727 0.0000000000 0.0227272727 0.000000000 0.0000000000
## 128  0.0067159167 0.0060443251 0.0013431833 0.006044325 0.0060443251
## 129  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 131  0.0000000000 0.0000000000 0.0416666667 0.000000000 0.0000000000
## 132  0.0170132325 0.0151228733 0.0113421550 0.092627599 0.0189035917
## 133  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 135  0.0011290930 0.0054572826 0.0056454648 0.009973654 0.0129845691
## 136  0.0000000000 0.0200000000 0.0100000000 0.000000000 0.0200000000
## 137  0.0044444444 0.0000000000 0.0266666667 0.004444444 0.0088888889
## 138  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 139  0.0000000000 0.0013661202 0.0000000000 0.002049180 0.0000000000
## 140  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 141  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 142  0.0086580087 0.0129870130 0.0129870130 0.008658009 0.0043290043
## 143  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 146  0.0000000000 0.0099009901 0.0000000000 0.000000000 0.0033003300
## 147  0.0000000000 0.0000000000 0.0000000000 0.019607843 0.0000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 153  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 155  0.0027297543 0.0045495905 0.0000000000 0.006369427 0.0172884440
## 156  0.0010266940 0.0035934292 0.0061601643 0.012833676 0.0061601643
## 157  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 158  0.0081967213 0.0000000000 0.0000000000 0.000000000 0.0163934426
## 159  0.0062814070 0.0113065327 0.0226130653 0.030150754 0.0251256281
## 160  0.0018181818 0.0025454545 0.0043636364 0.005090909 0.0043636364
## 161  0.0000000000 0.0000000000 0.0070175439 0.024561404 0.0070175439
## 162  0.0000000000 0.0000000000 0.0425531915 0.000000000 0.0212765957
## 163  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0574712644
## 164  0.0048899756 0.0048899756 0.0048899756 0.009779951 0.0000000000
## 165  0.0000000000 0.0000000000 0.0072992701 0.000000000 0.0291970803
## 166  0.0018648019 0.0032634033 0.0032634033 0.006060606 0.0116550117
## 167  0.0097560976 0.0097560976 0.0048780488 0.000000000 0.0243902439
## 168  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0169491525
## 169  0.0000000000 0.0119047619 0.0059523810 0.023809524 0.0238095238
## 170  0.0068493151 0.0342465753 0.0000000000 0.000000000 0.0000000000
## 171  0.0118343195 0.0000000000 0.0000000000 0.017751479 0.0000000000
## 172  0.0000000000 0.0000000000 0.0000000000 0.028571429 0.0000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 174  0.0040363269 0.0020181635 0.0020181635 0.001009082 0.0050454087
## 175  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 176  0.0000000000 0.0086956522 0.0043478261 0.004347826 0.0043478261
## 177  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 178  0.1794019934 0.0468807678 0.0103359173 0.006275378 0.0025839793
## 179  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 180  0.0000000000 0.0214285714 0.0142857143 0.000000000 0.0035714286
## 181  0.0040268456 0.0091722595 0.0058165548 0.006040268 0.0055928412
## 182  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 185  0.0059496568 0.0054919908 0.0041189931 0.007780320 0.0045766590
## 186  0.0126582278 0.0018083183 0.0045207957 0.009945750 0.0207956600
## 187  0.0000000000 0.0000000000 0.0058479532 0.005847953 0.0058479532
## 188  0.0022271715 0.0044543430 0.0000000000 0.017817372 0.0133630290
## 189  0.0107526882 0.0129032258 0.0129032258 0.017204301 0.0301075269
## 190  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0042016807
## 191  0.0000000000 0.0156250000 0.0000000000 0.078125000 0.0000000000
## 192  0.0022354694 0.0022354694 0.0059612519 0.001490313 0.0052160954
## 193  0.0327102804 0.0046728972 0.0000000000 0.000000000 0.0140186916
## 194  0.0043668122 0.0087336245 0.0043668122 0.004366812 0.0087336245
## 195  0.0222222222 0.0000000000 0.0000000000 0.355555556 0.0000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 197  0.0077220077 0.0000000000 0.0057915058 0.002895753 0.0019305019
## 198  0.0000000000 0.0000000000 0.0000000000 0.020000000 0.0200000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 201  0.0131578947 0.0043859649 0.0087719298 0.006578947 0.0043859649
## 202  0.0000000000 0.0000000000 0.0000000000 0.045454545 0.0454545455
## 203  0.0000000000 0.0133333333 0.0133333333 0.000000000 0.0133333333
## 204  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 205  0.0046701693 0.0023350846 0.0046701693 0.005837712 0.0052539405
## 206  0.0023041475 0.0046082949 0.0023041475 0.020737327 0.0092165899
## 207  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 208  0.0337078652 0.0000000000 0.0168539326 0.000000000 0.0056179775
## 209  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 213  0.0047393365 0.0035545024 0.0023696682 0.002369668 0.0082938389
## 214  0.0135135135 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 215  0.0333333333 0.0000000000 0.0666666667 0.000000000 0.0333333333
## 216  0.0174418605 0.0116279070 0.0116279070 0.000000000 0.0174418605
## 217  0.0000000000 0.0097087379 0.0194174757 0.000000000 0.0000000000
## 218  0.0000000000 0.0142857143 0.0071428571 0.007142857 0.0857142857
## 219  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 220  0.0192307692 0.0384615385 0.0480769231 0.019230769 0.0384615385
## 221  0.0063694268 0.0127388535 0.0000000000 0.000000000 0.0000000000
## 222  0.0015649452 0.0000000000 0.0031298905 0.001043297 0.0005216484
## 223  0.0045662100 0.0273972603 0.0091324201 0.004566210 0.0091324201
## 224  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 225  0.0076045627 0.0038022814 0.0095057034 0.003802281 0.0171102662
## 226  0.0526315789 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 227  0.0000000000 0.0129870130 0.0000000000 0.000000000 0.0000000000
## 228  0.0000000000 0.0190476190 0.0000000000 0.000000000 0.0000000000
## 229  0.0045766590 0.0594965675 0.0274599542 0.029748284 0.0125858124
## 230  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 231  0.0007914523 0.0015829046 0.0045508508 0.002770083 0.0025722200
## 232  0.0109289617 0.0218579235 0.0000000000 0.005464481 0.0000000000
## 233  0.0082304527 0.0041152263 0.0123456790 0.004115226 0.0123456790
## 234  0.0000000000 0.0000000000 0.0045558087 0.005694761 0.0011389522
## 235  0.0181818182 0.0060606061 0.0030303030 0.001515152 0.0030303030
## 236  0.0034515218 0.0025101977 0.0047066206 0.002823972 0.0094132413
## 237  0.0075685904 0.0037842952 0.0104068117 0.013245033 0.0075685904
## 238  0.0040629761 0.0020314881 0.0137125444 0.013712544 0.0055865922
## 239  0.0000000000 0.0055762082 0.0018587361 0.003717472 0.0018587361
## 240  0.0000000000 0.0000000000 0.0600000000 0.000000000 0.0600000000
## 241  0.0192307692 0.0096153846 0.0384615385 0.019230769 0.0000000000
## 242  0.0018248175 0.0072992701 0.0045620438 0.002737226 0.0063868613
## 243  0.0039682540 0.0079365079 0.0079365079 0.000000000 0.0079365079
## 244  0.0253164557 0.0050632911 0.0000000000 0.000000000 0.0050632911
## 245  0.0058823529 0.0235294118 0.0117647059 0.002941176 0.0000000000
## 246  0.0276564774 0.0072780204 0.0145560408 0.020378457 0.0131004367
## 247  0.0666666667 0.0333333333 0.0166666667 0.000000000 0.0000000000
## 248  0.0114942529 0.0086206897 0.0143678161 0.011494253 0.0172413793
## 249  0.0260869565 0.0173913043 0.0000000000 0.000000000 0.0086956522
## 250  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 251  0.0089285714 0.0000000000 0.0089285714 0.000000000 0.0000000000
## 252  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0120481928
## 253  0.0156250000 0.0000000000 0.0000000000 0.000000000 0.0156250000
## 254  0.0136986301 0.0000000000 0.0273972603 0.000000000 0.0136986301
## 255  0.0076923077 0.0153846154 0.0000000000 0.007692308 0.0076923077
## 256  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0108695652
## 257  0.0000000000 0.0192307692 0.0000000000 0.000000000 0.0192307692
## 258  0.0000000000 0.0263157895 0.0000000000 0.000000000 0.0000000000
## 259  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 260  0.0000000000 0.0000000000 0.0000000000 0.019230769 0.0192307692
## 261  0.0000000000 0.0333333333 0.0166666667 0.000000000 0.0000000000
## 262  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0158730159
## 263  0.0000000000 0.0303030303 0.0151515152 0.000000000 0.0000000000
## 264  0.0131578947 0.0000000000 0.0000000000 0.000000000 0.0394736842
## 265  0.0022573363 0.0000000000 0.0022573363 0.006772009 0.0022573363
## 266  0.0060975610 0.0040650407 0.0040650407 0.014227642 0.0101626016
## 267  0.0049005477 0.0046122802 0.0017296051 0.003459210 0.0037474777
## 268  0.0111358575 0.0278396437 0.0445434298 0.005567929 0.0200445434
## 269  0.0000000000 0.0000000000 0.0294117647 0.014705882 0.0441176471
## 270  0.0153846154 0.0000000000 0.0000000000 0.015384615 0.0307692308
## 271  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0121951220
## 272  0.0095238095 0.0190476190 0.0095238095 0.028571429 0.0190476190
## 273  0.0070921986 0.0000000000 0.0000000000 0.007092199 0.0070921986
## 274  0.0000000000 0.0000000000 0.0078125000 0.015625000 0.0234375000
## 275  0.0000000000 0.0169491525 0.0084745763 0.025423729 0.0169491525
## 276  0.0072463768 0.0072463768 0.0144927536 0.014492754 0.0072463768
## 277  0.0039062500 0.0019531250 0.0019531250 0.025390625 0.0136718750
## 278  0.0015698587 0.0015698587 0.0062794349 0.001569859 0.0047095761
## 279  0.0100000000 0.0000000000 0.0000000000 0.000000000 0.0200000000
## 280  0.0000000000 0.0081967213 0.0000000000 0.008196721 0.0081967213
## 281  0.0126582278 0.0000000000 0.0126582278 0.012658228 0.0000000000
## 282  0.1111111111 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 283  0.3333333333 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.111111111 0.0000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 290  0.0000000000 0.1363636364 0.1060606061 0.000000000 0.0000000000
## 291  0.0000000000 0.0869565217 0.0869565217 0.000000000 0.0000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 293  0.0000000000 0.1428571429 0.0000000000 0.000000000 0.0000000000
## 294  0.0961538462 0.0384615385 0.0000000000 0.000000000 0.0192307692
## 295  0.0000000000 0.0000000000 0.0096153846 0.000000000 0.1442307692
## 296  0.0000000000 0.0000000000 0.0000000000 0.013157895 0.0131578947
## 297  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0212765957
## 298  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 299  0.0000000000 0.0434782609 0.0000000000 0.000000000 0.0000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 301  0.0040540541 0.0027027027 0.0256756757 0.006756757 0.0162162162
## 302  0.0000000000 0.0000000000 0.0000000000 0.037037037 0.0000000000
## 303  0.0000000000 0.0112359551 0.0000000000 0.000000000 0.0449438202
## 304  0.0096153846 0.0000000000 0.0000000000 0.019230769 0.0000000000
## 305  0.0024271845 0.0097087379 0.0072815534 0.009708738 0.0048543689
## 306  0.0033222591 0.0071982281 0.0149501661 0.008305648 0.0138427464
## 307  0.0000000000 0.0048780488 0.0048780488 0.000000000 0.0000000000
## 308  0.0508474576 0.0338983051 0.0169491525 0.016949153 0.0000000000
## 309  0.0236220472 0.0000000000 0.0000000000 0.007874016 0.0000000000
## 310  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 311  0.0183180683 0.0008326395 0.0058284763 0.024146545 0.0124895920
## 312  0.0115870787 0.0129915730 0.0143960674 0.014747191 0.0143960674
## 313  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 314  0.0000000000 0.0169491525 0.0903954802 0.005649718 0.0000000000
## 315  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 316  0.0039682540 0.0119047619 0.0119047619 0.007936508 0.0019841270
## 317  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 318  0.0178217822 0.0079207921 0.0059405941 0.017821782 0.0257425743
## 319  0.0081300813 0.0162601626 0.0081300813 0.000000000 0.0081300813
## 320  0.0000000000 0.0000000000 0.0085653105 0.014989293 0.0042826552
## 321  0.0000000000 0.0120481928 0.0481927711 0.012048193 0.0000000000
## 322  0.0000000000 0.1666666667 0.0000000000 0.055555556 0.0555555556
## 323  0.0042918455 0.0021459227 0.0214592275 0.006437768 0.0021459227
## 324  0.0000000000 0.0000000000 0.0104166667 0.000000000 0.0208333333
## 325  0.0851063830 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 327  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0065359477
## 328  0.0160000000 0.0080000000 0.0160000000 0.000000000 0.0080000000
## 329  0.0013986014 0.0000000000 0.0083916084 0.012587413 0.0041958042
## 330  0.0000000000 0.0000000000 0.0000000000 0.111111111 0.0000000000
## 331  0.0000000000 0.0085470085 0.0256410256 0.000000000 0.0000000000
## 332  0.0022935780 0.0030581040 0.0061162080 0.028287462 0.0214067278
## 333  0.0467836257 0.0350877193 0.0116959064 0.011695906 0.0058479532
## 334  0.0384105960 0.0781456954 0.0158940397 0.007947020 0.0370860927
## 335  0.0131578947 0.0065789474 0.0000000000 0.006578947 0.0000000000
## 336  0.0106100796 0.0106100796 0.0079575597 0.005305040 0.0079575597
## 337  0.0200000000 0.0100000000 0.0155555556 0.014444444 0.0233333333
## 338  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 340  0.0000000000 0.0169014085 0.0281690141 0.028169014 0.0197183099
## 341  0.0101180438 0.0134907251 0.0404721754 0.037099494 0.0118043845
## 342  0.0151515152 0.0151515152 0.0000000000 0.000000000 0.0151515152
## 343  0.0027548209 0.0082644628 0.0082644628 0.002754821 0.0853994490
## 344  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 345  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 346  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 347  0.0521327014 0.0142180095 0.0379146919 0.137440758 0.0426540284
## 348  0.0054347826 0.0054347826 0.0027173913 0.016304348 0.0271739130
## 349  0.0110497238 0.0124309392 0.0041436464 0.012430939 0.0193370166
## 350  0.0000000000 0.0000000000 0.0263157895 0.000000000 0.0263157895
## 351  0.0087527352 0.0043763676 0.0021881838 0.006564551 0.0000000000
## 352  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 354  0.0240000000 0.0080000000 0.0133333333 0.032000000 0.0160000000
## 355  0.0275862069 0.0068965517 0.0068965517 0.006896552 0.0137931034
## 356  0.0150375940 0.0225563910 0.0150375940 0.007518797 0.0075187970
## 357  0.0068965517 0.0068965517 0.0000000000 0.000000000 0.0206896552
## 358  0.0045454545 0.0181818182 0.0000000000 0.031818182 0.0090909091
## 359  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 360  0.0255754476 0.0204603581 0.0076726343 0.047314578 0.0063938619
## 361  0.0109223301 0.0109223301 0.0024271845 0.008495146 0.0157766990
## 362  0.0197368421 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 363  0.0080398162 0.0107197550 0.0091883614 0.006891271 0.0084226646
## 364  0.0000000000 0.0000000000 0.0871794872 0.097435897 0.0358974359
## 365  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 367  0.0041322314 0.0061983471 0.0041322314 0.006198347 0.0144628099
## 368  0.0162601626 0.0040650407 0.0040650407 0.016260163 0.0203252033
## 369  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 371  0.0256410256 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 372  0.0097087379 0.0000000000 0.0032362460 0.006472492 0.0000000000
## 373  0.0444444444 0.0000000000 0.0000000000 0.022222222 0.0222222222
## 374  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 375  0.0033557047 0.0145413870 0.0055928412 0.010067114 0.0044742729
## 376  0.0064102564 0.0128205128 0.0192307692 0.019230769 0.0384615385
## 377  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1111111111
## 378  0.0063291139 0.0443037975 0.1265822785 0.000000000 0.0253164557
## 379  0.0084388186 0.0028129395 0.0168776371 0.004219409 0.0000000000
## 380  0.0132450331 0.0132450331 0.0132450331 0.013245033 0.0066225166
## 381  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 382  0.0013947001 0.0004649000 0.0009298001 0.001394700 0.0004649000
## 383  0.0000000000 0.0000000000 0.0526315789 0.000000000 0.0000000000
## 384  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 385  0.0104529617 0.0087108014 0.0156794425 0.022648084 0.0139372822
## 386  0.0000000000 0.0000000000 0.0588235294 0.000000000 0.0000000000
## 387  0.0271186441 0.0101694915 0.0237288136 0.016949153 0.0135593220
## 388  0.0198675497 0.0264900662 0.0066225166 0.019867550 0.0264900662
## 389  0.0010111223 0.0040444894 0.0000000000 0.002022245 0.0010111223
## 390  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0181818182
## 391  0.0331491713 0.0110497238 0.0055248619 0.000000000 0.0000000000
## 392  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 393  0.0000000000 0.0000000000 0.0333333333 0.000000000 0.1666666667
## 394  0.0039682540 0.0119047619 0.0000000000 0.000000000 0.0039682540
## 395  0.0127298444 0.0056577086 0.0070721358 0.001414427 0.0070721358
## 396  0.0000000000 0.0000000000 0.0714285714 0.000000000 0.0000000000
## 397  0.0014992504 0.0089955022 0.0059970015 0.002998501 0.0074962519
## 398  0.0000000000 0.0869565217 0.0434782609 0.043478261 0.0000000000
## 399  0.0016000000 0.0064000000 0.0160000000 0.020800000 0.0112000000
## 400  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0333333333
## 401  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 402  0.0035335689 0.0141342756 0.0176678445 0.003533569 0.0035335689
## 403  0.0199081164 0.0336906585 0.0367534456 0.015313936 0.0061255743
## 404  0.0265957447 0.0159574468 0.0425531915 0.015957447 0.0212765957
## 405  0.0909090909 0.0000000000 0.0000000000 0.034090909 0.0113636364
## 406  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 408  0.0100502513 0.0100502513 0.0201005025 0.000000000 0.0201005025
## 409  0.0000000000 0.0238095238 0.0178571429 0.017857143 0.0059523810
## 410  0.0000000000 0.0000000000 0.0000000000 0.028571429 0.1142857143
## 411  0.0072867553 0.0124303472 0.0072867553 0.018859837 0.0467209601
## 412  0.0113636364 0.0340909091 0.0340909091 0.011363636 0.0113636364
## 413  0.0285714286 0.0000000000 0.0285714286 0.028571429 0.0000000000
## 414  0.0638103920 0.0072926162 0.0118505014 0.005469462 0.0118505014
## 415  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 416  0.0046082949 0.0092165899 0.0368663594 0.013824885 0.0414746544
## 417  0.0000000000 0.1333333333 0.0000000000 0.000000000 0.0000000000
## 418  0.0000000000 0.0022471910 0.0359550562 0.058426966 0.0314606742
## 419  0.0000000000 0.0666666667 0.0166666667 0.050000000 0.0000000000
## 420  0.0289256198 0.0206611570 0.0206611570 0.016528926 0.0206611570
## 421  0.0357142857 0.0000000000 0.0000000000 0.000000000 0.0357142857
## 422  0.0000000000 0.0000000000 0.0396825397 0.007936508 0.0000000000
## 423  0.0149253731 0.0000000000 0.0000000000 0.000000000 0.0149253731
## 424  0.0344827586 0.0229885057 0.0114942529 0.000000000 0.0000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.105263158 0.0000000000
## 427  0.0069848661 0.0093131548 0.0104772992 0.006984866 0.0069848661
## 428  0.0050000000 0.0150000000 0.0100000000 0.015000000 0.0150000000
## 429  0.0140845070 0.0563380282 0.0985915493 0.014084507 0.0000000000
## 430  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 431  0.0000000000 0.0952380952 0.0000000000 0.000000000 0.0000000000
## 432  0.1153846154 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 433  0.0238095238 0.0396825397 0.0476190476 0.000000000 0.0158730159
## 434  0.0047281324 0.0141843972 0.0070921986 0.021276596 0.0141843972
## 435  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 436  0.0078125000 0.0390625000 0.0156250000 0.007812500 0.0078125000
## 437  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 438  0.0152671756 0.0076335878 0.0076335878 0.076335878 0.0305343511
## 439  0.0196078431 0.0000000000 0.0000000000 0.000000000 0.0392156863
## 440  0.0090090090 0.1531531532 0.0090090090 0.009009009 0.0270270270
## 441  0.0106382979 0.0106382979 0.0106382979 0.010638298 0.0000000000
## 442  0.0000000000 0.0102564103 0.0512820513 0.000000000 0.0102564103
## 443  0.0526315789 0.0000000000 0.1578947368 0.000000000 0.0000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 445  0.0127504554 0.0109289617 0.0163934426 0.051001821 0.0382513661
## 446  0.0000000000 0.0000000000 0.0000000000 0.018181818 0.0181818182
## 447  0.0000000000 0.0277777778 0.0000000000 0.027777778 0.0138888889
## 448  0.0317460317 0.0000000000 0.0317460317 0.000000000 0.0000000000
## 449  0.0103806228 0.0138408304 0.0432525952 0.015570934 0.0259515571
## 450  0.0159235669 0.0159235669 0.0079617834 0.009554140 0.0095541401
## 451  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 453  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 454  0.0428571429 0.0000000000 0.0285714286 0.028571429 0.0428571429
## 455  0.0000000000 0.0000000000 0.0000000000 0.157894737 0.1052631579
## 456  0.0701754386 0.0000000000 0.0175438596 0.017543860 0.0000000000
## 457  0.0126984127 0.0095238095 0.0063492063 0.003174603 0.0158730159
## 458  0.0000000000 0.0000000000 0.0263157895 0.039473684 0.0131578947
## 459  0.0000000000 0.0112359551 0.0000000000 0.000000000 0.0112359551
## 460  0.0058823529 0.0029411765 0.0000000000 0.002941176 0.0147058824
## 461  0.0434782609 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 462  0.0000000000 0.0000000000 0.0000000000 0.020000000 0.0200000000
## 463  0.0120481928 0.0000000000 0.0000000000 0.012048193 0.0120481928
## 464  0.0153061224 0.0051020408 0.0204081633 0.010204082 0.0204081633
## 465  0.0069686411 0.0243902439 0.0034843206 0.013937282 0.0034843206
## 466  0.0000000000 0.0000000000 0.0312500000 0.000000000 0.0000000000
## 467  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 468  0.0656934307 0.0437956204 0.0364963504 0.014598540 0.0437956204
## 469  0.0079051383 0.0197628458 0.0039525692 0.015810277 0.0118577075
## 470  0.0035335689 0.0106007067 0.0671378092 0.024734982 0.0141342756
## 471  0.0000000000 0.0322580645 0.0000000000 0.000000000 0.0000000000
## 472  0.0043103448 0.0172413793 0.0258620690 0.025862069 0.0000000000
## 473  0.0526315789 0.1052631579 0.0000000000 0.000000000 0.0000000000
## 474  0.0285714286 0.0000000000 0.0285714286 0.000000000 0.0000000000
## 475  0.0138888889 0.0000000000 0.0000000000 0.013888889 0.0277777778
## 476  0.0088105727 0.0132158590 0.0220264317 0.013215859 0.0308370044
## 477  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 478  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 479  0.0542635659 0.0310077519 0.0000000000 0.038759690 0.0542635659
## 480  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 481  0.0036231884 0.0108695652 0.0108695652 0.014492754 0.0253623188
## 482  0.0000000000 0.0454545455 0.0000000000 0.000000000 0.0000000000
## 483  0.0000000000 0.0370370370 0.0000000000 0.018518519 0.0000000000
## 484  0.0200000000 0.0000000000 0.0000000000 0.000000000 0.0200000000
## 485  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 487  0.0000000000 0.0317460317 0.0238095238 0.007936508 0.0238095238
## 488  0.0120481928 0.0240963855 0.0120481928 0.024096386 0.0120481928
## 489  0.0000000000 0.2142857143 0.0000000000 0.000000000 0.0000000000
## 490  0.0281690141 0.0281690141 0.0000000000 0.000000000 0.0000000000
## 491  0.0666666667 0.0000000000 0.0000000000 0.033333333 0.0000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 493  0.0000000000 0.0714285714 0.0000000000 0.000000000 0.0000000000
## 494  0.0074453234 0.0144253141 0.0041879944 0.008375989 0.0255932992
## 495  0.1333333333 0.1333333333 0.0000000000 0.000000000 0.0000000000
## 496  0.0000000000 0.0000000000 0.0114942529 0.000000000 0.0114942529
## 497  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 499  0.0909090909 0.0000000000 0.0000000000 0.000000000 0.0909090909
## 500  0.0000000000 0.0666666667 0.0000000000 0.000000000 0.1333333333
## 501  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 502  0.0000000000 0.1111111111 0.1111111111 0.000000000 0.1111111111
## 503  0.0088888889 0.0000000000 0.0266666667 0.008888889 0.0044444444
## 504  0.0077586207 0.0155172414 0.0034482759 0.021551724 0.0146551724
## 505  0.0358422939 0.0143369176 0.0095579450 0.023894863 0.0047789725
## 506  0.1200000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 507  0.0000000000 0.0175438596 0.0000000000 0.017543860 0.0000000000
## 508  0.0180831826 0.0307414105 0.0126582278 0.016274864 0.0180831826
## 509  0.0000000000 0.0454545455 0.0454545455 0.000000000 0.0454545455
## 510  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 511  0.0371747212 0.0334572491 0.0074349442 0.059479554 0.0223048327
## 512  0.0186915888 0.0186915888 0.0186915888 0.028037383 0.0093457944
## 513  0.0000000000 0.0206185567 0.0103092784 0.010309278 0.0000000000
## 514  0.0000000000 0.0000000000 0.0144230769 0.014423077 0.0000000000
## 515  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 516  0.0333333333 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 517  0.0000000000 0.1250000000 0.0000000000 0.000000000 0.0000000000
## 518  0.0000000000 0.0526315789 0.0000000000 0.000000000 0.0000000000
## 519  0.0076045627 0.0456273764 0.0000000000 0.000000000 0.0304182510
## 520  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 521  0.0000000000 0.0204081633 0.0204081633 0.000000000 0.0612244898
## 522  0.0266666667 0.0000000000 0.0133333333 0.016666667 0.0133333333
## 523  0.0000000000 0.0000000000 0.0204081633 0.000000000 0.0000000000
## 524  0.0000000000 0.0000000000 0.0196078431 0.000000000 0.0392156863
## 525  0.0181818182 0.0000000000 0.0363636364 0.018181818 0.0000000000
## 526  0.0000000000 0.0149253731 0.0149253731 0.000000000 0.0000000000
## 527  0.0000000000 0.0506329114 0.0000000000 0.012658228 0.0000000000
## 528  0.0301204819 0.0180722892 0.0060240964 0.006024096 0.0000000000
## 529  0.0412371134 0.0000000000 0.0103092784 0.010309278 0.0206185567
## 530  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 531  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 533  0.0153846154 0.0115384615 0.0115384615 0.000000000 0.0192307692
## 534  0.0000000000 0.0833333333 0.0000000000 0.000000000 0.0000000000
## 535  0.0000000000 0.0144927536 0.0000000000 0.000000000 0.0144927536
## 536  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0204081633
## 537  0.0000000000 0.0000000000 0.0200000000 0.000000000 0.0200000000
## 538  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0222222222
## 539  0.0000000000 0.0444444444 0.0000000000 0.000000000 0.0000000000
## 540  0.0303030303 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 541  0.0094786730 0.0094786730 0.0000000000 0.000000000 0.0000000000
## 542  0.0000000000 0.0327868852 0.0327868852 0.000000000 0.0163934426
## 543  0.0000000000 0.0086206897 0.0086206897 0.051724138 0.0258620690
## 544  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 545  0.0000000000 0.0769230769 0.0000000000 0.000000000 0.0000000000
## 546  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0208333333
## 547  0.0000000000 0.0325581395 0.0232558140 0.018604651 0.0232558140
## 548  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 549  0.0285714286 0.0000000000 0.0000000000 0.028571429 0.0095238095
## 550  0.0204081633 0.0000000000 0.1020408163 0.000000000 0.0000000000
## 551  0.0163934426 0.0163934426 0.0163934426 0.032786885 0.0000000000
## 552  0.0638297872 0.0212765957 0.0000000000 0.042553191 0.0000000000
## 553  0.0208333333 0.0208333333 0.0000000000 0.041666667 0.0000000000
## 554  0.0169491525 0.0000000000 0.0000000000 0.016949153 0.0000000000
## 555  0.0000000000 0.0000000000 0.0153846154 0.000000000 0.0000000000
## 556  0.2461538462 0.0000000000 0.0000000000 0.030769231 0.0153846154
## 557  0.0141843972 0.0141843972 0.0141843972 0.014184397 0.0212765957
## 558  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0444444444
## 559  0.0142857143 0.0000000000 0.0142857143 0.000000000 0.0142857143
## 560  0.0526315789 0.0000000000 0.0000000000 0.000000000 0.0526315789
## 561  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1111111111
## 563  0.0114678899 0.0045871560 0.0022935780 0.018348624 0.0298165138
## 564  0.0243902439 0.0243902439 0.0000000000 0.000000000 0.0731707317
## 565  0.0000000000 0.0000000000 0.0000000000 0.062500000 0.0625000000
## 566  0.0000000000 0.0576923077 0.0384615385 0.000000000 0.0384615385
## 567  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.037037037 0.0000000000
## 569  0.0307971014 0.0280797101 0.0135869565 0.015398551 0.0208333333
## 570  0.0157232704 0.0157232704 0.0597484277 0.025157233 0.0125786164
## 571  0.0048076923 0.0000000000 0.0144230769 0.004807692 0.0144230769
## 572  0.0000000000 0.0000000000 0.0263157895 0.000000000 0.0000000000
## 573  0.0344827586 0.0689655172 0.0000000000 0.000000000 0.0344827586
## 574  0.0000000000 0.0507936508 0.0063492063 0.028571429 0.0158730159
## 575  0.0000000000 0.0833333333 0.0000000000 0.000000000 0.0833333333
## 576  0.0000000000 0.1200000000 0.0000000000 0.000000000 0.0400000000
## 577  0.0000000000 0.0833333333 0.0000000000 0.000000000 0.0000000000
## 578  0.0000000000 0.0714285714 0.0000000000 0.000000000 0.0000000000
## 579  0.0000000000 0.0833333333 0.0000000000 0.000000000 0.0833333333
## 580  0.0000000000 0.1071428571 0.0000000000 0.035714286 0.1785714286
## 581  0.0000000000 0.0000000000 0.0333333333 0.033333333 0.0000000000
## 582  0.0178571429 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 583  0.0279069767 0.0139534884 0.0139534884 0.023255814 0.0139534884
## 584  0.0000000000 0.0833333333 0.0000000000 0.000000000 0.0833333333
## 585  0.0125000000 0.0100000000 0.0625000000 0.010000000 0.0125000000
## 586  0.0200000000 0.0000000000 0.0200000000 0.020000000 0.0000000000
## 587  0.0339920949 0.0181818182 0.0142292490 0.019762846 0.0332015810
## 588  0.0000000000 0.0156250000 0.0312500000 0.031250000 0.0937500000
## 589  0.0000000000 0.0000000000 0.0158730159 0.000000000 0.0000000000
## 590  0.0000000000 0.0000000000 0.0133333333 0.000000000 0.0000000000
## 591  0.0000000000 0.1111111111 0.0000000000 0.000000000 0.0000000000
## 592  0.0961538462 0.0000000000 0.0384615385 0.038461538 0.0000000000
## 593  0.0174717369 0.0205549846 0.0277492292 0.009249743 0.0154162384
## 594  0.0000000000 0.0344827586 0.0000000000 0.000000000 0.0000000000
## 595  0.0000000000 0.0357142857 0.0000000000 0.000000000 0.0000000000
## 596  0.0000000000 0.0344827586 0.0000000000 0.000000000 0.0000000000
## 597  0.0000000000 0.0384615385 0.0000000000 0.000000000 0.0000000000
## 598  0.0144927536 0.0144927536 0.0000000000 0.000000000 0.0144927536
## 599  0.0227272727 0.0000000000 0.0000000000 0.000000000 0.0909090909
## 600  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0270270270
## 601  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 602  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0384615385
## 603  0.0174418605 0.0232558140 0.0000000000 0.017441860 0.0174418605
## 604  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 605  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 606  0.0000000000 0.0333333333 0.0000000000 0.000000000 0.0000000000
## 607  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 608  0.0000000000 0.0588235294 0.0274509804 0.015686275 0.0352941176
## 609  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1071428571
## 610  0.0273972603 0.0136986301 0.0136986301 0.000000000 0.0136986301
## 611  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 614  0.0000000000 0.0000000000 0.0437956204 0.007299270 0.0000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 616  0.0000000000 0.0000000000 0.0192307692 0.000000000 0.0000000000
## 617  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 620  0.0000000000 0.0166666667 0.0166666667 0.016666667 0.0083333333
## 621  0.0000000000 0.0571428571 0.0000000000 0.028571429 0.0285714286
## 622  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.034482759 0.0344827586
## 624  0.0000000000 0.0392156863 0.0000000000 0.039215686 0.0000000000
## 625  0.0000000000 0.0512820513 0.0000000000 0.025641026 0.0256410256
## 626  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 627  0.0000000000 0.0115606936 0.0173410405 0.011560694 0.0231213873
## 628  0.0000000000 0.0333333333 0.0000000000 0.000000000 0.0000000000
## 629  0.0000000000 0.0285714286 0.0000000000 0.028571429 0.0000000000
## 630  0.0000000000 0.0357142857 0.0000000000 0.000000000 0.0000000000
## 631  0.0000000000 0.0153846154 0.0000000000 0.000000000 0.0000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 633  0.0000000000 0.0000000000 0.0142857143 0.000000000 0.0214285714
## 634  0.0000000000 0.0227272727 0.0000000000 0.090909091 0.0227272727
## 635  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0476190476
## 636  0.0204081633 0.0000000000 0.0102040816 0.051020408 0.0408163265
## 637  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 642  0.0000000000 0.0769230769 0.0000000000 0.000000000 0.0000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 645  0.0000000000 0.0000000000 0.0370370370 0.000000000 0.0000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 647  0.0000000000 0.0000000000 0.1034482759 0.000000000 0.0000000000
## 648  0.0000000000 0.0000000000 0.0152284264 0.000000000 0.0152284264
## 649  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 650  0.0000000000 0.0081632653 0.0040816327 0.004081633 0.0326530612
## 651  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 652  0.0344827586 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 653  0.0000000000 0.0000000000 0.0344827586 0.000000000 0.0000000000
## 654  0.0012755102 0.0191326531 0.0357142857 0.026785714 0.0293367347
## 655  0.0081967213 0.0081967213 0.0040983607 0.004098361 0.0040983607
## 656  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 657  0.0000000000 0.0000000000 0.0129870130 0.025974026 0.0000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 659  0.0083333333 0.0000000000 0.0083333333 0.050000000 0.0083333333
## 660  0.0000000000 0.0000000000 0.0454545455 0.000000000 0.0000000000
## 661  0.0000000000 0.0000000000 0.0104166667 0.020833333 0.0000000000
## 662  0.0000000000 0.0000000000 0.0434782609 0.000000000 0.0000000000
## 663  0.0000000000 0.0000000000 0.0333333333 0.000000000 0.0000000000
## 664  0.0000000000 0.0000000000 0.0143884892 0.000000000 0.0000000000
## 665  0.0000000000 0.0000000000 0.0500000000 0.000000000 0.0000000000
## 666  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.0000000000
## 667  0.0000000000 0.0000000000 0.0555555556 0.000000000 0.0000000000
## 668  0.0000000000 0.0000000000 0.0303030303 0.000000000 0.0000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 670  0.0000000000 0.0000000000 0.0416666667 0.000000000 0.0000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 674  0.0000000000 0.0500000000 0.0000000000 0.025000000 0.0250000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0208333333
## 680  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 685  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0384615385
## 686  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 687  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0065359477
## 688  0.0037593985 0.0037593985 0.0150375940 0.000000000 0.0037593985
## 689  0.0000000000 0.1428571429 0.0000000000 0.000000000 0.0285714286
## 690  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0196078431
## 692  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.066666667 0.0666666667
## 696  0.0086206897 0.0086206897 0.0000000000 0.000000000 0.0000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0129870130
## 701  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0256410256
## 703  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 704  0.0000000000 0.0476190476 0.0000000000 0.000000000 0.0000000000
## 705  0.0000000000 0.0270270270 0.0270270270 0.000000000 0.0000000000
## 706  0.0000000000 0.0303030303 0.0000000000 0.000000000 0.0000000000
## 707  0.0000000000 0.0370370370 0.0000000000 0.000000000 0.0000000000
## 708  0.0000000000 0.0000000000 0.0263157895 0.026315789 0.0000000000
## 709  0.0000000000 0.0294117647 0.0294117647 0.029411765 0.0000000000
## 710  0.0040899796 0.0061349693 0.0265848671 0.020449898 0.0184049080
## 711  0.0000000000 0.0714285714 0.0000000000 0.000000000 0.0357142857
## 712  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 716  0.0000000000 0.0000000000 0.0476190476 0.000000000 0.0000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 718  0.0000000000 0.0000000000 0.0384615385 0.000000000 0.0000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 721  0.0000000000 0.0000000000 0.0526315789 0.000000000 0.0000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 723  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.0000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 728  0.0000000000 0.0000000000 0.0476190476 0.095238095 0.0000000000
## 729  0.0000000000 0.0000000000 0.0384615385 0.000000000 0.0000000000
## 730  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 733  0.0000000000 0.0000000000 0.0196078431 0.019607843 0.0000000000
## 734  0.0000000000 0.0227272727 0.0227272727 0.022727273 0.0000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.036363636 0.0000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.040000000 0.0000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.068965517 0.0000000000
## 743  0.0000000000 0.0000000000 0.0000000000 0.052631579 0.0000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.052631579 0.0000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.050000000 0.0000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.068965517 0.0000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.041666667 0.0000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 751  0.1000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0526315789
## 754  0.0434782609 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 755  0.0000000000 0.0000000000 0.0526315789 0.000000000 0.0000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.008695652 0.0173913043
## 757  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 758  0.0144927536 0.0000000000 0.1014492754 0.000000000 0.0144927536
## 759  0.0056818182 0.0113636364 0.0056818182 0.005681818 0.0056818182
## 760  0.0000000000 0.0000000000 0.0096153846 0.019230769 0.0096153846
## 761  0.0000000000 0.0000000000 0.0123456790 0.012345679 0.0370370370
## 762  0.0000000000 0.0000000000 0.0000000000 0.035714286 0.0178571429
## 763  0.0000000000 0.0000000000 0.0243902439 0.040650407 0.0000000000
## 764  0.0000000000 0.0250000000 0.0000000000 0.050000000 0.0000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 767  0.0000000000 0.0000000000 0.0160000000 0.008000000 0.0320000000
## 768  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 769  0.0000000000 0.0000000000 0.0116279070 0.000000000 0.0465116279
## 770  0.0000000000 0.0000000000 0.0740740741 0.000000000 0.0370370370
## 771  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 772  0.0128205128 0.0128205128 0.0000000000 0.089743590 0.0000000000
## 773  0.0101351351 0.0236486486 0.0101351351 0.003378378 0.0135135135
## 774  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.0000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0250000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0322580645
## 779  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 781  0.0000000000 0.0000000000 0.0641025641 0.000000000 0.0512820513
## 782  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 784  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 789  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.003215434 0.0032154341
## 791  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 794  0.0000000000 0.0285714286 0.0000000000 0.000000000 0.0285714286
## 795  0.0055865922 0.0000000000 0.0000000000 0.000000000 0.0446927374
## 796  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.030303030 0.0000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.022727273 0.0000000000
## 800  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 802  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0645161290
## 803  0.0000000000 0.0263157895 0.0000000000 0.000000000 0.0000000000
## 804  0.0277777778 0.0277777778 0.0000000000 0.000000000 0.0000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0370370370
## 806  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 808  0.0000000000 0.1333333333 0.0000000000 0.000000000 0.0000000000
## 809  0.0000000000 0.0370370370 0.0000000000 0.000000000 0.1111111111
## 810  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 816  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0240000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0769230769
## 818  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 819  0.0000000000 0.0270270270 0.0000000000 0.000000000 0.0270270270
## 820  0.0294117647 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 821  0.0370370370 0.0370370370 0.0000000000 0.000000000 0.0000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 824  0.0000000000 0.0000000000 0.1666666667 0.000000000 0.0000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 827  0.0094339623 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 828  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.052631579 0.0000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 834  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0307692308
## 835  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0500000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.045454545 0.0454545455
## 838  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0666666667
## 839  0.0000000000 0.0416666667 0.0000000000 0.000000000 0.0000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 844  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 848  0.0000000000 0.0000000000 0.0000000000 0.011904762 0.0238095238
## 849  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 852  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1000000000
## 854  0.1538461538 0.0000000000 0.0512820513 0.025641026 0.0000000000
## 855  0.0000000000 0.0416666667 0.0000000000 0.041666667 0.0000000000
## 856  0.0000000000 0.0000000000 0.0000000000 0.028571429 0.0000000000
## 857  0.0000000000 0.0526315789 0.0000000000 0.000000000 0.0000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 860  0.0045289855 0.0063405797 0.0036231884 0.011775362 0.0135869565
## 861  0.0037037037 0.0000000000 0.0592592593 0.007407407 0.0000000000
## 862  0.0312500000 0.0312500000 0.0312500000 0.000000000 0.0312500000
## 863  0.0000000000 0.0000000000 0.0000000000 0.100000000 0.0000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 868  0.0285714286 0.0000000000 0.0000000000 0.057142857 0.0476190476
## 869  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 870  0.0000000000 0.0294117647 0.0196078431 0.019607843 0.0000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 878  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 880  0.0000000000 0.0000000000 0.0322580645 0.000000000 0.0322580645
## 881  0.0228571429 0.0228571429 0.0057142857 0.000000000 0.0114285714
## 882  0.0046992481 0.0046992481 0.0037593985 0.004699248 0.0197368421
## 883  0.2500000000 0.0000000000 0.0000000000 0.000000000 0.1250000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1428571429
## 885  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1428571429
## 886  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1111111111
## 887  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.1428571429
## 889  0.0000000000 0.0000000000 0.0000000000 0.003067485 0.0061349693
## 890  0.0357142857 0.0000000000 0.0000000000 0.035714286 0.0357142857
## 891  0.0070671378 0.0035335689 0.0318021201 0.003533569 0.0282685512
## 892  0.0000000000 0.0000000000 0.0000000000 0.032258065 0.0000000000
## 893  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 894  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0285714286
## 895  0.0120967742 0.0181451613 0.0100806452 0.008064516 0.0080645161
## 896  0.3333333333 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 897  0.0697674419 0.0232558140 0.0000000000 0.000000000 0.1395348837
## 898  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 899  0.0666666667 0.0000000000 0.0000000000 0.066666667 0.2000000000
## 900  0.0000000000 0.0000000000 0.0285714286 0.114285714 0.0285714286
## 901  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 902  0.0000000000 0.0632911392 0.0126582278 0.037974684 0.0379746835
## 903  0.0204081633 0.0204081633 0.0000000000 0.000000000 0.0816326531
## 904  0.0089020772 0.0059347181 0.0296735905 0.000000000 0.0118694362
## 905  0.0476190476 0.0000000000 0.0158730159 0.000000000 0.0317460317
## 906  0.0019588639 0.0058765916 0.0019588639 0.005876592 0.0127326151
## 907  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 909  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0266666667
## 910  0.0028901734 0.0173410405 0.0202312139 0.028901734 0.0606936416
## 911  0.0028735632 0.0057471264 0.0057471264 0.028735632 0.0143678161
## 912  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 913  0.0089285714 0.0000000000 0.0000000000 0.044642857 0.0357142857
## 914  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 915  0.0394511149 0.0171526587 0.0394511149 0.082332762 0.0154373928
## 916  0.0000000000 0.0000000000 0.0000000000 0.029411765 0.0588235294
## 917  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 919  0.0000000000 0.0085470085 0.0256410256 0.008547009 0.0170940171
## 920  0.0000000000 0.0000000000 0.0454545455 0.000000000 0.0000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 922  0.0180180180 0.0090090090 0.0090090090 0.000000000 0.0090090090
## 923  0.0103092784 0.0206185567 0.0618556701 0.000000000 0.0000000000
## 924  0.0000000000 0.0000000000 0.0192307692 0.000000000 0.0384615385
## 925  0.0046082949 0.0207373272 0.0046082949 0.009216590 0.0138248848
## 926  0.0000000000 0.0416666667 0.1000000000 0.016666667 0.0083333333
## 927  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 928  0.0000000000 0.0250000000 0.0000000000 0.000000000 0.0000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 930  0.0208333333 0.0125000000 0.0041666667 0.054166667 0.0208333333
## 931  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 933  0.0000000000 0.0000000000 0.0294117647 0.000000000 0.0000000000
## 934  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 936  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 937  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 938  0.0022321429 0.0825892857 0.0133928571 0.033482143 0.0200892857
## 939  0.0106382979 0.0026595745 0.0053191489 0.000000000 0.0292553191
## 940  0.0000000000 0.0000000000 0.0869565217 0.043478261 0.0000000000
## 941  0.0104166667 0.0520833333 0.0312500000 0.000000000 0.0312500000
## 942  0.0212765957 0.0070921986 0.0070921986 0.014184397 0.0283687943
## 943  0.0526315789 0.0789473684 0.0263157895 0.131578947 0.0526315789
## 944  0.0062305296 0.0124610592 0.0062305296 0.031152648 0.0280373832
## 945  0.0094339623 0.0047169811 0.0707547170 0.009433962 0.0047169811
## 946  0.0070175439 0.0000000000 0.0070175439 0.073684211 0.0350877193
## 947  0.0084033613 0.0084033613 0.0546218487 0.021008403 0.0630252101
## 948  0.0000000000 0.0227272727 0.0227272727 0.022727273 0.0000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 951  0.0378151261 0.0084033613 0.0420168067 0.008403361 0.0042016807
## 952  0.0512820513 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 953  0.0153846154 0.0000000000 0.0153846154 0.000000000 0.0000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0285714286
## 955  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 956  0.0000000000 0.0177514793 0.0177514793 0.000000000 0.0177514793
## 957  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 958  0.0107526882 0.0430107527 0.0000000000 0.032258065 0.0107526882
## 959  0.0064935065 0.0000000000 0.0584415584 0.019480519 0.0454545455
## 960  0.0240963855 0.0216867470 0.0192771084 0.021686747 0.0120481928
## 961  0.0253807107 0.0304568528 0.0050761421 0.015228426 0.0101522843
## 962  0.0317460317 0.0000000000 0.0000000000 0.031746032 0.0317460317
## 963  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 964  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 965  0.0082644628 0.0082644628 0.0165289256 0.000000000 0.0082644628
## 966  0.0000000000 0.0000000000 0.0000000000 0.017241379 0.0000000000
## 967  0.0172413793 0.0172413793 0.0000000000 0.000000000 0.0517241379
## 968  0.0481927711 0.0000000000 0.1084337349 0.072289157 0.0240963855
## 969  0.0000000000 0.0181818182 0.0727272727 0.000000000 0.0000000000
## 970  0.0219780220 0.0366300366 0.0109890110 0.014652015 0.0293040293
## 971  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 973  0.0294117647 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 975  0.0130434783 0.0130434783 0.0217391304 0.006521739 0.0086956522
## 976  0.0000000000 0.0000000000 0.0196078431 0.156862745 0.0000000000
## 977  0.0312500000 0.0085227273 0.0085227273 0.039772727 0.0482954545
## 978  0.0000000000 0.0000000000 0.0000000000 0.200000000 0.0000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 980  0.0121951220 0.0121951220 0.0487804878 0.000000000 0.0609756098
## 981  0.0000000000 0.0666666667 0.0000000000 0.040000000 0.0133333333
## 982  0.0263157895 0.0263157895 0.0526315789 0.026315789 0.0000000000
## 983  0.0147058824 0.0147058824 0.0000000000 0.029411765 0.0220588235
## 984  0.0321428571 0.0178571429 0.0464285714 0.078571429 0.0500000000
## 985  0.0251572327 0.0167714885 0.0209643606 0.048218029 0.0440251572
## 986  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 987  0.0089232600 0.0118976800 0.0101130280 0.025580012 0.0214158239
## 988  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 989  0.0281690141 0.0633802817 0.0281690141 0.028169014 0.0000000000
## 990  0.0598290598 0.0085470085 0.0512820513 0.025641026 0.0170940171
## 991  0.0059582920 0.0033763654 0.0045680238 0.006752731 0.0047666336
## 992  0.0130718954 0.0098039216 0.0098039216 0.009803922 0.0000000000
## 993  0.0000000000 0.0076923077 0.0000000000 0.000000000 0.0038461538
## 994  0.0045454545 0.0000000000 0.0090909091 0.004545455 0.0166666667
## 995  0.0000000000 0.0000000000 0.0206185567 0.010309278 0.0103092784
## 996  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 997  0.0022026432 0.0011013216 0.0038546256 0.002753304 0.0027533040
## 998  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.0000000000
## 999  0.0315743945 0.0358996540 0.0246539792 0.017301038 0.0333044983
## 1000 0.0000000000 0.0000000000 0.0000000000 0.015810277 0.0000000000
##                39           40           41          42          43
## 1    0.0079365079 0.0057720058 0.0151515152 0.031746032 0.019480519
## 2    0.0000000000 0.0263157895 0.0000000000 0.013157895 0.000000000
## 3    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 4    0.0111317254 0.0148423006 0.0055658627 0.020408163 0.009276438
## 5    0.0037429819 0.0012476606 0.0037429819 0.020586400 0.006238303
## 6    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 8    0.0155526754 0.0125902611 0.0162932790 0.008331790 0.017404184
## 9    0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 10   0.0000000000 0.0000000000 0.0000000000 0.034482759 0.017241379
## 11   0.0092724679 0.0035663338 0.0128388017 0.006419401 0.006419401
## 12   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 13   0.0000000000 0.0000000000 0.0175438596 0.000000000 0.000000000
## 14   0.0083333333 0.0000000000 0.0083333333 0.008333333 0.016666667
## 15   0.0000000000 0.0000000000 0.0000000000 0.037037037 0.000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 17   0.0000000000 0.0000000000 0.0361445783 0.016064257 0.040160643
## 18   0.0000000000 0.0068965517 0.0000000000 0.000000000 0.000000000
## 19   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 20   0.0210157618 0.0070052539 0.0210157618 0.007005254 0.005253940
## 21   0.0094117647 0.0023529412 0.0023529412 0.000000000 0.002352941
## 22   0.0416666667 0.0833333333 0.0208333333 0.083333333 0.000000000
## 23   0.0089820359 0.0019960080 0.0299401198 0.008982036 0.009980040
## 24   0.0033898305 0.0033898305 0.0101694915 0.006779661 0.003389831
## 25   0.0000000000 0.0227272727 0.0227272727 0.045454545 0.000000000
## 26   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.128205128
## 27   0.0229885057 0.0000000000 0.0057471264 0.000000000 0.005747126
## 28   0.0078125000 0.0234375000 0.0195312500 0.019531250 0.023437500
## 29   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 31   0.0034762457 0.0057937428 0.0104287370 0.002317497 0.008111240
## 32   0.0304347826 0.0043478261 0.0000000000 0.000000000 0.004347826
## 33   0.0000000000 0.0144230769 0.0096153846 0.009615385 0.014423077
## 34   0.0037831021 0.0176544767 0.0088272383 0.007566204 0.005044136
## 35   0.0058309038 0.0145772595 0.0174927114 0.017492711 0.005830904
## 36   0.0108108108 0.0378378378 0.0000000000 0.000000000 0.016216216
## 37   0.0000000000 0.0000000000 0.0000000000 0.043478261 0.043478261
## 38   0.0000000000 0.0000000000 0.0000000000 0.005714286 0.005714286
## 39   0.0208333333 0.0000000000 0.0069444444 0.013888889 0.013888889
## 40   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 42   0.0157068063 0.0052356021 0.0000000000 0.005235602 0.005235602
## 43   0.0106382979 0.0744680851 0.0319148936 0.010638298 0.074468085
## 44   0.0098338420 0.0132248220 0.0278060359 0.012546626 0.011190234
## 45   0.0044091711 0.0044091711 0.0052910053 0.005291005 0.004409171
## 46   0.0000000000 0.0000000000 0.0232240437 0.005464481 0.004098361
## 47   0.0057803468 0.0086705202 0.0086705202 0.000000000 0.005780347
## 48   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 52   0.0035971223 0.0035971223 0.0179856115 0.017985612 0.021582734
## 53   0.0167224080 0.0167224080 0.0066889632 0.006688963 0.000000000
## 54   0.0000000000 0.0000000000 0.0000000000 0.017857143 0.017857143
## 55   0.0050761421 0.0000000000 0.0000000000 0.020304569 0.005076142
## 56   0.0072053525 0.0030880082 0.0087493567 0.007205353 0.007720021
## 57   0.0075757576 0.0227272727 0.0000000000 0.007575758 0.007575758
## 58   0.0000000000 0.0099601594 0.0059760956 0.009960159 0.005976096
## 59   0.0012755102 0.1007653061 0.0153061224 0.011479592 0.005102041
## 60   0.0065789474 0.0131578947 0.0065789474 0.006578947 0.000000000
## 61   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 62   0.0434782609 0.0000000000 0.0000000000 0.000000000 0.000000000
## 63   0.0739644970 0.0236686391 0.0177514793 0.002958580 0.014792899
## 64   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 66   0.0211132438 0.0403071017 0.0000000000 0.028790787 0.019193858
## 67   0.0357142857 0.0119047619 0.0238095238 0.035714286 0.035714286
## 68   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 69   0.0042887777 0.0021443888 0.0028591851 0.008577555 0.010007148
## 70   0.0000000000 0.0227272727 0.0227272727 0.022727273 0.000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 72   0.0161290323 0.1612903226 0.0000000000 0.016129032 0.016129032
## 73   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 74   0.0125958379 0.0016429354 0.0038335159 0.001642935 0.002190581
## 75   0.0042820440 0.0042820440 0.0039965744 0.002569226 0.005138453
## 76   0.0000000000 0.0145719490 0.0018214936 0.003642987 0.003642987
## 77   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 78   0.0137457045 0.0309278351 0.0137457045 0.048109966 0.013745704
## 79   0.0035587189 0.0035587189 0.0071174377 0.000000000 0.000000000
## 80   0.0370370370 0.0000000000 0.0000000000 0.037037037 0.018518519
## 81   0.0172413793 0.0086206897 0.0000000000 0.004310345 0.004310345
## 82   0.0212765957 0.0000000000 0.0106382979 0.000000000 0.000000000
## 83   0.0028368794 0.0056737589 0.0056737589 0.004255319 0.005673759
## 84   0.0000000000 0.0000000000 0.0035971223 0.010791367 0.010791367
## 85   0.0059701493 0.0029850746 0.0059701493 0.014925373 0.047761194
## 86   0.0281250000 0.0031250000 0.0062500000 0.015625000 0.009375000
## 87   0.0108695652 0.0036231884 0.0144927536 0.010869565 0.010869565
## 88   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 89   0.0034149118 0.0147979511 0.0739897553 0.027888446 0.004553216
## 90   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 91   0.0000000000 0.0454545455 0.0454545455 0.045454545 0.000000000
## 92   0.0110091743 0.0128440367 0.0036697248 0.000000000 0.135779817
## 93   0.0032362460 0.0032362460 0.0032362460 0.000000000 0.003236246
## 94   0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 95   0.0350877193 0.0526315789 0.0526315789 0.035087719 0.087719298
## 96   0.1500000000 0.1333333333 0.0500000000 0.033333333 0.000000000
## 97   0.0119521912 0.0464807437 0.0086321381 0.008632138 0.017928287
## 98   0.0045662100 0.0136986301 0.0136986301 0.013698630 0.045662100
## 99   0.0067001675 0.0033500838 0.0033500838 0.005025126 0.010050251
## 100  0.0000000000 0.0273972603 0.0000000000 0.000000000 0.041095890
## 101  0.0000000000 0.0180000000 0.0060000000 0.018000000 0.038000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 103  0.0077220077 0.0231660232 0.0077220077 0.023166023 0.019305019
## 104  0.0689655172 0.0000000000 0.0000000000 0.000000000 0.034482759
## 105  0.0193548387 0.0000000000 0.0000000000 0.032258065 0.012903226
## 106  0.0070484581 0.0035242291 0.0105726872 0.003524229 0.004405286
## 107  0.0357142857 0.0396825397 0.0238095238 0.027777778 0.003968254
## 108  0.0183486239 0.0000000000 0.0000000000 0.009174312 0.000000000
## 109  0.0097345133 0.0053097345 0.0115044248 0.023893805 0.020353982
## 110  0.0869565217 0.0000000000 0.0434782609 0.000000000 0.000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 113  0.0140845070 0.0096830986 0.0044014085 0.007922535 0.004401408
## 114  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 115  0.0101796407 0.0089820359 0.0095808383 0.020359281 0.034131737
## 116  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 117  0.0476190476 0.0095238095 0.0285714286 0.000000000 0.057142857
## 118  0.0131779017 0.0055752661 0.0076026356 0.006588951 0.007095793
## 119  0.0000000000 0.0000000000 0.0588235294 0.058823529 0.000000000
## 120  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 122  0.0000000000 0.0109890110 0.0054945055 0.005494505 0.008241758
## 123  0.0105401845 0.0210803689 0.0079051383 0.011857708 0.023715415
## 124  0.0228832952 0.0022883295 0.0274599542 0.009153318 0.002288330
## 125  0.0123456790 0.0000000000 0.0370370370 0.024691358 0.037037037
## 126  0.0071343639 0.0107015458 0.0118906064 0.009512485 0.008323424
## 127  0.0000000000 0.0227272727 0.0000000000 0.022727273 0.022727273
## 128  0.0053727334 0.0013431833 0.0067159167 0.004029550 0.002686367
## 129  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 131  0.0416666667 0.0000000000 0.1666666667 0.000000000 0.000000000
## 132  0.0170132325 0.0113421550 0.0245746692 0.003780718 0.073724008
## 133  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 135  0.0073391043 0.0037636432 0.0039518254 0.003199097 0.004328190
## 136  0.0000000000 0.0100000000 0.0100000000 0.000000000 0.010000000
## 137  0.0000000000 0.0088888889 0.0000000000 0.008888889 0.004444444
## 138  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 139  0.0006830601 0.0013661202 0.0027322404 0.000000000 0.002732240
## 140  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 141  0.0000000000 0.0512820513 0.0000000000 0.051282051 0.000000000
## 142  0.0086580087 0.0086580087 0.0043290043 0.008658009 0.021645022
## 143  0.0277777778 0.0555555556 0.0000000000 0.000000000 0.027777778
## 144  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 146  0.0000000000 0.0198019802 0.0033003300 0.006600660 0.006600660
## 147  0.0000000000 0.0000000000 0.0000000000 0.058823529 0.000000000
## 148  0.0000000000 0.0294117647 0.0000000000 0.000000000 0.088235294
## 149  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 153  0.0169491525 0.0000000000 0.0000000000 0.000000000 0.000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 155  0.0027297543 0.0045495905 0.0263876251 0.009099181 0.009099181
## 156  0.0046201232 0.0035934292 0.0015400411 0.014887064 0.009753593
## 157  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 158  0.0245901639 0.0245901639 0.0081967213 0.000000000 0.000000000
## 159  0.0150753769 0.0238693467 0.0238693467 0.027638191 0.012562814
## 160  0.0029090909 0.0054545455 0.0058181818 0.006545455 0.008000000
## 161  0.0000000000 0.0035087719 0.0140350877 0.014035088 0.003508772
## 162  0.0000000000 0.0000000000 0.0106382979 0.000000000 0.095744681
## 163  0.0689655172 0.0229885057 0.0459770115 0.068965517 0.000000000
## 164  0.0073349633 0.0048899756 0.0024449878 0.000000000 0.004889976
## 165  0.0000000000 0.0072992701 0.0000000000 0.036496350 0.000000000
## 166  0.0093240093 0.0055944056 0.0088578089 0.002797203 0.005594406
## 167  0.0000000000 0.0097560976 0.0146341463 0.019512195 0.009756098
## 168  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.016949153
## 169  0.0059523810 0.0059523810 0.0238095238 0.023809524 0.017857143
## 170  0.0136986301 0.0068493151 0.0068493151 0.006849315 0.006849315
## 171  0.0059171598 0.0177514793 0.0295857988 0.011834320 0.023668639
## 172  0.0000000000 0.0000000000 0.0000000000 0.028571429 0.000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 174  0.0060544904 0.0040363269 0.0030272452 0.012108981 0.014127144
## 175  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 176  0.0043478261 0.0086956522 0.0043478261 0.000000000 0.008695652
## 177  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 178  0.0059062385 0.0177187154 0.0081210779 0.009966777 0.007013658
## 179  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 180  0.0035714286 0.0000000000 0.0142857143 0.007142857 0.017857143
## 181  0.0102908277 0.0042505593 0.0062639821 0.003803132 0.023937360
## 182  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 185  0.0050343249 0.0109839817 0.0022883295 0.005491991 0.008237986
## 186  0.0054249548 0.0036166365 0.0126582278 0.010849910 0.012658228
## 187  0.0058479532 0.0087719298 0.0000000000 0.011695906 0.000000000
## 188  0.0200445434 0.0000000000 0.0311804009 0.035634744 0.004454343
## 189  0.0301075269 0.0129032258 0.0064516129 0.010752688 0.025806452
## 190  0.0000000000 0.0378151261 0.0042016807 0.000000000 0.000000000
## 191  0.0000000000 0.0156250000 0.0156250000 0.000000000 0.000000000
## 192  0.0029806259 0.0059612519 0.0134128167 0.000000000 0.018628912
## 193  0.0887850467 0.0093457944 0.0093457944 0.009345794 0.000000000
## 194  0.0043668122 0.0087336245 0.0000000000 0.004366812 0.008733624
## 195  0.0000000000 0.0111111111 0.0000000000 0.000000000 0.000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 197  0.0115830116 0.0019305019 0.0038610039 0.012548263 0.007722008
## 198  0.0400000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 201  0.0109649123 0.0065789474 0.0241228070 0.015350877 0.010964912
## 202  0.0454545455 0.0000000000 0.0000000000 0.045454545 0.000000000
## 203  0.0133333333 0.0000000000 0.0133333333 0.000000000 0.000000000
## 204  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 205  0.0052539405 0.0029188558 0.0093403386 0.006421483 0.002918856
## 206  0.0046082949 0.0046082949 0.0184331797 0.006912442 0.011520737
## 207  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 208  0.0112359551 0.0561797753 0.0449438202 0.033707865 0.016853933
## 209  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 213  0.0142180095 0.0023696682 0.0130331754 0.010663507 0.005924171
## 214  0.0000000000 0.0000000000 0.0135135135 0.000000000 0.000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 216  0.0116279070 0.0174418605 0.0232558140 0.017441860 0.034883721
## 217  0.0097087379 0.0000000000 0.0097087379 0.019417476 0.000000000
## 218  0.0000000000 0.0214285714 0.0214285714 0.021428571 0.007142857
## 219  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 220  0.0000000000 0.0000000000 0.0192307692 0.000000000 0.000000000
## 221  0.0063694268 0.0000000000 0.0509554140 0.006369427 0.006369427
## 222  0.0031298905 0.0088680230 0.0046948357 0.003129890 0.004694836
## 223  0.0000000000 0.0045662100 0.0045662100 0.004566210 0.004566210
## 224  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 225  0.0076045627 0.0152091255 0.0019011407 0.000000000 0.001901141
## 226  0.0526315789 0.0000000000 0.0000000000 0.000000000 0.000000000
## 227  0.0000000000 0.0129870130 0.0000000000 0.064935065 0.012987013
## 228  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 229  0.0068649886 0.0137299771 0.0068649886 0.018306636 0.003432494
## 230  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 231  0.0029679462 0.0009893154 0.0033636723 0.001385042 0.003363672
## 232  0.0000000000 0.0054644809 0.0054644809 0.010928962 0.081967213
## 233  0.0000000000 0.0123456790 0.0164609053 0.020576132 0.004115226
## 234  0.0011389522 0.0000000000 0.0022779043 0.001138952 0.004555809
## 235  0.0075757576 0.0060606061 0.0030303030 0.007575758 0.004545455
## 236  0.0047066206 0.0062754942 0.0069030436 0.006589269 0.007844368
## 237  0.0170293283 0.0056764428 0.0047303690 0.005676443 0.020813623
## 238  0.0096495683 0.0066023362 0.0091416963 0.013204672 0.015236160
## 239  0.0000000000 0.0185873606 0.0074349442 0.016728625 0.016728625
## 240  0.1000000000 0.0400000000 0.0000000000 0.000000000 0.000000000
## 241  0.0000000000 0.0288461538 0.0000000000 0.000000000 0.000000000
## 242  0.0082116788 0.0063868613 0.0036496350 0.015510949 0.022810219
## 243  0.0079365079 0.0515873016 0.0317460317 0.019841270 0.035714286
## 244  0.0101265823 0.0025316456 0.0050632911 0.007594937 0.010126582
## 245  0.0000000000 0.0176470588 0.0117647059 0.002941176 0.088235294
## 246  0.0072780204 0.0058224163 0.0189228530 0.072780204 0.010189229
## 247  0.0166666667 0.0000000000 0.0000000000 0.016666667 0.016666667
## 248  0.0143678161 0.0057471264 0.0086206897 0.017241379 0.068965517
## 249  0.0260869565 0.0000000000 0.0000000000 0.017391304 0.026086957
## 250  0.0000000000 0.1428571429 0.0000000000 0.000000000 0.000000000
## 251  0.0000000000 0.0000000000 0.0089285714 0.000000000 0.000000000
## 252  0.0000000000 0.0120481928 0.0000000000 0.000000000 0.000000000
## 253  0.0000000000 0.0000000000 0.0000000000 0.015625000 0.000000000
## 254  0.0136986301 0.0273972603 0.0410958904 0.000000000 0.013698630
## 255  0.0000000000 0.0076923077 0.0076923077 0.007692308 0.015384615
## 256  0.0108695652 0.0108695652 0.0108695652 0.010869565 0.021739130
## 257  0.0000000000 0.0192307692 0.0192307692 0.000000000 0.019230769
## 258  0.0000000000 0.0000000000 0.0000000000 0.052631579 0.000000000
## 259  0.0144927536 0.0000000000 0.0144927536 0.014492754 0.000000000
## 260  0.0096153846 0.0096153846 0.0000000000 0.019230769 0.009615385
## 261  0.0333333333 0.0000000000 0.0166666667 0.016666667 0.000000000
## 262  0.0000000000 0.0158730159 0.0000000000 0.000000000 0.031746032
## 263  0.0303030303 0.0000000000 0.0151515152 0.030303030 0.015151515
## 264  0.0263157895 0.0263157895 0.0131578947 0.000000000 0.013157895
## 265  0.0338600451 0.0180586907 0.0045146727 0.013544018 0.009029345
## 266  0.0040650407 0.0040650407 0.0142276423 0.006097561 0.004065041
## 267  0.0054770827 0.0020178726 0.0017296051 0.004612280 0.004612280
## 268  0.0400890869 0.0289532294 0.0155902004 0.067928731 0.045657016
## 269  0.0000000000 0.0147058824 0.0000000000 0.014705882 0.014705882
## 270  0.0615384615 0.0307692308 0.0153846154 0.015384615 0.092307692
## 271  0.0853658537 0.0243902439 0.0121951220 0.000000000 0.048780488
## 272  0.0380952381 0.0095238095 0.0857142857 0.000000000 0.009523810
## 273  0.0141843972 0.0141843972 0.0851063830 0.000000000 0.007092199
## 274  0.0625000000 0.0078125000 0.1640625000 0.015625000 0.000000000
## 275  0.0338983051 0.0084745763 0.1016949153 0.084745763 0.008474576
## 276  0.0434782609 0.0289855072 0.0942028986 0.050724638 0.021739130
## 277  0.0175781250 0.0175781250 0.0078125000 0.013671875 0.007812500
## 278  0.0047095761 0.0282574568 0.0078492936 0.012558870 0.026687598
## 279  0.0100000000 0.0000000000 0.0100000000 0.010000000 0.030000000
## 280  0.0081967213 0.0245901639 0.0245901639 0.008196721 0.000000000
## 281  0.0126582278 0.0000000000 0.0000000000 0.000000000 0.037974684
## 282  0.0000000000 0.2222222222 0.0000000000 0.000000000 0.000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 288  0.2307692308 0.0000000000 0.0000000000 0.000000000 0.000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 290  0.0151515152 0.0454545455 0.0000000000 0.015151515 0.015151515
## 291  0.0000000000 0.0434782609 0.0000000000 0.043478261 0.043478261
## 292  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 294  0.1346153846 0.0000000000 0.0192307692 0.057692308 0.000000000
## 295  0.0000000000 0.0480769231 0.0096153846 0.019230769 0.028846154
## 296  0.0131578947 0.0131578947 0.0000000000 0.013157895 0.039473684
## 297  0.0212765957 0.0000000000 0.0000000000 0.021276596 0.021276596
## 298  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 299  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 300  0.0000000000 0.1730769231 0.0769230769 0.038461538 0.019230769
## 301  0.0459459459 0.0162162162 0.0297297297 0.052702703 0.028378378
## 302  0.0000000000 0.0000000000 0.1481481481 0.000000000 0.000000000
## 303  0.0000000000 0.0000000000 0.0337078652 0.011235955 0.033707865
## 304  0.0096153846 0.0192307692 0.0000000000 0.009615385 0.009615385
## 305  0.0242718447 0.0097087379 0.0169902913 0.016990291 0.024271845
## 306  0.0271317829 0.0199335548 0.0182724252 0.022702104 0.016057586
## 307  0.0146341463 0.0195121951 0.0000000000 0.058536585 0.024390244
## 308  0.0000000000 0.0000000000 0.0169491525 0.033898305 0.016949153
## 309  0.0236220472 0.0078740157 0.0000000000 0.023622047 0.015748031
## 310  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 311  0.0166527893 0.0058284763 0.0174854288 0.011656953 0.001665279
## 312  0.0077247191 0.0098314607 0.0105337079 0.010533708 0.030898876
## 313  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 314  0.0056497175 0.0112994350 0.0056497175 0.000000000 0.005649718
## 315  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 316  0.0198412698 0.0079365079 0.0158730159 0.023809524 0.003968254
## 317  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 318  0.0158415842 0.0396039604 0.0693069307 0.059405941 0.047524752
## 319  0.1463414634 0.0000000000 0.0081300813 0.024390244 0.008130081
## 320  0.0000000000 0.0149892934 0.0064239829 0.008565310 0.079229122
## 321  0.0000000000 0.0361445783 0.0060240964 0.018072289 0.030120482
## 322  0.0000000000 0.1111111111 0.2777777778 0.000000000 0.111111111
## 323  0.0042918455 0.0042918455 0.0214592275 0.012875536 0.021459227
## 324  0.0104166667 0.0000000000 0.0104166667 0.000000000 0.000000000
## 325  0.2127659574 0.1063829787 0.0212765957 0.127659574 0.170212766
## 326  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 327  0.0130718954 0.0130718954 0.0588235294 0.006535948 0.006535948
## 328  0.0000000000 0.0000000000 0.0000000000 0.008000000 0.032000000
## 329  0.0055944056 0.0027972028 0.0209790210 0.009790210 0.006993007
## 330  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 331  0.0085470085 0.0000000000 0.0256410256 0.008547009 0.025641026
## 332  0.0382262997 0.0183486239 0.0168195719 0.006116208 0.026758410
## 333  0.0000000000 0.0116959064 0.0058479532 0.058479532 0.005847953
## 334  0.0066225166 0.0026490066 0.0039735099 0.010596026 0.066225166
## 335  0.0065789474 0.0000000000 0.0526315789 0.006578947 0.013157895
## 336  0.0000000000 0.0053050398 0.0026525199 0.007957560 0.037135279
## 337  0.0100000000 0.0077777778 0.0122222222 0.015555556 0.024444444
## 338  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 340  0.0366197183 0.0169014085 0.0112676056 0.056338028 0.076056338
## 341  0.0033726813 0.0084317032 0.0134907251 0.028667791 0.050590219
## 342  0.0151515152 0.0000000000 0.0606060606 0.030303030 0.015151515
## 343  0.0358126722 0.0165289256 0.0330578512 0.011019284 0.005509642
## 344  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 345  0.0833333333 0.0208333333 0.0000000000 0.000000000 0.062500000
## 346  0.0243902439 0.0000000000 0.0000000000 0.085365854 0.000000000
## 347  0.0189573460 0.1137440758 0.0236966825 0.028436019 0.047393365
## 348  0.0108695652 0.0054347826 0.0135869565 0.008152174 0.029891304
## 349  0.0000000000 0.0110497238 0.0262430939 0.019337017 0.004143646
## 350  0.0263157895 0.0263157895 0.0000000000 0.052631579 0.000000000
## 351  0.0131291028 0.0306345733 0.0196936543 0.019693654 0.041575492
## 352  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 354  0.0133333333 0.0160000000 0.0133333333 0.032000000 0.032000000
## 355  0.0000000000 0.0206896552 0.0068965517 0.013793103 0.034482759
## 356  0.0375939850 0.0150375940 0.0827067669 0.037593985 0.007518797
## 357  0.0000000000 0.0137931034 0.0344827586 0.000000000 0.000000000
## 358  0.0045454545 0.0227272727 0.0136363636 0.036363636 0.027272727
## 359  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 360  0.0038363171 0.0063938619 0.0115089514 0.019181586 0.010230179
## 361  0.0084951456 0.0303398058 0.0145631068 0.012135922 0.021844660
## 362  0.0197368421 0.0131578947 0.0328947368 0.000000000 0.026315789
## 363  0.0114854518 0.0107197550 0.0241194487 0.024119449 0.035604900
## 364  0.0564102564 0.0051282051 0.0102564103 0.051282051 0.020512821
## 365  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 367  0.0082644628 0.0041322314 0.0082644628 0.008264463 0.010330579
## 368  0.0162601626 0.0203252033 0.0000000000 0.012195122 0.000000000
## 369  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 371  0.0512820513 0.0000000000 0.0000000000 0.000000000 0.000000000
## 372  0.0226537217 0.0226537217 0.0226537217 0.006472492 0.029126214
## 373  0.0000000000 0.0222222222 0.0222222222 0.022222222 0.044444444
## 374  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 375  0.0022371365 0.0167785235 0.0167785235 0.029082774 0.031319911
## 376  0.0128205128 0.0128205128 0.0064102564 0.012820513 0.038461538
## 377  0.0555555556 0.0000000000 0.0000000000 0.111111111 0.000000000
## 378  0.0253164557 0.0696202532 0.0063291139 0.037974684 0.006329114
## 379  0.0014064698 0.0042194093 0.0084388186 0.008438819 0.005625879
## 380  0.0132450331 0.0066225166 0.0198675497 0.026490066 0.059602649
## 381  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 382  0.0023245002 0.0088331009 0.0092980009 0.006973501 0.001859600
## 383  0.0263157895 0.0000000000 0.0263157895 0.000000000 0.026315789
## 384  0.0000000000 0.0344827586 0.0000000000 0.017241379 0.000000000
## 385  0.0226480836 0.0331010453 0.0383275261 0.013937282 0.013937282
## 386  0.0000000000 0.0000000000 0.0000000000 0.058823529 0.000000000
## 387  0.0033898305 0.0033898305 0.0067796610 0.016949153 0.013559322
## 388  0.0264900662 0.0331125828 0.1192052980 0.033112583 0.006622517
## 389  0.0030333670 0.0080889788 0.0010111223 0.020222447 0.011122346
## 390  0.0000000000 0.0000000000 0.0909090909 0.200000000 0.018181818
## 391  0.0165745856 0.0994475138 0.0883977901 0.005524862 0.033149171
## 392  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 393  0.0000000000 0.0000000000 0.0000000000 0.033333333 0.000000000
## 394  0.0000000000 0.0000000000 0.0079365079 0.015873016 0.007936508
## 395  0.0042432815 0.0381895332 0.0127298444 0.067892504 0.025459689
## 396  0.0178571429 0.0535714286 0.0000000000 0.017857143 0.000000000
## 397  0.0029985007 0.0059970015 0.0074962519 0.022488756 0.014992504
## 398  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 399  0.0176000000 0.0176000000 0.0224000000 0.017600000 0.049600000
## 400  0.0000000000 0.0000000000 0.0333333333 0.033333333 0.033333333
## 401  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 402  0.0000000000 0.0000000000 0.0070671378 0.014134276 0.031802120
## 403  0.0245022971 0.0061255743 0.0122511485 0.022970904 0.018376723
## 404  0.0106382979 0.0159574468 0.0265957447 0.069148936 0.053191489
## 405  0.0227272727 0.0000000000 0.0000000000 0.000000000 0.000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 408  0.0000000000 0.0100502513 0.0301507538 0.010050251 0.000000000
## 409  0.0000000000 0.0119047619 0.0000000000 0.011904762 0.029761905
## 410  0.0285714286 0.0285714286 0.1142857143 0.000000000 0.057142857
## 411  0.0051435919 0.0188598371 0.0265752250 0.027003858 0.014573511
## 412  0.0113636364 0.0000000000 0.0340909091 0.022727273 0.011363636
## 413  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.114285714
## 414  0.0191431176 0.0273473108 0.0428441203 0.064721969 0.082953510
## 415  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 416  0.0092165899 0.0276497696 0.0230414747 0.087557604 0.000000000
## 417  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 418  0.0157303371 0.0202247191 0.0247191011 0.011235955 0.004494382
## 419  0.0166666667 0.0333333333 0.0166666667 0.000000000 0.033333333
## 420  0.0082644628 0.0247933884 0.0103305785 0.014462810 0.010330579
## 421  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.035714286
## 422  0.0476190476 0.0238095238 0.0238095238 0.000000000 0.031746032
## 423  0.0298507463 0.0000000000 0.0298507463 0.029850746 0.014925373
## 424  0.0000000000 0.0689655172 0.0229885057 0.000000000 0.011494253
## 425  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 427  0.0244470314 0.0325960419 0.0186263097 0.002328289 0.094295693
## 428  0.0000000000 0.0300000000 0.0150000000 0.040000000 0.010000000
## 429  0.0140845070 0.0000000000 0.0140845070 0.014084507 0.028169014
## 430  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.142857143
## 431  0.0000000000 0.0714285714 0.0238095238 0.000000000 0.023809524
## 432  0.0000000000 0.0769230769 0.0000000000 0.000000000 0.000000000
## 433  0.0079365079 0.0079365079 0.0158730159 0.095238095 0.047619048
## 434  0.0212765957 0.0283687943 0.0165484634 0.018912530 0.014184397
## 435  0.0000000000 0.0000000000 0.0312500000 0.000000000 0.046875000
## 436  0.0156250000 0.0546875000 0.0312500000 0.015625000 0.023437500
## 437  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 438  0.0305343511 0.0305343511 0.0000000000 0.045801527 0.099236641
## 439  0.0000000000 0.0588235294 0.0196078431 0.000000000 0.019607843
## 440  0.0180180180 0.0090090090 0.0450450450 0.018018018 0.063063063
## 441  0.0000000000 0.0106382979 0.0425531915 0.000000000 0.010638298
## 442  0.0153846154 0.0000000000 0.0923076923 0.041025641 0.015384615
## 443  0.0526315789 0.0000000000 0.0526315789 0.000000000 0.000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 445  0.0346083789 0.0437158470 0.0655737705 0.030965392 0.041894353
## 446  0.0181818182 0.0000000000 0.0000000000 0.000000000 0.036363636
## 447  0.0555555556 0.0277777778 0.0000000000 0.013888889 0.000000000
## 448  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.158730159
## 449  0.0138408304 0.0242214533 0.0622837370 0.032871972 0.015570934
## 450  0.0175159236 0.0143312102 0.0191082803 0.014331210 0.009554140
## 451  0.0000000000 0.0000000000 0.0000000000 0.181818182 0.000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 453  0.0000000000 0.0714285714 0.0000000000 0.000000000 0.000000000
## 454  0.0000000000 0.0142857143 0.0285714286 0.000000000 0.000000000
## 455  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 456  0.0000000000 0.0000000000 0.0350877193 0.000000000 0.017543860
## 457  0.0158730159 0.0031746032 0.0126984127 0.009523810 0.025396825
## 458  0.0000000000 0.0000000000 0.0000000000 0.039473684 0.026315789
## 459  0.0000000000 0.0000000000 0.0000000000 0.022471910 0.022471910
## 460  0.0058823529 0.0147058824 0.0382352941 0.023529412 0.020588235
## 461  0.0000000000 0.0000000000 0.0000000000 0.086956522 0.000000000
## 462  0.0000000000 0.0000000000 0.0000000000 0.020000000 0.060000000
## 463  0.0000000000 0.0120481928 0.0240963855 0.000000000 0.012048193
## 464  0.0051020408 0.0153061224 0.0102040816 0.005102041 0.000000000
## 465  0.0069686411 0.0104529617 0.0557491289 0.031358885 0.038327526
## 466  0.0000000000 0.0000000000 0.0312500000 0.000000000 0.000000000
## 467  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 468  0.0729927007 0.0583941606 0.0437956204 0.000000000 0.000000000
## 469  0.0158102767 0.0237154150 0.0118577075 0.035573123 0.000000000
## 470  0.0318021201 0.0282685512 0.0106007067 0.038869258 0.010600707
## 471  0.0322580645 0.0322580645 0.0000000000 0.000000000 0.032258065
## 472  0.0000000000 0.0129310345 0.0431034483 0.034482759 0.008620690
## 473  0.0000000000 0.0526315789 0.0000000000 0.000000000 0.000000000
## 474  0.0000000000 0.0000000000 0.0285714286 0.000000000 0.000000000
## 475  0.0000000000 0.0138888889 0.0000000000 0.013888889 0.000000000
## 476  0.0000000000 0.0132158590 0.0088105727 0.008810573 0.030837004
## 477  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 478  0.0000000000 0.0571428571 0.0000000000 0.028571429 0.000000000
## 479  0.0697674419 0.0310077519 0.0775193798 0.015503876 0.007751938
## 480  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 481  0.0036231884 0.0181159420 0.0217391304 0.057971014 0.003623188
## 482  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 483  0.0185185185 0.0000000000 0.0000000000 0.129629630 0.055555556
## 484  0.0400000000 0.0200000000 0.0400000000 0.000000000 0.000000000
## 485  0.0000000000 0.0000000000 0.0217391304 0.043478261 0.043478261
## 486  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 487  0.0158730159 0.0238095238 0.0476190476 0.007936508 0.015873016
## 488  0.0120481928 0.0000000000 0.0240963855 0.024096386 0.048192771
## 489  0.0714285714 0.0000000000 0.0000000000 0.000000000 0.000000000
## 490  0.0000000000 0.0000000000 0.0140845070 0.042253521 0.014084507
## 491  0.0000000000 0.0000000000 0.0000000000 0.033333333 0.133333333
## 492  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 494  0.0148906468 0.0237319684 0.0148906468 0.022801303 0.070265240
## 495  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 496  0.0689655172 0.0000000000 0.0114942529 0.022988506 0.011494253
## 497  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 498  0.0000000000 0.0000000000 0.1379310345 0.000000000 0.000000000
## 499  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 502  0.0000000000 0.0000000000 0.1111111111 0.000000000 0.000000000
## 503  0.0000000000 0.0044444444 0.0177777778 0.004444444 0.017777778
## 504  0.0370689655 0.0232758621 0.0318965517 0.013793103 0.039655172
## 505  0.0227001195 0.0346475508 0.0155316607 0.026284349 0.011947431
## 506  0.0000000000 0.0400000000 0.0000000000 0.080000000 0.040000000
## 507  0.0000000000 0.0000000000 0.1052631579 0.017543860 0.175438596
## 508  0.0361663653 0.0669077758 0.0361663653 0.050632911 0.065099458
## 509  0.0909090909 0.0454545455 0.0000000000 0.045454545 0.000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 511  0.0074349442 0.0594795539 0.0074349442 0.029739777 0.011152416
## 512  0.0280373832 0.0186915888 0.0093457944 0.028037383 0.009345794
## 513  0.0103092784 0.0000000000 0.0000000000 0.020618557 0.061855670
## 514  0.0144230769 0.0000000000 0.0048076923 0.024038462 0.028846154
## 515  0.0000000000 0.0000000000 0.5000000000 0.000000000 0.000000000
## 516  0.0666666667 0.0000000000 0.0000000000 0.000000000 0.000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 519  0.0114068441 0.0228136882 0.0228136882 0.011406844 0.007604563
## 520  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 521  0.0204081633 0.0000000000 0.2040816327 0.020408163 0.000000000
## 522  0.0500000000 0.0333333333 0.0766666667 0.040000000 0.013333333
## 523  0.0408163265 0.0000000000 0.0204081633 0.061224490 0.020408163
## 524  0.0000000000 0.0000000000 0.0000000000 0.039215686 0.019607843
## 525  0.0000000000 0.0000000000 0.0000000000 0.054545455 0.018181818
## 526  0.0746268657 0.0000000000 0.0149253731 0.014925373 0.029850746
## 527  0.0126582278 0.0253164557 0.0000000000 0.025316456 0.101265823
## 528  0.0000000000 0.0240963855 0.0240963855 0.012048193 0.060240964
## 529  0.0412371134 0.0103092784 0.0103092784 0.010309278 0.000000000
## 530  0.0000000000 0.0000000000 0.0196078431 0.019607843 0.039215686
## 531  0.0000000000 0.0000000000 0.0000000000 0.030303030 0.030303030
## 532  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 533  0.0038461538 0.0153846154 0.0884615385 0.026923077 0.088461538
## 534  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 535  0.0144927536 0.0144927536 0.0144927536 0.014492754 0.014492754
## 536  0.0000000000 0.0000000000 0.0000000000 0.040816327 0.040816327
## 537  0.0000000000 0.0000000000 0.0600000000 0.040000000 0.000000000
## 538  0.0000000000 0.0000000000 0.0222222222 0.022222222 0.022222222
## 539  0.0222222222 0.0000000000 0.0000000000 0.022222222 0.066666667
## 540  0.0000000000 0.0000000000 0.0000000000 0.030303030 0.030303030
## 541  0.0094786730 0.0236966825 0.0047393365 0.018957346 0.014218009
## 542  0.0655737705 0.0000000000 0.0163934426 0.032786885 0.065573770
## 543  0.0948275862 0.0344827586 0.0172413793 0.000000000 0.025862069
## 544  0.0243902439 0.0000000000 0.0000000000 0.048780488 0.024390244
## 545  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 546  0.0625000000 0.0208333333 0.0000000000 0.020833333 0.020833333
## 547  0.0093023256 0.0279069767 0.0186046512 0.041860465 0.023255814
## 548  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 549  0.0190476190 0.0000000000 0.0190476190 0.000000000 0.047619048
## 550  0.0204081633 0.0000000000 0.0000000000 0.020408163 0.020408163
## 551  0.0163934426 0.0000000000 0.0000000000 0.065573770 0.000000000
## 552  0.0425531915 0.0000000000 0.0000000000 0.021276596 0.000000000
## 553  0.0208333333 0.0000000000 0.0000000000 0.020833333 0.000000000
## 554  0.0000000000 0.0000000000 0.1016949153 0.016949153 0.000000000
## 555  0.0000000000 0.0000000000 0.0307692308 0.015384615 0.000000000
## 556  0.0000000000 0.0000000000 0.0000000000 0.015384615 0.046153846
## 557  0.0283687943 0.0992907801 0.0851063830 0.021276596 0.014184397
## 558  0.0000000000 0.0000000000 0.0222222222 0.044444444 0.022222222
## 559  0.0000000000 0.0000000000 0.0142857143 0.014285714 0.028571429
## 560  0.0000000000 0.0000000000 0.1052631579 0.000000000 0.000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 563  0.0366972477 0.0252293578 0.0344036697 0.029816514 0.038990826
## 564  0.0243902439 0.0487804878 0.0000000000 0.000000000 0.000000000
## 565  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 566  0.0000000000 0.0769230769 0.0192307692 0.076923077 0.000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.500000000
## 568  0.0000000000 0.0370370370 0.0000000000 0.185185185 0.185185185
## 569  0.0190217391 0.0326086957 0.0452898551 0.023550725 0.010869565
## 570  0.0251572327 0.0000000000 0.0000000000 0.015723270 0.037735849
## 571  0.0096153846 0.0865384615 0.0961538462 0.024038462 0.038461538
## 572  0.0131578947 0.0000000000 0.0000000000 0.000000000 0.000000000
## 573  0.1034482759 0.0000000000 0.0000000000 0.000000000 0.068965517
## 574  0.0317460317 0.0317460317 0.0222222222 0.044444444 0.022222222
## 575  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.083333333
## 576  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.040000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.083333333
## 578  0.0714285714 0.0000000000 0.0000000000 0.000000000 0.071428571
## 579  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 580  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.071428571
## 581  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.033333333
## 582  0.0535714286 0.2142857143 0.0178571429 0.053571429 0.000000000
## 583  0.0186046512 0.0046511628 0.0325581395 0.018604651 0.018604651
## 584  0.0000000000 0.0000000000 0.0833333333 0.000000000 0.000000000
## 585  0.0275000000 0.0150000000 0.0375000000 0.062500000 0.027500000
## 586  0.0000000000 0.0000000000 0.0000000000 0.020000000 0.000000000
## 587  0.0221343874 0.0426877470 0.0173913043 0.015810277 0.026086957
## 588  0.0156250000 0.0000000000 0.0000000000 0.015625000 0.000000000
## 589  0.1587301587 0.0000000000 0.0317460317 0.015873016 0.031746032
## 590  0.0800000000 0.0000000000 0.0000000000 0.053333333 0.000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.111111111
## 592  0.0961538462 0.0576923077 0.0384615385 0.076923077 0.057692308
## 593  0.0328879753 0.0102774923 0.0513874615 0.014388489 0.019527235
## 594  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 595  0.0000000000 0.0000000000 0.0357142857 0.035714286 0.035714286
## 596  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 597  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 598  0.0000000000 0.0144927536 0.0144927536 0.014492754 0.043478261
## 599  0.0454545455 0.0227272727 0.0000000000 0.000000000 0.136363636
## 600  0.0270270270 0.0000000000 0.0540540541 0.027027027 0.027027027
## 601  0.0000000000 0.0000000000 0.0800000000 0.000000000 0.040000000
## 602  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.038461538
## 603  0.0000000000 0.0232558140 0.0058139535 0.023255814 0.011627907
## 604  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.038461538
## 605  0.0000000000 0.0000000000 0.0952380952 0.000000000 0.047619048
## 606  0.0000000000 0.0000000000 0.0666666667 0.000000000 0.033333333
## 607  0.0000000000 0.0000000000 0.0714285714 0.000000000 0.035714286
## 608  0.0196078431 0.0352941176 0.0156862745 0.003921569 0.027450980
## 609  0.0000000000 0.0000000000 0.1071428571 0.035714286 0.035714286
## 610  0.0000000000 0.0000000000 0.0273972603 0.013698630 0.013698630
## 611  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 612  0.0000000000 0.0000000000 0.0322580645 0.032258065 0.032258065
## 613  0.0000000000 0.0000000000 0.0400000000 0.040000000 0.120000000
## 614  0.0072992701 0.0072992701 0.0364963504 0.021897810 0.021897810
## 615  0.0000000000 0.0000000000 0.0277777778 0.027777778 0.027777778
## 616  0.0961538462 0.0000000000 0.0576923077 0.019230769 0.038461538
## 617  0.0000000000 0.0000000000 0.0400000000 0.040000000 0.080000000
## 618  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 619  0.0000000000 0.0526315789 0.0526315789 0.052631579 0.052631579
## 620  0.0000000000 0.0000000000 0.0166666667 0.058333333 0.008333333
## 621  0.0285714286 0.0000000000 0.0285714286 0.028571429 0.028571429
## 622  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 623  0.0344827586 0.0344827586 0.0344827586 0.034482759 0.034482759
## 624  0.0000000000 0.0196078431 0.0196078431 0.000000000 0.019607843
## 625  0.0000000000 0.0256410256 0.0256410256 0.025641026 0.025641026
## 626  0.0434782609 0.0434782609 0.0434782609 0.043478261 0.043478261
## 627  0.0520231214 0.0000000000 0.0346820809 0.023121387 0.057803468
## 628  0.0000000000 0.0000000000 0.0333333333 0.033333333 0.033333333
## 629  0.0285714286 0.0571428571 0.2000000000 0.000000000 0.028571429
## 630  0.0000000000 0.0000000000 0.0357142857 0.035714286 0.107142857
## 631  0.0000000000 0.0307692308 0.0153846154 0.015384615 0.061538462
## 632  0.0000000000 0.0000000000 0.0357142857 0.035714286 0.035714286
## 633  0.0000000000 0.0000000000 0.0214285714 0.028571429 0.007142857
## 634  0.0227272727 0.0000000000 0.0227272727 0.090909091 0.022727273
## 635  0.0238095238 0.0000000000 0.0238095238 0.023809524 0.023809524
## 636  0.0000000000 0.0000000000 0.0204081633 0.010204082 0.010204082
## 637  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.055555556
## 638  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.052631579
## 639  0.0000000000 0.0000000000 0.0312500000 0.031250000 0.093750000
## 640  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.000000000
## 641  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.055555556
## 642  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 643  0.0000000000 0.0000000000 0.1000000000 0.050000000 0.050000000
## 644  0.0000000000 0.0000000000 0.0400000000 0.040000000 0.040000000
## 645  0.0000000000 0.0000000000 0.0370370370 0.037037037 0.074074074
## 646  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 647  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.068965517
## 648  0.0203045685 0.0050761421 0.0050761421 0.010152284 0.010152284
## 649  0.0000000000 0.0000000000 0.0370370370 0.037037037 0.037037037
## 650  0.0489795918 0.0244897959 0.0204081633 0.008163265 0.040816327
## 651  0.0000000000 0.0357142857 0.0178571429 0.017857143 0.089285714
## 652  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.068965517
## 653  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 654  0.0306122449 0.0229591837 0.0178571429 0.079081633 0.038265306
## 655  0.0040983607 0.0122950820 0.0081967213 0.024590164 0.032786885
## 656  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 657  0.0000000000 0.0259740260 0.0259740260 0.025974026 0.025974026
## 658  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 659  0.0833333333 0.0250000000 0.0916666667 0.041666667 0.008333333
## 660  0.0454545455 0.0000000000 0.0454545455 0.045454545 0.045454545
## 661  0.0000000000 0.0000000000 0.0104166667 0.010416667 0.010416667
## 662  0.0000000000 0.0000000000 0.0869565217 0.043478261 0.086956522
## 663  0.0000000000 0.0000000000 0.0333333333 0.033333333 0.033333333
## 664  0.0071942446 0.0000000000 0.2014388489 0.007194245 0.007194245
## 665  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 666  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 667  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.055555556
## 668  0.0000000000 0.0000000000 0.0303030303 0.030303030 0.030303030
## 669  0.0000000000 0.0000000000 0.0333333333 0.066666667 0.033333333
## 670  0.0000000000 0.0000000000 0.0416666667 0.041666667 0.041666667
## 671  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 672  0.0000000000 0.0000000000 0.0882352941 0.029411765 0.029411765
## 673  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 674  0.0250000000 0.0000000000 0.0500000000 0.100000000 0.050000000
## 675  0.0000000000 0.0000000000 0.0136986301 0.013698630 0.027397260
## 676  0.0000000000 0.0000000000 0.1428571429 0.071428571 0.071428571
## 677  0.0000000000 0.0000000000 0.0833333333 0.083333333 0.083333333
## 678  0.0000000000 0.0000000000 0.0434782609 0.000000000 0.043478261
## 679  0.0000000000 0.0000000000 0.0208333333 0.000000000 0.020833333
## 680  0.0000000000 0.0000000000 0.0400000000 0.000000000 0.080000000
## 681  0.0000000000 0.0000000000 0.1111111111 0.055555556 0.055555556
## 682  0.0000000000 0.0000000000 0.0625000000 0.000000000 0.062500000
## 683  0.0000000000 0.0000000000 0.1000000000 0.000000000 0.100000000
## 684  0.0000000000 0.0000000000 0.0294117647 0.029411765 0.029411765
## 685  0.0769230769 0.0000000000 0.0384615385 0.038461538 0.038461538
## 686  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 687  0.0065359477 0.0000000000 0.0065359477 0.006535948 0.006535948
## 688  0.0000000000 0.0075187970 0.0037593985 0.022556391 0.007518797
## 689  0.0285714286 0.0000000000 0.0285714286 0.028571429 0.028571429
## 690  0.0000000000 0.0000000000 0.0540540541 0.027027027 0.027027027
## 691  0.0000000000 0.0000000000 0.0588235294 0.019607843 0.019607843
## 692  0.0000000000 0.0000000000 0.0000000000 0.100000000 0.000000000
## 693  0.1071428571 0.0000000000 0.1071428571 0.000000000 0.035714286
## 694  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.076923077
## 695  0.0000000000 0.0000000000 0.0666666667 0.000000000 0.066666667
## 696  0.0000000000 0.0000000000 0.0086206897 0.034482759 0.017241379
## 697  0.0000000000 0.0000000000 0.0666666667 0.000000000 0.133333333
## 698  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 699  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.090909091
## 700  0.0000000000 0.0000000000 0.0129870130 0.000000000 0.012987013
## 701  0.0000000000 0.0000000000 0.1111111111 0.055555556 0.055555556
## 702  0.0000000000 0.0000000000 0.0512820513 0.000000000 0.012820513
## 703  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.090909091
## 704  0.0238095238 0.0000000000 0.0000000000 0.071428571 0.000000000
## 705  0.0270270270 0.0270270270 0.0270270270 0.054054054 0.000000000
## 706  0.1212121212 0.0303030303 0.0303030303 0.060606061 0.000000000
## 707  0.0370370370 0.0000000000 0.0370370370 0.037037037 0.000000000
## 708  0.0000000000 0.0000000000 0.0263157895 0.105263158 0.000000000
## 709  0.0294117647 0.0000000000 0.0000000000 0.058823529 0.029411765
## 710  0.0061349693 0.0224948875 0.0204498978 0.008179959 0.010224949
## 711  0.0000000000 0.0000000000 0.0357142857 0.035714286 0.035714286
## 712  0.0000000000 0.0000000000 0.0666666667 0.000000000 0.066666667
## 713  0.0000000000 0.0285714286 0.0857142857 0.000000000 0.028571429
## 714  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.076923077
## 715  0.0000000000 0.0000000000 0.0833333333 0.083333333 0.083333333
## 716  0.0000000000 0.0000000000 0.0952380952 0.047619048 0.047619048
## 717  0.0000000000 0.0000000000 0.1000000000 0.000000000 0.100000000
## 718  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 719  0.0000000000 0.0000000000 0.1000000000 0.000000000 0.100000000
## 720  0.0000000000 0.0000000000 0.0833333333 0.083333333 0.083333333
## 721  0.0000000000 0.0000000000 0.0526315789 0.000000000 0.052631579
## 722  0.0000000000 0.0000000000 0.1538461538 0.076923077 0.076923077
## 723  0.0000000000 0.0000000000 0.1000000000 0.050000000 0.050000000
## 724  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.090909091
## 725  0.0000000000 0.0000000000 0.2142857143 0.071428571 0.142857143
## 726  0.0666666667 0.0000000000 0.1333333333 0.066666667 0.066666667
## 727  0.0000000000 0.0000000000 0.0833333333 0.083333333 0.166666667
## 728  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 729  0.0384615385 0.0384615385 0.0000000000 0.038461538 0.038461538
## 730  0.0000000000 0.0714285714 0.0000000000 0.142857143 0.071428571
## 731  0.0000000000 0.0000000000 0.0833333333 0.083333333 0.083333333
## 732  0.0000000000 0.0000000000 0.2307692308 0.076923077 0.076923077
## 733  0.0000000000 0.0000000000 0.0196078431 0.000000000 0.313725490
## 734  0.0000000000 0.0000000000 0.0227272727 0.000000000 0.022727273
## 735  0.0000000000 0.0000000000 0.1428571429 0.071428571 0.071428571
## 736  0.0000000000 0.0000000000 0.0833333333 0.166666667 0.083333333
## 737  0.0000000000 0.0000000000 0.0666666667 0.000000000 0.066666667
## 738  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.076923077
## 739  0.0000000000 0.0000000000 0.0545454545 0.018181818 0.018181818
## 740  0.1200000000 0.0000000000 0.0400000000 0.040000000 0.040000000
## 741  0.0000000000 0.0000000000 0.0967741935 0.032258065 0.032258065
## 742  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 743  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.052631579
## 744  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.052631579
## 745  0.0000000000 0.0500000000 0.0500000000 0.050000000 0.050000000
## 746  0.0000000000 0.0000000000 0.0344827586 0.068965517 0.034482759
## 747  0.0000000000 0.0000000000 0.0833333333 0.041666667 0.041666667
## 748  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 749  0.0344827586 0.0344827586 0.0344827586 0.034482759 0.034482759
## 750  0.0000000000 0.0000000000 0.0000000000 0.027027027 0.000000000
## 751  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 752  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.052631579
## 753  0.0526315789 0.0000000000 0.0526315789 0.105263158 0.052631579
## 754  0.0000000000 0.0000000000 0.0434782609 0.043478261 0.086956522
## 755  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.105263158
## 756  0.0173913043 0.0000000000 0.0173913043 0.069565217 0.008695652
## 757  0.0000000000 0.0000000000 0.1111111111 0.055555556 0.111111111
## 758  0.0000000000 0.0000000000 0.0289855072 0.028985507 0.028985507
## 759  0.0000000000 0.0511363636 0.0056818182 0.034090909 0.096590909
## 760  0.0288461538 0.0480769231 0.0096153846 0.009615385 0.105769231
## 761  0.0246913580 0.0246913580 0.0123456790 0.024691358 0.061728395
## 762  0.0357142857 0.0000000000 0.0357142857 0.017857143 0.053571429
## 763  0.0162601626 0.0000000000 0.0162601626 0.056910569 0.016260163
## 764  0.2000000000 0.0000000000 0.0250000000 0.075000000 0.025000000
## 765  0.1000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 766  0.0000000000 0.0000000000 0.1153846154 0.038461538 0.076923077
## 767  0.0080000000 0.0080000000 0.0320000000 0.016000000 0.024000000
## 768  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 769  0.0000000000 0.0232558140 0.0116279070 0.000000000 0.034883721
## 770  0.0000000000 0.0000000000 0.0370370370 0.000000000 0.037037037
## 771  0.0243902439 0.0243902439 0.0243902439 0.024390244 0.219512195
## 772  0.0128205128 0.0128205128 0.0128205128 0.000000000 0.012820513
## 773  0.0000000000 0.0067567568 0.0270270270 0.033783784 0.023648649
## 774  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 775  0.0000000000 0.0000000000 0.0434782609 0.043478261 0.043478261
## 776  0.0000000000 0.0000000000 0.0625000000 0.000000000 0.062500000
## 777  0.0000000000 0.0000000000 0.0250000000 0.075000000 0.050000000
## 778  0.0000000000 0.0000000000 0.0645161290 0.032258065 0.032258065
## 779  0.0000000000 0.0000000000 0.0277777778 0.027777778 0.055555556
## 780  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 781  0.0512820513 0.0128205128 0.0128205128 0.025641026 0.012820513
## 782  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 783  0.0202020202 0.0000000000 0.0202020202 0.050505051 0.010101010
## 784  0.0000000000 0.0000000000 0.0638297872 0.042553191 0.021276596
## 785  0.0000000000 0.0000000000 0.0416666667 0.166666667 0.041666667
## 786  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.055555556
## 787  0.0000000000 0.0000000000 0.1071428571 0.142857143 0.000000000
## 788  0.0000000000 0.0000000000 0.0370370370 0.148148148 0.037037037
## 789  0.0000000000 0.0500000000 0.1000000000 0.125000000 0.025000000
## 790  0.0032154341 0.0000000000 0.0032154341 0.006430868 0.009646302
## 791  0.0454545455 0.0454545455 0.0454545455 0.045454545 0.045454545
## 792  0.0000000000 0.0000000000 0.0476190476 0.047619048 0.047619048
## 793  0.0000000000 0.0000000000 0.0416666667 0.041666667 0.125000000
## 794  0.0285714286 0.0000000000 0.0285714286 0.028571429 0.028571429
## 795  0.3072625698 0.0391061453 0.0782122905 0.005586592 0.005586592
## 796  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 797  0.0000000000 0.0000000000 0.0303030303 0.030303030 0.060606061
## 798  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.111111111
## 799  0.0000000000 0.0227272727 0.0227272727 0.022727273 0.068181818
## 800  0.0000000000 0.0000000000 0.1363636364 0.045454545 0.045454545
## 801  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 802  0.0000000000 0.0645161290 0.0322580645 0.096774194 0.032258065
## 803  0.0000000000 0.0000000000 0.0263157895 0.000000000 0.000000000
## 804  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.083333333
## 805  0.0000000000 0.0000000000 0.0370370370 0.037037037 0.037037037
## 806  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 807  0.0000000000 0.0588235294 0.0588235294 0.058823529 0.058823529
## 808  0.0666666667 0.0000000000 0.1333333333 0.000000000 0.066666667
## 809  0.0000000000 0.0740740741 0.0185185185 0.018518519 0.074074074
## 810  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 811  0.0000000000 0.0000000000 0.0294117647 0.029411765 0.029411765
## 812  0.0000000000 0.0555555556 0.0555555556 0.055555556 0.166666667
## 813  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 814  0.0000000000 0.0000000000 0.0714285714 0.071428571 0.071428571
## 815  0.0833333333 0.0000000000 0.0833333333 0.000000000 0.083333333
## 816  0.0080000000 0.0000000000 0.0160000000 0.000000000 0.064000000
## 817  0.0000000000 0.0769230769 0.0769230769 0.076923077 0.076923077
## 818  0.0000000000 0.0000000000 0.1000000000 0.100000000 0.100000000
## 819  0.0000000000 0.0270270270 0.0270270270 0.027027027 0.027027027
## 820  0.0000000000 0.0000000000 0.0294117647 0.029411765 0.029411765
## 821  0.0000000000 0.0000000000 0.0370370370 0.074074074 0.037037037
## 822  0.0000000000 0.0000000000 0.1111111111 0.111111111 0.111111111
## 823  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 824  0.0000000000 0.0000000000 0.1666666667 0.083333333 0.083333333
## 825  0.0000000000 0.0909090909 0.0909090909 0.000000000 0.090909091
## 826  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 827  0.0283018868 0.0094339623 0.0094339623 0.018867925 0.075471698
## 828  0.0000000000 0.0000000000 0.0625000000 0.062500000 0.062500000
## 829  0.0000000000 0.0000000000 0.0625000000 0.062500000 0.062500000
## 830  0.0000000000 0.0000000000 0.1052631579 0.052631579 0.052631579
## 831  0.0000000000 0.0000000000 0.1538461538 0.076923077 0.076923077
## 832  0.0384615385 0.0192307692 0.0961538462 0.076923077 0.019230769
## 833  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 834  0.0000000000 0.0000000000 0.0153846154 0.015384615 0.015384615
## 835  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 836  0.0000000000 0.0000000000 0.0500000000 0.050000000 0.050000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.045454545 0.000000000
## 838  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 839  0.0000000000 0.0000000000 0.0416666667 0.041666667 0.041666667
## 840  0.0000000000 0.0000000000 0.0277777778 0.027777778 0.277777778
## 841  0.0000000000 0.0000000000 0.0555555556 0.055555556 0.055555556
## 842  0.0000000000 0.0000000000 0.0400000000 0.040000000 0.120000000
## 843  0.1304347826 0.0000000000 0.0434782609 0.043478261 0.043478261
## 844  0.0000000000 0.0000000000 0.0384615385 0.038461538 0.038461538
## 845  0.0909090909 0.0454545455 0.0909090909 0.045454545 0.045454545
## 846  0.0000000000 0.0000000000 0.0434782609 0.043478261 0.043478261
## 847  0.0000000000 0.0000000000 0.0357142857 0.035714286 0.035714286
## 848  0.0000000000 0.0238095238 0.0238095238 0.023809524 0.023809524
## 849  0.0000000000 0.0000000000 0.0344827586 0.034482759 0.034482759
## 850  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.090909091
## 851  0.0000000000 0.1538461538 0.0769230769 0.000000000 0.000000000
## 852  0.0000000000 0.0714285714 0.0357142857 0.035714286 0.035714286
## 853  0.0000000000 0.0000000000 0.0500000000 0.000000000 0.050000000
## 854  0.0256410256 0.0000000000 0.0769230769 0.000000000 0.076923077
## 855  0.0000000000 0.0000000000 0.0416666667 0.041666667 0.041666667
## 856  0.0428571429 0.0285714286 0.0428571429 0.057142857 0.014285714
## 857  0.0000000000 0.0000000000 0.0526315789 0.052631579 0.052631579
## 858  0.0000000000 0.0000000000 0.0588235294 0.058823529 0.058823529
## 859  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 860  0.0307971014 0.0244565217 0.0135869565 0.089673913 0.022644928
## 861  0.0074074074 0.0000000000 0.0037037037 0.022222222 0.296296296
## 862  0.0000000000 0.0625000000 0.0312500000 0.156250000 0.062500000
## 863  0.0000000000 0.0000000000 0.1000000000 0.050000000 0.100000000
## 864  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.076923077
## 865  0.0000000000 0.0000000000 0.0666666667 0.066666667 0.066666667
## 866  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.090909091
## 867  0.0000000000 0.0000000000 0.0714285714 0.000000000 0.071428571
## 868  0.0000000000 0.0000000000 0.0095238095 0.047619048 0.142857143
## 869  0.0000000000 0.0000000000 0.0769230769 0.000000000 0.076923077
## 870  0.0098039216 0.0196078431 0.0196078431 0.019607843 0.009803922
## 871  0.0000000000 0.0000000000 0.0833333333 0.000000000 0.083333333
## 872  0.0000000000 0.0000000000 0.0400000000 0.000000000 0.040000000
## 873  0.0000000000 0.0000000000 0.1282051282 0.153846154 0.076923077
## 874  0.0000000000 0.0000000000 0.0833333333 0.000000000 0.083333333
## 875  0.0000000000 0.0000000000 0.0909090909 0.000000000 0.090909091
## 876  0.0000000000 0.0000000000 0.0454545455 0.045454545 0.045454545
## 877  0.0000000000 0.0000000000 0.0588235294 0.058823529 0.058823529
## 878  0.0000000000 0.0000000000 0.0714285714 0.035714286 0.035714286
## 879  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 880  0.0322580645 0.0000000000 0.0000000000 0.032258065 0.000000000
## 881  0.0000000000 0.0171428571 0.0685714286 0.011428571 0.017142857
## 882  0.0140977444 0.0046992481 0.0281954887 0.008458647 0.035714286
## 883  0.0000000000 0.0000000000 0.1250000000 0.000000000 0.000000000
## 884  0.1428571429 0.0000000000 0.0000000000 0.000000000 0.000000000
## 885  0.1428571429 0.0000000000 0.0000000000 0.000000000 0.000000000
## 886  0.1111111111 0.0000000000 0.0000000000 0.000000000 0.000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 888  0.1428571429 0.0000000000 0.0000000000 0.000000000 0.000000000
## 889  0.0184049080 0.0000000000 0.0214723926 0.021472393 0.027607362
## 890  0.0000000000 0.0000000000 0.0714285714 0.071428571 0.000000000
## 891  0.0106007067 0.0247349823 0.0530035336 0.010600707 0.056537102
## 892  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 893  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 894  0.0000000000 0.0285714286 0.0000000000 0.000000000 0.000000000
## 895  0.0201612903 0.0141129032 0.0423387097 0.018145161 0.014112903
## 896  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 897  0.0930232558 0.0000000000 0.0000000000 0.000000000 0.000000000
## 898  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 899  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 900  0.0000000000 0.0285714286 0.0285714286 0.028571429 0.028571429
## 901  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 902  0.0000000000 0.0126582278 0.0253164557 0.012658228 0.012658228
## 903  0.0000000000 0.0204081633 0.0000000000 0.020408163 0.020408163
## 904  0.0000000000 0.0474777448 0.0474777448 0.053412463 0.011869436
## 905  0.0000000000 0.0634920635 0.0000000000 0.015873016 0.031746032
## 906  0.0117531832 0.0215475024 0.0450538688 0.101860921 0.030362390
## 907  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 909  0.1200000000 0.0133333333 0.0133333333 0.053333333 0.026666667
## 910  0.0664739884 0.0115606936 0.0346820809 0.037572254 0.080924855
## 911  0.0344827586 0.0229885057 0.0373563218 0.034482759 0.011494253
## 912  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 913  0.0267857143 0.0089285714 0.0089285714 0.008928571 0.000000000
## 914  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 915  0.0102915952 0.0531732419 0.0291595197 0.037735849 0.012006861
## 916  0.0000000000 0.0588235294 0.0000000000 0.029411765 0.058823529
## 917  0.0434782609 0.0000000000 0.0434782609 0.000000000 0.043478261
## 918  0.0000000000 0.0000000000 0.0000000000 0.100000000 0.000000000
## 919  0.0000000000 0.0170940171 0.2991452991 0.008547009 0.025641026
## 920  0.0454545455 0.0454545455 0.0000000000 0.000000000 0.000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 922  0.0450450450 0.0450450450 0.0450450450 0.009009009 0.009009009
## 923  0.0206185567 0.0000000000 0.0103092784 0.000000000 0.051546392
## 924  0.0192307692 0.0000000000 0.0384615385 0.019230769 0.019230769
## 925  0.0092165899 0.0230414747 0.0184331797 0.039170507 0.094470046
## 926  0.0250000000 0.0333333333 0.0083333333 0.041666667 0.000000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 928  0.0000000000 0.0250000000 0.0250000000 0.075000000 0.000000000
## 929  0.0000000000 0.1111111111 0.0000000000 0.111111111 0.000000000
## 930  0.0458333333 0.0083333333 0.0083333333 0.016666667 0.008333333
## 931  0.0000000000 0.2000000000 0.1000000000 0.100000000 0.000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 933  0.0000000000 0.0588235294 0.0294117647 0.029411765 0.000000000
## 934  0.0000000000 0.0769230769 0.0384615385 0.038461538 0.000000000
## 935  0.0000000000 0.0666666667 0.0000000000 0.133333333 0.000000000
## 936  0.0416666667 0.0416666667 0.0416666667 0.041666667 0.041666667
## 937  0.0000000000 0.0454545455 0.0909090909 0.045454545 0.090909091
## 938  0.0223214286 0.0245535714 0.0513392857 0.031250000 0.031250000
## 939  0.0079787234 0.0212765957 0.0239361702 0.031914894 0.021276596
## 940  0.0000000000 0.0434782609 0.0869565217 0.043478261 0.000000000
## 941  0.0208333333 0.0104166667 0.0416666667 0.114583333 0.072916667
## 942  0.0141843972 0.0141843972 0.0070921986 0.085106383 0.113475177
## 943  0.0000000000 0.0263157895 0.0789473684 0.131578947 0.026315789
## 944  0.0591900312 0.0436137072 0.0436137072 0.031152648 0.018691589
## 945  0.0188679245 0.0471698113 0.0235849057 0.004716981 0.000000000
## 946  0.1192982456 0.0456140351 0.0105263158 0.024561404 0.021052632
## 947  0.0168067227 0.0588235294 0.0420168067 0.033613445 0.075630252
## 948  0.3409090909 0.0000000000 0.0000000000 0.022727273 0.000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 951  0.0126050420 0.0462184874 0.0630252101 0.037815126 0.025210084
## 952  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 953  0.0153846154 0.0307692308 0.0307692308 0.000000000 0.092307692
## 954  0.0000000000 0.0285714286 0.0285714286 0.028571429 0.000000000
## 955  0.0869565217 0.0000000000 0.0000000000 0.000000000 0.130434783
## 956  0.0355029586 0.0295857988 0.0177514793 0.017751479 0.047337278
## 957  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 958  0.0000000000 0.0215053763 0.0107526882 0.032258065 0.086021505
## 959  0.0194805195 0.0064935065 0.0324675325 0.064935065 0.019480519
## 960  0.0433734940 0.0240963855 0.0313253012 0.002409639 0.002409639
## 961  0.0304568528 0.0203045685 0.0152284264 0.010152284 0.005076142
## 962  0.0476190476 0.0317460317 0.0158730159 0.031746032 0.031746032
## 963  0.0000000000 0.0263157895 0.1052631579 0.000000000 0.078947368
## 964  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 965  0.0578512397 0.0330578512 0.0000000000 0.016528926 0.057851240
## 966  0.0344827586 0.0000000000 0.0344827586 0.068965517 0.017241379
## 967  0.0344827586 0.0000000000 0.0172413793 0.017241379 0.034482759
## 968  0.0120481928 0.0120481928 0.0722891566 0.072289157 0.048192771
## 969  0.0545454545 0.0000000000 0.0000000000 0.018181818 0.000000000
## 970  0.0402930403 0.0109890110 0.0219780220 0.021978022 0.029304029
## 971  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 973  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 975  0.0086956522 0.0152173913 0.0152173913 0.021739130 0.030434783
## 976  0.0000000000 0.0196078431 0.0196078431 0.019607843 0.000000000
## 977  0.0198863636 0.0284090909 0.0369318182 0.025568182 0.028409091
## 978  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 980  0.0731707317 0.0243902439 0.0000000000 0.012195122 0.024390244
## 981  0.0666666667 0.0400000000 0.0533333333 0.000000000 0.000000000
## 982  0.0789473684 0.0263157895 0.0263157895 0.000000000 0.000000000
## 983  0.0735294118 0.0000000000 0.0147058824 0.022058824 0.007352941
## 984  0.0071428571 0.0107142857 0.0035714286 0.014285714 0.021428571
## 985  0.0398322851 0.0314465409 0.0398322851 0.037735849 0.037735849
## 986  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 987  0.0267697799 0.0297441999 0.0362879239 0.016061868 0.025580012
## 988  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 989  0.0281690141 0.0563380282 0.0140845070 0.021126761 0.035211268
## 990  0.0598290598 0.0341880342 0.0341880342 0.025641026 0.008547009
## 991  0.0083416087 0.0037735849 0.0075471698 0.007944389 0.011122145
## 992  0.0032679739 0.0130718954 0.0163398693 0.019607843 0.019607843
## 993  0.0000000000 0.0000000000 0.0500000000 0.019230769 0.026923077
## 994  0.0075757576 0.0045454545 0.0045454545 0.003030303 0.013636364
## 995  0.0000000000 0.0206185567 0.0206185567 0.051546392 0.010309278
## 996  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 997  0.0022026432 0.0016519824 0.0005506608 0.008810573 0.002202643
## 998  0.0000000000 0.0000000000 0.0000000000 0.000000000 0.000000000
## 999  0.0263840830 0.0358996540 0.0203287197 0.041955017 0.039359862
## 1000 0.0039525692 0.0079051383 0.0276679842 0.011857708 0.051383399
##                44           45          46           47          48
## 1    0.0245310245 0.0151515152 0.008658009 0.0057720058 0.015151515
## 2    0.0000000000 0.0263157895 0.013157895 0.0131578947 0.013157895
## 3    0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 4    0.0055658627 0.0055658627 0.014842301 0.0018552876 0.011131725
## 5    0.0074859638 0.0143480973 0.019962570 0.0099812851 0.018091079
## 6    0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 7    0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 8    0.0325865580 0.0292538419 0.024625069 0.0149972227 0.014626921
## 9    0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 10   0.0172413793 0.0172413793 0.017241379 0.0172413793 0.017241379
## 11   0.0199714693 0.0178316690 0.032097004 0.0171184023 0.018544936
## 12   0.0000000000 0.1666666667 0.666666667 0.0000000000 0.000000000
## 13   0.0000000000 0.0000000000 0.000000000 0.0175438596 0.035087719
## 14   0.0000000000 0.0083333333 0.033333333 0.0083333333 0.008333333
## 15   0.0000000000 0.0370370370 0.000000000 0.0000000000 0.000000000
## 16   0.0322580645 0.0000000000 0.000000000 0.0000000000 0.000000000
## 17   0.0000000000 0.0401606426 0.008032129 0.1686746988 0.076305221
## 18   0.0068965517 0.0000000000 0.006896552 0.0275862069 0.000000000
## 19   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 20   0.0087565674 0.0227670753 0.015761821 0.0280210158 0.017513135
## 21   0.0070588235 0.0188235294 0.103529412 0.0352941176 0.004705882
## 22   0.0000000000 0.0000000000 0.020833333 0.0000000000 0.000000000
## 23   0.0339321357 0.0518962076 0.029940120 0.0259481038 0.023952096
## 24   0.0033898305 0.0033898305 0.020338983 0.0101694915 0.010169492
## 25   0.0227272727 0.0227272727 0.045454545 0.0000000000 0.045454545
## 26   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 27   0.0172413793 0.0172413793 0.034482759 0.0229885057 0.011494253
## 28   0.0117187500 0.0234375000 0.066406250 0.0273437500 0.031250000
## 29   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 30   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 31   0.0046349942 0.0150637312 0.017381228 0.0220162225 0.031286211
## 32   0.0000000000 0.0043478261 0.000000000 0.0565217391 0.017391304
## 33   0.0000000000 0.0000000000 0.014423077 0.0336538462 0.019230769
## 34   0.0037831021 0.0063051702 0.037831021 0.0075662043 0.012610340
## 35   0.0058309038 0.0029154519 0.017492711 0.0174927114 0.034985423
## 36   0.0054054054 0.0054054054 0.010810811 0.0054054054 0.005405405
## 37   0.0869565217 0.0434782609 0.000000000 0.0000000000 0.000000000
## 38   0.0114285714 0.0057142857 0.017142857 0.0228571429 0.022857143
## 39   0.0138888889 0.0000000000 0.000000000 0.0138888889 0.020833333
## 40   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 41   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 42   0.0261780105 0.0157068063 0.020942408 0.0000000000 0.015706806
## 43   0.0212765957 0.0106382979 0.010638298 0.0000000000 0.000000000
## 44   0.0074601560 0.0149203120 0.014581214 0.0200067820 0.025432350
## 45   0.0017636684 0.0026455026 0.009700176 0.0088183422 0.014109347
## 46   0.0000000000 0.0013661202 0.004098361 0.0068306011 0.010928962
## 47   0.0115606936 0.0057803468 0.002890173 0.0086705202 0.000000000
## 48   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 49   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 50   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 51   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 52   0.0000000000 0.0000000000 0.007194245 0.0179856115 0.017985612
## 53   0.0167224080 0.0133779264 0.010033445 0.0133779264 0.010033445
## 54   0.0178571429 0.0000000000 0.000000000 0.0000000000 0.000000000
## 55   0.0253807107 0.0000000000 0.010152284 0.0050761421 0.000000000
## 56   0.0051466804 0.0082346886 0.007720021 0.0118373649 0.016469377
## 57   0.0303030303 0.0000000000 0.053030303 0.0000000000 0.045454545
## 58   0.0139442231 0.0079681275 0.001992032 0.0199203187 0.019920319
## 59   0.0191326531 0.0051020408 0.024234694 0.0178571429 0.015306122
## 60   0.0065789474 0.0197368421 0.032894737 0.0065789474 0.019736842
## 61   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 62   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 63   0.0059171598 0.0029585799 0.011834320 0.0059171598 0.029585799
## 64   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 65   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 66   0.0134357006 0.0345489443 0.011516315 0.0211132438 0.007677543
## 67   0.0119047619 0.0000000000 0.023809524 0.0000000000 0.023809524
## 68   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 69   0.0135811294 0.0421729807 0.018584703 0.0436025733 0.048606147
## 70   0.0000000000 0.0000000000 0.000000000 0.0227272727 0.250000000
## 71   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 72   0.0000000000 0.0000000000 0.177419355 0.0645161290 0.000000000
## 73   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 74   0.0065717415 0.0043811610 0.006024096 0.0043811610 0.007119387
## 75   0.0039965744 0.0059948615 0.007707679 0.0085640879 0.025406794
## 76   0.0163934426 0.0182149362 0.012750455 0.0218579235 0.023679417
## 77   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 78   0.0103092784 0.0137457045 0.013745704 0.0309278351 0.003436426
## 79   0.0071174377 0.0035587189 0.010676157 0.0142348754 0.024911032
## 80   0.0185185185 0.0740740741 0.092592593 0.0925925926 0.037037037
## 81   0.0043103448 0.0086206897 0.008620690 0.0043103448 0.004310345
## 82   0.0212765957 0.0106382979 0.010638298 0.0106382979 0.000000000
## 83   0.0340425532 0.0042553191 0.002836879 0.0099290780 0.018439716
## 84   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 85   0.0149253731 0.0089552239 0.005970149 0.0328358209 0.017910448
## 86   0.0312500000 0.0125000000 0.006250000 0.0093750000 0.000000000
## 87   0.0217391304 0.1014492754 0.028985507 0.0326086957 0.021739130
## 88   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 89   0.0085372795 0.0017074559 0.012521343 0.0159362550 0.011383039
## 90   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 91   0.0000000000 0.0909090909 0.000000000 0.0000000000 0.045454545
## 92   0.0311926606 0.0568807339 0.038532110 0.0183486239 0.012844037
## 93   0.0161812298 0.0032362460 0.003236246 0.0161812298 0.032362460
## 94   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 95   0.0000000000 0.1052631579 0.105263158 0.0350877193 0.035087719
## 96   0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 97   0.0152722444 0.0444887118 0.010624170 0.0338645418 0.017928287
## 98   0.0410958904 0.0410958904 0.013698630 0.0045662100 0.022831050
## 99   0.0016750419 0.0000000000 0.001675042 0.0016750419 0.003350084
## 100  0.0136986301 0.0684931507 0.013698630 0.0000000000 0.027397260
## 101  0.0480000000 0.0340000000 0.006000000 0.0200000000 0.038000000
## 102  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 103  0.0231660232 0.0154440154 0.023166023 0.0424710425 0.011583012
## 104  0.0000000000 0.1724137931 0.000000000 0.0344827586 0.068965517
## 105  0.0193548387 0.0258064516 0.019354839 0.0258064516 0.006451613
## 106  0.0079295154 0.0061674009 0.010572687 0.0070484581 0.013215859
## 107  0.0119047619 0.0198412698 0.027777778 0.0119047619 0.015873016
## 108  0.0275229358 0.0366972477 0.000000000 0.0091743119 0.018348624
## 109  0.0097345133 0.0238938053 0.031858407 0.0353982301 0.020353982
## 110  0.0000000000 0.0000000000 0.086956522 0.1304347826 0.043478261
## 111  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 112  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 113  0.0167253521 0.0343309859 0.011443662 0.0202464789 0.017605634
## 114  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 115  0.0287425150 0.0323353293 0.019161677 0.0119760479 0.009580838
## 116  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.033333333
## 117  0.0095238095 0.0000000000 0.028571429 0.0000000000 0.000000000
## 118  0.0015205271 0.0020273695 0.006588951 0.0065889508 0.030917385
## 119  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 120  0.0000000000 0.0000000000 0.028571429 0.0000000000 0.000000000
## 121  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 122  0.0082417582 0.0192307692 0.010989011 0.0054945055 0.008241758
## 123  0.0237154150 0.0039525692 0.034255599 0.0223978920 0.011857708
## 124  0.0434782609 0.0160183066 0.041189931 0.0297482838 0.020594966
## 125  0.0246913580 0.0370370370 0.012345679 0.0246913580 0.012345679
## 126  0.0178359096 0.0321046373 0.013079667 0.0261593341 0.021403092
## 127  0.0000000000 0.0000000000 0.045454545 0.0000000000 0.022727273
## 128  0.0134318334 0.0114170584 0.010073875 0.0060443251 0.003357958
## 129  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 130  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 131  0.0000000000 0.0416666667 0.000000000 0.0000000000 0.000000000
## 132  0.0491493384 0.0151228733 0.015122873 0.0264650284 0.026465028
## 133  0.0000000000 0.5000000000 0.000000000 0.0000000000 0.000000000
## 134  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 135  0.0180654874 0.0094091080 0.018818216 0.0133609334 0.036507339
## 136  0.0200000000 0.0300000000 0.000000000 0.0100000000 0.010000000
## 137  0.0000000000 0.0311111111 0.008888889 0.0044444444 0.035555556
## 138  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 139  0.0006830601 0.0006830601 0.002732240 0.0006830601 0.000000000
## 140  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 141  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 142  0.0216450216 0.0173160173 0.038961039 0.0476190476 0.030303030
## 143  0.0000000000 0.0000000000 0.000000000 0.0277777778 0.027777778
## 144  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 145  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 146  0.0033003300 0.0066006601 0.006600660 0.0462046205 0.009900990
## 147  0.0000000000 0.0392156863 0.000000000 0.0588235294 0.000000000
## 148  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.058823529
## 149  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 150  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 151  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 152  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 153  0.0000000000 0.0000000000 0.000000000 0.0677966102 0.050847458
## 154  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 155  0.0045495905 0.0009099181 0.014558690 0.0263876251 0.012738854
## 156  0.0030800821 0.0051334702 0.005133470 0.0071868583 0.010780287
## 157  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 158  0.0081967213 0.0000000000 0.016393443 0.0081967213 0.032786885
## 159  0.0125628141 0.0326633166 0.040201005 0.0263819095 0.025125628
## 160  0.0080000000 0.0181818182 0.018181818 0.0152727273 0.017090909
## 161  0.0105263158 0.0491228070 0.007017544 0.0140350877 0.003508772
## 162  0.0106382979 0.0106382979 0.021276596 0.0106382979 0.021276596
## 163  0.0000000000 0.0114942529 0.000000000 0.0114942529 0.045977011
## 164  0.0024449878 0.0220048900 0.036674817 0.0293398533 0.022004890
## 165  0.0364963504 0.0364963504 0.007299270 0.0218978102 0.000000000
## 166  0.0139860140 0.0153846154 0.008391608 0.0130536131 0.021445221
## 167  0.0585365854 0.0097560976 0.078048780 0.0146341463 0.019512195
## 168  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 169  0.0059523810 0.0238095238 0.000000000 0.0059523810 0.029761905
## 170  0.0000000000 0.0000000000 0.006849315 0.0000000000 0.013698630
## 171  0.0118343195 0.0591715976 0.011834320 0.0059171598 0.011834320
## 172  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 173  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 174  0.0010090817 0.0252270434 0.014127144 0.0201816347 0.019172553
## 175  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 176  0.0130434783 0.0043478261 0.004347826 0.0086956522 0.026086957
## 177  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 178  0.0084902178 0.0059062385 0.009597638 0.0095976375 0.010705057
## 179  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 180  0.0071428571 0.0107142857 0.010714286 0.0321428571 0.039285714
## 181  0.0055928412 0.0331096197 0.017225951 0.0105145414 0.007829978
## 182  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 183  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 184  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 185  0.0091533181 0.0077803204 0.032494279 0.0114416476 0.008237986
## 186  0.0144665461 0.0198915009 0.044303797 0.0289330922 0.011754069
## 187  0.0000000000 0.0000000000 0.002923977 0.0146198830 0.008771930
## 188  0.0066815145 0.0089086860 0.028953229 0.0044543430 0.000000000
## 189  0.0086021505 0.0064516129 0.012903226 0.0086021505 0.025806452
## 190  0.0126050420 0.0042016807 0.025210084 0.0252100840 0.084033613
## 191  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.078125000
## 192  0.0365126677 0.0417287630 0.014157973 0.0126676602 0.009687034
## 193  0.0093457944 0.0186915888 0.046728972 0.0186915888 0.009345794
## 194  0.0262008734 0.0000000000 0.008733624 0.0174672489 0.043668122
## 195  0.0000000000 0.0222222222 0.022222222 0.0111111111 0.000000000
## 196  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 197  0.0106177606 0.0193050193 0.016409266 0.0222007722 0.041505792
## 198  0.0200000000 0.0000000000 0.000000000 0.0600000000 0.000000000
## 199  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 200  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 201  0.0109649123 0.0986842105 0.010964912 0.0109649123 0.002192982
## 202  0.0454545455 0.0000000000 0.090909091 0.0000000000 0.000000000
## 203  0.0133333333 0.0000000000 0.000000000 0.0000000000 0.093333333
## 204  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 205  0.0035026270 0.0064214828 0.023350846 0.0122591944 0.033274956
## 206  0.0138248848 0.0552995392 0.025345622 0.0460829493 0.011520737
## 207  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 208  0.0000000000 0.0224719101 0.011235955 0.0112359551 0.073033708
## 209  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 210  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 211  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 212  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 213  0.0142180095 0.0023696682 0.005924171 0.0094786730 0.002369668
## 214  0.0000000000 0.0135135135 0.013513514 0.0000000000 0.013513514
## 215  0.0000000000 0.0333333333 0.000000000 0.0333333333 0.133333333
## 216  0.0000000000 0.0000000000 0.011627907 0.0174418605 0.023255814
## 217  0.0000000000 0.0000000000 0.000000000 0.0291262136 0.038834951
## 218  0.0071428571 0.0000000000 0.014285714 0.0142857143 0.007142857
## 219  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 220  0.0192307692 0.0000000000 0.019230769 0.0096153846 0.038461538
## 221  0.0191082803 0.0063694268 0.019108280 0.0191082803 0.000000000
## 222  0.0073030777 0.0026082420 0.003651539 0.0125195618 0.019300991
## 223  0.0000000000 0.0000000000 0.050228311 0.0456621005 0.009132420
## 224  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 225  0.0019011407 0.0038022814 0.015209125 0.0019011407 0.020912548
## 226  0.0000000000 0.0000000000 0.000000000 0.0526315789 0.000000000
## 227  0.0129870130 0.0519480519 0.025974026 0.0000000000 0.012987013
## 228  0.0000000000 0.0095238095 0.009523810 0.0000000000 0.000000000
## 229  0.0022883295 0.0102974828 0.017162471 0.0057208238 0.033180778
## 230  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 231  0.0013850416 0.0051444400 0.005342303 0.0116739216 0.007518797
## 232  0.0273224044 0.0437158470 0.005464481 0.0163934426 0.016393443
## 233  0.0123456790 0.0000000000 0.049382716 0.0164609053 0.090534979
## 234  0.0022779043 0.0000000000 0.004555809 0.0000000000 0.006833713
## 235  0.0060606061 0.0030303030 0.007575758 0.0242424242 0.006060606
## 236  0.0037652965 0.0081581425 0.006275494 0.0147474114 0.005020395
## 237  0.0208136235 0.0151371807 0.012298959 0.0198675497 0.011352886
## 238  0.0228542407 0.0208227527 0.021838497 0.0106653123 0.038598273
## 239  0.0167286245 0.0390334572 0.014869888 0.0185873606 0.029739777
## 240  0.0000000000 0.1600000000 0.140000000 0.1400000000 0.040000000
## 241  0.0288461538 0.0000000000 0.000000000 0.0288461538 0.019230769
## 242  0.0200729927 0.0063868613 0.009124088 0.0036496350 0.005474453
## 243  0.0277777778 0.0158730159 0.031746032 0.0515873016 0.000000000
## 244  0.0177215190 0.0202531646 0.020253165 0.0151898734 0.007594937
## 245  0.0147058824 0.0205882353 0.017647059 0.0470588235 0.011764706
## 246  0.0174672489 0.0145560408 0.011644833 0.0276564774 0.045123726
## 247  0.0166666667 0.0000000000 0.033333333 0.0166666667 0.033333333
## 248  0.0057471264 0.0172413793 0.000000000 0.0287356322 0.025862069
## 249  0.0608695652 0.0086956522 0.008695652 0.0000000000 0.104347826
## 250  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 251  0.0089285714 0.0178571429 0.017857143 0.0089285714 0.000000000
## 252  0.0361445783 0.0000000000 0.000000000 0.0120481928 0.000000000
## 253  0.0156250000 0.0156250000 0.000000000 0.0156250000 0.031250000
## 254  0.0410958904 0.0000000000 0.013698630 0.0136986301 0.000000000
## 255  0.0153846154 0.0692307692 0.015384615 0.0153846154 0.023076923
## 256  0.0326086957 0.0000000000 0.010869565 0.0217391304 0.021739130
## 257  0.0576923077 0.0000000000 0.019230769 0.0192307692 0.000000000
## 258  0.0263157895 0.0263157895 0.052631579 0.0263157895 0.000000000
## 259  0.0144927536 0.0289855072 0.000000000 0.0144927536 0.028985507
## 260  0.0288461538 0.0096153846 0.009615385 0.0192307692 0.000000000
## 261  0.0166666667 0.0500000000 0.000000000 0.0166666667 0.016666667
## 262  0.0317460317 0.0000000000 0.031746032 0.0317460317 0.000000000
## 263  0.0303030303 0.0606060606 0.000000000 0.0151515152 0.015151515
## 264  0.0131578947 0.0263157895 0.013157895 0.0263157895 0.013157895
## 265  0.0158013544 0.0293453725 0.101580135 0.0293453725 0.022573363
## 266  0.0060975610 0.0142276423 0.018292683 0.0162601626 0.010162602
## 267  0.0112424330 0.0031709426 0.009801095 0.0112424330 0.011242433
## 268  0.0345211581 0.0322939866 0.047884187 0.0244988864 0.021158129
## 269  0.0000000000 0.0294117647 0.014705882 0.0441176471 0.000000000
## 270  0.0230769231 0.0076923077 0.000000000 0.0076923077 0.007692308
## 271  0.0243902439 0.0365853659 0.012195122 0.0121951220 0.000000000
## 272  0.0285714286 0.0000000000 0.000000000 0.0095238095 0.000000000
## 273  0.0354609929 0.0212765957 0.021276596 0.0141843972 0.000000000
## 274  0.0312500000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 275  0.0254237288 0.0000000000 0.000000000 0.0084745763 0.000000000
## 276  0.0217391304 0.0000000000 0.000000000 0.0144927536 0.014492754
## 277  0.0175781250 0.0117187500 0.007812500 0.0117187500 0.000000000
## 278  0.0188383046 0.0204081633 0.028257457 0.0188383046 0.015698587
## 279  0.0300000000 0.0500000000 0.080000000 0.0300000000 0.010000000
## 280  0.0163934426 0.0327868852 0.008196721 0.0245901639 0.024590164
## 281  0.0126582278 0.0000000000 0.012658228 0.0000000000 0.000000000
## 282  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 283  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 284  0.0000000000 0.1111111111 0.000000000 0.0000000000 0.000000000
## 285  0.0384615385 0.0769230769 0.076923077 0.0000000000 0.000000000
## 286  0.0500000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 287  0.0909090909 0.0000000000 0.000000000 0.0000000000 0.000000000
## 288  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 289  0.0000000000 0.0000000000 0.000000000 0.1111111111 0.111111111
## 290  0.0151515152 0.0151515152 0.000000000 0.0000000000 0.000000000
## 291  0.0434782609 0.0000000000 0.043478261 0.0000000000 0.000000000
## 292  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 293  0.0000000000 0.0714285714 0.071428571 0.0000000000 0.000000000
## 294  0.0192307692 0.0192307692 0.019230769 0.0000000000 0.000000000
## 295  0.0192307692 0.0000000000 0.019230769 0.0192307692 0.009615385
## 296  0.0000000000 0.0131578947 0.013157895 0.0131578947 0.052631579
## 297  0.0000000000 0.1489361702 0.021276596 0.0425531915 0.042553191
## 298  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 299  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 300  0.0000000000 0.0192307692 0.057692308 0.0576923077 0.000000000
## 301  0.0256756757 0.0270270270 0.040540541 0.0283783784 0.041891892
## 302  0.0000000000 0.0000000000 0.037037037 0.0000000000 0.000000000
## 303  0.0000000000 0.0112359551 0.000000000 0.0224719101 0.000000000
## 304  0.0096153846 0.0000000000 0.000000000 0.0000000000 0.038461538
## 305  0.0169902913 0.0048543689 0.089805825 0.0388349515 0.021844660
## 306  0.0121816168 0.0227021041 0.021040975 0.0243632337 0.018826135
## 307  0.0097560976 0.0487804878 0.019512195 0.0097560976 0.029268293
## 308  0.0000000000 0.0508474576 0.000000000 0.0000000000 0.000000000
## 309  0.0157480315 0.0157480315 0.015748031 0.0157480315 0.007874016
## 310  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 311  0.0024979184 0.0066611157 0.016652789 0.0216486261 0.028309742
## 312  0.0512640449 0.0207162921 0.060042135 0.0431882022 0.028089888
## 313  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 314  0.0960451977 0.0225988701 0.050847458 0.0112994350 0.022598870
## 315  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 316  0.0297619048 0.0357142857 0.017857143 0.1150793651 0.031746032
## 317  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 318  0.0059405941 0.0178217822 0.003960396 0.0257425743 0.023762376
## 319  0.0000000000 0.0243902439 0.008130081 0.0162601626 0.008130081
## 320  0.0364025696 0.0364025696 0.010706638 0.0578158458 0.025695931
## 321  0.0000000000 0.0000000000 0.030120482 0.0240963855 0.030120482
## 322  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 323  0.0193133047 0.0107296137 0.019313305 0.0064377682 0.055793991
## 324  0.0000000000 0.0416666667 0.031250000 0.0312500000 0.010416667
## 325  0.1702127660 0.0000000000 0.000000000 0.0000000000 0.021276596
## 326  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 327  0.0718954248 0.0130718954 0.032679739 0.0457516340 0.019607843
## 328  0.0080000000 0.0000000000 0.000000000 0.0160000000 0.024000000
## 329  0.0097902098 0.0195804196 0.009790210 0.0195804196 0.009790210
## 330  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 331  0.0256410256 0.0256410256 0.017094017 0.0085470085 0.008547009
## 332  0.0986238532 0.0191131498 0.030581040 0.0145259939 0.022171254
## 333  0.0233918129 0.0233918129 0.005847953 0.0116959064 0.035087719
## 334  0.0291390728 0.0198675497 0.010596026 0.0344370861 0.011920530
## 335  0.0526315789 0.0197368421 0.013157895 0.0263157895 0.032894737
## 336  0.0159151194 0.0185676393 0.047745358 0.0159151194 0.029177719
## 337  0.0366666667 0.0222222222 0.017777778 0.0144444444 0.012222222
## 338  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 339  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 340  0.0338028169 0.0281690141 0.061971831 0.0197183099 0.014084507
## 341  0.0101180438 0.0236087690 0.023608769 0.0320404722 0.025295110
## 342  0.0000000000 0.0606060606 0.030303030 0.0000000000 0.015151515
## 343  0.0798898072 0.0550964187 0.008264463 0.0027548209 0.024793388
## 344  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 345  0.0208333333 0.0000000000 0.020833333 0.0208333333 0.000000000
## 346  0.0000000000 0.4024390244 0.024390244 0.0365853659 0.012195122
## 347  0.0284360190 0.0000000000 0.000000000 0.0000000000 0.023696682
## 348  0.0570652174 0.0081521739 0.016304348 0.0461956522 0.024456522
## 349  0.0027624309 0.0165745856 0.017955801 0.0234806630 0.013812155
## 350  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.026315789
## 351  0.0328227571 0.0109409190 0.028446389 0.0328227571 0.026258206
## 352  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 353  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 354  0.0160000000 0.0053333333 0.013333333 0.0346666667 0.013333333
## 355  0.0068965517 0.0551724138 0.082758621 0.0068965517 0.055172414
## 356  0.0150375940 0.0150375940 0.015037594 0.0150375940 0.015037594
## 357  0.0068965517 0.1862068966 0.006896552 0.0551724138 0.062068966
## 358  0.0227272727 0.0272727273 0.009090909 0.0136363636 0.013636364
## 359  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 360  0.0153452685 0.0179028133 0.010230179 0.0575447570 0.025575448
## 361  0.0606796117 0.0279126214 0.044902913 0.0157766990 0.029126214
## 362  0.0131578947 0.0131578947 0.039473684 0.0000000000 0.019736842
## 363  0.0302450230 0.0524502297 0.047473201 0.0581929556 0.039050536
## 364  0.0205128205 0.0666666667 0.010256410 0.0307692308 0.020512821
## 365  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 366  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 367  0.0247933884 0.0764462810 0.026859504 0.0227272727 0.037190083
## 368  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 369  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 370  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 371  0.1025641026 0.0769230769 0.025641026 0.0000000000 0.102564103
## 372  0.0161812298 0.0000000000 0.009708738 0.0000000000 0.000000000
## 373  0.0444444444 0.0000000000 0.000000000 0.0222222222 0.000000000
## 374  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 375  0.0134228188 0.0290827740 0.027964206 0.0212527964 0.034675615
## 376  0.0192307692 0.0256410256 0.038461538 0.0384615385 0.012820513
## 377  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.055555556
## 378  0.0126582278 0.0316455696 0.031645570 0.0253164557 0.018987342
## 379  0.0028129395 0.0168776371 0.154711674 0.0281293952 0.037974684
## 380  0.0066225166 0.0066225166 0.000000000 0.0132450331 0.006622517
## 381  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 382  0.0018596002 0.0023245002 0.008368201 0.0060437006 0.252905625
## 383  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 384  0.0344827586 0.0172413793 0.000000000 0.0000000000 0.017241379
## 385  0.0313588850 0.0243902439 0.012195122 0.0139372822 0.020905923
## 386  0.0000000000 0.0000000000 0.000000000 0.2352941176 0.117647059
## 387  0.0033898305 0.0067796610 0.013559322 0.0101694915 0.016949153
## 388  0.0198675497 0.0264900662 0.046357616 0.0198675497 0.019867550
## 389  0.0212335693 0.0080889788 0.053589484 0.0303336704 0.091001011
## 390  0.0363636364 0.0181818182 0.000000000 0.0727272727 0.018181818
## 391  0.0883977901 0.0220994475 0.033149171 0.0497237569 0.022099448
## 392  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 393  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 394  0.0039682540 0.0039682540 0.019841270 0.0119047619 0.003968254
## 395  0.0282885431 0.0325318246 0.026874116 0.0099009901 0.016973126
## 396  0.0178571429 0.0000000000 0.000000000 0.0000000000 0.035714286
## 397  0.0119940030 0.0074962519 0.029985007 0.0314842579 0.016491754
## 398  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.043478261
## 399  0.0528000000 0.0368000000 0.016000000 0.0192000000 0.033600000
## 400  0.0333333333 0.0000000000 0.000000000 0.0000000000 0.033333333
## 401  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 402  0.0176678445 0.0318021201 0.021201413 0.0106007067 0.081272085
## 403  0.0490045942 0.0260336907 0.151607963 0.0781010720 0.041347626
## 404  0.0265957447 0.0478723404 0.005319149 0.0053191489 0.015957447
## 405  0.0454545455 0.0113636364 0.000000000 0.0568181818 0.034090909
## 406  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 407  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 408  0.0000000000 0.0150753769 0.010050251 0.0050251256 0.020100503
## 409  0.0119047619 0.0535714286 0.029761905 0.0119047619 0.029761905
## 410  0.0285714286 0.0000000000 0.171428571 0.0000000000 0.000000000
## 411  0.0192884698 0.0218602658 0.015430776 0.0162880411 0.014573511
## 412  0.0113636364 0.0113636364 0.000000000 0.0681818182 0.022727273
## 413  0.0000000000 0.0000000000 0.057142857 0.0285714286 0.028571429
## 414  0.0346399271 0.0164083865 0.010938924 0.0291704649 0.044667274
## 415  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 416  0.0276497696 0.0414746544 0.069124424 0.0184331797 0.050691244
## 417  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 418  0.0561797753 0.0224719101 0.008988764 0.0067415730 0.006741573
## 419  0.0166666667 0.0500000000 0.000000000 0.0000000000 0.000000000
## 420  0.0289256198 0.0206611570 0.055785124 0.0309917355 0.039256198
## 421  0.0357142857 0.0357142857 0.000000000 0.0357142857 0.000000000
## 422  0.0396825397 0.0158730159 0.023809524 0.0158730159 0.023809524
## 423  0.0149253731 0.0149253731 0.014925373 0.0149253731 0.014925373
## 424  0.0000000000 0.0574712644 0.011494253 0.0000000000 0.022988506
## 425  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 426  0.0000000000 0.1052631579 0.000000000 0.0000000000 0.000000000
## 427  0.1827706636 0.0698486612 0.020954598 0.0197904540 0.034924331
## 428  0.0050000000 0.0250000000 0.025000000 0.0350000000 0.010000000
## 429  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.014084507
## 430  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 431  0.0714285714 0.0000000000 0.000000000 0.0000000000 0.000000000
## 432  0.0000000000 0.0000000000 0.000000000 0.0384615385 0.000000000
## 433  0.0079365079 0.0158730159 0.007936508 0.0238095238 0.007936508
## 434  0.0189125296 0.0307328605 0.009456265 0.0543735225 0.016548463
## 435  0.0000000000 0.0156250000 0.000000000 0.0000000000 0.031250000
## 436  0.0156250000 0.0078125000 0.039062500 0.0000000000 0.015625000
## 437  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 438  0.0305343511 0.0076335878 0.000000000 0.0076335878 0.015267176
## 439  0.0196078431 0.0588235294 0.000000000 0.0000000000 0.000000000
## 440  0.0000000000 0.0270270270 0.009009009 0.0270270270 0.009009009
## 441  0.0106382979 0.0531914894 0.031914894 0.0638297872 0.042553191
## 442  0.0153846154 0.0615384615 0.061538462 0.0256410256 0.061538462
## 443  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 444  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 445  0.0109289617 0.0054644809 0.021857923 0.0109289617 0.009107468
## 446  0.0000000000 0.0000000000 0.000000000 0.0363636364 0.054545455
## 447  0.0138888889 0.0555555556 0.000000000 0.0138888889 0.000000000
## 448  0.0158730159 0.0317460317 0.063492063 0.0317460317 0.047619048
## 449  0.0328719723 0.0207612457 0.025951557 0.0069204152 0.038062284
## 450  0.0079617834 0.0175159236 0.009554140 0.0414012739 0.019108280
## 451  0.0000000000 0.0303030303 0.000000000 0.0000000000 0.030303030
## 452  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 453  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.071428571
## 454  0.0285714286 0.0000000000 0.014285714 0.0571428571 0.028571429
## 455  0.0526315789 0.0000000000 0.000000000 0.1052631579 0.000000000
## 456  0.0701754386 0.0350877193 0.000000000 0.0175438596 0.035087719
## 457  0.0063492063 0.0063492063 0.009523810 0.0190476190 0.025396825
## 458  0.0131578947 0.0131578947 0.013157895 0.0657894737 0.000000000
## 459  0.0000000000 0.0224719101 0.000000000 0.0561797753 0.000000000
## 460  0.0176470588 0.0294117647 0.023529412 0.0323529412 0.020588235
## 461  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 462  0.0200000000 0.0200000000 0.020000000 0.0200000000 0.020000000
## 463  0.0000000000 0.0120481928 0.024096386 0.0120481928 0.012048193
## 464  0.0816326531 0.0051020408 0.040816327 0.0816326531 0.045918367
## 465  0.0278745645 0.0487804878 0.000000000 0.0278745645 0.059233449
## 466  0.0625000000 0.0312500000 0.031250000 0.0312500000 0.000000000
## 467  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 468  0.0291970803 0.0218978102 0.007299270 0.0583941606 0.021897810
## 469  0.0197628458 0.0237154150 0.003952569 0.0395256917 0.031620553
## 470  0.0212014134 0.0176678445 0.017667845 0.0176678445 0.003533569
## 471  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.032258065
## 472  0.0129310345 0.0560344828 0.056034483 0.0215517241 0.017241379
## 473  0.0000000000 0.0000000000 0.000000000 0.0526315789 0.000000000
## 474  0.0000000000 0.0571428571 0.000000000 0.0000000000 0.000000000
## 475  0.0000000000 0.0277777778 0.027777778 0.0138888889 0.027777778
## 476  0.0572687225 0.0572687225 0.052863436 0.0264317181 0.013215859
## 477  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 478  0.0000000000 0.0285714286 0.000000000 0.0000000000 0.000000000
## 479  0.0310077519 0.0232558140 0.015503876 0.0232558140 0.023255814
## 480  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.214285714
## 481  0.0398550725 0.0108695652 0.010869565 0.0144927536 0.032608696
## 482  0.0000000000 0.0454545455 0.000000000 0.0454545455 0.000000000
## 483  0.0185185185 0.0370370370 0.037037037 0.0185185185 0.037037037
## 484  0.0400000000 0.0200000000 0.100000000 0.0400000000 0.020000000
## 485  0.0434782609 0.0000000000 0.086956522 0.0000000000 0.000000000
## 486  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 487  0.0000000000 0.0158730159 0.015873016 0.0158730159 0.007936508
## 488  0.0240963855 0.0000000000 0.048192771 0.0240963855 0.000000000
## 489  0.0714285714 0.0000000000 0.000000000 0.0000000000 0.000000000
## 490  0.0422535211 0.0000000000 0.000000000 0.0000000000 0.000000000
## 491  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 492  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 493  0.0000000000 0.0000000000 0.071428571 0.0000000000 0.000000000
## 494  0.0507212657 0.0302466263 0.014890647 0.0074453234 0.007910656
## 495  0.0666666667 0.0000000000 0.000000000 0.0000000000 0.000000000
## 496  0.0574712644 0.0459770115 0.045977011 0.0229885057 0.000000000
## 497  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 498  0.0000000000 0.0000000000 0.000000000 0.0344827586 0.000000000
## 499  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 500  0.0666666667 0.0000000000 0.000000000 0.0000000000 0.000000000
## 501  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 502  0.0000000000 0.0000000000 0.111111111 0.0000000000 0.000000000
## 503  0.0533333333 0.0177777778 0.040000000 0.0311111111 0.013333333
## 504  0.0706896552 0.0405172414 0.026724138 0.0137931034 0.030172414
## 505  0.0298685783 0.0286738351 0.039426523 0.0131421744 0.031063321
## 506  0.0000000000 0.0400000000 0.040000000 0.0000000000 0.000000000
## 507  0.0350877193 0.0000000000 0.017543860 0.0175438596 0.035087719
## 508  0.0361663653 0.0343580470 0.054249548 0.0289330922 0.001808318
## 509  0.0454545455 0.0454545455 0.000000000 0.0000000000 0.045454545
## 510  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 511  0.0185873606 0.0260223048 0.029739777 0.0223048327 0.052044610
## 512  0.0186915888 0.0000000000 0.056074766 0.0373831776 0.037383178
## 513  0.0103092784 0.0309278351 0.020618557 0.0103092784 0.000000000
## 514  0.0048076923 0.0000000000 0.009615385 0.0000000000 0.000000000
## 515  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 516  0.0666666667 0.0333333333 0.000000000 0.0666666667 0.066666667
## 517  0.0000000000 0.0000000000 0.000000000 0.1250000000 0.062500000
## 518  0.0000000000 0.0000000000 0.000000000 0.2105263158 0.052631579
## 519  0.0380228137 0.0380228137 0.019011407 0.0190114068 0.053231939
## 520  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 521  0.0612244898 0.0000000000 0.000000000 0.0000000000 0.000000000
## 522  0.0300000000 0.0200000000 0.020000000 0.0066666667 0.030000000
## 523  0.0204081633 0.0000000000 0.000000000 0.0204081633 0.000000000
## 524  0.0196078431 0.0196078431 0.000000000 0.0588235294 0.000000000
## 525  0.0181818182 0.0000000000 0.000000000 0.0727272727 0.000000000
## 526  0.0149253731 0.0000000000 0.014925373 0.0149253731 0.000000000
## 527  0.0506329114 0.0253164557 0.012658228 0.0126582278 0.000000000
## 528  0.0240963855 0.0240963855 0.018072289 0.0421686747 0.030120482
## 529  0.0000000000 0.0618556701 0.041237113 0.0927835052 0.020618557
## 530  0.0392156863 0.0000000000 0.000000000 0.0196078431 0.000000000
## 531  0.0303030303 0.0000000000 0.000000000 0.0000000000 0.030303030
## 532  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 533  0.0269230769 0.0115384615 0.007692308 0.0192307692 0.034615385
## 534  0.0833333333 0.0833333333 0.000000000 0.0833333333 0.000000000
## 535  0.0000000000 0.0144927536 0.028985507 0.0000000000 0.000000000
## 536  0.0204081633 0.0408163265 0.000000000 0.0408163265 0.020408163
## 537  0.0800000000 0.0200000000 0.000000000 0.0000000000 0.000000000
## 538  0.0666666667 0.0000000000 0.000000000 0.0000000000 0.000000000
## 539  0.0222222222 0.0444444444 0.088888889 0.0222222222 0.000000000
## 540  0.0606060606 0.0000000000 0.000000000 0.0000000000 0.000000000
## 541  0.0047393365 0.0473933649 0.066350711 0.0995260664 0.028436019
## 542  0.0491803279 0.0000000000 0.000000000 0.0000000000 0.000000000
## 543  0.0517241379 0.0000000000 0.000000000 0.0517241379 0.025862069
## 544  0.0487804878 0.0243902439 0.000000000 0.0487804878 0.000000000
## 545  0.0000000000 0.1538461538 0.000000000 0.0769230769 0.000000000
## 546  0.0000000000 0.0208333333 0.020833333 0.0000000000 0.000000000
## 547  0.0279069767 0.0046511628 0.013953488 0.0139534884 0.009302326
## 548  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 549  0.0380952381 0.0285714286 0.009523810 0.0000000000 0.028571429
## 550  0.0408163265 0.0816326531 0.020408163 0.0000000000 0.000000000
## 551  0.0327868852 0.0163934426 0.032786885 0.0000000000 0.000000000
## 552  0.0425531915 0.0212765957 0.042553191 0.0000000000 0.000000000
## 553  0.0625000000 0.0208333333 0.000000000 0.0000000000 0.000000000
## 554  0.0508474576 0.0677966102 0.016949153 0.0169491525 0.000000000
## 555  0.0461538462 0.0461538462 0.015384615 0.0461538462 0.000000000
## 556  0.0461538462 0.0000000000 0.000000000 0.0000000000 0.000000000
## 557  0.0354609929 0.0212765957 0.014184397 0.0425531915 0.007092199
## 558  0.0000000000 0.0000000000 0.066666667 0.0222222222 0.022222222
## 559  0.0142857143 0.0000000000 0.014285714 0.0142857143 0.000000000
## 560  0.0000000000 0.0000000000 0.000000000 0.0526315789 0.157894737
## 561  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 562  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 563  0.0160550459 0.0183486239 0.025229358 0.0068807339 0.066513761
## 564  0.0975609756 0.0487804878 0.000000000 0.0243902439 0.048780488
## 565  0.0000000000 0.1250000000 0.187500000 0.0625000000 0.000000000
## 566  0.0000000000 0.0384615385 0.000000000 0.0384615385 0.000000000
## 567  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 568  0.0740740741 0.0000000000 0.000000000 0.1111111111 0.037037037
## 569  0.0326086957 0.0362318841 0.046195652 0.0362318841 0.011775362
## 570  0.0094339623 0.0220125786 0.022012579 0.0251572327 0.018867925
## 571  0.0288461538 0.0144230769 0.038461538 0.0576923077 0.038461538
## 572  0.0000000000 0.0789473684 0.157894737 0.0394736842 0.052631579
## 573  0.0000000000 0.0344827586 0.034482759 0.0000000000 0.068965517
## 574  0.0285714286 0.0190476190 0.006349206 0.0158730159 0.019047619
## 575  0.0000000000 0.0000000000 0.000000000 0.0833333333 0.000000000
## 576  0.0400000000 0.0000000000 0.000000000 0.0400000000 0.000000000
## 577  0.0000000000 0.0000000000 0.000000000 0.0833333333 0.000000000
## 578  0.0000000000 0.0000000000 0.000000000 0.0714285714 0.000000000
## 579  0.0000000000 0.0000000000 0.000000000 0.0833333333 0.000000000
## 580  0.0000000000 0.0000000000 0.000000000 0.0357142857 0.000000000
## 581  0.0000000000 0.0000000000 0.000000000 0.0333333333 0.066666667
## 582  0.0000000000 0.0357142857 0.089285714 0.0357142857 0.017857143
## 583  0.0139534884 0.0418604651 0.004651163 0.0372093023 0.013953488
## 584  0.0000000000 0.0833333333 0.000000000 0.0000000000 0.000000000
## 585  0.0300000000 0.0350000000 0.010000000 0.0075000000 0.015000000
## 586  0.0000000000 0.0200000000 0.000000000 0.0000000000 0.020000000
## 587  0.0300395257 0.0237154150 0.030039526 0.0276679842 0.036363636
## 588  0.0312500000 0.0156250000 0.046875000 0.0000000000 0.031250000
## 589  0.0476190476 0.0793650794 0.063492063 0.0000000000 0.031746032
## 590  0.0400000000 0.0266666667 0.106666667 0.0933333333 0.026666667
## 591  0.0000000000 0.0000000000 0.111111111 0.0000000000 0.000000000
## 592  0.0192307692 0.0769230769 0.019230769 0.0192307692 0.000000000
## 593  0.0092497431 0.0154162384 0.016443988 0.0174717369 0.012332991
## 594  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 595  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.035714286
## 596  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 597  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 598  0.0000000000 0.1159420290 0.072463768 0.0144927536 0.014492754
## 599  0.0227272727 0.0681818182 0.000000000 0.0454545455 0.022727273
## 600  0.0270270270 0.0000000000 0.000000000 0.1891891892 0.000000000
## 601  0.0000000000 0.0400000000 0.000000000 0.0000000000 0.000000000
## 602  0.0000000000 0.0384615385 0.000000000 0.0000000000 0.000000000
## 603  0.0116279070 0.0116279070 0.058139535 0.0639534884 0.011627907
## 604  0.0000000000 0.0000000000 0.076923077 0.0000000000 0.000000000
## 605  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 606  0.0000000000 0.0333333333 0.000000000 0.0000000000 0.000000000
## 607  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 608  0.0117647059 0.0078431373 0.003921569 0.0313725490 0.023529412
## 609  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 610  0.0410958904 0.0000000000 0.000000000 0.0000000000 0.000000000
## 611  0.0344827586 0.0000000000 0.034482759 0.0000000000 0.000000000
## 612  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.129032258
## 613  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 614  0.0145985401 0.0218978102 0.036496350 0.0072992701 0.051094891
## 615  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 616  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 617  0.2000000000 0.0000000000 0.040000000 0.0000000000 0.000000000
## 618  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 619  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 620  0.0166666667 0.0000000000 0.000000000 0.0083333333 0.008333333
## 621  0.0000000000 0.0285714286 0.000000000 0.1428571429 0.028571429
## 622  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 623  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 624  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.019607843
## 625  0.0000000000 0.0000000000 0.025641026 0.0000000000 0.000000000
## 626  0.0000000000 0.0000000000 0.043478261 0.0000000000 0.000000000
## 627  0.0173410405 0.0520231214 0.005780347 0.0115606936 0.011560694
## 628  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 629  0.0571428571 0.0000000000 0.000000000 0.0000000000 0.000000000
## 630  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 631  0.0307692308 0.0000000000 0.000000000 0.0000000000 0.000000000
## 632  0.0714285714 0.0000000000 0.035714286 0.0000000000 0.000000000
## 633  0.0214285714 0.0000000000 0.014285714 0.0642857143 0.057142857
## 634  0.0681818182 0.0000000000 0.045454545 0.0000000000 0.000000000
## 635  0.0000000000 0.0000000000 0.000000000 0.0714285714 0.000000000
## 636  0.0102040816 0.0000000000 0.010204082 0.0204081633 0.040816327
## 637  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 638  0.0000000000 0.0000000000 0.052631579 0.0000000000 0.000000000
## 639  0.0000000000 0.0000000000 0.031250000 0.0000000000 0.000000000
## 640  0.0000000000 0.0000000000 0.052631579 0.0000000000 0.000000000
## 641  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 642  0.0000000000 0.0769230769 0.000000000 0.0000000000 0.000000000
## 643  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 644  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 645  0.0370370370 0.0000000000 0.000000000 0.0000000000 0.000000000
## 646  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 647  0.0344827586 0.0000000000 0.000000000 0.0000000000 0.000000000
## 648  0.0050761421 0.0659898477 0.015228426 0.0101522843 0.025380711
## 649  0.0370370370 0.0000000000 0.000000000 0.0000000000 0.000000000
## 650  0.0285714286 0.0530612245 0.032653061 0.0040816327 0.024489796
## 651  0.0000000000 0.0000000000 0.053571429 0.0357142857 0.000000000
## 652  0.0344827586 0.0000000000 0.000000000 0.0000000000 0.000000000
## 653  0.0000000000 0.0344827586 0.000000000 0.0000000000 0.000000000
## 654  0.0331632653 0.0459183673 0.017857143 0.0280612245 0.028061224
## 655  0.0040983607 0.0245901639 0.012295082 0.0778688525 0.008196721
## 656  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 657  0.1038961039 0.0649350649 0.090909091 0.0000000000 0.000000000
## 658  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 659  0.0250000000 0.0416666667 0.050000000 0.0083333333 0.000000000
## 660  0.0000000000 0.0000000000 0.090909091 0.0000000000 0.000000000
## 661  0.0000000000 0.0000000000 0.000000000 0.1562500000 0.000000000
## 662  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 663  0.0000000000 0.0000000000 0.033333333 0.0000000000 0.000000000
## 664  0.0071942446 0.0071942446 0.007194245 0.2014388489 0.179856115
## 665  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 666  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 667  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 668  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 669  0.0000000000 0.0666666667 0.000000000 0.0000000000 0.033333333
## 670  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 671  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 672  0.0000000000 0.0294117647 0.000000000 0.0000000000 0.029411765
## 673  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 674  0.0000000000 0.0250000000 0.000000000 0.0000000000 0.000000000
## 675  0.0136986301 0.0410958904 0.027397260 0.0136986301 0.000000000
## 676  0.0000000000 0.0000000000 0.000000000 0.0714285714 0.000000000
## 677  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 678  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.043478261
## 679  0.0208333333 0.0625000000 0.250000000 0.0000000000 0.000000000
## 680  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 681  0.0000000000 0.0000000000 0.000000000 0.0555555556 0.000000000
## 682  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 683  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 684  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 685  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 686  0.0000000000 0.0000000000 0.000000000 0.0384615385 0.000000000
## 687  0.0000000000 0.0130718954 0.000000000 0.0000000000 0.000000000
## 688  0.0263157895 0.0112781955 0.011278195 0.0112781955 0.007518797
## 689  0.0285714286 0.0000000000 0.000000000 0.0000000000 0.028571429
## 690  0.0000000000 0.0000000000 0.000000000 0.0270270270 0.108108108
## 691  0.0000000000 0.1176470588 0.000000000 0.0392156863 0.078431373
## 692  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 693  0.0000000000 0.0357142857 0.000000000 0.1785714286 0.107142857
## 694  0.0000000000 0.0000000000 0.153846154 0.0000000000 0.000000000
## 695  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 696  0.0086206897 0.0000000000 0.017241379 0.0431034483 0.017241379
## 697  0.0000000000 0.1333333333 0.000000000 0.0000000000 0.000000000
## 698  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 699  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 700  0.0000000000 0.0000000000 0.012987013 0.0000000000 0.000000000
## 701  0.0555555556 0.0000000000 0.000000000 0.0000000000 0.000000000
## 702  0.0000000000 0.0128205128 0.038461538 0.0641025641 0.025641026
## 703  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 704  0.0238095238 0.0000000000 0.000000000 0.0476190476 0.000000000
## 705  0.0540540541 0.0000000000 0.000000000 0.0270270270 0.000000000
## 706  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 707  0.0370370370 0.0370370370 0.000000000 0.0370370370 0.037037037
## 708  0.0000000000 0.0526315789 0.000000000 0.0263157895 0.026315789
## 709  0.0294117647 0.0588235294 0.029411765 0.0000000000 0.029411765
## 710  0.0061349693 0.0102249489 0.028629857 0.0449897751 0.016359918
## 711  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 712  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 713  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 714  0.0769230769 0.0000000000 0.000000000 0.0000000000 0.000000000
## 715  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 716  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 717  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 718  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 719  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 720  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 721  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 722  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 723  0.0000000000 0.1000000000 0.000000000 0.0000000000 0.000000000
## 724  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 725  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 726  0.0000000000 0.0666666667 0.000000000 0.0000000000 0.000000000
## 727  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 728  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 729  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 730  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 731  0.0000000000 0.0000000000 0.083333333 0.0000000000 0.000000000
## 732  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 733  0.0392156863 0.0000000000 0.039215686 0.0196078431 0.000000000
## 734  0.0227272727 0.0000000000 0.000000000 0.0000000000 0.000000000
## 735  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 736  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 737  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 738  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.153846154
## 739  0.0000000000 0.0000000000 0.018181818 0.0363636364 0.018181818
## 740  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 741  0.0000000000 0.0322580645 0.064516129 0.0000000000 0.032258065
## 742  0.0344827586 0.0000000000 0.000000000 0.0689655172 0.000000000
## 743  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 744  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 745  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 746  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 747  0.0416666667 0.0000000000 0.000000000 0.0000000000 0.000000000
## 748  0.0000000000 0.0000000000 0.045454545 0.0909090909 0.000000000
## 749  0.0000000000 0.0000000000 0.000000000 0.0344827586 0.034482759
## 750  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.081081081
## 751  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 752  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 753  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 754  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 755  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 756  0.0173913043 0.0173913043 0.000000000 0.0260869565 0.095652174
## 757  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 758  0.0000000000 0.0000000000 0.043478261 0.0434782609 0.000000000
## 759  0.0340909091 0.0056818182 0.034090909 0.0397727273 0.022727273
## 760  0.0000000000 0.0673076923 0.000000000 0.0769230769 0.009615385
## 761  0.0000000000 0.0000000000 0.000000000 0.0493827160 0.000000000
## 762  0.0000000000 0.0000000000 0.107142857 0.0535714286 0.000000000
## 763  0.0081300813 0.0731707317 0.024390244 0.0325203252 0.000000000
## 764  0.0250000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 765  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 766  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 767  0.0400000000 0.0240000000 0.008000000 0.0000000000 0.064000000
## 768  0.0000000000 0.0000000000 0.047619048 0.0000000000 0.000000000
## 769  0.0000000000 0.0000000000 0.000000000 0.1976744186 0.000000000
## 770  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 771  0.0000000000 0.0487804878 0.000000000 0.0000000000 0.000000000
## 772  0.0128205128 0.0256410256 0.000000000 0.0128205128 0.025641026
## 773  0.0000000000 0.0540540541 0.013513514 0.0067567568 0.010135135
## 774  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 775  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 776  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 777  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 778  0.0000000000 0.0000000000 0.000000000 0.0645161290 0.000000000
## 779  0.0277777778 0.0000000000 0.083333333 0.0000000000 0.055555556
## 780  0.0000000000 0.0000000000 0.047619048 0.0000000000 0.000000000
## 781  0.0128205128 0.0641025641 0.012820513 0.0000000000 0.128205128
## 782  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 783  0.0505050505 0.1212121212 0.020202020 0.0505050505 0.101010101
## 784  0.0000000000 0.0212765957 0.021276596 0.1063829787 0.063829787
## 785  0.0416666667 0.0000000000 0.041666667 0.0000000000 0.000000000
## 786  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 787  0.0357142857 0.0000000000 0.178571429 0.0000000000 0.000000000
## 788  0.0370370370 0.0000000000 0.000000000 0.0000000000 0.000000000
## 789  0.0250000000 0.0000000000 0.000000000 0.0000000000 0.050000000
## 790  0.0064308682 0.4823151125 0.038585209 0.0160771704 0.009646302
## 791  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 792  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 793  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.041666667
## 794  0.0000000000 0.0571428571 0.000000000 0.0000000000 0.000000000
## 795  0.0000000000 0.0167597765 0.033519553 0.0000000000 0.011173184
## 796  0.0000000000 0.0000000000 0.050000000 0.0000000000 0.000000000
## 797  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 798  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 799  0.0227272727 0.0000000000 0.022727273 0.0909090909 0.000000000
## 800  0.0454545455 0.0000000000 0.000000000 0.0000000000 0.000000000
## 801  0.1333333333 0.0000000000 0.000000000 0.0000000000 0.000000000
## 802  0.0645161290 0.0000000000 0.000000000 0.0000000000 0.000000000
## 803  0.0000000000 0.0000000000 0.026315789 0.0000000000 0.000000000
## 804  0.0000000000 0.0277777778 0.027777778 0.0000000000 0.000000000
## 805  0.0740740741 0.0370370370 0.000000000 0.0000000000 0.000000000
## 806  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 807  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 808  0.0000000000 0.0000000000 0.000000000 0.0666666667 0.133333333
## 809  0.0000000000 0.0185185185 0.000000000 0.0000000000 0.018518519
## 810  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.045454545
## 811  0.0000000000 0.0000000000 0.147058824 0.0000000000 0.058823529
## 812  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.055555556
## 813  0.0909090909 0.0000000000 0.045454545 0.0000000000 0.000000000
## 814  0.0714285714 0.0000000000 0.000000000 0.0000000000 0.000000000
## 815  0.1666666667 0.0000000000 0.000000000 0.0000000000 0.000000000
## 816  0.0640000000 0.0080000000 0.000000000 0.0160000000 0.024000000
## 817  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.076923077
## 818  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 819  0.0270270270 0.0540540541 0.000000000 0.0000000000 0.000000000
## 820  0.0000000000 0.0000000000 0.029411765 0.0000000000 0.000000000
## 821  0.0000000000 0.0370370370 0.037037037 0.0000000000 0.000000000
## 822  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 823  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 824  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 825  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 826  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 827  0.0094339623 0.0283018868 0.037735849 0.0094339623 0.028301887
## 828  0.0000000000 0.0000000000 0.062500000 0.0000000000 0.000000000
## 829  0.0000000000 0.0000000000 0.062500000 0.0000000000 0.000000000
## 830  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 831  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 832  0.0576923077 0.0000000000 0.000000000 0.0192307692 0.000000000
## 833  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 834  0.0000000000 0.0615384615 0.000000000 0.1230769231 0.000000000
## 835  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 836  0.0000000000 0.0000000000 0.050000000 0.0000000000 0.000000000
## 837  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 838  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 839  0.0000000000 0.0000000000 0.000000000 0.0416666667 0.000000000
## 840  0.0000000000 0.0000000000 0.000000000 0.0277777778 0.055555556
## 841  0.0000000000 0.1111111111 0.000000000 0.0000000000 0.000000000
## 842  0.0000000000 0.0000000000 0.000000000 0.0400000000 0.000000000
## 843  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 844  0.0000000000 0.0384615385 0.000000000 0.0000000000 0.000000000
## 845  0.0454545455 0.0000000000 0.045454545 0.0000000000 0.000000000
## 846  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.043478261
## 847  0.0000000000 0.0357142857 0.000000000 0.0000000000 0.000000000
## 848  0.0119047619 0.0357142857 0.000000000 0.0238095238 0.047619048
## 849  0.0000000000 0.1034482759 0.000000000 0.0344827586 0.034482759
## 850  0.0000000000 0.0909090909 0.000000000 0.0000000000 0.000000000
## 851  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 852  0.0000000000 0.0000000000 0.000000000 0.0714285714 0.000000000
## 853  0.1500000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 854  0.0256410256 0.0512820513 0.000000000 0.0000000000 0.025641026
## 855  0.0000000000 0.0000000000 0.000000000 0.0416666667 0.000000000
## 856  0.0000000000 0.0000000000 0.000000000 0.0285714286 0.028571429
## 857  0.0000000000 0.0000000000 0.052631579 0.0526315789 0.000000000
## 858  0.0000000000 0.0000000000 0.000000000 0.0588235294 0.000000000
## 859  0.0000000000 0.0000000000 0.045454545 0.0000000000 0.000000000
## 860  0.0235507246 0.0208333333 0.037137681 0.0280797101 0.029891304
## 861  0.0222222222 0.0333333333 0.018518519 0.0962962963 0.022222222
## 862  0.0312500000 0.0000000000 0.031250000 0.0000000000 0.031250000
## 863  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 864  0.0000000000 0.0769230769 0.000000000 0.0000000000 0.000000000
## 865  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 866  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 867  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 868  0.1142857143 0.0000000000 0.000000000 0.0380952381 0.095238095
## 869  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 870  0.0000000000 0.0000000000 0.009803922 0.0000000000 0.078431373
## 871  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 872  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 873  0.0000000000 0.0256410256 0.000000000 0.0000000000 0.000000000
## 874  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 875  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 876  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 877  0.0588235294 0.0000000000 0.000000000 0.0000000000 0.000000000
## 878  0.0000000000 0.0000000000 0.071428571 0.0000000000 0.000000000
## 879  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 880  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.032258065
## 881  0.0228571429 0.0171428571 0.040000000 0.0171428571 0.011428571
## 882  0.0300751880 0.0065789474 0.020676692 0.0319548872 0.013157895
## 883  0.0000000000 0.0000000000 0.125000000 0.0000000000 0.000000000
## 884  0.0000000000 0.0000000000 0.142857143 0.0000000000 0.000000000
## 885  0.0000000000 0.0000000000 0.142857143 0.0000000000 0.000000000
## 886  0.0000000000 0.0000000000 0.111111111 0.0000000000 0.000000000
## 887  0.1250000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 888  0.0000000000 0.0000000000 0.142857143 0.0000000000 0.000000000
## 889  0.0705521472 0.0368098160 0.036809816 0.0030674847 0.015337423
## 890  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.035714286
## 891  0.0176678445 0.0282685512 0.042402827 0.0848056537 0.024734982
## 892  0.0322580645 0.1290322581 0.032258065 0.0000000000 0.000000000
## 893  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 894  0.0000000000 0.0000000000 0.028571429 0.0285714286 0.000000000
## 895  0.0181451613 0.0181451613 0.038306452 0.0100806452 0.034274194
## 896  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 897  0.0000000000 0.0232558140 0.000000000 0.0000000000 0.000000000
## 898  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 899  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 900  0.0000000000 0.0285714286 0.000000000 0.0285714286 0.000000000
## 901  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 902  0.0253164557 0.0253164557 0.025316456 0.0126582278 0.012658228
## 903  0.0000000000 0.0000000000 0.000000000 0.0204081633 0.020408163
## 904  0.0089020772 0.0178041543 0.008902077 0.0237388724 0.065281899
## 905  0.0000000000 0.0476190476 0.015873016 0.0476190476 0.000000000
## 906  0.0048971596 0.0097943193 0.051909892 0.0714985309 0.061704212
## 907  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 908  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 909  0.0000000000 0.0133333333 0.000000000 0.0133333333 0.013333333
## 910  0.0635838150 0.0144508671 0.011560694 0.0520231214 0.028901734
## 911  0.0028735632 0.0114942529 0.020114943 0.0057471264 0.008620690
## 912  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 913  0.0714285714 0.0089285714 0.008928571 0.0267857143 0.044642857
## 914  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 915  0.0034305317 0.0051457976 0.010291595 0.0102915952 0.008576329
## 916  0.0000000000 0.1176470588 0.000000000 0.0000000000 0.058823529
## 917  0.0434782609 0.0434782609 0.043478261 0.0000000000 0.000000000
## 918  0.0000000000 0.1000000000 0.000000000 0.0000000000 0.000000000
## 919  0.0085470085 0.0085470085 0.000000000 0.0085470085 0.034188034
## 920  0.0000000000 0.0000000000 0.000000000 0.0454545455 0.000000000
## 921  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 922  0.0090090090 0.0090090090 0.000000000 0.0270270270 0.090090090
## 923  0.0206185567 0.0515463918 0.000000000 0.0000000000 0.030927835
## 924  0.0000000000 0.0769230769 0.019230769 0.0384615385 0.000000000
## 925  0.0322580645 0.0161290323 0.011520737 0.0253456221 0.124423963
## 926  0.0333333333 0.0083333333 0.050000000 0.0250000000 0.025000000
## 927  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 928  0.0250000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 929  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 930  0.0041666667 0.0125000000 0.000000000 0.0125000000 0.008333333
## 931  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 932  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 933  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 934  0.0000000000 0.0384615385 0.000000000 0.0000000000 0.000000000
## 935  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 936  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 937  0.0000000000 0.0000000000 0.045454545 0.0909090909 0.000000000
## 938  0.0223214286 0.0424107143 0.040178571 0.0357142857 0.013392857
## 939  0.0106382979 0.0372340426 0.029255319 0.0478723404 0.015957447
## 940  0.0000000000 0.0434782609 0.043478261 0.0000000000 0.000000000
## 941  0.0104166667 0.0312500000 0.010416667 0.0208333333 0.010416667
## 942  0.0141843972 0.0000000000 0.014184397 0.0283687943 0.021276596
## 943  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 944  0.0373831776 0.0155763240 0.034267913 0.0249221184 0.034267913
## 945  0.0235849057 0.0094339623 0.009433962 0.0660377358 0.080188679
## 946  0.0105263158 0.0070175439 0.021052632 0.0350877193 0.056140351
## 947  0.0084033613 0.0588235294 0.058823529 0.0126050420 0.012605042
## 948  0.0000000000 0.0227272727 0.000000000 0.0000000000 0.045454545
## 949  0.0000000000 0.0000000000 0.000000000 0.1111111111 0.000000000
## 950  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 951  0.0168067227 0.0210084034 0.016806723 0.0504201681 0.016806723
## 952  0.0000000000 0.0000000000 0.000000000 0.0512820513 0.000000000
## 953  0.0153846154 0.0461538462 0.000000000 0.0461538462 0.076923077
## 954  0.0000000000 0.0000000000 0.000000000 0.0571428571 0.000000000
## 955  0.0000000000 0.0434782609 0.000000000 0.0000000000 0.043478261
## 956  0.0000000000 0.0059171598 0.000000000 0.0236686391 0.000000000
## 957  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 958  0.0430107527 0.0000000000 0.021505376 0.0537634409 0.000000000
## 959  0.0519480519 0.0000000000 0.006493506 0.0324675325 0.025974026
## 960  0.0433734940 0.0096385542 0.024096386 0.0698795181 0.019277108
## 961  0.0101522843 0.0050761421 0.101522843 0.0456852792 0.015228426
## 962  0.1111111111 0.0476190476 0.031746032 0.0317460317 0.031746032
## 963  0.0000000000 0.0263157895 0.026315789 0.0000000000 0.000000000
## 964  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 965  0.0578512397 0.0413223140 0.066115702 0.0000000000 0.057851240
## 966  0.0000000000 0.0000000000 0.000000000 0.0517241379 0.034482759
## 967  0.0689655172 0.0000000000 0.068965517 0.0000000000 0.034482759
## 968  0.0000000000 0.0000000000 0.000000000 0.0120481928 0.024096386
## 969  0.0181818182 0.0000000000 0.000000000 0.0181818182 0.018181818
## 970  0.0512820513 0.0109890110 0.007326007 0.0329670330 0.051282051
## 971  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 972  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 973  0.0294117647 0.0294117647 0.029411765 0.0000000000 0.000000000
## 974  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 975  0.0152173913 0.0086956522 0.015217391 0.0434782609 0.069565217
## 976  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.039215686
## 977  0.0426136364 0.0142045455 0.031250000 0.0397727273 0.005681818
## 978  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 979  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 980  0.0365853659 0.0853658537 0.060975610 0.0000000000 0.000000000
## 981  0.0000000000 0.0000000000 0.026666667 0.0133333333 0.040000000
## 982  0.0000000000 0.0000000000 0.026315789 0.0000000000 0.026315789
## 983  0.0073529412 0.0220588235 0.029411765 0.0147058824 0.036764706
## 984  0.0678571429 0.0178571429 0.039285714 0.0035714286 0.032142857
## 985  0.0167714885 0.0251572327 0.016771488 0.0230607966 0.014675052
## 986  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 987  0.0773349197 0.0208209399 0.032123736 0.0362879239 0.046400952
## 988  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 989  0.0000000000 0.0070422535 0.000000000 0.0211267606 0.098591549
## 990  0.0256410256 0.0256410256 0.025641026 0.0170940171 0.059829060
## 991  0.0206554121 0.0081429990 0.012909633 0.0109235353 0.016881827
## 992  0.0065359477 0.0196078431 0.032679739 0.0326797386 0.019607843
## 993  0.0038461538 0.0346153846 0.023076923 0.0423076923 0.034615385
## 994  0.0106060606 0.0121212121 0.024242424 0.0121212121 0.007575758
## 995  0.0412371134 0.0206185567 0.010309278 0.0000000000 0.010309278
## 996  0.0000000000 0.0000000000 0.000000000 0.0000000000 0.000000000
## 997  0.0115638767 0.0027533040 0.004955947 0.0060572687 0.007158590
## 998  0.0000000000 0.0000000000 0.000000000 0.0833333333 0.000000000
## 999  0.0367647059 0.0605536332 0.032871972 0.0155709343 0.006487889
## 1000 0.0118577075 0.0118577075 0.039525692 0.0079051383 0.019762846
##                49          50          51          52          53
## 1    0.0137085137 0.011544012 0.020202020 0.020923521 0.022366522
## 2    0.0263157895 0.052631579 0.000000000 0.052631579 0.000000000
## 3    0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 4    0.0037105751 0.016697588 0.016697588 0.007421150 0.011131725
## 5    0.0137242670 0.011228946 0.019338740 0.054897068 0.026824704
## 6    0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 7    0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 8    0.0244399185 0.023699315 0.019625995 0.030920200 0.024810220
## 9    0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 10   0.0172413793 0.034482759 0.017241379 0.000000000 0.086206897
## 11   0.0271041369 0.009272468 0.014978602 0.019258203 0.032097004
## 12   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 13   0.0000000000 0.017543860 0.000000000 0.017543860 0.035087719
## 14   0.0166666667 0.000000000 0.008333333 0.033333333 0.033333333
## 15   0.0740740741 0.000000000 0.037037037 0.037037037 0.000000000
## 16   0.0000000000 0.000000000 0.032258065 0.000000000 0.000000000
## 17   0.0120481928 0.004016064 0.016064257 0.020080321 0.020080321
## 18   0.0068965517 0.013793103 0.027586207 0.000000000 0.020689655
## 19   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 20   0.0315236427 0.035026270 0.038528897 0.024518389 0.050788091
## 21   0.0235294118 0.035294118 0.028235294 0.023529412 0.007058824
## 22   0.0416666667 0.020833333 0.000000000 0.000000000 0.083333333
## 23   0.0199600798 0.014970060 0.014970060 0.015968064 0.009980040
## 24   0.0000000000 0.016949153 0.003389831 0.003389831 0.010169492
## 25   0.0000000000 0.045454545 0.022727273 0.022727273 0.022727273
## 26   0.1794871795 0.000000000 0.000000000 0.000000000 0.000000000
## 27   0.0172413793 0.005747126 0.005747126 0.022988506 0.068965517
## 28   0.0156250000 0.019531250 0.023437500 0.007812500 0.011718750
## 29   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 30   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 31   0.0034762457 0.018539977 0.018539977 0.016222480 0.010428737
## 32   0.0130434783 0.034782609 0.021739130 0.017391304 0.008695652
## 33   0.0336538462 0.004807692 0.009615385 0.004807692 0.038461538
## 34   0.0290037831 0.026481715 0.012610340 0.010088272 0.010088272
## 35   0.0262390671 0.026239067 0.043731778 0.023323615 0.020408163
## 36   0.0054054054 0.043243243 0.005405405 0.064864865 0.054054054
## 37   0.0000000000 0.043478261 0.000000000 0.086956522 0.000000000
## 38   0.0057142857 0.045714286 0.045714286 0.011428571 0.005714286
## 39   0.0416666667 0.006944444 0.013888889 0.020833333 0.020833333
## 40   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 41   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 42   0.0000000000 0.010471204 0.005235602 0.020942408 0.000000000
## 43   0.0319148936 0.021276596 0.000000000 0.000000000 0.021276596
## 44   0.0264496439 0.018311292 0.021702272 0.045100034 0.025432350
## 45   0.0035273369 0.026455026 0.011463845 0.010582011 0.012345679
## 46   0.0013661202 0.008196721 0.008196721 0.024590164 0.016393443
## 47   0.0000000000 0.005780347 0.014450867 0.002890173 0.002890173
## 48   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 49   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 50   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 51   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 52   0.0467625899 0.028776978 0.064748201 0.046762590 0.061151079
## 53   0.0033444816 0.026755853 0.020066890 0.010033445 0.006688963
## 54   0.0178571429 0.000000000 0.000000000 0.000000000 0.285714286
## 55   0.0000000000 0.005076142 0.000000000 0.035532995 0.010152284
## 56   0.0133813690 0.019042717 0.024704066 0.029850746 0.031394750
## 57   0.0000000000 0.015151515 0.022727273 0.015151515 0.022727273
## 58   0.0537848606 0.031872510 0.023904382 0.017928287 0.043824701
## 59   0.0089285714 0.015306122 0.006377551 0.093112245 0.034438776
## 60   0.0263157895 0.039473684 0.013157895 0.006578947 0.013157895
## 61   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 62   0.0000000000 0.000000000 0.000000000 0.000000000 0.043478261
## 63   0.0059171598 0.005917160 0.000000000 0.000000000 0.020710059
## 64   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 65   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 66   0.0095969290 0.038387716 0.028790787 0.007677543 0.013435701
## 67   0.0000000000 0.000000000 0.011904762 0.000000000 0.000000000
## 68   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 69   0.0185847034 0.012866333 0.017869907 0.024303074 0.015010722
## 70   0.0000000000 0.000000000 0.022727273 0.090909091 0.181818182
## 71   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 72   0.0000000000 0.000000000 0.016129032 0.016129032 0.048387097
## 73   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 74   0.0153340635 0.029025192 0.021358160 0.014238773 0.029025192
## 75   0.0117042535 0.017699115 0.018270054 0.019697402 0.045104196
## 76   0.0109289617 0.020036430 0.009107468 0.009107468 0.012750455
## 77   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 78   0.0240549828 0.020618557 0.048109966 0.048109966 0.037800687
## 79   0.0142348754 0.014234875 0.017793594 0.060498221 0.010676157
## 80   0.0370370370 0.074074074 0.037037037 0.037037037 0.000000000
## 81   0.0086206897 0.008620690 0.008620690 0.004310345 0.008620690
## 82   0.0000000000 0.021276596 0.042553191 0.021276596 0.010638298
## 83   0.0056737589 0.004255319 0.008510638 0.002836879 0.015602837
## 84   0.0000000000 0.003597122 0.000000000 0.046762590 0.000000000
## 85   0.0179104478 0.032835821 0.011940299 0.014925373 0.044776119
## 86   0.0062500000 0.006250000 0.009375000 0.015625000 0.003125000
## 87   0.0000000000 0.003623188 0.068840580 0.057971014 0.007246377
## 88   0.0000000000 0.000000000 0.076923077 0.000000000 0.000000000
## 89   0.0068298236 0.018212863 0.005691520 0.025042686 0.063175868
## 90   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 91   0.0000000000 0.000000000 0.000000000 0.000000000 0.045454545
## 92   0.0128440367 0.014678899 0.005504587 0.029357798 0.023853211
## 93   0.0097087379 0.000000000 0.003236246 0.012944984 0.000000000
## 94   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 95   0.0175438596 0.000000000 0.000000000 0.000000000 0.000000000
## 96   0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 97   0.0398406375 0.029880478 0.023904382 0.045152722 0.067729084
## 98   0.0136986301 0.054794521 0.041095890 0.022831050 0.022831050
## 99   0.0301507538 0.010050251 0.008375209 0.006700168 0.003350084
## 100  0.0410958904 0.000000000 0.027397260 0.027397260 0.013698630
## 101  0.0120000000 0.012000000 0.002000000 0.024000000 0.002000000
## 102  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 103  0.0077220077 0.038610039 0.000000000 0.057915058 0.007722008
## 104  0.0000000000 0.000000000 0.137931034 0.034482759 0.000000000
## 105  0.0451612903 0.012903226 0.032258065 0.051612903 0.038709677
## 106  0.0220264317 0.022026432 0.021145374 0.011453744 0.029074890
## 107  0.0000000000 0.027777778 0.027777778 0.023809524 0.023809524
## 108  0.0000000000 0.009174312 0.018348624 0.082568807 0.009174312
## 109  0.0371681416 0.022123894 0.020353982 0.022123894 0.002654867
## 110  0.0869565217 0.043478261 0.000000000 0.000000000 0.000000000
## 111  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 112  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 113  0.0079225352 0.017605634 0.015845070 0.034330986 0.010563380
## 114  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 115  0.0191616766 0.020359281 0.025748503 0.034131737 0.015568862
## 116  0.0000000000 0.000000000 0.000000000 0.000000000 0.033333333
## 117  0.0476190476 0.019047619 0.019047619 0.009523810 0.028571429
## 118  0.0212873796 0.018246325 0.021794222 0.029903700 0.042574759
## 119  0.0588235294 0.000000000 0.000000000 0.000000000 0.000000000
## 120  0.0000000000 0.028571429 0.057142857 0.000000000 0.028571429
## 121  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 122  0.0054945055 0.013736264 0.038461538 0.021978022 0.013736264
## 123  0.0131752306 0.018445323 0.011857708 0.028985507 0.011857708
## 124  0.0274599542 0.011441648 0.011441648 0.018306636 0.013729977
## 125  0.0000000000 0.000000000 0.037037037 0.000000000 0.012345679
## 126  0.0142687277 0.010701546 0.032104637 0.013079667 0.015457788
## 127  0.0227272727 0.045454545 0.022727273 0.000000000 0.000000000
## 128  0.0067159167 0.019476158 0.022834117 0.020147750 0.021490934
## 129  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 130  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 131  0.0000000000 0.000000000 0.000000000 0.000000000 0.041666667
## 132  0.0359168242 0.015122873 0.028355388 0.024574669 0.013232514
## 133  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 134  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 135  0.0242754987 0.014866391 0.057960105 0.020511855 0.023522770
## 136  0.1600000000 0.010000000 0.030000000 0.020000000 0.020000000
## 137  0.1200000000 0.057777778 0.026666667 0.017777778 0.062222222
## 138  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 139  0.0006830601 0.007513661 0.003415301 0.002732240 0.034836066
## 140  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 141  0.0000000000 0.128205128 0.000000000 0.000000000 0.000000000
## 142  0.0303030303 0.030303030 0.004329004 0.012987013 0.004329004
## 143  0.0277777778 0.055555556 0.027777778 0.000000000 0.027777778
## 144  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 145  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 146  0.0000000000 0.019801980 0.118811881 0.062706271 0.102310231
## 147  0.0000000000 0.000000000 0.019607843 0.019607843 0.019607843
## 148  0.0000000000 0.029411765 0.029411765 0.382352941 0.000000000
## 149  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 150  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 151  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 152  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 153  0.0847457627 0.000000000 0.000000000 0.033898305 0.033898305
## 154  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 155  0.0136487716 0.020018198 0.018198362 0.038216561 0.012738854
## 156  0.0148870637 0.026694045 0.020020534 0.013860370 0.007700205
## 157  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 158  0.0491803279 0.000000000 0.024590164 0.008196721 0.000000000
## 159  0.0414572864 0.013819095 0.025125628 0.016331658 0.032663317
## 160  0.0145454545 0.049818182 0.042181818 0.033818182 0.049454545
## 161  0.0210526316 0.031578947 0.056140351 0.014035088 0.010526316
## 162  0.0106382979 0.010638298 0.000000000 0.000000000 0.021276596
## 163  0.0114942529 0.022988506 0.045977011 0.045977011 0.011494253
## 164  0.0048899756 0.017114914 0.012224939 0.105134474 0.017114914
## 165  0.0072992701 0.007299270 0.000000000 0.014598540 0.021897810
## 166  0.0158508159 0.018181818 0.032634033 0.007459207 0.023310023
## 167  0.0341463415 0.034146341 0.009756098 0.034146341 0.019512195
## 168  0.0000000000 0.033898305 0.033898305 0.033898305 0.016949153
## 169  0.0416666667 0.041666667 0.011904762 0.029761905 0.023809524
## 170  0.0136986301 0.013698630 0.034246575 0.034246575 0.034246575
## 171  0.0355029586 0.023668639 0.005917160 0.011834320 0.023668639
## 172  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 173  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 174  0.0252270434 0.013118063 0.015136226 0.011099899 0.029263370
## 175  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 176  0.0000000000 0.030434783 0.017391304 0.008695652 0.030434783
## 177  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 178  0.0081210779 0.018456995 0.021040975 0.013289037 0.010335917
## 179  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 180  0.0392857143 0.035714286 0.039285714 0.014285714 0.003571429
## 181  0.0237136465 0.047651007 0.046532438 0.063534676 0.034451902
## 182  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 183  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 184  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 185  0.0091533181 0.013272311 0.018306636 0.008695652 0.008237986
## 186  0.0253164557 0.022603978 0.027124774 0.003616637 0.006329114
## 187  0.0175438596 0.023391813 0.005847953 0.011695906 0.017543860
## 188  0.0133630290 0.033407572 0.024498886 0.035634744 0.037861915
## 189  0.0516129032 0.021505376 0.032258065 0.023655914 0.027956989
## 190  0.0420168067 0.025210084 0.021008403 0.008403361 0.008403361
## 191  0.0312500000 0.093750000 0.000000000 0.046875000 0.015625000
## 192  0.0104321908 0.010432191 0.008196721 0.035767511 0.026080477
## 193  0.0140186916 0.000000000 0.032710280 0.046728972 0.046728972
## 194  0.0393013100 0.004366812 0.048034934 0.008733624 0.008733624
## 195  0.0000000000 0.000000000 0.000000000 0.000000000 0.022222222
## 196  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 197  0.0386100386 0.026061776 0.015444015 0.020270270 0.041505792
## 198  0.0000000000 0.060000000 0.000000000 0.000000000 0.000000000
## 199  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 200  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 201  0.0109649123 0.013157895 0.017543860 0.035087719 0.008771930
## 202  0.0454545455 0.000000000 0.000000000 0.000000000 0.090909091
## 203  0.0000000000 0.026666667 0.026666667 0.160000000 0.000000000
## 204  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 205  0.0075890251 0.014594279 0.012259194 0.039696439 0.033858727
## 206  0.0576036866 0.023041475 0.029953917 0.018433180 0.064516129
## 207  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 208  0.0168539326 0.000000000 0.039325843 0.011235955 0.022471910
## 209  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 210  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 211  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 212  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 213  0.0130331754 0.014218009 0.011848341 0.034360190 0.035545024
## 214  0.0405405405 0.000000000 0.000000000 0.013513514 0.027027027
## 215  0.0666666667 0.000000000 0.033333333 0.000000000 0.000000000
## 216  0.0232558140 0.023255814 0.011627907 0.023255814 0.052325581
## 217  0.0097087379 0.009708738 0.029126214 0.019417476 0.029126214
## 218  0.0142857143 0.007142857 0.035714286 0.042857143 0.085714286
## 219  0.0000000000 0.000000000 0.032258065 0.000000000 0.032258065
## 220  0.0096153846 0.000000000 0.000000000 0.009615385 0.000000000
## 221  0.0127388535 0.031847134 0.050955414 0.044585987 0.050955414
## 222  0.0286906625 0.026604069 0.007303078 0.010954617 0.018779343
## 223  0.0091324201 0.004566210 0.018264840 0.009132420 0.009132420
## 224  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 225  0.0171102662 0.007604563 0.009505703 0.003802281 0.007604563
## 226  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 227  0.0129870130 0.000000000 0.000000000 0.012987013 0.000000000
## 228  0.0095238095 0.000000000 0.000000000 0.009523810 0.000000000
## 229  0.0263157895 0.032036613 0.034324943 0.029748284 0.025171625
## 230  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 231  0.0067273447 0.038781163 0.016026909 0.013652552 0.017411951
## 232  0.0218579235 0.016393443 0.016393443 0.049180328 0.032786885
## 233  0.0205761317 0.008230453 0.016460905 0.016460905 0.024691358
## 234  0.0034168565 0.025056948 0.004555809 0.002277904 0.012528474
## 235  0.0121212121 0.016666667 0.012121212 0.013636364 0.021212121
## 236  0.0094132413 0.015061186 0.015374961 0.021964230 0.026984625
## 237  0.0141911069 0.018921476 0.011352886 0.035950804 0.038789026
## 238  0.0446927374 0.019807009 0.016251905 0.027932961 0.045708481
## 239  0.0390334572 0.029739777 0.024163569 0.035315985 0.024163569
## 240  0.0000000000 0.000000000 0.020000000 0.000000000 0.000000000
## 241  0.0288461538 0.096153846 0.009615385 0.019230769 0.000000000
## 242  0.0228102190 0.050182482 0.033759124 0.035583942 0.016423358
## 243  0.0039682540 0.003968254 0.019841270 0.019841270 0.007936508
## 244  0.0354430380 0.012658228 0.020253165 0.032911392 0.025316456
## 245  0.0294117647 0.052941176 0.008823529 0.011764706 0.014705882
## 246  0.0291120815 0.010189229 0.011644833 0.018922853 0.021834061
## 247  0.0333333333 0.016666667 0.000000000 0.050000000 0.000000000
## 248  0.0114942529 0.028735632 0.014367816 0.031609195 0.014367816
## 249  0.0173913043 0.008695652 0.000000000 0.017391304 0.008695652
## 250  0.0000000000 0.000000000 0.000000000 0.071428571 0.142857143
## 251  0.0000000000 0.062500000 0.008928571 0.017857143 0.026785714
## 252  0.0361445783 0.060240964 0.144578313 0.024096386 0.036144578
## 253  0.0000000000 0.015625000 0.062500000 0.000000000 0.046875000
## 254  0.0273972603 0.000000000 0.013698630 0.041095890 0.000000000
## 255  0.0384615385 0.007692308 0.007692308 0.000000000 0.007692308
## 256  0.0217391304 0.032608696 0.086956522 0.000000000 0.021739130
## 257  0.0192307692 0.000000000 0.038461538 0.000000000 0.019230769
## 258  0.0000000000 0.000000000 0.000000000 0.026315789 0.000000000
## 259  0.0000000000 0.043478261 0.000000000 0.014492754 0.000000000
## 260  0.0576923077 0.000000000 0.086538462 0.048076923 0.028846154
## 261  0.0000000000 0.016666667 0.000000000 0.016666667 0.000000000
## 262  0.0317460317 0.015873016 0.000000000 0.015873016 0.031746032
## 263  0.0000000000 0.030303030 0.000000000 0.030303030 0.015151515
## 264  0.0263157895 0.052631579 0.013157895 0.013157895 0.000000000
## 265  0.0158013544 0.020316027 0.018058691 0.081264108 0.009029345
## 266  0.0162601626 0.030487805 0.048780488 0.028455285 0.034552846
## 267  0.0138368406 0.023061401 0.031132891 0.018737388 0.011242433
## 268  0.0189309577 0.002227171 0.023385301 0.008908686 0.008908686
## 269  0.0294117647 0.058823529 0.000000000 0.000000000 0.029411765
## 270  0.0153846154 0.000000000 0.000000000 0.007692308 0.007692308
## 271  0.0243902439 0.000000000 0.012195122 0.012195122 0.012195122
## 272  0.0095238095 0.000000000 0.000000000 0.000000000 0.028571429
## 273  0.0283687943 0.007092199 0.021276596 0.000000000 0.021276596
## 274  0.0000000000 0.000000000 0.015625000 0.000000000 0.007812500
## 275  0.0254237288 0.000000000 0.000000000 0.000000000 0.016949153
## 276  0.0144927536 0.000000000 0.000000000 0.000000000 0.014492754
## 277  0.0156250000 0.019531250 0.015625000 0.017578125 0.009765625
## 278  0.0156985871 0.020408163 0.009419152 0.021978022 0.010989011
## 279  0.0100000000 0.030000000 0.040000000 0.000000000 0.070000000
## 280  0.0409836066 0.065573770 0.008196721 0.024590164 0.040983607
## 281  0.0253164557 0.000000000 0.025316456 0.012658228 0.000000000
## 282  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 283  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 284  0.0000000000 0.000000000 0.000000000 0.111111111 0.000000000
## 285  0.0000000000 0.000000000 0.000000000 0.038461538 0.000000000
## 286  0.0500000000 0.000000000 0.000000000 0.050000000 0.000000000
## 287  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 288  0.0000000000 0.076923077 0.000000000 0.000000000 0.000000000
## 289  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 290  0.0303030303 0.015151515 0.060606061 0.000000000 0.075757576
## 291  0.0000000000 0.130434783 0.173913043 0.000000000 0.000000000
## 292  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 293  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 294  0.0192307692 0.000000000 0.000000000 0.000000000 0.019230769
## 295  0.0192307692 0.000000000 0.038461538 0.067307692 0.019230769
## 296  0.0000000000 0.013157895 0.065789474 0.026315789 0.052631579
## 297  0.0000000000 0.021276596 0.000000000 0.000000000 0.021276596
## 298  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 299  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 300  0.0000000000 0.000000000 0.038461538 0.000000000 0.019230769
## 301  0.0364864865 0.043243243 0.068918919 0.047297297 0.016216216
## 302  0.0370370370 0.037037037 0.148148148 0.000000000 0.000000000
## 303  0.0000000000 0.011235955 0.022471910 0.000000000 0.022471910
## 304  0.0096153846 0.028846154 0.000000000 0.067307692 0.028846154
## 305  0.0145631068 0.009708738 0.019417476 0.046116505 0.038834951
## 306  0.0271317829 0.024916944 0.017165006 0.028792913 0.048172757
## 307  0.0195121951 0.004878049 0.034146341 0.039024390 0.058536585
## 308  0.0000000000 0.000000000 0.000000000 0.050847458 0.000000000
## 309  0.0078740157 0.031496063 0.055118110 0.047244094 0.007874016
## 310  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 311  0.0782681099 0.073272273 0.129891757 0.025811823 0.073272273
## 312  0.0277387640 0.015098315 0.019662921 0.022471910 0.027387640
## 313  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 314  0.0112994350 0.005649718 0.033898305 0.000000000 0.033898305
## 315  0.0000000000 0.090909091 0.000000000 0.000000000 0.000000000
## 316  0.0178571429 0.009920635 0.027777778 0.019841270 0.011904762
## 317  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 318  0.0277227723 0.005940594 0.011881188 0.029702970 0.015841584
## 319  0.0081300813 0.024390244 0.032520325 0.016260163 0.000000000
## 320  0.0599571734 0.032119914 0.025695931 0.023554604 0.029978587
## 321  0.1265060241 0.108433735 0.006024096 0.012048193 0.024096386
## 322  0.1111111111 0.000000000 0.000000000 0.000000000 0.000000000
## 323  0.0407725322 0.047210300 0.010729614 0.066523605 0.017167382
## 324  0.0312500000 0.031250000 0.125000000 0.041666667 0.020833333
## 325  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 326  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 327  0.0065359477 0.026143791 0.045751634 0.111111111 0.045751634
## 328  0.0000000000 0.016000000 0.000000000 0.112000000 0.016000000
## 329  0.0433566434 0.044755245 0.025174825 0.023776224 0.040559441
## 330  0.0000000000 0.000000000 0.055555556 0.000000000 0.055555556
## 331  0.0512820513 0.000000000 0.025641026 0.008547009 0.051282051
## 332  0.0420489297 0.029816514 0.024464832 0.017584098 0.012232416
## 333  0.0584795322 0.023391813 0.005847953 0.005847953 0.035087719
## 334  0.0211920530 0.025165563 0.010596026 0.013245033 0.011920530
## 335  0.0065789474 0.019736842 0.013157895 0.006578947 0.019736842
## 336  0.0106100796 0.013262599 0.000000000 0.023872679 0.050397878
## 337  0.0088888889 0.022222222 0.017777778 0.024444444 0.044444444
## 338  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 339  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 340  0.0535211268 0.033802817 0.033802817 0.008450704 0.019718310
## 341  0.0303541315 0.015177066 0.016863406 0.013490725 0.053962901
## 342  0.0000000000 0.045454545 0.060606061 0.045454545 0.015151515
## 343  0.0661157025 0.027548209 0.019283747 0.035812672 0.055096419
## 344  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 345  0.0416666667 0.020833333 0.000000000 0.020833333 0.250000000
## 346  0.0000000000 0.012195122 0.012195122 0.048780488 0.012195122
## 347  0.0236966825 0.004739336 0.009478673 0.018957346 0.023696682
## 348  0.0217391304 0.046195652 0.008152174 0.035326087 0.038043478
## 349  0.0124309392 0.027624309 0.040055249 0.019337017 0.011049724
## 350  0.0263157895 0.000000000 0.052631579 0.000000000 0.000000000
## 351  0.0262582057 0.041575492 0.048140044 0.026258206 0.019693654
## 352  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 353  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 354  0.0346666667 0.005333333 0.024000000 0.018666667 0.010666667
## 355  0.0482758621 0.000000000 0.034482759 0.013793103 0.027586207
## 356  0.0451127820 0.022556391 0.022556391 0.037593985 0.007518797
## 357  0.0137931034 0.000000000 0.034482759 0.006896552 0.000000000
## 358  0.0227272727 0.013636364 0.004545455 0.018181818 0.004545455
## 359  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 360  0.0319693095 0.015345269 0.017902813 0.054987212 0.053708440
## 361  0.0145631068 0.016990291 0.035194175 0.043689320 0.041262136
## 362  0.0263157895 0.032894737 0.000000000 0.013157895 0.019736842
## 363  0.0103369066 0.016079632 0.026033691 0.070826953 0.047473201
## 364  0.0153846154 0.005128205 0.005128205 0.107692308 0.010256410
## 365  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 366  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 367  0.0206611570 0.028925620 0.020661157 0.020661157 0.030991736
## 368  0.0000000000 0.000000000 0.008130081 0.000000000 0.000000000
## 369  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 370  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 371  0.0512820513 0.000000000 0.000000000 0.025641026 0.000000000
## 372  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 373  0.0666666667 0.000000000 0.022222222 0.088888889 0.000000000
## 374  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 375  0.0022371365 0.016778523 0.065995526 0.063758389 0.055928412
## 376  0.0064102564 0.025641026 0.070512821 0.038461538 0.038461538
## 377  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 378  0.0063291139 0.012658228 0.000000000 0.031645570 0.025316456
## 379  0.0323488045 0.036568214 0.019690577 0.068917018 0.047819972
## 380  0.0198675497 0.033112583 0.013245033 0.006622517 0.019867550
## 381  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 382  0.0520688052 0.025104603 0.016736402 0.014876801 0.009762901
## 383  0.0000000000 0.000000000 0.000000000 0.000000000 0.026315789
## 384  0.0517241379 0.034482759 0.051724138 0.034482759 0.017241379
## 385  0.0174216028 0.040069686 0.010452962 0.022648084 0.022648084
## 386  0.0000000000 0.117647059 0.000000000 0.000000000 0.000000000
## 387  0.0372881356 0.010169492 0.030508475 0.020338983 0.027118644
## 388  0.0264900662 0.019867550 0.006622517 0.006622517 0.000000000
## 389  0.0566228514 0.265925177 0.038422649 0.022244692 0.022244692
## 390  0.0727272727 0.054545455 0.018181818 0.000000000 0.018181818
## 391  0.0055248619 0.011049724 0.033149171 0.060773481 0.016574586
## 392  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 393  0.0000000000 0.000000000 0.000000000 0.000000000 0.066666667
## 394  0.0198412698 0.019841270 0.059523810 0.027777778 0.023809524
## 395  0.0268741160 0.018387553 0.039603960 0.026874116 0.052333805
## 396  0.0000000000 0.035714286 0.053571429 0.071428571 0.053571429
## 397  0.0389805097 0.020989505 0.046476762 0.061469265 0.022488756
## 398  0.0000000000 0.000000000 0.086956522 0.000000000 0.000000000
## 399  0.0192000000 0.033600000 0.030400000 0.067200000 0.022400000
## 400  0.0333333333 0.033333333 0.066666667 0.066666667 0.000000000
## 401  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 402  0.0353356890 0.042402827 0.024734982 0.035335689 0.053003534
## 403  0.0520673813 0.021439510 0.022970904 0.062787136 0.009188361
## 404  0.0106382979 0.000000000 0.021276596 0.005319149 0.010638298
## 405  0.0000000000 0.000000000 0.034090909 0.034090909 0.011363636
## 406  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 407  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 408  0.0150753769 0.005025126 0.000000000 0.050251256 0.025125628
## 409  0.0059523810 0.005952381 0.053571429 0.029761905 0.017857143
## 410  0.0000000000 0.057142857 0.000000000 0.028571429 0.000000000
## 411  0.0548649807 0.016716674 0.026146592 0.028289756 0.019288470
## 412  0.0340909091 0.045454545 0.011363636 0.011363636 0.011363636
## 413  0.0285714286 0.028571429 0.028571429 0.000000000 0.000000000
## 414  0.0182315406 0.008204193 0.017319964 0.020054695 0.011850501
## 415  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 416  0.0138248848 0.009216590 0.032258065 0.013824885 0.013824885
## 417  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 418  0.0089887640 0.074157303 0.031460674 0.047191011 0.006741573
## 419  0.0500000000 0.016666667 0.000000000 0.033333333 0.000000000
## 420  0.0640495868 0.020661157 0.012396694 0.055785124 0.030991736
## 421  0.0000000000 0.000000000 0.035714286 0.000000000 0.000000000
## 422  0.0476190476 0.047619048 0.031746032 0.039682540 0.079365079
## 423  0.0447761194 0.000000000 0.000000000 0.000000000 0.014925373
## 424  0.0114942529 0.011494253 0.022988506 0.011494253 0.057471264
## 425  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 426  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 427  0.0395809080 0.053550640 0.027939464 0.026775320 0.026775320
## 428  0.0500000000 0.005000000 0.040000000 0.015000000 0.015000000
## 429  0.0000000000 0.014084507 0.000000000 0.000000000 0.000000000
## 430  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 431  0.0238095238 0.047619048 0.023809524 0.000000000 0.071428571
## 432  0.0000000000 0.000000000 0.038461538 0.000000000 0.038461538
## 433  0.0158730159 0.007936508 0.007936508 0.015873016 0.007936508
## 434  0.0283687943 0.026004728 0.056737589 0.044917258 0.035460993
## 435  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 436  0.0703125000 0.015625000 0.007812500 0.054687500 0.054687500
## 437  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 438  0.0000000000 0.015267176 0.045801527 0.000000000 0.007633588
## 439  0.0196078431 0.000000000 0.000000000 0.058823529 0.000000000
## 440  0.0180180180 0.036036036 0.045045045 0.018018018 0.018018018
## 441  0.0425531915 0.021276596 0.031914894 0.021276596 0.031914894
## 442  0.0256410256 0.030769231 0.030769231 0.000000000 0.005128205
## 443  0.0526315789 0.052631579 0.052631579 0.000000000 0.000000000
## 444  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 445  0.0145719490 0.060109290 0.045537341 0.010928962 0.023679417
## 446  0.0181818182 0.036363636 0.036363636 0.090909091 0.054545455
## 447  0.0000000000 0.180555556 0.027777778 0.013888889 0.013888889
## 448  0.0952380952 0.000000000 0.031746032 0.079365079 0.079365079
## 449  0.0294117647 0.029411765 0.013840830 0.015570934 0.020761246
## 450  0.0111464968 0.023885350 0.019108280 0.038216561 0.068471338
## 451  0.0606060606 0.000000000 0.030303030 0.000000000 0.000000000
## 452  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 453  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 454  0.0428571429 0.014285714 0.000000000 0.014285714 0.014285714
## 455  0.0526315789 0.052631579 0.000000000 0.000000000 0.000000000
## 456  0.0175438596 0.035087719 0.140350877 0.000000000 0.087719298
## 457  0.0095238095 0.022222222 0.053968254 0.015873016 0.034920635
## 458  0.0263157895 0.131578947 0.026315789 0.026315789 0.039473684
## 459  0.0337078652 0.044943820 0.022471910 0.022471910 0.022471910
## 460  0.0382352941 0.041176471 0.029411765 0.032352941 0.067647059
## 461  0.0000000000 0.000000000 0.000000000 0.000000000 0.173913043
## 462  0.0200000000 0.100000000 0.040000000 0.020000000 0.020000000
## 463  0.0120481928 0.012048193 0.036144578 0.012048193 0.024096386
## 464  0.0510204082 0.015306122 0.010204082 0.096938776 0.010204082
## 465  0.0278745645 0.027874564 0.062717770 0.017421603 0.038327526
## 466  0.0937500000 0.062500000 0.000000000 0.031250000 0.062500000
## 467  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 468  0.0218978102 0.000000000 0.007299270 0.029197080 0.029197080
## 469  0.0474308300 0.023715415 0.007905138 0.015810277 0.055335968
## 470  0.0141342756 0.010600707 0.014134276 0.003533569 0.007067138
## 471  0.0000000000 0.064516129 0.000000000 0.193548387 0.000000000
## 472  0.0129310345 0.094827586 0.025862069 0.038793103 0.047413793
## 473  0.0000000000 0.000000000 0.000000000 0.000000000 0.052631579
## 474  0.0285714286 0.000000000 0.000000000 0.000000000 0.000000000
## 475  0.0555555556 0.027777778 0.013888889 0.027777778 0.152777778
## 476  0.0308370044 0.008810573 0.074889868 0.048458150 0.026431718
## 477  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 478  0.0285714286 0.000000000 0.000000000 0.085714286 0.057142857
## 479  0.0077519380 0.000000000 0.069767442 0.031007752 0.007751938
## 480  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 481  0.0072463768 0.014492754 0.021739130 0.018115942 0.032608696
## 482  0.0000000000 0.136363636 0.000000000 0.000000000 0.000000000
## 483  0.0185185185 0.018518519 0.000000000 0.000000000 0.037037037
## 484  0.0400000000 0.000000000 0.100000000 0.000000000 0.000000000
## 485  0.0000000000 0.000000000 0.000000000 0.043478261 0.086956522
## 486  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 487  0.0079365079 0.015873016 0.055555556 0.015873016 0.087301587
## 488  0.0361445783 0.024096386 0.048192771 0.024096386 0.012048193
## 489  0.0000000000 0.000000000 0.000000000 0.071428571 0.071428571
## 490  0.0000000000 0.112676056 0.028169014 0.014084507 0.070422535
## 491  0.0333333333 0.000000000 0.000000000 0.000000000 0.000000000
## 492  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 493  0.0000000000 0.000000000 0.000000000 0.000000000 0.071428571
## 494  0.0139599814 0.020474639 0.013029316 0.021870638 0.006049325
## 495  0.0000000000 0.000000000 0.000000000 0.233333333 0.000000000
## 496  0.0574712644 0.068965517 0.000000000 0.011494253 0.000000000
## 497  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 498  0.0344827586 0.000000000 0.068965517 0.206896552 0.000000000
## 499  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 500  0.1333333333 0.000000000 0.000000000 0.000000000 0.000000000
## 501  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 502  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 503  0.0133333333 0.026666667 0.017777778 0.013333333 0.013333333
## 504  0.0172413793 0.014655172 0.025000000 0.020689655 0.038793103
## 505  0.0250896057 0.071684588 0.026284349 0.043010753 0.047789725
## 506  0.0800000000 0.000000000 0.000000000 0.040000000 0.000000000
## 507  0.0000000000 0.017543860 0.017543860 0.017543860 0.017543860
## 508  0.0325497288 0.025316456 0.054249548 0.034358047 0.014466546
## 509  0.0909090909 0.000000000 0.000000000 0.000000000 0.000000000
## 510  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 511  0.0148698885 0.014869888 0.003717472 0.014869888 0.029739777
## 512  0.0093457944 0.018691589 0.009345794 0.037383178 0.018691589
## 513  0.0206185567 0.020618557 0.030927835 0.061855670 0.020618557
## 514  0.0048076923 0.019230769 0.004807692 0.024038462 0.019230769
## 515  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 516  0.0000000000 0.000000000 0.000000000 0.033333333 0.000000000
## 517  0.0625000000 0.000000000 0.000000000 0.125000000 0.000000000
## 518  0.1052631579 0.105263158 0.000000000 0.052631579 0.000000000
## 519  0.0114068441 0.015209125 0.003802281 0.045627376 0.011406844
## 520  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 521  0.0000000000 0.020408163 0.040816327 0.000000000 0.020408163
## 522  0.0033333333 0.026666667 0.010000000 0.016666667 0.000000000
## 523  0.0000000000 0.000000000 0.000000000 0.102040816 0.122448980
## 524  0.0196078431 0.019607843 0.000000000 0.000000000 0.019607843
## 525  0.0000000000 0.000000000 0.000000000 0.000000000 0.018181818
## 526  0.0149253731 0.000000000 0.000000000 0.044776119 0.014925373
## 527  0.0000000000 0.012658228 0.050632911 0.050632911 0.000000000
## 528  0.0240963855 0.042168675 0.012048193 0.078313253 0.012048193
## 529  0.0103092784 0.000000000 0.000000000 0.010309278 0.010309278
## 530  0.1176470588 0.000000000 0.000000000 0.000000000 0.019607843
## 531  0.0000000000 0.000000000 0.030303030 0.000000000 0.151515152
## 532  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 533  0.0307692308 0.000000000 0.038461538 0.003846154 0.030769231
## 534  0.0000000000 0.083333333 0.083333333 0.000000000 0.000000000
## 535  0.0000000000 0.000000000 0.014492754 0.000000000 0.130434783
## 536  0.0612244898 0.000000000 0.040816327 0.040816327 0.000000000
## 537  0.0000000000 0.020000000 0.040000000 0.000000000 0.040000000
## 538  0.0444444444 0.022222222 0.000000000 0.000000000 0.044444444
## 539  0.0000000000 0.044444444 0.000000000 0.000000000 0.022222222
## 540  0.0000000000 0.000000000 0.000000000 0.030303030 0.060606061
## 541  0.0568720379 0.099526066 0.028436019 0.033175355 0.018957346
## 542  0.0163934426 0.000000000 0.016393443 0.016393443 0.065573770
## 543  0.0517241379 0.017241379 0.000000000 0.043103448 0.025862069
## 544  0.0243902439 0.000000000 0.000000000 0.048780488 0.024390244
## 545  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 546  0.0000000000 0.041666667 0.020833333 0.062500000 0.000000000
## 547  0.0139534884 0.009302326 0.037209302 0.013953488 0.023255814
## 548  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 549  0.0476190476 0.019047619 0.038095238 0.133333333 0.076190476
## 550  0.0000000000 0.000000000 0.040816327 0.000000000 0.000000000
## 551  0.0000000000 0.000000000 0.065573770 0.032786885 0.032786885
## 552  0.0000000000 0.000000000 0.021276596 0.063829787 0.063829787
## 553  0.0000000000 0.000000000 0.000000000 0.125000000 0.020833333
## 554  0.0000000000 0.000000000 0.000000000 0.033898305 0.050847458
## 555  0.0000000000 0.000000000 0.000000000 0.046153846 0.061538462
## 556  0.0000000000 0.030769231 0.046153846 0.015384615 0.046153846
## 557  0.0354609929 0.014184397 0.042553191 0.014184397 0.021276596
## 558  0.0222222222 0.000000000 0.000000000 0.044444444 0.066666667
## 559  0.3285714286 0.014285714 0.028571429 0.000000000 0.014285714
## 560  0.0000000000 0.000000000 0.000000000 0.157894737 0.000000000
## 561  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 562  0.0000000000 0.111111111 0.000000000 0.000000000 0.000000000
## 563  0.0321100917 0.016055046 0.020642202 0.009174312 0.020642202
## 564  0.0731707317 0.000000000 0.024390244 0.000000000 0.024390244
## 565  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 566  0.0769230769 0.038461538 0.096153846 0.019230769 0.019230769
## 567  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 568  0.0000000000 0.000000000 0.037037037 0.037037037 0.000000000
## 569  0.0416666667 0.019021739 0.032608696 0.020833333 0.039855072
## 570  0.0566037736 0.003144654 0.006289308 0.031446541 0.037735849
## 571  0.0288461538 0.038461538 0.033653846 0.038461538 0.052884615
## 572  0.0526315789 0.000000000 0.013157895 0.000000000 0.157894737
## 573  0.0000000000 0.000000000 0.000000000 0.000000000 0.034482759
## 574  0.0412698413 0.003174603 0.006349206 0.092063492 0.057142857
## 575  0.0000000000 0.000000000 0.000000000 0.000000000 0.083333333
## 576  0.0000000000 0.040000000 0.000000000 0.000000000 0.040000000
## 577  0.0000000000 0.000000000 0.000000000 0.083333333 0.000000000
## 578  0.0000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 579  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 580  0.0000000000 0.035714286 0.000000000 0.000000000 0.000000000
## 581  0.1333333333 0.166666667 0.000000000 0.000000000 0.000000000
## 582  0.0357142857 0.035714286 0.035714286 0.053571429 0.017857143
## 583  0.0232558140 0.074418605 0.060465116 0.004651163 0.023255814
## 584  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 585  0.0150000000 0.017500000 0.020000000 0.027500000 0.015000000
## 586  0.0000000000 0.000000000 0.040000000 0.020000000 0.000000000
## 587  0.0521739130 0.029249012 0.045849802 0.016600791 0.052173913
## 588  0.0000000000 0.015625000 0.000000000 0.000000000 0.109375000
## 589  0.0000000000 0.095238095 0.047619048 0.015873016 0.015873016
## 590  0.0000000000 0.000000000 0.066666667 0.000000000 0.053333333
## 591  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 592  0.0192307692 0.000000000 0.000000000 0.000000000 0.000000000
## 593  0.0164439877 0.030832477 0.010277492 0.007194245 0.017471737
## 594  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 595  0.0000000000 0.000000000 0.035714286 0.000000000 0.000000000
## 596  0.0000000000 0.000000000 0.000000000 0.000000000 0.034482759
## 597  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 598  0.0144927536 0.014492754 0.028985507 0.086956522 0.000000000
## 599  0.0000000000 0.045454545 0.045454545 0.045454545 0.000000000
## 600  0.0540540541 0.000000000 0.054054054 0.054054054 0.000000000
## 601  0.0000000000 0.000000000 0.040000000 0.040000000 0.000000000
## 602  0.0000000000 0.038461538 0.000000000 0.038461538 0.000000000
## 603  0.0290697674 0.017441860 0.063953488 0.000000000 0.011627907
## 604  0.0000000000 0.000000000 0.000000000 0.000000000 0.038461538
## 605  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 606  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 607  0.0000000000 0.000000000 0.000000000 0.107142857 0.000000000
## 608  0.0392156863 0.039215686 0.023529412 0.019607843 0.043137255
## 609  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 610  0.0821917808 0.013698630 0.095890411 0.027397260 0.000000000
## 611  0.0000000000 0.000000000 0.172413793 0.000000000 0.000000000
## 612  0.0000000000 0.064516129 0.000000000 0.000000000 0.000000000
## 613  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 614  0.0656934307 0.000000000 0.058394161 0.021897810 0.000000000
## 615  0.0000000000 0.027777778 0.000000000 0.055555556 0.000000000
## 616  0.0000000000 0.000000000 0.076923077 0.000000000 0.192307692
## 617  0.0000000000 0.000000000 0.000000000 0.000000000 0.040000000
## 618  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 619  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 620  0.0333333333 0.275000000 0.000000000 0.025000000 0.141666667
## 621  0.0000000000 0.057142857 0.000000000 0.000000000 0.000000000
## 622  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 623  0.0000000000 0.000000000 0.000000000 0.000000000 0.034482759
## 624  0.0196078431 0.098039216 0.000000000 0.098039216 0.098039216
## 625  0.1538461538 0.000000000 0.000000000 0.000000000 0.051282051
## 626  0.0000000000 0.000000000 0.043478261 0.000000000 0.000000000
## 627  0.0057803468 0.023121387 0.098265896 0.005780347 0.005780347
## 628  0.0000000000 0.000000000 0.000000000 0.000000000 0.133333333
## 629  0.0285714286 0.000000000 0.028571429 0.000000000 0.057142857
## 630  0.0000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 631  0.0769230769 0.076923077 0.000000000 0.000000000 0.000000000
## 632  0.0357142857 0.107142857 0.000000000 0.000000000 0.035714286
## 633  0.0285714286 0.007142857 0.050000000 0.014285714 0.121428571
## 634  0.0000000000 0.000000000 0.022727273 0.000000000 0.022727273
## 635  0.0000000000 0.000000000 0.000000000 0.023809524 0.023809524
## 636  0.0408163265 0.142857143 0.010204082 0.010204082 0.040816327
## 637  0.0000000000 0.000000000 0.000000000 0.000000000 0.055555556
## 638  0.0000000000 0.000000000 0.052631579 0.000000000 0.000000000
## 639  0.0000000000 0.000000000 0.000000000 0.062500000 0.000000000
## 640  0.0000000000 0.000000000 0.000000000 0.105263158 0.000000000
## 641  0.0000000000 0.000000000 0.000000000 0.000000000 0.055555556
## 642  0.0000000000 0.000000000 0.000000000 0.000000000 0.038461538
## 643  0.0000000000 0.000000000 0.050000000 0.050000000 0.100000000
## 644  0.0000000000 0.080000000 0.000000000 0.000000000 0.040000000
## 645  0.0000000000 0.000000000 0.000000000 0.037037037 0.000000000
## 646  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 647  0.0344827586 0.034482759 0.000000000 0.034482759 0.000000000
## 648  0.2893401015 0.203045685 0.005076142 0.020304569 0.035532995
## 649  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 650  0.0448979592 0.040816327 0.016326531 0.036734694 0.036734694
## 651  0.0000000000 0.000000000 0.000000000 0.000000000 0.142857143
## 652  0.0000000000 0.000000000 0.034482759 0.000000000 0.034482759
## 653  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 654  0.0216836735 0.024234694 0.025510204 0.025510204 0.052295918
## 655  0.0368852459 0.012295082 0.024590164 0.053278689 0.077868852
## 656  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 657  0.0129870130 0.000000000 0.051948052 0.025974026 0.038961039
## 658  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 659  0.0250000000 0.033333333 0.008333333 0.033333333 0.025000000
## 660  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 661  0.0000000000 0.000000000 0.000000000 0.000000000 0.312500000
## 662  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 663  0.3000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 664  0.0503597122 0.028776978 0.000000000 0.028776978 0.021582734
## 665  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 666  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 667  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 668  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 669  0.0000000000 0.033333333 0.033333333 0.000000000 0.000000000
## 670  0.0000000000 0.000000000 0.000000000 0.000000000 0.083333333
## 671  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 672  0.0000000000 0.000000000 0.000000000 0.000000000 0.058823529
## 673  0.0000000000 0.000000000 0.000000000 0.000000000 0.050000000
## 674  0.0000000000 0.000000000 0.025000000 0.000000000 0.050000000
## 675  0.0273972603 0.000000000 0.013698630 0.109589041 0.000000000
## 676  0.0000000000 0.000000000 0.000000000 0.142857143 0.000000000
## 677  0.0000000000 0.000000000 0.000000000 0.083333333 0.000000000
## 678  0.0000000000 0.000000000 0.000000000 0.043478261 0.000000000
## 679  0.0208333333 0.083333333 0.020833333 0.062500000 0.000000000
## 680  0.0000000000 0.000000000 0.000000000 0.040000000 0.040000000
## 681  0.0000000000 0.166666667 0.000000000 0.111111111 0.000000000
## 682  0.1250000000 0.062500000 0.000000000 0.000000000 0.062500000
## 683  0.0000000000 0.000000000 0.000000000 0.100000000 0.000000000
## 684  0.0000000000 0.000000000 0.000000000 0.029411765 0.029411765
## 685  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 686  0.0000000000 0.000000000 0.000000000 0.000000000 0.038461538
## 687  0.0261437908 0.000000000 0.019607843 0.000000000 0.013071895
## 688  0.0375939850 0.349624060 0.026315789 0.011278195 0.022556391
## 689  0.0285714286 0.000000000 0.000000000 0.000000000 0.000000000
## 690  0.0270270270 0.027027027 0.027027027 0.000000000 0.027027027
## 691  0.0000000000 0.098039216 0.078431373 0.019607843 0.000000000
## 692  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 693  0.0000000000 0.000000000 0.000000000 0.000000000 0.035714286
## 694  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 695  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 696  0.0000000000 0.000000000 0.000000000 0.103448276 0.120689655
## 697  0.0666666667 0.000000000 0.000000000 0.000000000 0.000000000
## 698  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 699  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 700  0.0000000000 0.000000000 0.000000000 0.012987013 0.571428571
## 701  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 702  0.0769230769 0.076923077 0.000000000 0.038461538 0.012820513
## 703  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 704  0.0476190476 0.023809524 0.023809524 0.023809524 0.023809524
## 705  0.0270270270 0.000000000 0.027027027 0.000000000 0.027027027
## 706  0.0000000000 0.000000000 0.030303030 0.000000000 0.030303030
## 707  0.0000000000 0.000000000 0.000000000 0.000000000 0.037037037
## 708  0.0263157895 0.026315789 0.000000000 0.052631579 0.105263158
## 709  0.0000000000 0.000000000 0.000000000 0.029411765 0.029411765
## 710  0.0163599182 0.073619632 0.063394683 0.122699387 0.016359918
## 711  0.0000000000 0.000000000 0.000000000 0.035714286 0.000000000
## 712  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 713  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 714  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 715  0.0833333333 0.000000000 0.000000000 0.000000000 0.000000000
## 716  0.0000000000 0.000000000 0.000000000 0.047619048 0.047619048
## 717  0.1000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 718  0.0000000000 0.000000000 0.153846154 0.038461538 0.000000000
## 719  0.1000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 720  0.0833333333 0.000000000 0.000000000 0.000000000 0.000000000
## 721  0.0000000000 0.000000000 0.000000000 0.052631579 0.000000000
## 722  0.0769230769 0.000000000 0.000000000 0.000000000 0.000000000
## 723  0.0000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 724  0.0909090909 0.000000000 0.000000000 0.000000000 0.000000000
## 725  0.0714285714 0.000000000 0.000000000 0.000000000 0.000000000
## 726  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 727  0.0833333333 0.000000000 0.000000000 0.000000000 0.000000000
## 728  0.0000000000 0.000000000 0.000000000 0.047619048 0.000000000
## 729  0.0000000000 0.000000000 0.000000000 0.230769231 0.076923077
## 730  0.0000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 731  0.0833333333 0.000000000 0.000000000 0.000000000 0.000000000
## 732  0.0769230769 0.000000000 0.000000000 0.000000000 0.000000000
## 733  0.0000000000 0.000000000 0.039215686 0.058823529 0.019607843
## 734  0.2045454545 0.000000000 0.000000000 0.022727273 0.113636364
## 735  0.0714285714 0.000000000 0.000000000 0.000000000 0.000000000
## 736  0.0833333333 0.000000000 0.000000000 0.000000000 0.000000000
## 737  0.1333333333 0.000000000 0.066666667 0.000000000 0.000000000
## 738  0.0769230769 0.000000000 0.000000000 0.000000000 0.000000000
## 739  0.0363636364 0.000000000 0.036363636 0.072727273 0.054545455
## 740  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 741  0.0000000000 0.000000000 0.032258065 0.000000000 0.064516129
## 742  0.1034482759 0.000000000 0.068965517 0.000000000 0.000000000
## 743  0.0000000000 0.000000000 0.000000000 0.052631579 0.000000000
## 744  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 745  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 746  0.0000000000 0.034482759 0.000000000 0.000000000 0.034482759
## 747  0.0000000000 0.000000000 0.041666667 0.000000000 0.000000000
## 748  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 749  0.0000000000 0.000000000 0.000000000 0.034482759 0.034482759
## 750  0.0000000000 0.000000000 0.000000000 0.135135135 0.000000000
## 751  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 752  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 753  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 754  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 755  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 756  0.0173913043 0.017391304 0.052173913 0.034782609 0.086956522
## 757  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 758  0.0000000000 0.028985507 0.014492754 0.043478261 0.043478261
## 759  0.0113636364 0.017045455 0.045454545 0.051136364 0.051136364
## 760  0.0384615385 0.019230769 0.009615385 0.096153846 0.028846154
## 761  0.0246913580 0.037037037 0.037037037 0.098765432 0.012345679
## 762  0.0000000000 0.000000000 0.017857143 0.000000000 0.053571429
## 763  0.0000000000 0.048780488 0.024390244 0.040650407 0.040650407
## 764  0.0000000000 0.050000000 0.000000000 0.000000000 0.025000000
## 765  0.0500000000 0.000000000 0.000000000 0.000000000 0.000000000
## 766  0.0384615385 0.000000000 0.000000000 0.000000000 0.000000000
## 767  0.0000000000 0.008000000 0.048000000 0.008000000 0.056000000
## 768  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 769  0.0116279070 0.011627907 0.000000000 0.023255814 0.058139535
## 770  0.0740740741 0.074074074 0.000000000 0.000000000 0.000000000
## 771  0.0000000000 0.000000000 0.000000000 0.000000000 0.024390244
## 772  0.0128205128 0.025641026 0.000000000 0.000000000 0.128205128
## 773  0.0168918919 0.016891892 0.050675676 0.070945946 0.023648649
## 774  0.0000000000 0.000000000 0.090909091 0.045454545 0.045454545
## 775  0.0000000000 0.000000000 0.000000000 0.173913043 0.130434783
## 776  0.0000000000 0.000000000 0.062500000 0.062500000 0.000000000
## 777  0.0250000000 0.000000000 0.025000000 0.000000000 0.000000000
## 778  0.0000000000 0.000000000 0.032258065 0.000000000 0.000000000
## 779  0.1111111111 0.000000000 0.027777778 0.055555556 0.000000000
## 780  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 781  0.0000000000 0.000000000 0.000000000 0.038461538 0.076923077
## 782  0.1428571429 0.000000000 0.000000000 0.000000000 0.000000000
## 783  0.0101010101 0.000000000 0.020202020 0.020202020 0.020202020
## 784  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 785  0.0416666667 0.000000000 0.000000000 0.000000000 0.083333333
## 786  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 787  0.0000000000 0.000000000 0.071428571 0.000000000 0.000000000
## 788  0.0000000000 0.000000000 0.037037037 0.000000000 0.000000000
## 789  0.1500000000 0.000000000 0.000000000 0.000000000 0.000000000
## 790  0.0064308682 0.028938907 0.151125402 0.051446945 0.000000000
## 791  0.0000000000 0.000000000 0.000000000 0.045454545 0.000000000
## 792  0.0000000000 0.000000000 0.000000000 0.142857143 0.000000000
## 793  0.0416666667 0.000000000 0.041666667 0.083333333 0.000000000
## 794  0.0000000000 0.000000000 0.000000000 0.057142857 0.000000000
## 795  0.0111731844 0.044692737 0.005586592 0.022346369 0.000000000
## 796  0.0000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 797  0.0000000000 0.000000000 0.000000000 0.363636364 0.000000000
## 798  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 799  0.0000000000 0.022727273 0.000000000 0.000000000 0.022727273
## 800  0.0000000000 0.000000000 0.000000000 0.000000000 0.045454545
## 801  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 802  0.0000000000 0.064516129 0.064516129 0.000000000 0.032258065
## 803  0.0263157895 0.026315789 0.026315789 0.000000000 0.000000000
## 804  0.0000000000 0.000000000 0.027777778 0.000000000 0.000000000
## 805  0.0000000000 0.000000000 0.000000000 0.037037037 0.000000000
## 806  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 807  0.0000000000 0.000000000 0.000000000 0.000000000 0.117647059
## 808  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 809  0.0370370370 0.074074074 0.037037037 0.018518519 0.000000000
## 810  0.0000000000 0.000000000 0.045454545 0.000000000 0.000000000
## 811  0.0000000000 0.000000000 0.029411765 0.000000000 0.147058824
## 812  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 813  0.0000000000 0.136363636 0.000000000 0.045454545 0.000000000
## 814  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 815  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 816  0.0080000000 0.000000000 0.024000000 0.000000000 0.048000000
## 817  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 818  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 819  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 820  0.0000000000 0.000000000 0.000000000 0.000000000 0.205882353
## 821  0.0000000000 0.000000000 0.000000000 0.000000000 0.148148148
## 822  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 823  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 824  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 825  0.0000000000 0.000000000 0.000000000 0.000000000 0.090909091
## 826  0.0000000000 0.000000000 0.066666667 0.000000000 0.000000000
## 827  0.0283018868 0.009433962 0.018867925 0.037735849 0.028301887
## 828  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 829  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 830  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 831  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 832  0.0384615385 0.000000000 0.038461538 0.019230769 0.000000000
## 833  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 834  0.0615384615 0.046153846 0.061538462 0.092307692 0.015384615
## 835  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 836  0.0000000000 0.000000000 0.050000000 0.000000000 0.000000000
## 837  0.0000000000 0.000000000 0.000000000 0.090909091 0.000000000
## 838  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 839  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 840  0.0555555556 0.000000000 0.000000000 0.055555556 0.000000000
## 841  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 842  0.0000000000 0.000000000 0.000000000 0.080000000 0.000000000
## 843  0.0000000000 0.000000000 0.000000000 0.000000000 0.043478261
## 844  0.0000000000 0.000000000 0.000000000 0.000000000 0.153846154
## 845  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 846  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 847  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 848  0.2500000000 0.023809524 0.023809524 0.071428571 0.047619048
## 849  0.0000000000 0.068965517 0.000000000 0.000000000 0.000000000
## 850  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 851  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 852  0.0000000000 0.000000000 0.071428571 0.000000000 0.000000000
## 853  0.0000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 854  0.0256410256 0.051282051 0.000000000 0.051282051 0.051282051
## 855  0.0000000000 0.000000000 0.000000000 0.041666667 0.000000000
## 856  0.0142857143 0.000000000 0.042857143 0.000000000 0.014285714
## 857  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 858  0.0000000000 0.058823529 0.000000000 0.000000000 0.117647059
## 859  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 860  0.0425724638 0.044384058 0.030797101 0.039855072 0.040760870
## 861  0.0370370370 0.018518519 0.029629630 0.011111111 0.066666667
## 862  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 863  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 864  0.0000000000 0.000000000 0.000000000 0.076923077 0.000000000
## 865  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 866  0.0000000000 0.000000000 0.000000000 0.090909091 0.000000000
## 867  0.0000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 868  0.0190476190 0.047619048 0.047619048 0.009523810 0.000000000
## 869  0.0769230769 0.000000000 0.000000000 0.076923077 0.000000000
## 870  0.0490196078 0.000000000 0.000000000 0.078431373 0.009803922
## 871  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 872  0.0400000000 0.000000000 0.040000000 0.040000000 0.000000000
## 873  0.0256410256 0.000000000 0.000000000 0.000000000 0.128205128
## 874  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 875  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 876  0.0000000000 0.181818182 0.000000000 0.045454545 0.000000000
## 877  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 878  0.0000000000 0.178571429 0.000000000 0.035714286 0.000000000
## 879  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 880  0.0967741935 0.096774194 0.064516129 0.000000000 0.032258065
## 881  0.1200000000 0.040000000 0.028571429 0.068571429 0.017142857
## 882  0.0244360902 0.036654135 0.020676692 0.084586466 0.060150376
## 883  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 884  0.0000000000 0.000000000 0.000000000 0.000000000 0.142857143
## 885  0.0000000000 0.000000000 0.000000000 0.000000000 0.142857143
## 886  0.0000000000 0.000000000 0.000000000 0.000000000 0.333333333
## 887  0.0000000000 0.000000000 0.000000000 0.000000000 0.125000000
## 888  0.0000000000 0.000000000 0.000000000 0.000000000 0.142857143
## 889  0.0092024540 0.036809816 0.092024540 0.052147239 0.027607362
## 890  0.0000000000 0.000000000 0.071428571 0.035714286 0.000000000
## 891  0.0353356890 0.053003534 0.010600707 0.042402827 0.014134276
## 892  0.0000000000 0.000000000 0.064516129 0.032258065 0.000000000
## 893  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 894  0.0857142857 0.000000000 0.114285714 0.028571429 0.000000000
## 895  0.0322580645 0.066532258 0.042338710 0.032258065 0.022177419
## 896  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 897  0.0232558140 0.069767442 0.000000000 0.023255814 0.000000000
## 898  0.0909090909 0.000000000 0.000000000 0.000000000 0.090909091
## 899  0.0000000000 0.066666667 0.000000000 0.000000000 0.066666667
## 900  0.0000000000 0.000000000 0.000000000 0.000000000 0.085714286
## 901  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 902  0.0253164557 0.025316456 0.050632911 0.025316456 0.000000000
## 903  0.0816326531 0.000000000 0.000000000 0.000000000 0.000000000
## 904  0.0029673591 0.017804154 0.005934718 0.014836795 0.038575668
## 905  0.0158730159 0.000000000 0.000000000 0.000000000 0.031746032
## 906  0.0568070519 0.062683643 0.097943193 0.065621939 0.007835455
## 907  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 908  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 909  0.0666666667 0.040000000 0.000000000 0.000000000 0.000000000
## 910  0.0173410405 0.046242775 0.052023121 0.011560694 0.026011561
## 911  0.0201149425 0.051724138 0.011494253 0.014367816 0.020114943
## 912  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 913  0.0982142857 0.008928571 0.062500000 0.008928571 0.044642857
## 914  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 915  0.0051457976 0.012006861 0.022298456 0.018867925 0.008576329
## 916  0.0588235294 0.000000000 0.000000000 0.000000000 0.000000000
## 917  0.0000000000 0.000000000 0.043478261 0.000000000 0.000000000
## 918  0.0000000000 0.100000000 0.000000000 0.000000000 0.000000000
## 919  0.0170940171 0.000000000 0.000000000 0.000000000 0.000000000
## 920  0.0454545455 0.090909091 0.000000000 0.045454545 0.045454545
## 921  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 922  0.0180180180 0.009009009 0.045045045 0.054054054 0.036036036
## 923  0.0000000000 0.020618557 0.010309278 0.072164948 0.030927835
## 924  0.0384615385 0.057692308 0.000000000 0.019230769 0.019230769
## 925  0.0829493088 0.092165899 0.023041475 0.046082949 0.034562212
## 926  0.0083333333 0.025000000 0.025000000 0.016666667 0.041666667
## 927  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 928  0.0000000000 0.150000000 0.025000000 0.000000000 0.000000000
## 929  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 930  0.0125000000 0.000000000 0.000000000 0.025000000 0.012500000
## 931  0.0000000000 0.000000000 0.100000000 0.000000000 0.000000000
## 932  0.0000000000 0.000000000 0.000000000 0.000000000 0.500000000
## 933  0.0000000000 0.000000000 0.000000000 0.000000000 0.176470588
## 934  0.0000000000 0.000000000 0.000000000 0.038461538 0.000000000
## 935  0.0666666667 0.000000000 0.000000000 0.000000000 0.000000000
## 936  0.0000000000 0.000000000 0.000000000 0.000000000 0.083333333
## 937  0.0000000000 0.000000000 0.136363636 0.000000000 0.000000000
## 938  0.0446428571 0.020089286 0.033482143 0.020089286 0.064732143
## 939  0.0398936170 0.050531915 0.026595745 0.042553191 0.061170213
## 940  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 941  0.0104166667 0.125000000 0.010416667 0.010416667 0.041666667
## 942  0.0496453901 0.021276596 0.014184397 0.063829787 0.028368794
## 943  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 944  0.0093457944 0.037383178 0.015576324 0.028037383 0.068535826
## 945  0.0471698113 0.014150943 0.042452830 0.033018868 0.047169811
## 946  0.0245614035 0.045614035 0.031578947 0.024561404 0.021052632
## 947  0.0210084034 0.016806723 0.042016807 0.067226891 0.021008403
## 948  0.0000000000 0.000000000 0.022727273 0.000000000 0.000000000
## 949  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 950  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 951  0.0252100840 0.079831933 0.046218487 0.025210084 0.050420168
## 952  0.0000000000 0.000000000 0.179487179 0.000000000 0.000000000
## 953  0.0461538462 0.000000000 0.076923077 0.107692308 0.000000000
## 954  0.0571428571 0.000000000 0.000000000 0.000000000 0.057142857
## 955  0.0000000000 0.043478261 0.000000000 0.086956522 0.086956522
## 956  0.0650887574 0.017751479 0.035502959 0.023668639 0.047337278
## 957  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 958  0.0860215054 0.010752688 0.010752688 0.032258065 0.021505376
## 959  0.0194805195 0.006493506 0.025974026 0.038961039 0.006493506
## 960  0.0120481928 0.040963855 0.043373494 0.040963855 0.038554217
## 961  0.1472081218 0.071065990 0.040609137 0.030456853 0.035532995
## 962  0.0000000000 0.031746032 0.031746032 0.000000000 0.000000000
## 963  0.0789473684 0.000000000 0.026315789 0.000000000 0.000000000
## 964  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 965  0.0413223140 0.024793388 0.008264463 0.016528926 0.008264463
## 966  0.0689655172 0.017241379 0.051724138 0.034482759 0.051724138
## 967  0.0172413793 0.017241379 0.034482759 0.017241379 0.000000000
## 968  0.0120481928 0.036144578 0.000000000 0.036144578 0.036144578
## 969  0.0000000000 0.000000000 0.018181818 0.018181818 0.018181818
## 970  0.0476190476 0.007326007 0.065934066 0.058608059 0.021978022
## 971  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 972  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 973  0.0000000000 0.029411765 0.029411765 0.029411765 0.088235294
## 974  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 975  0.0413043478 0.084782609 0.047826087 0.028260870 0.026086957
## 976  0.0392156863 0.058823529 0.019607843 0.000000000 0.058823529
## 977  0.0284090909 0.039772727 0.051136364 0.051136364 0.062500000
## 978  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 979  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 980  0.0000000000 0.012195122 0.121951220 0.012195122 0.024390244
## 981  0.0533333333 0.120000000 0.000000000 0.013333333 0.000000000
## 982  0.0000000000 0.026315789 0.052631579 0.078947368 0.157894737
## 983  0.0000000000 0.022058824 0.073529412 0.110294118 0.007352941
## 984  0.0214285714 0.021428571 0.021428571 0.010714286 0.007142857
## 985  0.0209643606 0.025157233 0.029350105 0.018867925 0.012578616
## 986  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 987  0.0523497918 0.023795360 0.033313504 0.024985128 0.035098156
## 988  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 989  0.0492957746 0.007042254 0.007042254 0.035211268 0.028169014
## 990  0.0170940171 0.017094017 0.068376068 0.017094017 0.017094017
## 991  0.0216484608 0.017874876 0.027408143 0.022442900 0.027606753
## 992  0.0098039216 0.013071895 0.055555556 0.032679739 0.045751634
## 993  0.0307692308 0.011538462 0.030769231 0.034615385 0.015384615
## 994  0.0196969697 0.042424242 0.019696970 0.030303030 0.024242424
## 995  0.0206185567 0.030927835 0.020618557 0.020618557 0.030927835
## 996  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 997  0.0165198238 0.033590308 0.036343612 0.026431718 0.023678414
## 998  0.0000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 999  0.0216262976 0.005622837 0.011245675 0.003027682 0.009515571
## 1000 0.0592885375 0.031620553 0.027667984 0.071146245 0.039525692
##               54          55          56          57          58
## 1    0.017316017 0.014430014 0.018037518 0.020202020 0.027417027
## 2    0.026315789 0.026315789 0.026315789 0.039473684 0.013157895
## 3    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 4    0.025974026 0.020408163 0.024118738 0.029684601 0.020408163
## 5    0.053025577 0.026824704 0.015595758 0.016843419 0.018714910
## 6    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 7    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 8    0.015552675 0.015737826 0.022773560 0.021662655 0.020922051
## 9    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 10   0.017241379 0.034482759 0.000000000 0.017241379 0.000000000
## 11   0.044222539 0.034950071 0.023537803 0.004279601 0.006419401
## 12   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 13   0.000000000 0.070175439 0.017543860 0.017543860 0.000000000
## 14   0.058333333 0.116666667 0.016666667 0.008333333 0.025000000
## 15   0.000000000 0.037037037 0.000000000 0.074074074 0.000000000
## 16   0.032258065 0.032258065 0.032258065 0.000000000 0.064516129
## 17   0.004016064 0.000000000 0.024096386 0.004016064 0.000000000
## 18   0.096551724 0.020689655 0.006896552 0.034482759 0.020689655
## 19   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 20   0.024518389 0.029772329 0.038528897 0.049036778 0.052539405
## 21   0.058823529 0.042352941 0.028235294 0.032941176 0.047058824
## 22   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 23   0.014970060 0.016966068 0.015968064 0.038922156 0.045908184
## 24   0.003389831 0.023728814 0.000000000 0.003389831 0.013559322
## 25   0.022727273 0.000000000 0.000000000 0.000000000 0.000000000
## 26   0.102564103 0.000000000 0.000000000 0.102564103 0.025641026
## 27   0.022988506 0.017241379 0.005747126 0.011494253 0.000000000
## 28   0.007812500 0.031250000 0.015625000 0.042968750 0.003906250
## 29   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 30   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 31   0.009269988 0.001158749 0.024333720 0.011587486 0.016222480
## 32   0.000000000 0.017391304 0.000000000 0.030434783 0.004347826
## 33   0.038461538 0.038461538 0.024038462 0.024038462 0.014423077
## 34   0.027742749 0.026481715 0.020176545 0.017654477 0.021437579
## 35   0.037900875 0.011661808 0.040816327 0.064139942 0.014577259
## 36   0.027027027 0.048648649 0.000000000 0.010810811 0.005405405
## 37   0.000000000 0.000000000 0.000000000 0.000000000 0.043478261
## 38   0.022857143 0.005714286 0.028571429 0.028571429 0.057142857
## 39   0.013888889 0.041666667 0.020833333 0.020833333 0.027777778
## 40   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 41   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 42   0.020942408 0.010471204 0.015706806 0.047120419 0.010471204
## 43   0.010638298 0.021276596 0.010638298 0.053191489 0.010638298
## 44   0.011190234 0.018311292 0.022380468 0.030857918 0.018989488
## 45   0.034391534 0.008818342 0.011463845 0.022927690 0.025573192
## 46   0.030054645 0.023224044 0.064207650 0.030054645 0.036885246
## 47   0.002890173 0.037572254 0.000000000 0.002890173 0.052023121
## 48   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 49   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 50   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 51   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 52   0.014388489 0.025179856 0.021582734 0.021582734 0.014388489
## 53   0.000000000 0.010033445 0.036789298 0.016722408 0.003344482
## 54   0.053571429 0.000000000 0.017857143 0.017857143 0.000000000
## 55   0.010152284 0.020304569 0.045685279 0.060913706 0.015228426
## 56   0.016984045 0.020586722 0.030365414 0.022645394 0.022645394
## 57   0.007575758 0.022727273 0.015151515 0.030303030 0.060606061
## 58   0.031872510 0.007968127 0.015936255 0.007968127 0.019920319
## 59   0.026785714 0.036989796 0.039540816 0.030612245 0.025510204
## 60   0.019736842 0.052631579 0.019736842 0.006578947 0.026315789
## 61   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 62   0.043478261 0.000000000 0.043478261 0.000000000 0.086956522
## 63   0.011834320 0.079881657 0.065088757 0.017751479 0.079881657
## 64   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 65   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 66   0.026871401 0.011516315 0.007677543 0.042226488 0.013435701
## 67   0.011904762 0.047619048 0.047619048 0.000000000 0.035714286
## 68   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 69   0.020729092 0.016440315 0.011436741 0.011436741 0.043602573
## 70   0.090909091 0.022727273 0.000000000 0.000000000 0.000000000
## 71   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 72   0.000000000 0.016129032 0.000000000 0.032258065 0.000000000
## 73   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 74   0.025739321 0.072289157 0.009309967 0.009857612 0.006571742
## 75   0.052240936 0.021410220 0.008564088 0.027690551 0.037111048
## 76   0.014571949 0.003642987 0.020036430 0.273224044 0.156648452
## 77   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 78   0.017182131 0.017182131 0.003436426 0.030927835 0.044673540
## 79   0.021352313 0.000000000 0.024911032 0.007117438 0.035587189
## 80   0.000000000 0.000000000 0.000000000 0.000000000 0.018518519
## 81   0.012931034 0.012931034 0.025862069 0.004310345 0.034482759
## 82   0.000000000 0.021276596 0.021276596 0.053191489 0.010638298
## 83   0.014184397 0.043971631 0.048226950 0.032624113 0.017021277
## 84   0.014388489 0.039568345 0.057553957 0.035971223 0.010791367
## 85   0.044776119 0.098507463 0.029850746 0.002985075 0.014925373
## 86   0.003125000 0.006250000 0.009375000 0.003125000 0.000000000
## 87   0.036231884 0.047101449 0.072463768 0.036231884 0.032608696
## 88   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 89   0.027888446 0.052931133 0.039271485 0.026750142 0.038702334
## 90   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 91   0.000000000 0.045454545 0.000000000 0.000000000 0.000000000
## 92   0.009174312 0.029357798 0.014678899 0.025688073 0.029357798
## 93   0.019417476 0.032362460 0.035598706 0.006472492 0.012944984
## 94   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 95   0.000000000 0.000000000 0.000000000 0.035087719 0.000000000
## 96   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 97   0.083001328 0.063081009 0.029880478 0.068393094 0.067065073
## 98   0.018264840 0.013698630 0.036529680 0.013698630 0.045662100
## 99   0.003350084 0.011725293 0.010050251 0.018425461 0.013400335
## 100  0.000000000 0.000000000 0.000000000 0.136986301 0.054794521
## 101  0.030000000 0.058000000 0.074000000 0.020000000 0.008000000
## 102  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 103  0.023166023 0.027027027 0.030888031 0.027027027 0.000000000
## 104  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 105  0.019354839 0.019354839 0.019354839 0.006451613 0.000000000
## 106  0.022026432 0.050220264 0.038766520 0.025550661 0.024669604
## 107  0.039682540 0.007936508 0.031746032 0.015873016 0.027777778
## 108  0.000000000 0.009174312 0.018348624 0.165137615 0.027522936
## 109  0.079646018 0.024778761 0.044247788 0.035398230 0.030088496
## 110  0.000000000 0.043478261 0.000000000 0.000000000 0.000000000
## 111  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 112  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 113  0.009683099 0.026408451 0.029929577 0.065140845 0.036091549
## 114  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 115  0.026946108 0.022754491 0.016766467 0.019760479 0.025748503
## 116  0.033333333 0.000000000 0.033333333 0.066666667 0.000000000
## 117  0.000000000 0.047619048 0.000000000 0.085714286 0.028571429
## 118  0.040547390 0.047136341 0.028890015 0.022807907 0.030410542
## 119  0.058823529 0.000000000 0.117647059 0.000000000 0.058823529
## 120  0.057142857 0.000000000 0.000000000 0.000000000 0.000000000
## 121  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 122  0.016483516 0.010989011 0.024725275 0.010989011 0.024725275
## 123  0.019762846 0.028985507 0.040843215 0.022397892 0.006587615
## 124  0.027459954 0.011441648 0.022883295 0.018306636 0.025171625
## 125  0.037037037 0.012345679 0.012345679 0.037037037 0.000000000
## 126  0.013079667 0.052318668 0.041617122 0.048751486 0.021403092
## 127  0.022727273 0.000000000 0.022727273 0.022727273 0.022727273
## 128  0.031564809 0.020147750 0.024177300 0.045668234 0.020147750
## 129  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 130  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 131  0.000000000 0.041666667 0.083333333 0.000000000 0.000000000
## 132  0.003780718 0.011342155 0.007561437 0.017013233 0.013232514
## 133  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 134  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 135  0.037071886 0.035378246 0.017877305 0.015242755 0.016371848
## 136  0.000000000 0.100000000 0.010000000 0.020000000 0.090000000
## 137  0.031111111 0.000000000 0.022222222 0.004444444 0.031111111
## 138  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 139  0.019125683 0.028005464 0.017076503 0.008879781 0.016393443
## 140  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 141  0.000000000 0.025641026 0.000000000 0.153846154 0.025641026
## 142  0.043290043 0.051948052 0.043290043 0.017316017 0.073593074
## 143  0.166666667 0.027777778 0.000000000 0.027777778 0.000000000
## 144  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 145  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 146  0.033003300 0.009900990 0.026402640 0.019801980 0.026402640
## 147  0.039215686 0.000000000 0.078431373 0.000000000 0.019607843
## 148  0.029411765 0.000000000 0.029411765 0.029411765 0.058823529
## 149  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 150  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 151  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 152  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 153  0.305084746 0.000000000 0.084745763 0.016949153 0.016949153
## 154  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 155  0.030937216 0.026387625 0.013648772 0.027297543 0.035486806
## 156  0.025667351 0.025667351 0.024640657 0.010780287 0.009240246
## 157  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 158  0.000000000 0.008196721 0.008196721 0.000000000 0.008196721
## 159  0.015075377 0.030150754 0.017587940 0.007537688 0.023869347
## 160  0.051636364 0.052727273 0.029090909 0.038909091 0.049818182
## 161  0.038596491 0.024561404 0.021052632 0.028070175 0.038596491
## 162  0.031914894 0.031914894 0.031914894 0.053191489 0.010638298
## 163  0.022988506 0.011494253 0.011494253 0.000000000 0.022988506
## 164  0.007334963 0.017114914 0.019559902 0.039119804 0.034229829
## 165  0.051094891 0.058394161 0.036496350 0.036496350 0.007299270
## 166  0.016783217 0.036363636 0.060139860 0.065734266 0.040093240
## 167  0.058536585 0.024390244 0.019512195 0.000000000 0.029268293
## 168  0.016949153 0.016949153 0.000000000 0.000000000 0.016949153
## 169  0.029761905 0.071428571 0.011904762 0.011904762 0.011904762
## 170  0.006849315 0.020547945 0.054794521 0.068493151 0.130136986
## 171  0.023668639 0.029585799 0.005917160 0.005917160 0.076923077
## 172  0.085714286 0.028571429 0.028571429 0.028571429 0.000000000
## 173  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 174  0.015136226 0.003027245 0.016145308 0.031281534 0.021190716
## 175  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 176  0.004347826 0.030434783 0.017391304 0.039130435 0.030434783
## 177  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 178  0.016980436 0.073089701 0.021779254 0.016242156 0.011812477
## 179  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 180  0.017857143 0.017857143 0.028571429 0.067857143 0.064285714
## 181  0.023937360 0.038255034 0.027293065 0.027516779 0.029530201
## 182  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 183  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 184  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 185  0.016933638 0.031121281 0.016018307 0.021510297 0.020594966
## 186  0.020795660 0.041591320 0.057866184 0.056057866 0.031645570
## 187  0.020467836 0.026315789 0.020467836 0.002923977 0.023391813
## 188  0.022271715 0.069042316 0.055679287 0.028953229 0.031180401
## 189  0.023655914 0.010752688 0.045161290 0.008602151 0.012903226
## 190  0.071428571 0.033613445 0.025210084 0.021008403 0.008403361
## 191  0.000000000 0.000000000 0.015625000 0.062500000 0.000000000
## 192  0.022354694 0.026080477 0.023845007 0.098360656 0.030551416
## 193  0.009345794 0.009345794 0.014018692 0.037383178 0.014018692
## 194  0.013100437 0.004366812 0.013100437 0.078602620 0.004366812
## 195  0.011111111 0.011111111 0.000000000 0.022222222 0.011111111
## 196  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 197  0.027027027 0.060810811 0.044401544 0.017374517 0.022200772
## 198  0.020000000 0.000000000 0.020000000 0.020000000 0.040000000
## 199  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 200  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 201  0.021929825 0.019736842 0.010964912 0.019736842 0.026315789
## 202  0.000000000 0.000000000 0.000000000 0.090909091 0.000000000
## 203  0.000000000 0.026666667 0.000000000 0.040000000 0.026666667
## 204  0.060836502 0.030418251 0.007604563 0.060836502 0.041825095
## 205  0.043199066 0.025685931 0.021599533 0.016929364 0.014010508
## 206  0.025345622 0.011520737 0.013824885 0.016129032 0.004608295
## 207  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 208  0.016853933 0.005617978 0.000000000 0.067415730 0.016853933
## 209  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 210  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 211  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 212  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 213  0.031990521 0.047393365 0.027251185 0.011848341 0.028436019
## 214  0.013513514 0.040540541 0.000000000 0.013513514 0.000000000
## 215  0.000000000 0.000000000 0.200000000 0.000000000 0.000000000
## 216  0.029069767 0.005813953 0.017441860 0.011627907 0.075581395
## 217  0.000000000 0.009708738 0.029126214 0.009708738 0.048543689
## 218  0.057142857 0.014285714 0.014285714 0.007142857 0.014285714
## 219  0.032258065 0.000000000 0.000000000 0.032258065 0.032258065
## 220  0.000000000 0.038461538 0.000000000 0.038461538 0.028846154
## 221  0.038216561 0.031847134 0.089171975 0.050955414 0.025477707
## 222  0.042253521 0.017736046 0.019822640 0.029733959 0.024517475
## 223  0.009132420 0.013698630 0.041095890 0.022831050 0.118721461
## 224  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 225  0.017110266 0.022813688 0.020912548 0.013307985 0.007604563
## 226  0.000000000 0.000000000 0.052631579 0.000000000 0.052631579
## 227  0.000000000 0.012987013 0.012987013 0.064935065 0.038961039
## 228  0.095238095 0.038095238 0.019047619 0.076190476 0.000000000
## 229  0.013729977 0.005720824 0.021739130 0.014874142 0.019450801
## 230  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 231  0.021764939 0.016422636 0.021567076 0.025524337 0.029085873
## 232  0.016393443 0.038251366 0.065573770 0.049180328 0.010928962
## 233  0.012345679 0.004115226 0.020576132 0.012345679 0.016460905
## 234  0.006833713 0.012528474 0.028473804 0.029612756 0.020501139
## 235  0.003030303 0.013636364 0.015151515 0.019696970 0.009090909
## 236  0.049262629 0.052714151 0.033887669 0.036397866 0.022278004
## 237  0.045411542 0.014191107 0.047303690 0.013245033 0.017975402
## 238  0.046216353 0.097511427 0.010665312 0.104621635 0.012696800
## 239  0.031598513 0.020446097 0.009293680 0.018587361 0.014869888
## 240  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 241  0.028846154 0.009615385 0.038461538 0.038461538 0.048076923
## 242  0.041970803 0.065693431 0.048357664 0.090328467 0.136861314
## 243  0.019841270 0.023809524 0.011904762 0.031746032 0.007936508
## 244  0.002531646 0.007594937 0.012658228 0.027848101 0.017721519
## 245  0.017647059 0.011764706 0.023529412 0.020588235 0.008823529
## 246  0.007278020 0.005822416 0.014556041 0.011644833 0.010189229
## 247  0.000000000 0.000000000 0.000000000 0.016666667 0.016666667
## 248  0.008620690 0.020114943 0.051724138 0.020114943 0.011494253
## 249  0.008695652 0.000000000 0.000000000 0.008695652 0.017391304
## 250  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 251  0.035714286 0.089285714 0.026785714 0.017857143 0.035714286
## 252  0.036144578 0.024096386 0.036144578 0.012048193 0.036144578
## 253  0.015625000 0.000000000 0.015625000 0.015625000 0.015625000
## 254  0.041095890 0.027397260 0.013698630 0.013698630 0.027397260
## 255  0.015384615 0.015384615 0.038461538 0.000000000 0.015384615
## 256  0.021739130 0.021739130 0.032608696 0.032608696 0.021739130
## 257  0.038461538 0.038461538 0.038461538 0.019230769 0.038461538
## 258  0.000000000 0.000000000 0.000000000 0.052631579 0.026315789
## 259  0.014492754 0.043478261 0.028985507 0.014492754 0.014492754
## 260  0.028846154 0.019230769 0.028846154 0.009615385 0.048076923
## 261  0.016666667 0.033333333 0.050000000 0.016666667 0.016666667
## 262  0.015873016 0.015873016 0.015873016 0.031746032 0.031746032
## 263  0.045454545 0.015151515 0.030303030 0.030303030 0.015151515
## 264  0.092105263 0.052631579 0.065789474 0.039473684 0.026315789
## 265  0.018058691 0.011286682 0.033860045 0.011286682 0.029345372
## 266  0.032520325 0.020325203 0.050813008 0.028455285 0.040650407
## 267  0.010954165 0.015278178 0.034303834 0.026520611 0.040645719
## 268  0.002227171 0.014476615 0.018930958 0.013363029 0.016703786
## 269  0.044117647 0.044117647 0.044117647 0.029411765 0.044117647
## 270  0.023076923 0.007692308 0.046153846 0.007692308 0.053846154
## 271  0.024390244 0.012195122 0.060975610 0.012195122 0.048780488
## 272  0.019047619 0.028571429 0.076190476 0.019047619 0.038095238
## 273  0.042553191 0.028368794 0.035460993 0.028368794 0.014184397
## 274  0.023437500 0.023437500 0.046875000 0.031250000 0.031250000
## 275  0.050847458 0.025423729 0.067796610 0.008474576 0.025423729
## 276  0.014492754 0.021739130 0.043478261 0.007246377 0.043478261
## 277  0.013671875 0.007812500 0.195312500 0.054687500 0.041015625
## 278  0.020408163 0.020408163 0.037676609 0.023547881 0.054945055
## 279  0.040000000 0.020000000 0.020000000 0.080000000 0.010000000
## 280  0.040983607 0.032786885 0.081967213 0.008196721 0.073770492
## 281  0.025316456 0.025316456 0.012658228 0.063291139 0.012658228
## 282  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 283  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 284  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 285  0.038461538 0.000000000 0.000000000 0.000000000 0.000000000
## 286  0.000000000 0.000000000 0.050000000 0.000000000 0.000000000
## 287  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 288  0.000000000 0.000000000 0.000000000 0.153846154 0.000000000
## 289  0.000000000 0.111111111 0.111111111 0.000000000 0.000000000
## 290  0.030303030 0.015151515 0.015151515 0.015151515 0.000000000
## 291  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 292  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 293  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 294  0.153846154 0.019230769 0.019230769 0.000000000 0.000000000
## 295  0.000000000 0.000000000 0.028846154 0.278846154 0.009615385
## 296  0.026315789 0.039473684 0.013157895 0.026315789 0.013157895
## 297  0.148936170 0.021276596 0.000000000 0.000000000 0.000000000
## 298  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 299  0.000000000 0.391304348 0.000000000 0.000000000 0.043478261
## 300  0.000000000 0.019230769 0.076923077 0.000000000 0.038461538
## 301  0.005405405 0.014864865 0.014864865 0.020270270 0.017567568
## 302  0.037037037 0.000000000 0.000000000 0.000000000 0.000000000
## 303  0.022471910 0.022471910 0.000000000 0.000000000 0.056179775
## 304  0.000000000 0.086538462 0.048076923 0.067307692 0.028846154
## 305  0.019417476 0.024271845 0.002427184 0.036407767 0.060679612
## 306  0.042081949 0.016611296 0.044850498 0.028792913 0.026578073
## 307  0.019512195 0.039024390 0.034146341 0.043902439 0.024390244
## 308  0.050847458 0.000000000 0.000000000 0.016949153 0.016949153
## 309  0.000000000 0.031496063 0.015748031 0.007874016 0.086614173
## 310  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 311  0.034970858 0.019150708 0.022481266 0.013322231 0.012489592
## 312  0.039676966 0.039676966 0.023525281 0.022823034 0.028441011
## 313  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 314  0.033898305 0.039548023 0.016949153 0.011299435 0.016949153
## 315  0.000000000 0.000000000 0.000000000 0.000000000 0.090909091
## 316  0.011904762 0.013888889 0.045634921 0.013888889 0.061507937
## 317  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 318  0.015841584 0.055445545 0.035643564 0.025742574 0.017821782
## 319  0.024390244 0.040650407 0.000000000 0.056910569 0.000000000
## 320  0.074946467 0.032119914 0.027837259 0.014989293 0.057815846
## 321  0.024096386 0.066265060 0.054216867 0.042168675 0.042168675
## 322  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 323  0.040772532 0.051502146 0.012875536 0.053648069 0.072961373
## 324  0.041666667 0.020833333 0.010416667 0.020833333 0.062500000
## 325  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 326  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 327  0.013071895 0.013071895 0.052287582 0.019607843 0.019607843
## 328  0.000000000 0.008000000 0.000000000 0.008000000 0.080000000
## 329  0.043356643 0.030769231 0.047552448 0.062937063 0.067132867
## 330  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 331  0.102564103 0.179487179 0.025641026 0.042735043 0.059829060
## 332  0.025993884 0.021406728 0.035168196 0.015290520 0.027522936
## 333  0.046783626 0.081871345 0.000000000 0.029239766 0.017543860
## 334  0.030463576 0.064900662 0.043708609 0.014569536 0.039735099
## 335  0.151315789 0.006578947 0.013157895 0.000000000 0.032894737
## 336  0.037135279 0.002652520 0.018567639 0.015915119 0.045092838
## 337  0.027777778 0.005555556 0.022222222 0.008888889 0.013333333
## 338  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 339  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 340  0.008450704 0.028169014 0.036619718 0.008450704 0.008450704
## 341  0.021922428 0.010118044 0.015177066 0.018549747 0.018549747
## 342  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 343  0.068870523 0.027548209 0.005509642 0.022038567 0.068870523
## 344  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 345  0.000000000 0.000000000 0.062500000 0.000000000 0.041666667
## 346  0.012195122 0.000000000 0.000000000 0.000000000 0.000000000
## 347  0.018957346 0.004739336 0.028436019 0.000000000 0.000000000
## 348  0.046195652 0.032608696 0.040760870 0.029891304 0.040760870
## 349  0.023480663 0.011049724 0.013812155 0.015193370 0.011049724
## 350  0.000000000 0.000000000 0.026315789 0.052631579 0.131578947
## 351  0.054704595 0.091903720 0.026258206 0.067833698 0.048140044
## 352  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 353  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 354  0.016000000 0.008000000 0.037333333 0.045333333 0.077333333
## 355  0.027586207 0.034482759 0.020689655 0.055172414 0.020689655
## 356  0.015037594 0.037593985 0.045112782 0.015037594 0.030075188
## 357  0.034482759 0.000000000 0.006896552 0.027586207 0.013793103
## 358  0.013636364 0.027272727 0.200000000 0.104545455 0.068181818
## 359  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 360  0.052429668 0.030690537 0.035805627 0.026854220 0.025575448
## 361  0.054611650 0.059466019 0.041262136 0.047330097 0.042475728
## 362  0.006578947 0.039473684 0.026315789 0.013157895 0.026315789
## 363  0.083078101 0.040199081 0.009571210 0.043644717 0.057810107
## 364  0.020512821 0.010256410 0.015384615 0.010256410 0.000000000
## 365  0.000000000 0.238095238 0.000000000 0.000000000 0.000000000
## 366  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 367  0.030991736 0.024793388 0.035123967 0.033057851 0.018595041
## 368  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 369  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 370  0.000000000 0.000000000 0.000000000 0.142857143 0.000000000
## 371  0.025641026 0.025641026 0.000000000 0.025641026 0.025641026
## 372  0.006472492 0.080906149 0.103559871 0.080906149 0.084142395
## 373  0.000000000 0.066666667 0.022222222 0.022222222 0.000000000
## 374  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 375  0.025727069 0.058165548 0.043624161 0.031319911 0.059284116
## 376  0.019230769 0.006410256 0.019230769 0.038461538 0.025641026
## 377  0.000000000 0.055555556 0.000000000 0.000000000 0.000000000
## 378  0.063291139 0.006329114 0.006329114 0.000000000 0.069620253
## 379  0.025316456 0.033755274 0.016877637 0.047819972 0.049226442
## 380  0.000000000 0.026490066 0.026490066 0.059602649 0.000000000
## 381  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 382  0.012552301 0.009762901 0.027429103 0.074384007 0.105532311
## 383  0.000000000 0.052631579 0.131578947 0.000000000 0.000000000
## 384  0.017241379 0.000000000 0.051724138 0.034482759 0.017241379
## 385  0.033101045 0.057491289 0.033101045 0.034843206 0.047038328
## 386  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 387  0.003389831 0.057627119 0.050847458 0.050847458 0.010169492
## 388  0.000000000 0.019867550 0.006622517 0.006622517 0.033112583
## 389  0.190091001 0.005055612 0.019211325 0.017189080 0.008088979
## 390  0.072727273 0.018181818 0.000000000 0.000000000 0.018181818
## 391  0.005524862 0.011049724 0.011049724 0.022099448 0.016574586
## 392  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 393  0.000000000 0.000000000 0.066666667 0.000000000 0.000000000
## 394  0.063492063 0.087301587 0.015873016 0.087301587 0.011904762
## 395  0.035360679 0.039603960 0.090523338 0.049504950 0.033946252
## 396  0.035714286 0.035714286 0.017857143 0.071428571 0.000000000
## 397  0.058470765 0.034482759 0.080959520 0.110944528 0.058470765
## 398  0.000000000 0.086956522 0.000000000 0.043478261 0.000000000
## 399  0.027200000 0.012800000 0.022400000 0.020800000 0.024000000
## 400  0.000000000 0.033333333 0.033333333 0.133333333 0.066666667
## 401  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 402  0.063604240 0.031802120 0.031802120 0.031802120 0.060070671
## 403  0.019908116 0.026033691 0.019908116 0.004594181 0.013782542
## 404  0.021276596 0.026595745 0.010638298 0.021276596 0.031914894
## 405  0.034090909 0.022727273 0.022727273 0.034090909 0.090909091
## 406  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 407  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 408  0.090452261 0.045226131 0.020100503 0.050251256 0.055276382
## 409  0.035714286 0.029761905 0.029761905 0.005952381 0.035714286
## 410  0.000000000 0.000000000 0.000000000 0.028571429 0.000000000
## 411  0.067723961 0.021431633 0.018431204 0.079297042 0.025289327
## 412  0.000000000 0.000000000 0.011363636 0.011363636 0.034090909
## 413  0.000000000 0.028571429 0.000000000 0.057142857 0.000000000
## 414  0.026435734 0.035551504 0.038286235 0.027347311 0.032816773
## 415  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 416  0.000000000 0.013824885 0.018433180 0.004608295 0.041474654
## 417  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 418  0.035955056 0.058426966 0.011235955 0.024719101 0.035955056
## 419  0.000000000 0.016666667 0.016666667 0.000000000 0.000000000
## 420  0.033057851 0.028925620 0.008264463 0.016528926 0.043388430
## 421  0.035714286 0.035714286 0.035714286 0.000000000 0.000000000
## 422  0.007936508 0.031746032 0.039682540 0.039682540 0.007936508
## 423  0.014925373 0.014925373 0.014925373 0.014925373 0.000000000
## 424  0.011494253 0.011494253 0.011494253 0.022988506 0.022988506
## 425  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 426  0.000000000 0.210526316 0.105263158 0.000000000 0.000000000
## 427  0.017462165 0.017462165 0.036088475 0.012805588 0.009313155
## 428  0.000000000 0.100000000 0.080000000 0.035000000 0.005000000
## 429  0.000000000 0.000000000 0.000000000 0.028169014 0.000000000
## 430  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 431  0.023809524 0.023809524 0.000000000 0.119047619 0.023809524
## 432  0.038461538 0.038461538 0.000000000 0.000000000 0.000000000
## 433  0.023809524 0.039682540 0.023809524 0.007936508 0.023809524
## 434  0.007092199 0.049645390 0.030732861 0.016548463 0.007092199
## 435  0.000000000 0.281250000 0.046875000 0.000000000 0.015625000
## 436  0.015625000 0.015625000 0.054687500 0.164062500 0.031250000
## 437  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 438  0.015267176 0.099236641 0.022900763 0.030534351 0.045801527
## 439  0.000000000 0.019607843 0.000000000 0.000000000 0.019607843
## 440  0.009009009 0.009009009 0.009009009 0.018018018 0.018018018
## 441  0.010638298 0.106382979 0.031914894 0.042553191 0.042553191
## 442  0.015384615 0.025641026 0.056410256 0.010256410 0.020512821
## 443  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 444  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 445  0.058287796 0.021857923 0.020036430 0.020036430 0.025500911
## 446  0.036363636 0.072727273 0.018181818 0.000000000 0.054545455
## 447  0.000000000 0.000000000 0.000000000 0.013888889 0.000000000
## 448  0.000000000 0.000000000 0.000000000 0.031746032 0.000000000
## 449  0.051903114 0.034602076 0.012110727 0.017301038 0.039792388
## 450  0.031847134 0.047770701 0.078025478 0.042993631 0.023885350
## 451  0.030303030 0.030303030 0.000000000 0.151515152 0.030303030
## 452  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 453  0.000000000 0.071428571 0.000000000 0.071428571 0.000000000
## 454  0.000000000 0.028571429 0.000000000 0.042857143 0.042857143
## 455  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 456  0.017543860 0.017543860 0.017543860 0.035087719 0.000000000
## 457  0.041269841 0.041269841 0.060317460 0.174603175 0.009523810
## 458  0.026315789 0.026315789 0.026315789 0.026315789 0.039473684
## 459  0.000000000 0.000000000 0.000000000 0.033707865 0.011235955
## 460  0.038235294 0.035294118 0.038235294 0.044117647 0.050000000
## 461  0.000000000 0.217391304 0.000000000 0.000000000 0.086956522
## 462  0.000000000 0.040000000 0.060000000 0.100000000 0.040000000
## 463  0.072289157 0.048192771 0.036144578 0.168674699 0.036144578
## 464  0.030612245 0.091836735 0.025510204 0.030612245 0.015306122
## 465  0.013937282 0.059233449 0.038327526 0.062717770 0.020905923
## 466  0.000000000 0.000000000 0.031250000 0.156250000 0.000000000
## 467  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 468  0.021897810 0.007299270 0.014598540 0.014598540 0.021897810
## 469  0.067193676 0.023715415 0.023715415 0.019762846 0.063241107
## 470  0.000000000 0.014134276 0.003533569 0.035335689 0.010600707
## 471  0.032258065 0.064516129 0.000000000 0.064516129 0.000000000
## 472  0.051724138 0.021551724 0.000000000 0.004310345 0.008620690
## 473  0.052631579 0.105263158 0.105263158 0.000000000 0.000000000
## 474  0.000000000 0.000000000 0.114285714 0.000000000 0.000000000
## 475  0.013888889 0.041666667 0.041666667 0.027777778 0.027777778
## 476  0.026431718 0.004405286 0.061674009 0.022026432 0.039647577
## 477  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 478  0.000000000 0.000000000 0.000000000 0.000000000 0.028571429
## 479  0.031007752 0.031007752 0.000000000 0.007751938 0.007751938
## 480  0.000000000 0.000000000 0.000000000 0.071428571 0.142857143
## 481  0.007246377 0.007246377 0.010869565 0.036231884 0.028985507
## 482  0.090909091 0.000000000 0.045454545 0.000000000 0.045454545
## 483  0.037037037 0.055555556 0.018518519 0.037037037 0.055555556
## 484  0.080000000 0.020000000 0.060000000 0.020000000 0.040000000
## 485  0.000000000 0.065217391 0.043478261 0.043478261 0.000000000
## 486  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 487  0.063492063 0.023809524 0.103174603 0.015873016 0.031746032
## 488  0.048192771 0.048192771 0.036144578 0.012048193 0.024096386
## 489  0.000000000 0.071428571 0.000000000 0.000000000 0.000000000
## 490  0.070422535 0.028169014 0.028169014 0.070422535 0.042253521
## 491  0.100000000 0.066666667 0.033333333 0.000000000 0.000000000
## 492  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 493  0.071428571 0.000000000 0.071428571 0.000000000 0.071428571
## 494  0.043741275 0.068403909 0.062819916 0.012563983 0.033969288
## 495  0.233333333 0.066666667 0.066666667 0.000000000 0.000000000
## 496  0.034482759 0.000000000 0.080459770 0.045977011 0.057471264
## 497  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 498  0.000000000 0.103448276 0.034482759 0.000000000 0.000000000
## 499  0.090909091 0.000000000 0.000000000 0.000000000 0.090909091
## 500  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 501  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 502  0.000000000 0.000000000 0.000000000 0.111111111 0.000000000
## 503  0.008888889 0.017777778 0.004444444 0.013333333 0.017777778
## 504  0.029310345 0.030172414 0.037931034 0.009482759 0.026724138
## 505  0.080047790 0.035842294 0.028673835 0.043010753 0.004778973
## 506  0.000000000 0.080000000 0.000000000 0.000000000 0.000000000
## 507  0.017543860 0.000000000 0.122807018 0.052631579 0.017543860
## 508  0.047016275 0.023508137 0.023508137 0.019891501 0.030741410
## 509  0.000000000 0.000000000 0.000000000 0.090909091 0.045454545
## 510  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 511  0.040892193 0.040892193 0.026022305 0.022304833 0.014869888
## 512  0.065420561 0.056074766 0.056074766 0.000000000 0.009345794
## 513  0.051546392 0.030927835 0.072164948 0.030927835 0.092783505
## 514  0.009615385 0.009615385 0.533653846 0.009615385 0.038461538
## 515  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 516  0.000000000 0.066666667 0.233333333 0.000000000 0.000000000
## 517  0.125000000 0.000000000 0.000000000 0.000000000 0.000000000
## 518  0.000000000 0.052631579 0.000000000 0.000000000 0.000000000
## 519  0.011406844 0.045627376 0.015209125 0.030418251 0.102661597
## 520  0.000000000 0.043478261 0.043478261 0.130434783 0.000000000
## 521  0.000000000 0.020408163 0.000000000 0.000000000 0.102040816
## 522  0.063333333 0.033333333 0.026666667 0.040000000 0.010000000
## 523  0.000000000 0.040816327 0.020408163 0.020408163 0.000000000
## 524  0.019607843 0.117647059 0.039215686 0.019607843 0.019607843
## 525  0.036363636 0.145454545 0.054545455 0.018181818 0.000000000
## 526  0.074626866 0.089552239 0.000000000 0.014925373 0.014925373
## 527  0.050632911 0.025316456 0.025316456 0.037974684 0.000000000
## 528  0.048192771 0.054216867 0.042168675 0.024096386 0.012048193
## 529  0.030927835 0.051546392 0.000000000 0.020618557 0.020618557
## 530  0.039215686 0.019607843 0.019607843 0.058823529 0.039215686
## 531  0.060606061 0.060606061 0.030303030 0.060606061 0.000000000
## 532  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 533  0.011538462 0.080769231 0.026923077 0.011538462 0.007692308
## 534  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 535  0.014492754 0.057971014 0.072463768 0.028985507 0.028985507
## 536  0.061224490 0.020408163 0.000000000 0.061224490 0.061224490
## 537  0.020000000 0.060000000 0.000000000 0.040000000 0.060000000
## 538  0.000000000 0.000000000 0.022222222 0.066666667 0.000000000
## 539  0.066666667 0.044444444 0.000000000 0.044444444 0.022222222
## 540  0.030303030 0.090909091 0.000000000 0.030303030 0.000000000
## 541  0.042654028 0.047393365 0.037914692 0.014218009 0.014218009
## 542  0.032786885 0.098360656 0.000000000 0.032786885 0.065573770
## 543  0.025862069 0.017241379 0.034482759 0.017241379 0.034482759
## 544  0.073170732 0.024390244 0.000000000 0.097560976 0.048780488
## 545  0.000000000 0.000000000 0.000000000 0.230769231 0.000000000
## 546  0.020833333 0.062500000 0.020833333 0.083333333 0.000000000
## 547  0.013953488 0.009302326 0.013953488 0.027906977 0.027906977
## 548  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 549  0.009523810 0.038095238 0.019047619 0.019047619 0.038095238
## 550  0.122448980 0.020408163 0.000000000 0.020408163 0.020408163
## 551  0.000000000 0.163934426 0.065573770 0.000000000 0.000000000
## 552  0.021276596 0.021276596 0.000000000 0.063829787 0.021276596
## 553  0.083333333 0.041666667 0.000000000 0.041666667 0.020833333
## 554  0.016949153 0.033898305 0.016949153 0.033898305 0.016949153
## 555  0.015384615 0.030769231 0.107692308 0.030769231 0.000000000
## 556  0.015384615 0.015384615 0.000000000 0.030769231 0.000000000
## 557  0.042553191 0.028368794 0.014184397 0.014184397 0.000000000
## 558  0.066666667 0.000000000 0.000000000 0.000000000 0.022222222
## 559  0.014285714 0.042857143 0.028571429 0.114285714 0.014285714
## 560  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 561  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 562  0.222222222 0.000000000 0.000000000 0.000000000 0.000000000
## 563  0.006880734 0.011467890 0.029816514 0.004587156 0.013761468
## 564  0.000000000 0.000000000 0.024390244 0.073170732 0.000000000
## 565  0.000000000 0.000000000 0.062500000 0.000000000 0.000000000
## 566  0.019230769 0.038461538 0.000000000 0.019230769 0.019230769
## 567  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 568  0.000000000 0.074074074 0.000000000 0.000000000 0.000000000
## 569  0.025362319 0.019021739 0.036231884 0.018115942 0.033514493
## 570  0.028301887 0.012578616 0.028301887 0.031446541 0.028301887
## 571  0.019230769 0.043269231 0.057692308 0.019230769 0.000000000
## 572  0.039473684 0.013157895 0.000000000 0.026315789 0.065789474
## 573  0.000000000 0.034482759 0.000000000 0.034482759 0.000000000
## 574  0.060317460 0.006349206 0.009523810 0.003174603 0.006349206
## 575  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 576  0.040000000 0.000000000 0.000000000 0.000000000 0.080000000
## 577  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 578  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 579  0.083333333 0.000000000 0.000000000 0.000000000 0.000000000
## 580  0.142857143 0.000000000 0.000000000 0.000000000 0.035714286
## 581  0.000000000 0.000000000 0.033333333 0.000000000 0.133333333
## 582  0.000000000 0.053571429 0.000000000 0.089285714 0.017857143
## 583  0.023255814 0.000000000 0.004651163 0.023255814 0.000000000
## 584  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 585  0.045000000 0.040000000 0.007500000 0.030000000 0.040000000
## 586  0.020000000 0.000000000 0.040000000 0.100000000 0.000000000
## 587  0.043478261 0.028458498 0.022924901 0.013438735 0.018972332
## 588  0.015625000 0.031250000 0.000000000 0.093750000 0.031250000
## 589  0.000000000 0.000000000 0.079365079 0.000000000 0.063492063
## 590  0.013333333 0.093333333 0.013333333 0.053333333 0.040000000
## 591  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 592  0.019230769 0.019230769 0.076923077 0.019230769 0.000000000
## 593  0.041109969 0.003083248 0.005138746 0.006166495 0.050359712
## 594  0.000000000 0.068965517 0.034482759 0.000000000 0.034482759
## 595  0.000000000 0.071428571 0.035714286 0.000000000 0.035714286
## 596  0.000000000 0.068965517 0.034482759 0.000000000 0.034482759
## 597  0.000000000 0.076923077 0.038461538 0.000000000 0.038461538
## 598  0.028985507 0.014492754 0.028985507 0.028985507 0.043478261
## 599  0.022727273 0.000000000 0.000000000 0.068181818 0.022727273
## 600  0.000000000 0.000000000 0.027027027 0.000000000 0.000000000
## 601  0.000000000 0.000000000 0.000000000 0.040000000 0.000000000
## 602  0.038461538 0.000000000 0.000000000 0.038461538 0.038461538
## 603  0.046511628 0.040697674 0.017441860 0.017441860 0.034883721
## 604  0.000000000 0.000000000 0.038461538 0.038461538 0.038461538
## 605  0.000000000 0.000000000 0.000000000 0.047619048 0.047619048
## 606  0.000000000 0.033333333 0.033333333 0.066666667 0.033333333
## 607  0.000000000 0.035714286 0.000000000 0.107142857 0.035714286
## 608  0.133333333 0.015686275 0.086274510 0.039215686 0.027450980
## 609  0.000000000 0.000000000 0.000000000 0.035714286 0.107142857
## 610  0.027397260 0.041095890 0.013698630 0.041095890 0.123287671
## 611  0.000000000 0.034482759 0.000000000 0.000000000 0.068965517
## 612  0.032258065 0.064516129 0.000000000 0.000000000 0.032258065
## 613  0.000000000 0.000000000 0.000000000 0.000000000 0.040000000
## 614  0.000000000 0.094890511 0.094890511 0.043795620 0.087591241
## 615  0.027777778 0.000000000 0.027777778 0.000000000 0.027777778
## 616  0.038461538 0.000000000 0.019230769 0.000000000 0.038461538
## 617  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 618  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 619  0.000000000 0.000000000 0.000000000 0.000000000 0.052631579
## 620  0.058333333 0.041666667 0.025000000 0.000000000 0.033333333
## 621  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 622  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 623  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 624  0.019607843 0.019607843 0.000000000 0.000000000 0.000000000
## 625  0.000000000 0.025641026 0.000000000 0.000000000 0.051282051
## 626  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 627  0.028901734 0.023121387 0.028901734 0.011560694 0.104046243
## 628  0.000000000 0.100000000 0.033333333 0.000000000 0.000000000
## 629  0.000000000 0.028571429 0.028571429 0.000000000 0.000000000
## 630  0.071428571 0.035714286 0.035714286 0.000000000 0.000000000
## 631  0.015384615 0.046153846 0.015384615 0.000000000 0.015384615
## 632  0.000000000 0.000000000 0.000000000 0.000000000 0.035714286
## 633  0.078571429 0.035714286 0.014285714 0.035714286 0.078571429
## 634  0.068181818 0.022727273 0.000000000 0.000000000 0.000000000
## 635  0.047619048 0.023809524 0.000000000 0.023809524 0.000000000
## 636  0.000000000 0.000000000 0.000000000 0.000000000 0.010204082
## 637  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 638  0.000000000 0.000000000 0.000000000 0.105263158 0.000000000
## 639  0.031250000 0.156250000 0.000000000 0.031250000 0.000000000
## 640  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 641  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 642  0.000000000 0.115384615 0.038461538 0.000000000 0.000000000
## 643  0.000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 644  0.000000000 0.000000000 0.160000000 0.000000000 0.000000000
## 645  0.000000000 0.000000000 0.000000000 0.000000000 0.037037037
## 646  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 647  0.000000000 0.000000000 0.068965517 0.000000000 0.034482759
## 648  0.020304569 0.020304569 0.020304569 0.015228426 0.015228426
## 649  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 650  0.044897959 0.061224490 0.081632653 0.024489796 0.044897959
## 651  0.053571429 0.017857143 0.000000000 0.035714286 0.000000000
## 652  0.103448276 0.000000000 0.000000000 0.000000000 0.034482759
## 653  0.000000000 0.034482759 0.034482759 0.103448276 0.034482759
## 654  0.034438776 0.024234694 0.017857143 0.016581633 0.008928571
## 655  0.004098361 0.036885246 0.004098361 0.000000000 0.000000000
## 656  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 657  0.051948052 0.012987013 0.012987013 0.025974026 0.012987013
## 658  0.000000000 0.000000000 0.250000000 0.000000000 0.000000000
## 659  0.000000000 0.008333333 0.050000000 0.066666667 0.050000000
## 660  0.000000000 0.045454545 0.045454545 0.000000000 0.045454545
## 661  0.010416667 0.145833333 0.010416667 0.000000000 0.093750000
## 662  0.000000000 0.043478261 0.043478261 0.000000000 0.043478261
## 663  0.000000000 0.033333333 0.033333333 0.000000000 0.033333333
## 664  0.043165468 0.057553957 0.014388489 0.000000000 0.000000000
## 665  0.000000000 0.050000000 0.100000000 0.000000000 0.000000000
## 666  0.000000000 0.038461538 0.076923077 0.000000000 0.038461538
## 667  0.000000000 0.055555556 0.111111111 0.000000000 0.000000000
## 668  0.000000000 0.030303030 0.060606061 0.000000000 0.060606061
## 669  0.000000000 0.000000000 0.033333333 0.000000000 0.000000000
## 670  0.000000000 0.041666667 0.041666667 0.000000000 0.000000000
## 671  0.000000000 0.200000000 0.050000000 0.000000000 0.000000000
## 672  0.000000000 0.147058824 0.088235294 0.000000000 0.029411765
## 673  0.000000000 0.200000000 0.050000000 0.000000000 0.000000000
## 674  0.025000000 0.025000000 0.050000000 0.025000000 0.025000000
## 675  0.013698630 0.095890411 0.109589041 0.095890411 0.013698630
## 676  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 677  0.000000000 0.000000000 0.083333333 0.000000000 0.000000000
## 678  0.173913043 0.000000000 0.000000000 0.043478261 0.000000000
## 679  0.000000000 0.125000000 0.020833333 0.041666667 0.041666667
## 680  0.000000000 0.000000000 0.160000000 0.040000000 0.000000000
## 681  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 682  0.000000000 0.062500000 0.062500000 0.000000000 0.000000000
## 683  0.000000000 0.000000000 0.000000000 0.100000000 0.000000000
## 684  0.058823529 0.000000000 0.029411765 0.088235294 0.058823529
## 685  0.000000000 0.076923077 0.038461538 0.000000000 0.076923077
## 686  0.000000000 0.000000000 0.038461538 0.000000000 0.115384615
## 687  0.542483660 0.209150327 0.013071895 0.000000000 0.006535948
## 688  0.007518797 0.037593985 0.011278195 0.078947368 0.018796992
## 689  0.114285714 0.000000000 0.028571429 0.000000000 0.028571429
## 690  0.000000000 0.000000000 0.081081081 0.000000000 0.027027027
## 691  0.019607843 0.000000000 0.019607843 0.000000000 0.058823529
## 692  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 693  0.000000000 0.071428571 0.035714286 0.000000000 0.000000000
## 694  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 695  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 696  0.112068966 0.077586207 0.043103448 0.051724138 0.008620690
## 697  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 698  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 699  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 700  0.000000000 0.000000000 0.012987013 0.000000000 0.000000000
## 701  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 702  0.038461538 0.000000000 0.025641026 0.179487179 0.012820513
## 703  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 704  0.000000000 0.000000000 0.095238095 0.023809524 0.023809524
## 705  0.027027027 0.000000000 0.081081081 0.027027027 0.027027027
## 706  0.000000000 0.000000000 0.060606061 0.000000000 0.030303030
## 707  0.000000000 0.000000000 0.037037037 0.000000000 0.037037037
## 708  0.026315789 0.026315789 0.078947368 0.000000000 0.026315789
## 709  0.000000000 0.000000000 0.029411765 0.000000000 0.029411765
## 710  0.053169734 0.069529652 0.061349693 0.057259714 0.022494888
## 711  0.035714286 0.035714286 0.035714286 0.000000000 0.000000000
## 712  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 713  0.114285714 0.028571429 0.028571429 0.057142857 0.000000000
## 714  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 715  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 716  0.000000000 0.047619048 0.047619048 0.000000000 0.000000000
## 717  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 718  0.000000000 0.038461538 0.038461538 0.000000000 0.000000000
## 719  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 720  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 721  0.000000000 0.052631579 0.052631579 0.000000000 0.000000000
## 722  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 723  0.000000000 0.050000000 0.050000000 0.000000000 0.000000000
## 724  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 725  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 726  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 727  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 728  0.000000000 0.095238095 0.047619048 0.000000000 0.000000000
## 729  0.000000000 0.000000000 0.000000000 0.038461538 0.000000000
## 730  0.000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 731  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 732  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 733  0.098039216 0.019607843 0.019607843 0.000000000 0.000000000
## 734  0.113636364 0.022727273 0.045454545 0.000000000 0.000000000
## 735  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 736  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 737  0.066666667 0.000000000 0.000000000 0.000000000 0.000000000
## 738  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 739  0.054545455 0.036363636 0.054545455 0.018181818 0.000000000
## 740  0.000000000 0.080000000 0.120000000 0.000000000 0.000000000
## 741  0.032258065 0.000000000 0.064516129 0.000000000 0.000000000
## 742  0.000000000 0.034482759 0.103448276 0.000000000 0.000000000
## 743  0.000000000 0.052631579 0.052631579 0.052631579 0.000000000
## 744  0.000000000 0.052631579 0.052631579 0.000000000 0.000000000
## 745  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 746  0.034482759 0.103448276 0.034482759 0.068965517 0.000000000
## 747  0.000000000 0.041666667 0.125000000 0.000000000 0.000000000
## 748  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 749  0.000000000 0.034482759 0.000000000 0.034482759 0.000000000
## 750  0.054054054 0.054054054 0.000000000 0.000000000 0.000000000
## 751  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 752  0.000000000 0.052631579 0.000000000 0.000000000 0.000000000
## 753  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 754  0.000000000 0.000000000 0.000000000 0.043478261 0.000000000
## 755  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 756  0.017391304 0.017391304 0.026086957 0.026086957 0.017391304
## 757  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 758  0.028985507 0.072463768 0.144927536 0.043478261 0.057971014
## 759  0.051136364 0.005681818 0.045454545 0.011363636 0.017045455
## 760  0.028846154 0.009615385 0.019230769 0.019230769 0.048076923
## 761  0.049382716 0.000000000 0.037037037 0.037037037 0.024691358
## 762  0.017857143 0.035714286 0.035714286 0.017857143 0.053571429
## 763  0.024390244 0.130081301 0.024390244 0.008130081 0.056910569
## 764  0.000000000 0.000000000 0.000000000 0.050000000 0.025000000
## 765  0.000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 766  0.076923077 0.000000000 0.000000000 0.000000000 0.000000000
## 767  0.064000000 0.000000000 0.048000000 0.008000000 0.064000000
## 768  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 769  0.023255814 0.023255814 0.023255814 0.232558140 0.023255814
## 770  0.037037037 0.037037037 0.000000000 0.000000000 0.000000000
## 771  0.000000000 0.000000000 0.000000000 0.097560976 0.000000000
## 772  0.141025641 0.051282051 0.025641026 0.038461538 0.000000000
## 773  0.047297297 0.084459459 0.057432432 0.027027027 0.040540541
## 774  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 775  0.000000000 0.000000000 0.000000000 0.086956522 0.000000000
## 776  0.000000000 0.062500000 0.000000000 0.000000000 0.000000000
## 777  0.100000000 0.000000000 0.025000000 0.000000000 0.050000000
## 778  0.000000000 0.064516129 0.064516129 0.064516129 0.000000000
## 779  0.000000000 0.027777778 0.000000000 0.027777778 0.055555556
## 780  0.000000000 0.047619048 0.000000000 0.095238095 0.047619048
## 781  0.000000000 0.000000000 0.000000000 0.012820513 0.089743590
## 782  0.000000000 0.000000000 0.142857143 0.000000000 0.000000000
## 783  0.030303030 0.010101010 0.020202020 0.020202020 0.010101010
## 784  0.361702128 0.042553191 0.021276596 0.000000000 0.000000000
## 785  0.000000000 0.041666667 0.041666667 0.000000000 0.000000000
## 786  0.000000000 0.055555556 0.055555556 0.000000000 0.000000000
## 787  0.000000000 0.035714286 0.035714286 0.000000000 0.071428571
## 788  0.000000000 0.037037037 0.037037037 0.000000000 0.074074074
## 789  0.000000000 0.025000000 0.025000000 0.000000000 0.025000000
## 790  0.016077170 0.025723473 0.006430868 0.009646302 0.012861736
## 791  0.000000000 0.000000000 0.000000000 0.000000000 0.090909091
## 792  0.000000000 0.095238095 0.000000000 0.000000000 0.095238095
## 793  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 794  0.000000000 0.114285714 0.000000000 0.114285714 0.000000000
## 795  0.039106145 0.055865922 0.011173184 0.011173184 0.011173184
## 796  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 797  0.030303030 0.030303030 0.030303030 0.000000000 0.000000000
## 798  0.000000000 0.000000000 0.000000000 0.055555556 0.000000000
## 799  0.045454545 0.022727273 0.022727273 0.022727273 0.181818182
## 800  0.000000000 0.000000000 0.000000000 0.045454545 0.000000000
## 801  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 802  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 803  0.000000000 0.026315789 0.052631579 0.052631579 0.026315789
## 804  0.000000000 0.111111111 0.027777778 0.027777778 0.000000000
## 805  0.000000000 0.000000000 0.074074074 0.000000000 0.037037037
## 806  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 807  0.058823529 0.000000000 0.000000000 0.058823529 0.000000000
## 808  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 809  0.092592593 0.000000000 0.055555556 0.055555556 0.000000000
## 810  0.000000000 0.045454545 0.000000000 0.090909091 0.000000000
## 811  0.029411765 0.058823529 0.000000000 0.000000000 0.000000000
## 812  0.000000000 0.000000000 0.055555556 0.055555556 0.055555556
## 813  0.000000000 0.045454545 0.000000000 0.000000000 0.000000000
## 814  0.000000000 0.000000000 0.000000000 0.071428571 0.000000000
## 815  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 816  0.008000000 0.032000000 0.056000000 0.000000000 0.080000000
## 817  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 818  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 819  0.135135135 0.135135135 0.027027027 0.027027027 0.027027027
## 820  0.058823529 0.029411765 0.088235294 0.029411765 0.058823529
## 821  0.074074074 0.000000000 0.037037037 0.037037037 0.000000000
## 822  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 823  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 824  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 825  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 826  0.000000000 0.066666667 0.000000000 0.000000000 0.000000000
## 827  0.094339623 0.113207547 0.047169811 0.056603774 0.056603774
## 828  0.000000000 0.062500000 0.000000000 0.000000000 0.000000000
## 829  0.000000000 0.062500000 0.000000000 0.187500000 0.000000000
## 830  0.000000000 0.052631579 0.052631579 0.000000000 0.000000000
## 831  0.000000000 0.076923077 0.000000000 0.076923077 0.000000000
## 832  0.038461538 0.019230769 0.019230769 0.000000000 0.019230769
## 833  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 834  0.015384615 0.107692308 0.015384615 0.000000000 0.030769231
## 835  0.000000000 0.000000000 0.000000000 0.000000000 0.066666667
## 836  0.000000000 0.050000000 0.050000000 0.000000000 0.000000000
## 837  0.000000000 0.000000000 0.090909091 0.000000000 0.000000000
## 838  0.000000000 0.000000000 0.066666667 0.000000000 0.000000000
## 839  0.083333333 0.000000000 0.000000000 0.000000000 0.000000000
## 840  0.027777778 0.000000000 0.000000000 0.000000000 0.000000000
## 841  0.055555556 0.000000000 0.000000000 0.000000000 0.000000000
## 842  0.040000000 0.000000000 0.080000000 0.000000000 0.000000000
## 843  0.000000000 0.043478261 0.043478261 0.000000000 0.000000000
## 844  0.038461538 0.038461538 0.000000000 0.000000000 0.000000000
## 845  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 846  0.000000000 0.043478261 0.000000000 0.000000000 0.043478261
## 847  0.000000000 0.000000000 0.035714286 0.035714286 0.142857143
## 848  0.000000000 0.011904762 0.023809524 0.023809524 0.035714286
## 849  0.000000000 0.034482759 0.000000000 0.068965517 0.000000000
## 850  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 851  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 852  0.000000000 0.035714286 0.035714286 0.000000000 0.071428571
## 853  0.000000000 0.000000000 0.000000000 0.050000000 0.000000000
## 854  0.000000000 0.000000000 0.051282051 0.000000000 0.000000000
## 855  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 856  0.071428571 0.100000000 0.000000000 0.057142857 0.014285714
## 857  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 858  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 859  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 860  0.060688406 0.028985507 0.099637681 0.101449275 0.030797101
## 861  0.040740741 0.018518519 0.011111111 0.014814815 0.040740741
## 862  0.000000000 0.000000000 0.000000000 0.031250000 0.031250000
## 863  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 864  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 865  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 866  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 867  0.000000000 0.000000000 0.000000000 0.214285714 0.000000000
## 868  0.000000000 0.028571429 0.019047619 0.019047619 0.000000000
## 869  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 870  0.029411765 0.088235294 0.107843137 0.009803922 0.009803922
## 871  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 872  0.040000000 0.120000000 0.040000000 0.040000000 0.000000000
## 873  0.051282051 0.000000000 0.000000000 0.025641026 0.051282051
## 874  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 875  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 876  0.000000000 0.045454545 0.000000000 0.000000000 0.000000000
## 877  0.058823529 0.058823529 0.000000000 0.000000000 0.000000000
## 878  0.000000000 0.035714286 0.000000000 0.000000000 0.035714286
## 879  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 880  0.064516129 0.064516129 0.032258065 0.000000000 0.000000000
## 881  0.057142857 0.000000000 0.022857143 0.017142857 0.045714286
## 882  0.109022556 0.113721805 0.044172932 0.011278195 0.027255639
## 883  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 884  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 885  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 886  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 887  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 888  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 889  0.107361963 0.036809816 0.036809816 0.018404908 0.000000000
## 890  0.107142857 0.035714286 0.000000000 0.000000000 0.000000000
## 891  0.042402827 0.028268551 0.014134276 0.042402827 0.038869258
## 892  0.032258065 0.032258065 0.032258065 0.000000000 0.000000000
## 893  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 894  0.057142857 0.057142857 0.000000000 0.000000000 0.028571429
## 895  0.028225806 0.014112903 0.012096774 0.030241935 0.038306452
## 896  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 897  0.023255814 0.023255814 0.000000000 0.000000000 0.046511628
## 898  0.000000000 0.000000000 0.181818182 0.090909091 0.000000000
## 899  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 900  0.000000000 0.000000000 0.000000000 0.028571429 0.000000000
## 901  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 902  0.075949367 0.025316456 0.025316456 0.000000000 0.037974684
## 903  0.000000000 0.000000000 0.000000000 0.020408163 0.000000000
## 904  0.023738872 0.059347181 0.020771513 0.151335312 0.106824926
## 905  0.031746032 0.015873016 0.000000000 0.015873016 0.031746032
## 906  0.006856024 0.041136141 0.009794319 0.004897160 0.018609207
## 907  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 908  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 909  0.000000000 0.000000000 0.013333333 0.040000000 0.053333333
## 910  0.026011561 0.049132948 0.005780347 0.011560694 0.017341040
## 911  0.025862069 0.028735632 0.005747126 0.002873563 0.054597701
## 912  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 913  0.035714286 0.026785714 0.044642857 0.035714286 0.017857143
## 914  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 915  0.001715266 0.006861063 0.000000000 0.003430532 0.005145798
## 916  0.029411765 0.000000000 0.058823529 0.147058824 0.029411765
## 917  0.043478261 0.000000000 0.000000000 0.043478261 0.000000000
## 918  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 919  0.000000000 0.000000000 0.008547009 0.008547009 0.000000000
## 920  0.000000000 0.045454545 0.000000000 0.045454545 0.045454545
## 921  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 922  0.036036036 0.000000000 0.009009009 0.009009009 0.027027027
## 923  0.030927835 0.010309278 0.020618557 0.000000000 0.041237113
## 924  0.192307692 0.019230769 0.000000000 0.038461538 0.000000000
## 925  0.025345622 0.018433180 0.011520737 0.013824885 0.043778802
## 926  0.050000000 0.016666667 0.033333333 0.000000000 0.000000000
## 927  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 928  0.025000000 0.150000000 0.000000000 0.025000000 0.050000000
## 929  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 930  0.025000000 0.008333333 0.062500000 0.241666667 0.020833333
## 931  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 932  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 933  0.205882353 0.058823529 0.000000000 0.029411765 0.029411765
## 934  0.076923077 0.000000000 0.038461538 0.000000000 0.000000000
## 935  0.066666667 0.000000000 0.000000000 0.000000000 0.000000000
## 936  0.000000000 0.000000000 0.041666667 0.041666667 0.041666667
## 937  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 938  0.062500000 0.049107143 0.051339286 0.035714286 0.015625000
## 939  0.085106383 0.026595745 0.045212766 0.026595745 0.047872340
## 940  0.000000000 0.000000000 0.000000000 0.000000000 0.086956522
## 941  0.010416667 0.020833333 0.000000000 0.010416667 0.010416667
## 942  0.028368794 0.021276596 0.021276596 0.056737589 0.007092199
## 943  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 944  0.062305296 0.034267913 0.052959502 0.024922118 0.021806854
## 945  0.037735849 0.014150943 0.009433962 0.033018868 0.051886792
## 946  0.003508772 0.028070175 0.073684211 0.000000000 0.000000000
## 947  0.075630252 0.004201681 0.016806723 0.016806723 0.016806723
## 948  0.022727273 0.000000000 0.000000000 0.000000000 0.000000000
## 949  0.000000000 0.111111111 0.000000000 0.000000000 0.000000000
## 950  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 951  0.012605042 0.004201681 0.004201681 0.021008403 0.042016807
## 952  0.076923077 0.076923077 0.051282051 0.000000000 0.230769231
## 953  0.061538462 0.015384615 0.015384615 0.030769231 0.015384615
## 954  0.028571429 0.028571429 0.000000000 0.142857143 0.057142857
## 955  0.043478261 0.000000000 0.000000000 0.000000000 0.000000000
## 956  0.035502959 0.011834320 0.035502959 0.118343195 0.041420118
## 957  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 958  0.000000000 0.021505376 0.032258065 0.032258065 0.000000000
## 959  0.012987013 0.051948052 0.045454545 0.038961039 0.038961039
## 960  0.045783133 0.002409639 0.093975904 0.055421687 0.036144578
## 961  0.015228426 0.000000000 0.000000000 0.035532995 0.020304569
## 962  0.031746032 0.000000000 0.015873016 0.015873016 0.063492063
## 963  0.000000000 0.000000000 0.052631579 0.000000000 0.000000000
## 964  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 965  0.082644628 0.074380165 0.049586777 0.132231405 0.008264463
## 966  0.000000000 0.034482759 0.017241379 0.068965517 0.017241379
## 967  0.017241379 0.086206897 0.068965517 0.051724138 0.000000000
## 968  0.024096386 0.036144578 0.012048193 0.000000000 0.024096386
## 969  0.000000000 0.018181818 0.036363636 0.127272727 0.018181818
## 970  0.007326007 0.014652015 0.010989011 0.000000000 0.021978022
## 971  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 972  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 973  0.000000000 0.000000000 0.000000000 0.000000000 0.205882353
## 974  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 975  0.019565217 0.006521739 0.017391304 0.010869565 0.039130435
## 976  0.019607843 0.039215686 0.000000000 0.039215686 0.039215686
## 977  0.028409091 0.022727273 0.017045455 0.039772727 0.022727273
## 978  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 979  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 980  0.000000000 0.000000000 0.000000000 0.012195122 0.000000000
## 981  0.026666667 0.013333333 0.000000000 0.026666667 0.026666667
## 982  0.026315789 0.052631579 0.026315789 0.105263158 0.000000000
## 983  0.029411765 0.029411765 0.014705882 0.000000000 0.036764706
## 984  0.017857143 0.017857143 0.042857143 0.014285714 0.025000000
## 985  0.010482180 0.025157233 0.012578616 0.012578616 0.023060797
## 986  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 987  0.041641880 0.064247472 0.091017252 0.064842356 0.040452112
## 988  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 989  0.014084507 0.014084507 0.042253521 0.000000000 0.007042254
## 990  0.017094017 0.000000000 0.008547009 0.042735043 0.025641026
## 991  0.023634558 0.059384310 0.017279047 0.023833168 0.027209533
## 992  0.016339869 0.006535948 0.013071895 0.032679739 0.016339869
## 993  0.023076923 0.011538462 0.011538462 0.026923077 0.046153846
## 994  0.033333333 0.046969697 0.039393939 0.012121212 0.012121212
## 995  0.041237113 0.164948454 0.041237113 0.103092784 0.041237113
## 996  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 997  0.015418502 0.040198238 0.037444934 0.015418502 0.023678414
## 998  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 999  0.010813149 0.010813149 0.012110727 0.018598616 0.023788927
## 1000 0.043478261 0.059288538 0.051383399 0.003952569 0.051383399
##               59          60          61          62           63
## 1    0.028138528 0.053391053 0.022366522 0.027417027 0.0367965368
## 2    0.026315789 0.000000000 0.013157895 0.000000000 0.0263157895
## 3    0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 4    0.012987013 0.018552876 0.009276438 0.007421150 0.0278293135
## 5    0.013724267 0.013100437 0.023705552 0.019338740 0.0280723643
## 6    0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 7    0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 8    0.027402333 0.049805592 0.035919274 0.030549898 0.0312905018
## 9    0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 10   0.034482759 0.000000000 0.017241379 0.034482759 0.0172413793
## 11   0.021398003 0.031383738 0.029243937 0.023537803 0.0363766049
## 12   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 13   0.017543860 0.000000000 0.035087719 0.000000000 0.0000000000
## 14   0.000000000 0.000000000 0.016666667 0.041666667 0.0250000000
## 15   0.000000000 0.074074074 0.074074074 0.000000000 0.0000000000
## 16   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 17   0.028112450 0.024096386 0.008032129 0.020080321 0.0281124498
## 18   0.020689655 0.000000000 0.027586207 0.027586207 0.0344827586
## 19   0.000000000 0.000000000 0.050000000 0.000000000 0.0000000000
## 20   0.008756567 0.008756567 0.015761821 0.033274956 0.0157618214
## 21   0.028235294 0.011764706 0.009411765 0.021176471 0.0188235294
## 22   0.000000000 0.000000000 0.041666667 0.000000000 0.0208333333
## 23   0.064870259 0.018962076 0.030938124 0.000998004 0.0099800399
## 24   0.003389831 0.013559322 0.027118644 0.057627119 0.0271186441
## 25   0.045454545 0.045454545 0.000000000 0.000000000 0.0000000000
## 26   0.000000000 0.000000000 0.000000000 0.051282051 0.0000000000
## 27   0.017241379 0.040229885 0.040229885 0.017241379 0.1149425287
## 28   0.019531250 0.015625000 0.027343750 0.031250000 0.0234375000
## 29   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 30   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 31   0.032444959 0.028968714 0.023174971 0.027809965 0.0359212051
## 32   0.191304348 0.008695652 0.008695652 0.008695652 0.0173913043
## 33   0.028846154 0.033653846 0.028846154 0.019230769 0.0336538462
## 34   0.021437579 0.037831021 0.035308953 0.023959647 0.0542244641
## 35   0.040816327 0.069970845 0.052478134 0.040816327 0.0524781341
## 36   0.000000000 0.032432432 0.000000000 0.043243243 0.0270270270
## 37   0.000000000 0.000000000 0.086956522 0.000000000 0.0000000000
## 38   0.017142857 0.097142857 0.040000000 0.045714286 0.0057142857
## 39   0.000000000 0.020833333 0.027777778 0.041666667 0.0416666667
## 40   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 41   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 42   0.026178010 0.041884817 0.083769634 0.073298429 0.0575916230
## 43   0.031914894 0.042553191 0.031914894 0.031914894 0.0106382979
## 44   0.030518820 0.049847406 0.020006782 0.020684978 0.0478128179
## 45   0.023809524 0.035273369 0.026455026 0.049382716 0.0476190476
## 46   0.028688525 0.031420765 0.023224044 0.023224044 0.0450819672
## 47   0.005780347 0.000000000 0.005780347 0.023121387 0.0317919075
## 48   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 49   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 50   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 51   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 52   0.007194245 0.050359712 0.017985612 0.053956835 0.0143884892
## 53   0.010033445 0.026755853 0.120401338 0.016722408 0.0367892977
## 54   0.017857143 0.000000000 0.000000000 0.017857143 0.1071428571
## 55   0.045685279 0.040609137 0.131979695 0.065989848 0.0203045685
## 56   0.013896037 0.054040144 0.037056099 0.038085435 0.0504374678
## 57   0.007575758 0.068181818 0.022727273 0.045454545 0.0151515152
## 58   0.049800797 0.025896414 0.065737052 0.015936255 0.0239043825
## 59   0.010204082 0.047193878 0.049744898 0.029336735 0.0242346939
## 60   0.092105263 0.013157895 0.019736842 0.013157895 0.0394736842
## 61   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 62   0.043478261 0.000000000 0.000000000 0.043478261 0.0434782609
## 63   0.005917160 0.005917160 0.014792899 0.008875740 0.0680473373
## 64   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 65   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 66   0.005758157 0.023032630 0.024952015 0.053742802 0.0422264875
## 67   0.000000000 0.035714286 0.119047619 0.000000000 0.0000000000
## 68   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 69   0.042172981 0.104360257 0.022158685 0.026447462 0.0243030736
## 70   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 71   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 72   0.000000000 0.032258065 0.032258065 0.016129032 0.0322580645
## 73   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 74   0.018619934 0.044906900 0.063526835 0.036144578 0.0317634173
## 75   0.071367399 0.049100771 0.027405081 0.049100771 0.0476734228
## 76   0.038251366 0.014571949 0.032786885 0.021857923 0.0036429872
## 77   0.000000000 0.000000000 0.000000000 0.125000000 0.0000000000
## 78   0.024054983 0.037800687 0.017182131 0.027491409 0.0412371134
## 79   0.028469751 0.056939502 0.035587189 0.035587189 0.0142348754
## 80   0.000000000 0.000000000 0.000000000 0.000000000 0.0555555556
## 81   0.008620690 0.008620690 0.056034483 0.073275862 0.0301724138
## 82   0.000000000 0.021276596 0.042553191 0.021276596 0.0319148936
## 83   0.032624113 0.018439716 0.015602837 0.009929078 0.0382978723
## 84   0.010791367 0.032374101 0.014388489 0.007194245 0.0107913669
## 85   0.005970149 0.002985075 0.020895522 0.029850746 0.0179104478
## 86   0.015625000 0.000000000 0.009375000 0.003125000 0.3625000000
## 87   0.036231884 0.021739130 0.025362319 0.007246377 0.0181159420
## 88   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 89   0.044963005 0.060899260 0.013090495 0.014228799 0.0210586227
## 90   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 91   0.000000000 0.045454545 0.000000000 0.000000000 0.0000000000
## 92   0.012844037 0.014678899 0.016513761 0.025688073 0.0256880734
## 93   0.006472492 0.100323625 0.061488673 0.032362460 0.1488673139
## 94   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 95   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 96   0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 97   0.041832669 0.011952191 0.008632138 0.003320053 0.0006640106
## 98   0.027397260 0.077625571 0.041095890 0.036529680 0.0547945205
## 99   0.003350084 0.008375209 0.033500838 0.026800670 0.0167504188
## 100  0.041095890 0.013698630 0.013698630 0.000000000 0.0273972603
## 101  0.040000000 0.034000000 0.060000000 0.036000000 0.0360000000
## 102  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 103  0.038610039 0.034749035 0.038610039 0.019305019 0.0000000000
## 104  0.000000000 0.034482759 0.000000000 0.034482759 0.0000000000
## 105  0.038709677 0.000000000 0.051612903 0.051612903 0.0193548387
## 106  0.037885463 0.033480176 0.026431718 0.033480176 0.0405286344
## 107  0.003968254 0.031746032 0.027777778 0.011904762 0.0238095238
## 108  0.036697248 0.009174312 0.000000000 0.009174312 0.0000000000
## 109  0.061061947 0.028318584 0.058407080 0.046017699 0.0371681416
## 110  0.043478261 0.000000000 0.000000000 0.000000000 0.0000000000
## 111  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 112  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 113  0.031690141 0.021126761 0.015845070 0.022007042 0.0272887324
## 114  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 115  0.020958084 0.031137725 0.025748503 0.031137725 0.0347305389
## 116  0.066666667 0.000000000 0.000000000 0.000000000 0.0000000000
## 117  0.038095238 0.028571429 0.000000000 0.009523810 0.0000000000
## 118  0.080081095 0.058286873 0.045108971 0.035985808 0.0537252914
## 119  0.000000000 0.117647059 0.000000000 0.000000000 0.0000000000
## 120  0.000000000 0.000000000 0.000000000 0.057142857 0.0000000000
## 121  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 122  0.005494505 0.035714286 0.024725275 0.027472527 0.0302197802
## 123  0.030303030 0.051383399 0.023715415 0.064558630 0.0289855072
## 124  0.027459954 0.027459954 0.070938215 0.009153318 0.0457665904
## 125  0.037037037 0.012345679 0.012345679 0.012345679 0.0493827160
## 126  0.096313912 0.059453032 0.071343639 0.020214031 0.0523186683
## 127  0.045454545 0.045454545 0.000000000 0.000000000 0.0227272727
## 128  0.019476158 0.021490934 0.016789792 0.048354600 0.0664875756
## 129  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 130  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 131  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 132  0.009451796 0.005671078 0.000000000 0.003780718 0.0113421550
## 133  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 134  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 135  0.026910049 0.032555514 0.026721867 0.019006398 0.0299209635
## 136  0.000000000 0.010000000 0.060000000 0.000000000 0.0300000000
## 137  0.026666667 0.008888889 0.008888889 0.013333333 0.0355555556
## 138  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 139  0.019808743 0.020491803 0.012978142 0.015710383 0.0191256831
## 140  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 141  0.025641026 0.000000000 0.000000000 0.025641026 0.0000000000
## 142  0.060606061 0.034632035 0.012987013 0.047619048 0.0346320346
## 143  0.000000000 0.000000000 0.055555556 0.000000000 0.0000000000
## 144  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 145  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 146  0.023102310 0.029702970 0.016501650 0.056105611 0.0099009901
## 147  0.039215686 0.000000000 0.039215686 0.000000000 0.0784313725
## 148  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 149  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 150  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 151  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 152  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 153  0.000000000 0.016949153 0.033898305 0.016949153 0.0169491525
## 154  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 155  0.036396724 0.040036397 0.048225660 0.027297543 0.0518653321
## 156  0.008726899 0.053901437 0.058008214 0.057494867 0.0431211499
## 157  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 158  0.000000000 0.016393443 0.040983607 0.065573770 0.1147540984
## 159  0.010050251 0.018844221 0.010050251 0.018844221 0.0188442211
## 160  0.057818182 0.080000000 0.088363636 0.012727273 0.0127272727
## 161  0.017543860 0.003508772 0.063157895 0.014035088 0.0105263158
## 162  0.031914894 0.085106383 0.021276596 0.021276596 0.0106382979
## 163  0.011494253 0.000000000 0.011494253 0.034482759 0.0114942529
## 164  0.022004890 0.019559902 0.029339853 0.048899756 0.0073349633
## 165  0.007299270 0.021897810 0.000000000 0.021897810 0.0072992701
## 166  0.054079254 0.062004662 0.072261072 0.043822844 0.0372960373
## 167  0.063414634 0.009756098 0.029268293 0.019512195 0.0048780488
## 168  0.033898305 0.033898305 0.016949153 0.033898305 0.0000000000
## 169  0.023809524 0.035714286 0.000000000 0.053571429 0.0119047619
## 170  0.020547945 0.027397260 0.041095890 0.020547945 0.0410958904
## 171  0.088757396 0.017751479 0.017751479 0.059171598 0.0118343195
## 172  0.000000000 0.000000000 0.000000000 0.028571429 0.0285714286
## 173  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 174  0.051463169 0.085771948 0.063572149 0.042381433 0.0353178607
## 175  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 176  0.026086957 0.008695652 0.039130435 0.030434783 0.0434782609
## 177  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 178  0.009597638 0.009597638 0.012550757 0.013658176 0.0147655962
## 179  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 180  0.010714286 0.057142857 0.064285714 0.025000000 0.0250000000
## 181  0.019239374 0.035346756 0.026174497 0.030872483 0.0557046980
## 182  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 183  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 184  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 185  0.017848970 0.033867277 0.027002288 0.026544622 0.0274599542
## 186  0.016274864 0.097649186 0.051537071 0.030741410 0.0235081374
## 187  0.035087719 0.011695906 0.000000000 0.020467836 0.0263157895
## 188  0.048997773 0.017817372 0.017817372 0.035634744 0.0534521158
## 189  0.030107527 0.034408602 0.092473118 0.025806452 0.0236559140
## 190  0.004201681 0.016806723 0.084033613 0.037815126 0.0756302521
## 191  0.000000000 0.062500000 0.000000000 0.000000000 0.0000000000
## 192  0.030551416 0.012667660 0.026080477 0.040238450 0.0253353204
## 193  0.023364486 0.004672897 0.004672897 0.018691589 0.0280373832
## 194  0.000000000 0.021834061 0.017467249 0.004366812 0.0349344978
## 195  0.011111111 0.000000000 0.022222222 0.011111111 0.0111111111
## 196  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 197  0.026061776 0.033783784 0.041505792 0.036679537 0.0608108108
## 198  0.040000000 0.000000000 0.120000000 0.020000000 0.0600000000
## 199  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 200  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 201  0.028508772 0.017543860 0.026315789 0.043859649 0.0482456140
## 202  0.000000000 0.000000000 0.045454545 0.000000000 0.0000000000
## 203  0.000000000 0.013333333 0.000000000 0.013333333 0.0800000000
## 204  0.057034221 0.053231939 0.045627376 0.060836502 0.0684410646
## 205  0.016345593 0.023350846 0.035026270 0.032691185 0.0630472855
## 206  0.032258065 0.025345622 0.025345622 0.046082949 0.0783410138
## 207  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 208  0.022471910 0.005617978 0.005617978 0.022471910 0.0224719101
## 209  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 210  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 211  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 212  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 213  0.023696682 0.022511848 0.011848341 0.013033175 0.0272511848
## 214  0.040540541 0.027027027 0.027027027 0.013513514 0.0135135135
## 215  0.000000000 0.000000000 0.066666667 0.000000000 0.1333333333
## 216  0.029069767 0.052325581 0.058139535 0.075581395 0.0755813953
## 217  0.145631068 0.048543689 0.009708738 0.077669903 0.0970873786
## 218  0.007142857 0.042857143 0.007142857 0.000000000 0.0142857143
## 219  0.000000000 0.000000000 0.193548387 0.161290323 0.0322580645
## 220  0.000000000 0.009615385 0.009615385 0.019230769 0.0192307692
## 221  0.044585987 0.019108280 0.000000000 0.031847134 0.0445859873
## 222  0.023995827 0.059467919 0.043296818 0.034950443 0.0239958268
## 223  0.050228311 0.018264840 0.027397260 0.009132420 0.0410958904
## 224  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 225  0.011406844 0.034220532 0.017110266 0.058935361 0.0133079848
## 226  0.000000000 0.105263158 0.000000000 0.000000000 0.0000000000
## 227  0.012987013 0.000000000 0.051948052 0.064935065 0.1038961039
## 228  0.342857143 0.085714286 0.047619048 0.019047619 0.0380952381
## 229  0.048054920 0.041189931 0.042334096 0.041189931 0.0331807780
## 230  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 231  0.019588445 0.027107242 0.032449545 0.041749110 0.0209734863
## 232  0.005464481 0.010928962 0.027322404 0.016393443 0.0327868852
## 233  0.016460905 0.020576132 0.037037037 0.041152263 0.0288065844
## 234  0.020501139 0.017084282 0.017084282 0.045558087 0.0728929385
## 235  0.024242424 0.015151515 0.019696970 0.009090909 0.0242424242
## 236  0.016002510 0.013806087 0.041104487 0.041418262 0.0567932225
## 237  0.015137181 0.017975402 0.016083254 0.037842952 0.0245979186
## 238  0.042153377 0.020314881 0.015236160 0.008633824 0.0157440325
## 239  0.046468401 0.033457249 0.016728625 0.040892193 0.0167286245
## 240  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 241  0.048076923 0.009615385 0.009615385 0.105769231 0.0576923077
## 242  0.079379562 0.011861314 0.010036496 0.024635036 0.0273722628
## 243  0.015873016 0.007936508 0.019841270 0.039682540 0.0476190476
## 244  0.032911392 0.015189873 0.032911392 0.007594937 0.0556962025
## 245  0.041176471 0.008823529 0.005882353 0.023529412 0.0088235294
## 246  0.018922853 0.017467249 0.033478894 0.024745269 0.0145560408
## 247  0.016666667 0.033333333 0.016666667 0.016666667 0.0666666667
## 248  0.008620690 0.014367816 0.011494253 0.043103448 0.0086206897
## 249  0.034782609 0.034782609 0.034782609 0.017391304 0.0434782609
## 250  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 251  0.017857143 0.035714286 0.035714286 0.026785714 0.0267857143
## 252  0.048192771 0.012048193 0.012048193 0.036144578 0.0240963855
## 253  0.031250000 0.031250000 0.015625000 0.031250000 0.0468750000
## 254  0.013698630 0.013698630 0.013698630 0.013698630 0.0410958904
## 255  0.038461538 0.046153846 0.007692308 0.030769231 0.0230769231
## 256  0.010869565 0.021739130 0.010869565 0.010869565 0.0217391304
## 257  0.038461538 0.000000000 0.057692308 0.057692308 0.0576923077
## 258  0.000000000 0.026315789 0.026315789 0.052631579 0.0000000000
## 259  0.028985507 0.028985507 0.014492754 0.043478261 0.0434782609
## 260  0.048076923 0.009615385 0.019230769 0.028846154 0.0192307692
## 261  0.033333333 0.033333333 0.000000000 0.033333333 0.0666666667
## 262  0.031746032 0.015873016 0.047619048 0.126984127 0.0476190476
## 263  0.030303030 0.015151515 0.015151515 0.030303030 0.0454545455
## 264  0.000000000 0.013157895 0.000000000 0.026315789 0.0131578947
## 265  0.088036117 0.024830700 0.022573363 0.072234763 0.0564334086
## 266  0.036585366 0.026422764 0.056910569 0.067073171 0.0365853659
## 267  0.055923897 0.067166330 0.070337273 0.072931681 0.0870567887
## 268  0.007795100 0.005567929 0.004454343 0.018930958 0.0133630290
## 269  0.000000000 0.029411765 0.029411765 0.000000000 0.0000000000
## 270  0.038461538 0.038461538 0.030769231 0.030769231 0.0230769231
## 271  0.048780488 0.012195122 0.036585366 0.024390244 0.0365853659
## 272  0.028571429 0.009523810 0.057142857 0.038095238 0.0095238095
## 273  0.021276596 0.014184397 0.085106383 0.028368794 0.0425531915
## 274  0.007812500 0.007812500 0.070312500 0.039062500 0.0234375000
## 275  0.008474576 0.008474576 0.059322034 0.067796610 0.0169491525
## 276  0.000000000 0.007246377 0.036231884 0.050724638 0.0072463768
## 277  0.044921875 0.005859375 0.017578125 0.039062500 0.0273437500
## 278  0.053375196 0.021978022 0.042386185 0.080062794 0.0251177394
## 279  0.020000000 0.000000000 0.050000000 0.000000000 0.0600000000
## 280  0.032786885 0.008196721 0.008196721 0.016393443 0.0163934426
## 281  0.177215190 0.025316456 0.012658228 0.037974684 0.0253164557
## 282  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 283  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 284  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 285  0.076923077 0.000000000 0.000000000 0.000000000 0.0000000000
## 286  0.000000000 0.000000000 0.050000000 0.300000000 0.1000000000
## 287  0.000000000 0.000000000 0.000000000 0.000000000 0.0909090909
## 288  0.000000000 0.076923077 0.000000000 0.153846154 0.0000000000
## 289  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 290  0.015151515 0.000000000 0.060606061 0.015151515 0.0454545455
## 291  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 292  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 293  0.000000000 0.071428571 0.000000000 0.285714286 0.0714285714
## 294  0.000000000 0.057692308 0.019230769 0.019230769 0.0192307692
## 295  0.009615385 0.009615385 0.038461538 0.009615385 0.0288461538
## 296  0.078947368 0.013157895 0.026315789 0.039473684 0.0131578947
## 297  0.021276596 0.021276596 0.000000000 0.000000000 0.0000000000
## 298  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 299  0.000000000 0.086956522 0.000000000 0.000000000 0.0000000000
## 300  0.076923077 0.000000000 0.000000000 0.000000000 0.0000000000
## 301  0.020270270 0.032432432 0.024324324 0.017567568 0.0202702703
## 302  0.037037037 0.000000000 0.000000000 0.000000000 0.0000000000
## 303  0.089887640 0.157303371 0.056179775 0.000000000 0.0224719101
## 304  0.009615385 0.038461538 0.028846154 0.048076923 0.0384615385
## 305  0.072815534 0.038834951 0.026699029 0.087378641 0.0291262136
## 306  0.033776301 0.043743079 0.033222591 0.034330011 0.0282392027
## 307  0.024390244 0.034146341 0.009756098 0.009756098 0.0585365854
## 308  0.169491525 0.067796610 0.000000000 0.016949153 0.0338983051
## 309  0.094488189 0.165354331 0.000000000 0.062992126 0.0314960630
## 310  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 311  0.024979184 0.026644463 0.012489592 0.012489592 0.0041631973
## 312  0.027738764 0.033707865 0.044592697 0.017205056 0.0277387640
## 313  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 314  0.022598870 0.028248588 0.000000000 0.022598870 0.0508474576
## 315  0.090909091 0.000000000 0.000000000 0.000000000 0.0000000000
## 316  0.049603175 0.021825397 0.019841270 0.047619048 0.0396825397
## 317  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 318  0.039603960 0.017821782 0.045544554 0.011881188 0.0079207921
## 319  0.032520325 0.146341463 0.024390244 0.000000000 0.0000000000
## 320  0.021413276 0.036402570 0.051391863 0.027837259 0.0192719486
## 321  0.006024096 0.012048193 0.006024096 0.000000000 0.0000000000
## 322  0.000000000 0.000000000 0.000000000 0.000000000 0.0555555556
## 323  0.025751073 0.055793991 0.068669528 0.023605150 0.0429184549
## 324  0.041666667 0.020833333 0.020833333 0.031250000 0.0729166667
## 325  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 326  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 327  0.039215686 0.052287582 0.019607843 0.019607843 0.0326797386
## 328  0.000000000 0.040000000 0.016000000 0.000000000 0.1760000000
## 329  0.068531469 0.026573427 0.065734266 0.008391608 0.0167832168
## 330  0.000000000 0.000000000 0.111111111 0.055555556 0.0000000000
## 331  0.000000000 0.008547009 0.008547009 0.085470085 0.0085470085
## 332  0.025229358 0.043577982 0.040519878 0.029051988 0.0305810398
## 333  0.005847953 0.011695906 0.099415205 0.011695906 0.0233918129
## 334  0.029139073 0.042384106 0.043708609 0.015894040 0.0079470199
## 335  0.006578947 0.026315789 0.032894737 0.026315789 0.0328947368
## 336  0.082228117 0.039787798 0.010610080 0.018567639 0.0159151194
## 337  0.010000000 0.015555556 0.055555556 0.090000000 0.0600000000
## 338  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 339  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 340  0.016901408 0.005633803 0.028169014 0.042253521 0.0394366197
## 341  0.010118044 0.028667791 0.028667791 0.038785835 0.0236087690
## 342  0.030303030 0.000000000 0.090909091 0.075757576 0.0000000000
## 343  0.011019284 0.033057851 0.013774105 0.013774105 0.0358126722
## 344  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 345  0.000000000 0.000000000 0.000000000 0.020833333 0.0208333333
## 346  0.012195122 0.000000000 0.060975610 0.024390244 0.0853658537
## 347  0.004739336 0.004739336 0.004739336 0.000000000 0.0094786730
## 348  0.065217391 0.032608696 0.051630435 0.008152174 0.0081521739
## 349  0.027624309 0.023480663 0.011049724 0.011049724 0.0234806630
## 350  0.000000000 0.000000000 0.052631579 0.000000000 0.0526315789
## 351  0.041575492 0.006564551 0.019693654 0.043763676 0.0087527352
## 352  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 353  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 354  0.018666667 0.024000000 0.184000000 0.013333333 0.0133333333
## 355  0.013793103 0.020689655 0.048275862 0.055172414 0.0206896552
## 356  0.030075188 0.022556391 0.015037594 0.060150376 0.0000000000
## 357  0.020689655 0.068965517 0.193103448 0.000000000 0.0000000000
## 358  0.040909091 0.022727273 0.009090909 0.018181818 0.0000000000
## 359  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 360  0.046035806 0.071611253 0.016624041 0.043478261 0.0268542199
## 361  0.015776699 0.049757282 0.009708738 0.016990291 0.0254854369
## 362  0.032894737 0.013157895 0.039473684 0.032894737 0.0394736842
## 363  0.022205207 0.007656968 0.006125574 0.012251149 0.0114854518
## 364  0.010256410 0.066666667 0.005128205 0.035897436 0.0000000000
## 365  0.095238095 0.047619048 0.095238095 0.000000000 0.0000000000
## 366  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 367  0.051652893 0.030991736 0.016528926 0.037190083 0.0309917355
## 368  0.000000000 0.000000000 0.065040650 0.089430894 0.1138211382
## 369  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 370  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 371  0.025641026 0.025641026 0.000000000 0.025641026 0.0256410256
## 372  0.035598706 0.048543689 0.019417476 0.029126214 0.0647249191
## 373  0.044444444 0.000000000 0.000000000 0.000000000 0.0000000000
## 374  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 375  0.026845638 0.023489933 0.031319911 0.010067114 0.0167785235
## 376  0.012820513 0.012820513 0.051282051 0.057692308 0.0192307692
## 377  0.055555556 0.055555556 0.000000000 0.000000000 0.0000000000
## 378  0.037974684 0.025316456 0.000000000 0.050632911 0.0063291139
## 379  0.042194093 0.025316456 0.023909986 0.019690577 0.0548523207
## 380  0.026490066 0.013245033 0.026490066 0.026490066 0.0132450331
## 381  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 382  0.178986518 0.066480707 0.051603905 0.006973501 0.0139470014
## 383  0.078947368 0.026315789 0.026315789 0.026315789 0.0000000000
## 384  0.017241379 0.017241379 0.086206897 0.017241379 0.0000000000
## 385  0.034843206 0.020905923 0.033101045 0.040069686 0.0331010453
## 386  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 387  0.037288136 0.023728814 0.010169492 0.006779661 0.0271186441
## 388  0.000000000 0.019867550 0.019867550 0.000000000 0.0264900662
## 389  0.003033367 0.004044489 0.002022245 0.006066734 0.0192113246
## 390  0.036363636 0.018181818 0.000000000 0.000000000 0.0000000000
## 391  0.038674033 0.000000000 0.022099448 0.022099448 0.0220994475
## 392  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 393  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 394  0.039682540 0.007936508 0.003968254 0.031746032 0.1349206349
## 395  0.015558699 0.015558699 0.024045262 0.070721358 0.0381895332
## 396  0.053571429 0.017857143 0.017857143 0.089285714 0.0000000000
## 397  0.032983508 0.068965517 0.056971514 0.013493253 0.0194902549
## 398  0.000000000 0.000000000 0.000000000 0.000000000 0.1304347826
## 399  0.048000000 0.057600000 0.022400000 0.025600000 0.0128000000
## 400  0.000000000 0.000000000 0.000000000 0.066666667 0.0333333333
## 401  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 402  0.060070671 0.031802120 0.035335689 0.028268551 0.0141342756
## 403  0.032159265 0.009188361 0.012251149 0.021439510 0.0122511485
## 404  0.021276596 0.010638298 0.000000000 0.010638298 0.0106382979
## 405  0.000000000 0.068181818 0.113636364 0.068181818 0.0227272727
## 406  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 407  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 408  0.045226131 0.005025126 0.040201005 0.050251256 0.1055276382
## 409  0.023809524 0.000000000 0.035714286 0.083333333 0.0297619048
## 410  0.000000000 0.000000000 0.028571429 0.028571429 0.0000000000
## 411  0.012858980 0.012001715 0.039005572 0.024860694 0.0385769396
## 412  0.125000000 0.022727273 0.079545455 0.000000000 0.0000000000
## 413  0.028571429 0.000000000 0.000000000 0.028571429 0.0000000000
## 414  0.038286235 0.013673655 0.018231541 0.015496809 0.0136736554
## 415  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 416  0.023041475 0.064516129 0.027649770 0.018433180 0.0184331797
## 417  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 418  0.006741573 0.011235955 0.008988764 0.040449438 0.0539325843
## 419  0.083333333 0.000000000 0.016666667 0.033333333 0.0000000000
## 420  0.028925620 0.014462810 0.006198347 0.016528926 0.0082644628
## 421  0.000000000 0.000000000 0.000000000 0.178571429 0.0000000000
## 422  0.103174603 0.031746032 0.007936508 0.039682540 0.0158730159
## 423  0.194029851 0.029850746 0.029850746 0.119402985 0.0000000000
## 424  0.022988506 0.022988506 0.011494253 0.172413793 0.0114942529
## 425  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 426  0.052631579 0.000000000 0.052631579 0.052631579 0.0000000000
## 427  0.020954598 0.016298021 0.016298021 0.039580908 0.0209545984
## 428  0.035000000 0.100000000 0.010000000 0.035000000 0.0150000000
## 429  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 430  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 431  0.023809524 0.023809524 0.023809524 0.000000000 0.0238095238
## 432  0.000000000 0.000000000 0.000000000 0.038461538 0.0000000000
## 433  0.023809524 0.039682540 0.031746032 0.007936508 0.0317460317
## 434  0.016548463 0.033096927 0.068557920 0.026004728 0.0118203310
## 435  0.015625000 0.046875000 0.000000000 0.078125000 0.0156250000
## 436  0.007812500 0.023437500 0.015625000 0.007812500 0.0000000000
## 437  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 438  0.000000000 0.091603053 0.007633588 0.022900763 0.0458015267
## 439  0.019607843 0.019607843 0.039215686 0.039215686 0.0392156863
## 440  0.009009009 0.027027027 0.000000000 0.054054054 0.0450450450
## 441  0.042553191 0.031914894 0.010638298 0.010638298 0.0106382979
## 442  0.010256410 0.010256410 0.015384615 0.005128205 0.0000000000
## 443  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 444  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 445  0.009107468 0.020036430 0.020036430 0.058287796 0.0291438980
## 446  0.018181818 0.036363636 0.018181818 0.000000000 0.0181818182
## 447  0.027777778 0.013888889 0.000000000 0.000000000 0.0972222222
## 448  0.000000000 0.000000000 0.000000000 0.047619048 0.0000000000
## 449  0.008650519 0.034602076 0.013840830 0.013840830 0.0276816609
## 450  0.038216561 0.035031847 0.042993631 0.046178344 0.0557324841
## 451  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 452  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 453  0.000000000 0.000000000 0.000000000 0.071428571 0.0000000000
## 454  0.014285714 0.028571429 0.000000000 0.014285714 0.0142857143
## 455  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 456  0.000000000 0.017543860 0.017543860 0.000000000 0.0000000000
## 457  0.009523810 0.003174603 0.038095238 0.009523810 0.0285714286
## 458  0.000000000 0.039473684 0.000000000 0.013157895 0.0131578947
## 459  0.000000000 0.000000000 0.000000000 0.112359551 0.0337078652
## 460  0.044117647 0.044117647 0.070588235 0.041176471 0.0176470588
## 461  0.043478261 0.000000000 0.086956522 0.000000000 0.0869565217
## 462  0.000000000 0.040000000 0.020000000 0.000000000 0.0400000000
## 463  0.024096386 0.012048193 0.072289157 0.012048193 0.0481927711
## 464  0.005102041 0.010204082 0.005102041 0.051020408 0.0255102041
## 465  0.013937282 0.010452962 0.000000000 0.020905923 0.0069686411
## 466  0.031250000 0.062500000 0.000000000 0.031250000 0.0000000000
## 467  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 468  0.014598540 0.043795620 0.000000000 0.000000000 0.0291970803
## 469  0.047430830 0.039525692 0.047430830 0.007905138 0.0197628458
## 470  0.003533569 0.028268551 0.000000000 0.000000000 0.0000000000
## 471  0.000000000 0.032258065 0.032258065 0.064516129 0.0000000000
## 472  0.038793103 0.012931034 0.017241379 0.004310345 0.0431034483
## 473  0.000000000 0.000000000 0.000000000 0.105263158 0.0000000000
## 474  0.028571429 0.000000000 0.000000000 0.000000000 0.0571428571
## 475  0.013888889 0.041666667 0.027777778 0.027777778 0.0138888889
## 476  0.039647577 0.039647577 0.061674009 0.022026432 0.0088105727
## 477  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 478  0.057142857 0.000000000 0.028571429 0.028571429 0.0000000000
## 479  0.007751938 0.031007752 0.023255814 0.000000000 0.0000000000
## 480  0.000000000 0.000000000 0.000000000 0.071428571 0.0000000000
## 481  0.028985507 0.007246377 0.021739130 0.054347826 0.0253623188
## 482  0.045454545 0.000000000 0.000000000 0.090909091 0.0000000000
## 483  0.000000000 0.037037037 0.055555556 0.018518519 0.0000000000
## 484  0.000000000 0.000000000 0.020000000 0.020000000 0.0600000000
## 485  0.021739130 0.043478261 0.043478261 0.021739130 0.0217391304
## 486  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 487  0.071428571 0.031746032 0.031746032 0.031746032 0.0555555556
## 488  0.000000000 0.000000000 0.084337349 0.000000000 0.0000000000
## 489  0.071428571 0.000000000 0.000000000 0.000000000 0.0000000000
## 490  0.028169014 0.070422535 0.084507042 0.028169014 0.0140845070
## 491  0.000000000 0.000000000 0.000000000 0.100000000 0.0000000000
## 492  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 493  0.142857143 0.071428571 0.000000000 0.071428571 0.0000000000
## 494  0.007445323 0.020009307 0.037691950 0.020009307 0.0093066543
## 495  0.000000000 0.000000000 0.033333333 0.000000000 0.0000000000
## 496  0.011494253 0.011494253 0.022988506 0.000000000 0.0689655172
## 497  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 498  0.000000000 0.000000000 0.000000000 0.000000000 0.0344827586
## 499  0.000000000 0.000000000 0.090909091 0.000000000 0.0000000000
## 500  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 501  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 502  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 503  0.053333333 0.200000000 0.062222222 0.026666667 0.0355555556
## 504  0.015517241 0.009482759 0.010344828 0.110344828 0.0818965517
## 505  0.025089606 0.028673835 0.057347670 0.031063321 0.0179211470
## 506  0.000000000 0.080000000 0.040000000 0.000000000 0.0000000000
## 507  0.052631579 0.017543860 0.000000000 0.052631579 0.0000000000
## 508  0.018083183 0.012658228 0.001808318 0.032549729 0.0108499096
## 509  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 510  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 511  0.007434944 0.007434944 0.178438662 0.011152416 0.0185873606
## 512  0.037383178 0.046728972 0.009345794 0.018691589 0.0373831776
## 513  0.020618557 0.010309278 0.020618557 0.041237113 0.0206185567
## 514  0.009615385 0.009615385 0.038461538 0.004807692 0.0000000000
## 515  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 516  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 517  0.000000000 0.062500000 0.000000000 0.000000000 0.0000000000
## 518  0.052631579 0.000000000 0.000000000 0.000000000 0.0526315789
## 519  0.011406844 0.015209125 0.011406844 0.057034221 0.0152091255
## 520  0.173913043 0.130434783 0.434782609 0.000000000 0.0000000000
## 521  0.040816327 0.000000000 0.020408163 0.040816327 0.0000000000
## 522  0.020000000 0.046666667 0.000000000 0.016666667 0.0300000000
## 523  0.040816327 0.020408163 0.020408163 0.040816327 0.0408163265
## 524  0.039215686 0.019607843 0.019607843 0.019607843 0.0784313725
## 525  0.054545455 0.054545455 0.000000000 0.018181818 0.0545454545
## 526  0.044776119 0.014925373 0.000000000 0.044776119 0.0298507463
## 527  0.063291139 0.000000000 0.063291139 0.025316456 0.0379746835
## 528  0.018072289 0.054216867 0.030120482 0.018072289 0.0481927711
## 529  0.030927835 0.030927835 0.051546392 0.020618557 0.0309278351
## 530  0.058823529 0.000000000 0.039215686 0.078431373 0.0196078431
## 531  0.000000000 0.060606061 0.030303030 0.000000000 0.0000000000
## 532  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 533  0.007692308 0.003846154 0.030769231 0.084615385 0.0115384615
## 534  0.000000000 0.083333333 0.000000000 0.000000000 0.0000000000
## 535  0.028985507 0.043478261 0.072463768 0.014492754 0.0289855072
## 536  0.040816327 0.040816327 0.000000000 0.020408163 0.0408163265
## 537  0.040000000 0.060000000 0.020000000 0.060000000 0.0200000000
## 538  0.066666667 0.088888889 0.022222222 0.088888889 0.0444444444
## 539  0.044444444 0.022222222 0.022222222 0.066666667 0.0222222222
## 540  0.030303030 0.030303030 0.030303030 0.060606061 0.0606060606
## 541  0.018957346 0.033175355 0.085308057 0.009478673 0.0094786730
## 542  0.032786885 0.016393443 0.000000000 0.016393443 0.0163934426
## 543  0.008620690 0.008620690 0.060344828 0.043103448 0.0172413793
## 544  0.024390244 0.048780488 0.024390244 0.024390244 0.0243902439
## 545  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 546  0.083333333 0.000000000 0.000000000 0.041666667 0.0208333333
## 547  0.027906977 0.009302326 0.009302326 0.013953488 0.0093023256
## 548  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 549  0.047619048 0.057142857 0.009523810 0.000000000 0.0095238095
## 550  0.081632653 0.000000000 0.000000000 0.020408163 0.0408163265
## 551  0.065573770 0.049180328 0.000000000 0.016393443 0.0655737705
## 552  0.063829787 0.042553191 0.000000000 0.021276596 0.0212765957
## 553  0.083333333 0.000000000 0.062500000 0.020833333 0.0416666667
## 554  0.016949153 0.050847458 0.016949153 0.033898305 0.0169491525
## 555  0.015384615 0.046153846 0.015384615 0.030769231 0.1076923077
## 556  0.046153846 0.000000000 0.046153846 0.030769231 0.0153846154
## 557  0.007092199 0.007092199 0.007092199 0.014184397 0.0000000000
## 558  0.044444444 0.000000000 0.044444444 0.066666667 0.0222222222
## 559  0.000000000 0.042857143 0.014285714 0.042857143 0.0000000000
## 560  0.000000000 0.000000000 0.000000000 0.052631579 0.0000000000
## 561  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 562  0.111111111 0.000000000 0.000000000 0.000000000 0.0000000000
## 563  0.025229358 0.043577982 0.016055046 0.038990826 0.0000000000
## 564  0.000000000 0.073170732 0.000000000 0.000000000 0.0000000000
## 565  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 566  0.019230769 0.019230769 0.019230769 0.000000000 0.0000000000
## 567  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 568  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 569  0.048007246 0.048913043 0.019927536 0.028079710 0.0163043478
## 570  0.075471698 0.031446541 0.094339623 0.125786164 0.0031446541
## 571  0.024038462 0.024038462 0.028846154 0.014423077 0.0000000000
## 572  0.105263158 0.026315789 0.039473684 0.000000000 0.0000000000
## 573  0.034482759 0.000000000 0.068965517 0.172413793 0.0000000000
## 574  0.025396825 0.076190476 0.006349206 0.047619048 0.0000000000
## 575  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 576  0.000000000 0.200000000 0.000000000 0.000000000 0.0000000000
## 577  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 578  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 579  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 580  0.000000000 0.000000000 0.071428571 0.000000000 0.0000000000
## 581  0.000000000 0.033333333 0.000000000 0.000000000 0.0000000000
## 582  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 583  0.027906977 0.000000000 0.009302326 0.009302326 0.0000000000
## 584  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 585  0.032500000 0.017500000 0.025000000 0.027500000 0.0000000000
## 586  0.120000000 0.260000000 0.040000000 0.000000000 0.0000000000
## 587  0.036363636 0.033201581 0.042687747 0.021343874 0.0007905138
## 588  0.000000000 0.046875000 0.046875000 0.046875000 0.0000000000
## 589  0.031746032 0.000000000 0.047619048 0.000000000 0.0000000000
## 590  0.106666667 0.000000000 0.026666667 0.000000000 0.0000000000
## 591  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 592  0.019230769 0.019230769 0.000000000 0.000000000 0.0000000000
## 593  0.008221994 0.015416238 0.011305242 0.022610483 0.0061664954
## 594  0.034482759 0.137931034 0.034482759 0.034482759 0.0000000000
## 595  0.035714286 0.107142857 0.000000000 0.071428571 0.0000000000
## 596  0.034482759 0.137931034 0.000000000 0.068965517 0.0000000000
## 597  0.000000000 0.192307692 0.000000000 0.076923077 0.0000000000
## 598  0.043478261 0.043478261 0.000000000 0.028985507 0.0000000000
## 599  0.000000000 0.136363636 0.000000000 0.022727273 0.0227272727
## 600  0.054054054 0.054054054 0.000000000 0.027027027 0.0000000000
## 601  0.080000000 0.080000000 0.000000000 0.120000000 0.0000000000
## 602  0.038461538 0.076923077 0.038461538 0.038461538 0.0000000000
## 603  0.011627907 0.023255814 0.093023256 0.011627907 0.0000000000
## 604  0.076923077 0.076923077 0.000000000 0.076923077 0.0000000000
## 605  0.047619048 0.142857143 0.000000000 0.000000000 0.0000000000
## 606  0.066666667 0.066666667 0.033333333 0.066666667 0.0000000000
## 607  0.107142857 0.071428571 0.000000000 0.035714286 0.0000000000
## 608  0.015686275 0.007843137 0.015686275 0.019607843 0.0039215686
## 609  0.071428571 0.071428571 0.000000000 0.071428571 0.0000000000
## 610  0.041095890 0.054794521 0.041095890 0.041095890 0.0000000000
## 611  0.068965517 0.103448276 0.000000000 0.068965517 0.0000000000
## 612  0.096774194 0.064516129 0.000000000 0.064516129 0.0000000000
## 613  0.080000000 0.080000000 0.080000000 0.080000000 0.0000000000
## 614  0.036496350 0.072992701 0.007299270 0.036496350 0.0000000000
## 615  0.083333333 0.055555556 0.083333333 0.222222222 0.0000000000
## 616  0.019230769 0.057692308 0.019230769 0.038461538 0.0000000000
## 617  0.040000000 0.120000000 0.040000000 0.040000000 0.0000000000
## 618  0.142857143 0.142857143 0.095238095 0.095238095 0.0000000000
## 619  0.105263158 0.157894737 0.052631579 0.052631579 0.0000000000
## 620  0.025000000 0.033333333 0.016666667 0.016666667 0.0000000000
## 621  0.114285714 0.057142857 0.057142857 0.000000000 0.0000000000
## 622  0.142857143 0.142857143 0.095238095 0.047619048 0.0000000000
## 623  0.137931034 0.103448276 0.034482759 0.034482759 0.0000000000
## 624  0.078431373 0.117647059 0.039215686 0.019607843 0.0000000000
## 625  0.076923077 0.102564103 0.025641026 0.025641026 0.0000000000
## 626  0.130434783 0.086956522 0.000000000 0.086956522 0.0000000000
## 627  0.023121387 0.028901734 0.028901734 0.086705202 0.0000000000
## 628  0.100000000 0.066666667 0.033333333 0.033333333 0.0000000000
## 629  0.085714286 0.057142857 0.000000000 0.028571429 0.0000000000
## 630  0.035714286 0.142857143 0.035714286 0.035714286 0.0000000000
## 631  0.323076923 0.061538462 0.000000000 0.015384615 0.0000000000
## 632  0.035714286 0.035714286 0.142857143 0.035714286 0.0000000000
## 633  0.042857143 0.050000000 0.064285714 0.007142857 0.0071428571
## 634  0.113636364 0.022727273 0.068181818 0.022727273 0.0000000000
## 635  0.071428571 0.047619048 0.119047619 0.190476190 0.0000000000
## 636  0.010204082 0.000000000 0.020408163 0.081632653 0.0000000000
## 637  0.111111111 0.055555556 0.111111111 0.055555556 0.0000000000
## 638  0.052631579 0.000000000 0.157894737 0.105263158 0.0000000000
## 639  0.125000000 0.062500000 0.062500000 0.031250000 0.0000000000
## 640  0.105263158 0.052631579 0.105263158 0.052631579 0.0000000000
## 641  0.111111111 0.055555556 0.111111111 0.055555556 0.0000000000
## 642  0.076923077 0.038461538 0.076923077 0.038461538 0.0000000000
## 643  0.050000000 0.050000000 0.100000000 0.050000000 0.0000000000
## 644  0.080000000 0.040000000 0.040000000 0.040000000 0.0000000000
## 645  0.074074074 0.259259259 0.000000000 0.074074074 0.0000000000
## 646  0.142857143 0.285714286 0.000000000 0.095238095 0.0000000000
## 647  0.034482759 0.137931034 0.034482759 0.034482759 0.0344827586
## 648  0.005076142 0.035532995 0.005076142 0.025380711 0.0101522843
## 649  0.259259259 0.222222222 0.000000000 0.074074074 0.0000000000
## 650  0.028571429 0.061224490 0.020408163 0.040816327 0.0000000000
## 651  0.035714286 0.142857143 0.107142857 0.035714286 0.0714285714
## 652  0.068965517 0.137931034 0.068965517 0.034482759 0.0000000000
## 653  0.034482759 0.103448276 0.000000000 0.068965517 0.0000000000
## 654  0.019132653 0.017857143 0.036989796 0.015306122 0.0025510204
## 655  0.020491803 0.040983607 0.061475410 0.086065574 0.0491803279
## 656  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 657  0.000000000 0.025974026 0.038961039 0.077922078 0.0259740260
## 658  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 659  0.041666667 0.100000000 0.000000000 0.008333333 0.0000000000
## 660  0.090909091 0.090909091 0.000000000 0.045454545 0.0000000000
## 661  0.020833333 0.020833333 0.000000000 0.072916667 0.0000000000
## 662  0.043478261 0.086956522 0.000000000 0.043478261 0.0434782609
## 663  0.033333333 0.133333333 0.000000000 0.033333333 0.0000000000
## 664  0.007194245 0.028776978 0.000000000 0.021582734 0.0000000000
## 665  0.100000000 0.100000000 0.000000000 0.050000000 0.0000000000
## 666  0.038461538 0.076923077 0.000000000 0.038461538 0.0000000000
## 667  0.055555556 0.111111111 0.000000000 0.055555556 0.0000000000
## 668  0.030303030 0.060606061 0.333333333 0.030303030 0.0000000000
## 669  0.066666667 0.066666667 0.000000000 0.066666667 0.0666666667
## 670  0.083333333 0.083333333 0.041666667 0.125000000 0.0000000000
## 671  0.050000000 0.050000000 0.000000000 0.100000000 0.0000000000
## 672  0.058823529 0.058823529 0.000000000 0.029411765 0.0000000000
## 673  0.100000000 0.050000000 0.000000000 0.000000000 0.0000000000
## 674  0.050000000 0.025000000 0.025000000 0.025000000 0.0000000000
## 675  0.095890411 0.027397260 0.109589041 0.041095890 0.0000000000
## 676  0.000000000 0.000000000 0.071428571 0.071428571 0.0000000000
## 677  0.000000000 0.083333333 0.083333333 0.083333333 0.0000000000
## 678  0.000000000 0.217391304 0.130434783 0.043478261 0.0000000000
## 679  0.000000000 0.020833333 0.000000000 0.020833333 0.0000000000
## 680  0.000000000 0.240000000 0.000000000 0.120000000 0.0000000000
## 681  0.000000000 0.055555556 0.000000000 0.055555556 0.0000000000
## 682  0.000000000 0.062500000 0.000000000 0.062500000 0.0000000000
## 683  0.000000000 0.100000000 0.000000000 0.100000000 0.0000000000
## 684  0.058823529 0.147058824 0.000000000 0.058823529 0.0000000000
## 685  0.038461538 0.153846154 0.000000000 0.038461538 0.0000000000
## 686  0.038461538 0.153846154 0.000000000 0.076923077 0.0000000000
## 687  0.013071895 0.019607843 0.006535948 0.006535948 0.0000000000
## 688  0.011278195 0.037593985 0.060150376 0.022556391 0.0601503759
## 689  0.057142857 0.085714286 0.000000000 0.028571429 0.0000000000
## 690  0.054054054 0.081081081 0.054054054 0.054054054 0.0000000000
## 691  0.039215686 0.098039216 0.019607843 0.039215686 0.0000000000
## 692  0.000000000 0.100000000 0.000000000 0.000000000 0.0000000000
## 693  0.000000000 0.035714286 0.000000000 0.071428571 0.0000000000
## 694  0.000000000 0.076923077 0.000000000 0.153846154 0.0000000000
## 695  0.000000000 0.066666667 0.000000000 0.133333333 0.0000000000
## 696  0.077586207 0.034482759 0.025862069 0.051724138 0.0000000000
## 697  0.000000000 0.066666667 0.000000000 0.133333333 0.0000000000
## 698  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 699  0.000000000 0.090909091 0.000000000 0.181818182 0.0000000000
## 700  0.025974026 0.077922078 0.038961039 0.142857143 0.0000000000
## 701  0.000000000 0.166666667 0.055555556 0.166666667 0.0000000000
## 702  0.051282051 0.051282051 0.000000000 0.064102564 0.0641025641
## 703  0.000000000 0.090909091 0.000000000 0.181818182 0.0000000000
## 704  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 705  0.000000000 0.000000000 0.027027027 0.027027027 0.0000000000
## 706  0.000000000 0.030303030 0.000000000 0.000000000 0.0000000000
## 707  0.000000000 0.037037037 0.000000000 0.000000000 0.0000000000
## 708  0.000000000 0.000000000 0.026315789 0.000000000 0.0000000000
## 709  0.000000000 0.000000000 0.000000000 0.058823529 0.0000000000
## 710  0.047034765 0.028629857 0.036809816 0.018404908 0.0102249489
## 711  0.071428571 0.107142857 0.000000000 0.071428571 0.0000000000
## 712  0.000000000 0.066666667 0.266666667 0.133333333 0.0000000000
## 713  0.057142857 0.085714286 0.114285714 0.114285714 0.0000000000
## 714  0.000000000 0.076923077 0.076923077 0.153846154 0.0000000000
## 715  0.000000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 716  0.047619048 0.142857143 0.000000000 0.047619048 0.0000000000
## 717  0.000000000 0.100000000 0.000000000 0.100000000 0.0000000000
## 718  0.076923077 0.115384615 0.000000000 0.038461538 0.0000000000
## 719  0.000000000 0.100000000 0.000000000 0.100000000 0.0000000000
## 720  0.000000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 721  0.105263158 0.157894737 0.000000000 0.052631579 0.0000000000
## 722  0.000000000 0.076923077 0.000000000 0.076923077 0.0000000000
## 723  0.050000000 0.100000000 0.050000000 0.050000000 0.0000000000
## 724  0.000000000 0.090909091 0.000000000 0.090909091 0.0000000000
## 725  0.000000000 0.071428571 0.000000000 0.071428571 0.0000000000
## 726  0.000000000 0.066666667 0.000000000 0.066666667 0.0000000000
## 727  0.000000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 728  0.047619048 0.142857143 0.000000000 0.047619048 0.0000000000
## 729  0.000000000 0.000000000 0.038461538 0.000000000 0.0000000000
## 730  0.071428571 0.000000000 0.000000000 0.000000000 0.0000000000
## 731  0.000000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 732  0.000000000 0.076923077 0.000000000 0.076923077 0.0000000000
## 733  0.039215686 0.078431373 0.000000000 0.019607843 0.0196078431
## 734  0.090909091 0.068181818 0.000000000 0.045454545 0.0000000000
## 735  0.000000000 0.071428571 0.000000000 0.142857143 0.0000000000
## 736  0.000000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 737  0.066666667 0.066666667 0.000000000 0.066666667 0.0666666667
## 738  0.000000000 0.076923077 0.000000000 0.076923077 0.0000000000
## 739  0.036363636 0.145454545 0.054545455 0.090909091 0.0000000000
## 740  0.040000000 0.080000000 0.000000000 0.120000000 0.0000000000
## 741  0.096774194 0.096774194 0.000000000 0.064516129 0.0000000000
## 742  0.034482759 0.068965517 0.034482759 0.034482759 0.0000000000
## 743  0.052631579 0.157894737 0.000000000 0.052631579 0.0000000000
## 744  0.052631579 0.157894737 0.000000000 0.052631579 0.0000000000
## 745  0.100000000 0.150000000 0.000000000 0.100000000 0.0000000000
## 746  0.068965517 0.103448276 0.000000000 0.034482759 0.0000000000
## 747  0.125000000 0.125000000 0.000000000 0.041666667 0.0000000000
## 748  0.090909091 0.181818182 0.000000000 0.045454545 0.0000000000
## 749  0.034482759 0.241379310 0.000000000 0.034482759 0.0000000000
## 750  0.081081081 0.162162162 0.000000000 0.135135135 0.0000000000
## 751  0.100000000 0.150000000 0.000000000 0.100000000 0.0000000000
## 752  0.105263158 0.157894737 0.000000000 0.105263158 0.0000000000
## 753  0.052631579 0.210526316 0.000000000 0.105263158 0.0000000000
## 754  0.130434783 0.130434783 0.000000000 0.086956522 0.0000000000
## 755  0.105263158 0.157894737 0.000000000 0.105263158 0.0000000000
## 756  0.008695652 0.034782609 0.060869565 0.165217391 0.0086956522
## 757  0.055555556 0.222222222 0.000000000 0.055555556 0.0000000000
## 758  0.072463768 0.043478261 0.000000000 0.014492754 0.0000000000
## 759  0.062500000 0.068181818 0.011363636 0.079545455 0.0056818182
## 760  0.057692308 0.057692308 0.019230769 0.038461538 0.0096153846
## 761  0.012345679 0.049382716 0.135802469 0.074074074 0.0000000000
## 762  0.053571429 0.071428571 0.035714286 0.053571429 0.0000000000
## 763  0.032520325 0.048780488 0.016260163 0.121951220 0.0000000000
## 764  0.050000000 0.100000000 0.025000000 0.025000000 0.0000000000
## 765  0.050000000 0.150000000 0.100000000 0.050000000 0.0000000000
## 766  0.038461538 0.192307692 0.038461538 0.038461538 0.0000000000
## 767  0.104000000 0.024000000 0.048000000 0.088000000 0.0480000000
## 768  0.047619048 0.047619048 0.047619048 0.047619048 0.0000000000
## 769  0.011627907 0.023255814 0.081395349 0.011627907 0.0000000000
## 770  0.000000000 0.074074074 0.148148148 0.037037037 0.0000000000
## 771  0.000000000 0.073170732 0.024390244 0.048780488 0.0000000000
## 772  0.000000000 0.025641026 0.115384615 0.012820513 0.0000000000
## 773  0.013513514 0.091216216 0.077702703 0.081081081 0.0000000000
## 774  0.045454545 0.090909091 0.045454545 0.045454545 0.0000000000
## 775  0.000000000 0.043478261 0.086956522 0.000000000 0.0000000000
## 776  0.000000000 0.062500000 0.125000000 0.062500000 0.0000000000
## 777  0.075000000 0.050000000 0.150000000 0.050000000 0.0500000000
## 778  0.000000000 0.064516129 0.096774194 0.000000000 0.0645161290
## 779  0.027777778 0.055555556 0.055555556 0.000000000 0.0277777778
## 780  0.000000000 0.047619048 0.190476190 0.047619048 0.0476190476
## 781  0.012820513 0.038461538 0.012820513 0.089743590 0.0000000000
## 782  0.047619048 0.047619048 0.047619048 0.000000000 0.0476190476
## 783  0.020202020 0.191919192 0.020202020 0.040404040 0.0000000000
## 784  0.021276596 0.042553191 0.000000000 0.042553191 0.0000000000
## 785  0.041666667 0.083333333 0.000000000 0.083333333 0.0000000000
## 786  0.111111111 0.055555556 0.000000000 0.111111111 0.0000000000
## 787  0.035714286 0.035714286 0.000000000 0.035714286 0.0000000000
## 788  0.148148148 0.037037037 0.000000000 0.037037037 0.0000000000
## 789  0.025000000 0.100000000 0.050000000 0.075000000 0.0000000000
## 790  0.022508039 0.009646302 0.019292605 0.028938907 0.0000000000
## 791  0.090909091 0.045454545 0.000000000 0.136363636 0.0000000000
## 792  0.095238095 0.000000000 0.000000000 0.047619048 0.0000000000
## 793  0.125000000 0.083333333 0.000000000 0.083333333 0.0000000000
## 794  0.114285714 0.057142857 0.000000000 0.085714286 0.0000000000
## 795  0.050279330 0.061452514 0.000000000 0.011173184 0.0000000000
## 796  0.100000000 0.150000000 0.000000000 0.050000000 0.0000000000
## 797  0.060606061 0.030303030 0.000000000 0.030303030 0.0000000000
## 798  0.111111111 0.111111111 0.000000000 0.055555556 0.0000000000
## 799  0.068181818 0.022727273 0.000000000 0.022727273 0.0000000000
## 800  0.136363636 0.045454545 0.000000000 0.090909091 0.0000000000
## 801  0.066666667 0.133333333 0.000000000 0.066666667 0.0000000000
## 802  0.064516129 0.032258065 0.000000000 0.064516129 0.0000000000
## 803  0.000000000 0.026315789 0.000000000 0.052631579 0.0000000000
## 804  0.000000000 0.055555556 0.000000000 0.027777778 0.0000000000
## 805  0.037037037 0.148148148 0.037037037 0.037037037 0.0000000000
## 806  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 807  0.058823529 0.000000000 0.000000000 0.117647059 0.0000000000
## 808  0.000000000 0.000000000 0.000000000 0.066666667 0.0000000000
## 809  0.037037037 0.037037037 0.000000000 0.055555556 0.0000000000
## 810  0.045454545 0.181818182 0.045454545 0.045454545 0.0000000000
## 811  0.058823529 0.029411765 0.000000000 0.058823529 0.0000000000
## 812  0.055555556 0.000000000 0.000000000 0.055555556 0.0000000000
## 813  0.045454545 0.045454545 0.000000000 0.045454545 0.0454545455
## 814  0.142857143 0.000000000 0.000000000 0.071428571 0.0000000000
## 815  0.000000000 0.000000000 0.000000000 0.083333333 0.0000000000
## 816  0.048000000 0.056000000 0.000000000 0.032000000 0.0000000000
## 817  0.000000000 0.000000000 0.000000000 0.076923077 0.0000000000
## 818  0.000000000 0.000000000 0.000000000 0.100000000 0.0000000000
## 819  0.000000000 0.081081081 0.081081081 0.027027027 0.0000000000
## 820  0.029411765 0.088235294 0.000000000 0.088235294 0.0000000000
## 821  0.037037037 0.074074074 0.000000000 0.074074074 0.0000000000
## 822  0.000000000 0.000000000 0.000000000 0.111111111 0.0000000000
## 823  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 824  0.000000000 0.000000000 0.000000000 0.083333333 0.0000000000
## 825  0.000000000 0.000000000 0.000000000 0.090909091 0.0000000000
## 826  0.133333333 0.000000000 0.000000000 0.066666667 0.0000000000
## 827  0.084905660 0.018867925 0.028301887 0.037735849 0.0000000000
## 828  0.000000000 0.187500000 0.000000000 0.062500000 0.0000000000
## 829  0.062500000 0.062500000 0.000000000 0.062500000 0.0000000000
## 830  0.052631579 0.052631579 0.000000000 0.052631579 0.0000000000
## 831  0.076923077 0.000000000 0.000000000 0.076923077 0.0000000000
## 832  0.057692308 0.038461538 0.000000000 0.173076923 0.0192307692
## 833  0.066666667 0.133333333 0.000000000 0.066666667 0.0000000000
## 834  0.030769231 0.015384615 0.015384615 0.030769231 0.0153846154
## 835  0.066666667 0.133333333 0.000000000 0.066666667 0.0000000000
## 836  0.050000000 0.050000000 0.050000000 0.050000000 0.0000000000
## 837  0.045454545 0.136363636 0.000000000 0.045454545 0.0000000000
## 838  0.066666667 0.066666667 0.000000000 0.133333333 0.0000000000
## 839  0.083333333 0.083333333 0.000000000 0.083333333 0.0416666667
## 840  0.027777778 0.111111111 0.027777778 0.055555556 0.0000000000
## 841  0.055555556 0.111111111 0.055555556 0.111111111 0.0000000000
## 842  0.080000000 0.040000000 0.000000000 0.120000000 0.0000000000
## 843  0.043478261 0.043478261 0.000000000 0.086956522 0.0000000000
## 844  0.076923077 0.076923077 0.000000000 0.115384615 0.0000000000
## 845  0.045454545 0.045454545 0.000000000 0.090909091 0.0000000000
## 846  0.086956522 0.086956522 0.000000000 0.130434783 0.0000000000
## 847  0.035714286 0.035714286 0.250000000 0.107142857 0.0000000000
## 848  0.023809524 0.011904762 0.011904762 0.059523810 0.0000000000
## 849  0.034482759 0.068965517 0.034482759 0.137931034 0.0000000000
## 850  0.045454545 0.045454545 0.045454545 0.272727273 0.0000000000
## 851  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 852  0.035714286 0.035714286 0.000000000 0.250000000 0.0000000000
## 853  0.050000000 0.100000000 0.000000000 0.050000000 0.0000000000
## 854  0.000000000 0.051282051 0.000000000 0.025641026 0.0000000000
## 855  0.041666667 0.125000000 0.000000000 0.166666667 0.0000000000
## 856  0.071428571 0.057142857 0.000000000 0.028571429 0.0000000000
## 857  0.052631579 0.105263158 0.000000000 0.052631579 0.0000000000
## 858  0.058823529 0.058823529 0.000000000 0.058823529 0.0000000000
## 859  0.090909091 0.136363636 0.000000000 0.045454545 0.0000000000
## 860  0.016304348 0.008152174 0.021739130 0.021739130 0.0000000000
## 861  0.029629630 0.029629630 0.003703704 0.007407407 0.0000000000
## 862  0.062500000 0.062500000 0.000000000 0.000000000 0.0000000000
## 863  0.100000000 0.050000000 0.000000000 0.050000000 0.0500000000
## 864  0.000000000 0.076923077 0.000000000 0.153846154 0.0000000000
## 865  0.133333333 0.133333333 0.000000000 0.066666667 0.0000000000
## 866  0.000000000 0.090909091 0.000000000 0.090909091 0.0909090909
## 867  0.000000000 0.071428571 0.000000000 0.071428571 0.0714285714
## 868  0.000000000 0.019047619 0.000000000 0.028571429 0.0000000000
## 869  0.000000000 0.076923077 0.000000000 0.076923077 0.0000000000
## 870  0.058823529 0.049019608 0.058823529 0.098039216 0.0000000000
## 871  0.000000000 0.083333333 0.000000000 0.083333333 0.0833333333
## 872  0.080000000 0.120000000 0.000000000 0.080000000 0.0000000000
## 873  0.000000000 0.076923077 0.025641026 0.051282051 0.0000000000
## 874  0.000000000 0.083333333 0.000000000 0.166666667 0.0000000000
## 875  0.000000000 0.090909091 0.000000000 0.090909091 0.0000000000
## 876  0.045454545 0.181818182 0.000000000 0.045454545 0.0000000000
## 877  0.058823529 0.176470588 0.000000000 0.058823529 0.0000000000
## 878  0.000000000 0.071428571 0.000000000 0.035714286 0.0000000000
## 879  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 880  0.032258065 0.000000000 0.064516129 0.000000000 0.0000000000
## 881  0.017142857 0.011428571 0.005714286 0.034285714 0.0000000000
## 882  0.053571429 0.076127820 0.025375940 0.023496241 0.0009398496
## 883  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 884  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 885  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 886  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 887  0.125000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 888  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 889  0.073619632 0.039877301 0.036809816 0.092024540 0.0245398773
## 890  0.000000000 0.000000000 0.000000000 0.035714286 0.0000000000
## 891  0.035335689 0.014134276 0.067137809 0.014134276 0.0070671378
## 892  0.000000000 0.064516129 0.000000000 0.000000000 0.0000000000
## 893  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 894  0.000000000 0.171428571 0.000000000 0.000000000 0.0000000000
## 895  0.024193548 0.096774194 0.020161290 0.000000000 0.0000000000
## 896  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 897  0.023255814 0.139534884 0.023255814 0.000000000 0.0000000000
## 898  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 899  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 900  0.028571429 0.000000000 0.000000000 0.000000000 0.0000000000
## 901  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 902  0.101265823 0.025316456 0.063291139 0.012658228 0.0000000000
## 903  0.000000000 0.000000000 0.020408163 0.000000000 0.0000000000
## 904  0.080118694 0.005934718 0.029673591 0.000000000 0.0000000000
## 905  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 906  0.051909892 0.061704212 0.064642507 0.001958864 0.0000000000
## 907  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 908  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 909  0.026666667 0.013333333 0.026666667 0.000000000 0.0000000000
## 910  0.031791908 0.017341040 0.026011561 0.000000000 0.0000000000
## 911  0.014367816 0.000000000 0.025862069 0.000000000 0.0000000000
## 912  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 913  0.000000000 0.017857143 0.026785714 0.000000000 0.0000000000
## 914  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 915  0.000000000 0.020583190 0.013722127 0.001715266 0.0000000000
## 916  0.000000000 0.000000000 0.029411765 0.000000000 0.0000000000
## 917  0.000000000 0.173913043 0.000000000 0.000000000 0.0000000000
## 918  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 919  0.000000000 0.000000000 0.076923077 0.000000000 0.0000000000
## 920  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 921  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 922  0.009009009 0.009009009 0.009009009 0.000000000 0.0000000000
## 923  0.030927835 0.072164948 0.041237113 0.000000000 0.0000000000
## 924  0.000000000 0.000000000 0.019230769 0.000000000 0.0000000000
## 925  0.034562212 0.039170507 0.027649770 0.000000000 0.0000000000
## 926  0.033333333 0.041666667 0.033333333 0.000000000 0.0000000000
## 927  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 928  0.050000000 0.100000000 0.025000000 0.025000000 0.0000000000
## 929  0.000000000 0.000000000 0.111111111 0.111111111 0.0000000000
## 930  0.025000000 0.058333333 0.012500000 0.000000000 0.0000000000
## 931  0.000000000 0.000000000 0.100000000 0.000000000 0.0000000000
## 932  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 933  0.058823529 0.029411765 0.029411765 0.000000000 0.0000000000
## 934  0.038461538 0.038461538 0.115384615 0.000000000 0.0000000000
## 935  0.000000000 0.333333333 0.000000000 0.066666667 0.0000000000
## 936  0.125000000 0.041666667 0.041666667 0.000000000 0.0000000000
## 937  0.090909091 0.000000000 0.045454545 0.000000000 0.0000000000
## 938  0.029017857 0.020089286 0.020089286 0.000000000 0.0000000000
## 939  0.031914894 0.085106383 0.042553191 0.013297872 0.0000000000
## 940  0.130434783 0.000000000 0.043478261 0.000000000 0.0000000000
## 941  0.000000000 0.000000000 0.010416667 0.000000000 0.0000000000
## 942  0.021276596 0.007092199 0.035460993 0.000000000 0.0000000000
## 943  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 944  0.074766355 0.006230530 0.037383178 0.012461059 0.0000000000
## 945  0.051886792 0.028301887 0.014150943 0.009433962 0.0000000000
## 946  0.049122807 0.024561404 0.010526316 0.000000000 0.0000000000
## 947  0.025210084 0.025210084 0.004201681 0.004201681 0.0000000000
## 948  0.045454545 0.022727273 0.000000000 0.000000000 0.0000000000
## 949  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 950  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 951  0.025210084 0.008403361 0.004201681 0.000000000 0.0000000000
## 952  0.025641026 0.051282051 0.000000000 0.000000000 0.0000000000
## 953  0.015384615 0.000000000 0.000000000 0.000000000 0.0000000000
## 954  0.000000000 0.028571429 0.028571429 0.000000000 0.0000000000
## 955  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 956  0.118343195 0.005917160 0.023668639 0.000000000 0.0000000000
## 957  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 958  0.032258065 0.021505376 0.000000000 0.000000000 0.0000000000
## 959  0.019480519 0.103896104 0.000000000 0.000000000 0.0000000000
## 960  0.033734940 0.009638554 0.000000000 0.000000000 0.0000000000
## 961  0.025380711 0.015228426 0.025380711 0.000000000 0.0000000000
## 962  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 963  0.052631579 0.026315789 0.000000000 0.000000000 0.0000000000
## 964  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 965  0.016528926 0.024793388 0.000000000 0.000000000 0.0000000000
## 966  0.017241379 0.017241379 0.000000000 0.000000000 0.0000000000
## 967  0.034482759 0.034482759 0.000000000 0.000000000 0.0000000000
## 968  0.072289157 0.000000000 0.000000000 0.000000000 0.0000000000
## 969  0.218181818 0.127272727 0.018181818 0.000000000 0.0000000000
## 970  0.047619048 0.032967033 0.010989011 0.000000000 0.0000000000
## 971  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 972  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 973  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 974  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 975  0.036956522 0.197826087 0.010869565 0.000000000 0.0000000000
## 976  0.000000000 0.039215686 0.019607843 0.000000000 0.0000000000
## 977  0.019886364 0.031250000 0.011363636 0.000000000 0.0000000000
## 978  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 979  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 980  0.000000000 0.024390244 0.000000000 0.000000000 0.0000000000
## 981  0.013333333 0.040000000 0.053333333 0.000000000 0.0000000000
## 982  0.052631579 0.000000000 0.000000000 0.000000000 0.0000000000
## 983  0.022058824 0.014705882 0.007352941 0.000000000 0.0000000000
## 984  0.060714286 0.100000000 0.003571429 0.000000000 0.0000000000
## 985  0.016771488 0.058700210 0.010482180 0.000000000 0.0000000000
## 986  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 987  0.016656752 0.020226056 0.001784652 0.000000000 0.0000000000
## 988  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 989  0.014084507 0.042253521 0.000000000 0.000000000 0.0000000000
## 990  0.034188034 0.000000000 0.000000000 0.000000000 0.0000000000
## 991  0.013704071 0.039324727 0.040714995 0.037537239 0.0427010924
## 992  0.042483660 0.045751634 0.042483660 0.016339869 0.0196078431
## 993  0.019230769 0.023076923 0.026923077 0.046153846 0.1230769231
## 994  0.025757576 0.010606061 0.031818182 0.030303030 0.0409090909
## 995  0.061855670 0.020618557 0.010309278 0.000000000 0.0103092784
## 996  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 997  0.018171806 0.021475771 0.047356828 0.023678414 0.0302863436
## 998  0.000000000 0.000000000 0.000000000 0.000000000 0.0000000000
## 999  0.012975779 0.026816609 0.032006920 0.015570934 0.0025951557
## 1000 0.114624506 0.090909091 0.007905138 0.047430830 0.0197628458
##               64          65          66          67          68
## 1    0.038961039 0.034632035 0.067099567 0.033910534 0.005050505
## 2    0.026315789 0.013157895 0.013157895 0.026315789 0.013157895
## 3    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 4    0.029684601 0.046382189 0.040816327 0.037105751 0.024118738
## 5    0.038053649 0.056144729 0.101060512 0.037429819 0.029320025
## 6    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 7    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 8    0.034623218 0.024254768 0.037585632 0.031475653 0.012590261
## 9    0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 10   0.000000000 0.000000000 0.017241379 0.034482759 0.017241379
## 11   0.038516405 0.035663338 0.053495007 0.032810271 0.017831669
## 12   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 13   0.035087719 0.017543860 0.052631579 0.035087719 0.035087719
## 14   0.016666667 0.025000000 0.008333333 0.025000000 0.016666667
## 15   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 16   0.000000000 0.000000000 0.193548387 0.032258065 0.161290323
## 17   0.012048193 0.008032129 0.008032129 0.008032129 0.008032129
## 18   0.013793103 0.055172414 0.027586207 0.048275862 0.006896552
## 19   0.000000000 0.000000000 0.050000000 0.000000000 0.100000000
## 20   0.029772329 0.029772329 0.066549912 0.050788091 0.014010508
## 21   0.016470588 0.009411765 0.032941176 0.011764706 0.014117647
## 22   0.041666667 0.000000000 0.062500000 0.000000000 0.041666667
## 23   0.092814371 0.023952096 0.013972056 0.027944112 0.058882236
## 24   0.047457627 0.023728814 0.016949153 0.054237288 0.040677966
## 25   0.000000000 0.045454545 0.000000000 0.000000000 0.022727273
## 26   0.025641026 0.000000000 0.000000000 0.000000000 0.000000000
## 27   0.011494253 0.040229885 0.040229885 0.022988506 0.022988506
## 28   0.046875000 0.003906250 0.027343750 0.011718750 0.027343750
## 29   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 30   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 31   0.016222480 0.018539977 0.031286211 0.039397451 0.013904983
## 32   0.000000000 0.021739130 0.017391304 0.013043478 0.004347826
## 33   0.038461538 0.048076923 0.091346154 0.033653846 0.105769231
## 34   0.029003783 0.040353090 0.021437579 0.016393443 0.017654477
## 35   0.023323615 0.011661808 0.017492711 0.040816327 0.026239067
## 36   0.010810811 0.054054054 0.000000000 0.010810811 0.075675676
## 37   0.043478261 0.000000000 0.000000000 0.000000000 0.000000000
## 38   0.022857143 0.000000000 0.017142857 0.040000000 0.062857143
## 39   0.020833333 0.034722222 0.041666667 0.020833333 0.090277778
## 40   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 41   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 42   0.020942408 0.036649215 0.005235602 0.020942408 0.020942408
## 43   0.000000000 0.000000000 0.063829787 0.021276596 0.010638298
## 44   0.027806036 0.032553408 0.040352662 0.048151916 0.022719566
## 45   0.055555556 0.057319224 0.051146384 0.030864198 0.030864198
## 46   0.053278689 0.019125683 0.061475410 0.049180328 0.040983607
## 47   0.049132948 0.052023121 0.052023121 0.052023121 0.118497110
## 48   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 49   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 50   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 51   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 52   0.032374101 0.014388489 0.025179856 0.039568345 0.035971223
## 53   0.026755853 0.026755853 0.030100334 0.046822742 0.023411371
## 54   0.035714286 0.000000000 0.000000000 0.000000000 0.071428571
## 55   0.010152284 0.030456853 0.010152284 0.035532995 0.015228426
## 56   0.034997427 0.024704066 0.042202779 0.031394750 0.044776119
## 57   0.053030303 0.007575758 0.007575758 0.030303030 0.060606061
## 58   0.043824701 0.049800797 0.021912351 0.015936255 0.007968127
## 59   0.049744898 0.021683673 0.005102041 0.058673469 0.049744898
## 60   0.019736842 0.006578947 0.006578947 0.006578947 0.013157895
## 61   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 62   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 63   0.041420118 0.014792899 0.053254438 0.053254438 0.017751479
## 64   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 65   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 66   0.044145873 0.038387716 0.030710173 0.023032630 0.017274472
## 67   0.071428571 0.000000000 0.000000000 0.023809524 0.000000000
## 68   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 69   0.024303074 0.028591851 0.017869907 0.020014296 0.015725518
## 70   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 71   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 72   0.000000000 0.032258065 0.000000000 0.000000000 0.016129032
## 73   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 74   0.063526835 0.074479737 0.048192771 0.081599124 0.027929901
## 75   0.074222095 0.057379389 0.015700828 0.052526406 0.018270054
## 76   0.014571949 0.021857923 0.003642987 0.009107468 0.010928962
## 77   0.125000000 0.000000000 0.000000000 0.500000000 0.000000000
## 78   0.024054983 0.020618557 0.037800687 0.010309278 0.017182131
## 79   0.024911032 0.024911032 0.113879004 0.074733096 0.010676157
## 80   0.018518519 0.018518519 0.074074074 0.018518519 0.000000000
## 81   0.094827586 0.025862069 0.012931034 0.056034483 0.017241379
## 82   0.063829787 0.010638298 0.053191489 0.010638298 0.010638298
## 83   0.012765957 0.045390071 0.052482270 0.038297872 0.066666667
## 84   0.035971223 0.000000000 0.061151079 0.057553957 0.057553957
## 85   0.023880597 0.047761194 0.023880597 0.035820896 0.008955224
## 86   0.021875000 0.046875000 0.018750000 0.025000000 0.009375000
## 87   0.028985507 0.032608696 0.032608696 0.010869565 0.025362319
## 88   0.000000000 0.000000000 0.000000000 0.076923077 0.153846154
## 89   0.013659647 0.038702334 0.025611838 0.030165054 0.025042686
## 90   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 91   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 92   0.003669725 0.022018349 0.038532110 0.009174312 0.023853211
## 93   0.087378641 0.025889968 0.077669903 0.061488673 0.035598706
## 94   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 95   0.000000000 0.000000000 0.000000000 0.000000000 0.017543860
## 96   0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 97   0.011288181 0.015272244 0.011288181 0.001328021 0.007968127
## 98   0.013698630 0.004566210 0.027397260 0.000000000 0.022831050
## 99   0.021775544 0.056951424 0.008375209 0.025125628 0.036850921
## 100  0.000000000 0.013698630 0.054794521 0.000000000 0.000000000
## 101  0.058000000 0.002000000 0.062000000 0.030000000 0.056000000
## 102  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 103  0.019305019 0.061776062 0.030888031 0.007722008 0.023166023
## 104  0.034482759 0.000000000 0.000000000 0.000000000 0.068965517
## 105  0.006451613 0.000000000 0.006451613 0.012903226 0.051612903
## 106  0.040528634 0.033480176 0.031718062 0.026431718 0.024669604
## 107  0.007936508 0.011904762 0.035714286 0.051587302 0.067460317
## 108  0.009174312 0.000000000 0.018348624 0.009174312 0.018348624
## 109  0.023893805 0.015044248 0.022123894 0.025663717 0.027433628
## 110  0.043478261 0.043478261 0.000000000 0.000000000 0.000000000
## 111  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 112  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 113  0.028169014 0.027288732 0.030809859 0.028169014 0.057218310
## 114  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 115  0.017964072 0.021556886 0.032934132 0.020958084 0.045508982
## 116  0.033333333 0.033333333 0.000000000 0.000000000 0.000000000
## 117  0.000000000 0.009523810 0.009523810 0.019047619 0.028571429
## 118  0.077040041 0.055245819 0.019260010 0.005068424 0.019260010
## 119  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 120  0.028571429 0.000000000 0.000000000 0.000000000 0.000000000
## 121  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 122  0.013736264 0.071428571 0.038461538 0.019230769 0.057692308
## 123  0.025032938 0.034255599 0.042160738 0.035573123 0.021080369
## 124  0.020594966 0.027459954 0.013729977 0.027459954 0.020594966
## 125  0.000000000 0.111111111 0.049382716 0.000000000 0.024691358
## 126  0.011890606 0.010701546 0.017835910 0.090368609 0.026159334
## 127  0.000000000 0.113636364 0.000000000 0.022727273 0.000000000
## 128  0.034251175 0.035594359 0.071188717 0.089993284 0.048354600
## 129  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 130  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 131  0.000000000 0.041666667 0.000000000 0.041666667 0.083333333
## 132  0.056710775 0.009451796 0.017013233 0.007561437 0.015122873
## 133  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 134  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 135  0.030109146 0.045351901 0.030485510 0.052879187 0.052314641
## 136  0.030000000 0.040000000 0.010000000 0.010000000 0.000000000
## 137  0.084444444 0.004444444 0.044444444 0.022222222 0.004444444
## 138  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 139  0.071038251 0.049180328 0.015027322 0.018442623 0.009562842
## 140  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 141  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 142  0.034632035 0.073593074 0.025974026 0.000000000 0.000000000
## 143  0.000000000 0.000000000 0.027777778 0.000000000 0.083333333
## 144  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 145  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 146  0.062706271 0.062706271 0.023102310 0.006600660 0.009900990
## 147  0.058823529 0.019607843 0.117647059 0.000000000 0.000000000
## 148  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 149  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 150  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 151  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 152  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 153  0.000000000 0.016949153 0.016949153 0.000000000 0.000000000
## 154  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 155  0.040036397 0.035486806 0.058234759 0.016378526 0.015468608
## 156  0.044147844 0.051334702 0.036960986 0.028234086 0.027207392
## 157  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 158  0.106557377 0.040983607 0.073770492 0.000000000 0.065573770
## 159  0.031407035 0.013819095 0.017587940 0.011306533 0.008793970
## 160  0.029818182 0.036000000 0.013090909 0.018545455 0.007636364
## 161  0.035087719 0.010526316 0.017543860 0.010526316 0.014035088
## 162  0.010638298 0.021276596 0.010638298 0.021276596 0.117021277
## 163  0.022988506 0.011494253 0.068965517 0.034482759 0.011494253
## 164  0.026894866 0.012224939 0.036674817 0.036674817 0.017114914
## 165  0.014598540 0.014598540 0.029197080 0.000000000 0.021897810
## 166  0.043356643 0.025174825 0.047086247 0.067132867 0.041025641
## 167  0.014634146 0.029268293 0.058536585 0.053658537 0.009756098
## 168  0.033898305 0.050847458 0.000000000 0.084745763 0.000000000
## 169  0.065476190 0.023809524 0.005952381 0.011904762 0.023809524
## 170  0.020547945 0.000000000 0.000000000 0.013698630 0.013698630
## 171  0.000000000 0.000000000 0.000000000 0.023668639 0.017751479
## 172  0.000000000 0.057142857 0.000000000 0.000000000 0.028571429
## 173  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 174  0.072653885 0.013118063 0.030272452 0.041372351 0.039354188
## 175  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 176  0.021739130 0.047826087 0.026086957 0.013043478 0.013043478
## 177  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 178  0.018826135 0.037283130 0.020671835 0.018087855 0.021779254
## 179  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 180  0.007142857 0.035714286 0.046428571 0.010714286 0.025000000
## 181  0.044519016 0.066890380 0.051454139 0.023937360 0.039373602
## 182  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 183  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 184  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 185  0.023340961 0.032036613 0.016018307 0.026544622 0.030663616
## 186  0.012658228 0.005424955 0.007233273 0.035262206 0.038878843
## 187  0.035087719 0.029239766 0.035087719 0.043859649 0.049707602
## 188  0.051224944 0.017817372 0.011135857 0.042316258 0.026726058
## 189  0.012903226 0.004301075 0.017204301 0.017204301 0.017204301
## 190  0.050420168 0.025210084 0.016806723 0.012605042 0.029411765
## 191  0.062500000 0.015625000 0.000000000 0.062500000 0.015625000
## 192  0.040238450 0.031296572 0.023845007 0.020119225 0.016393443
## 193  0.009345794 0.014018692 0.046728972 0.051401869 0.046728972
## 194  0.135371179 0.026200873 0.030567686 0.026200873 0.122270742
## 195  0.033333333 0.011111111 0.011111111 0.000000000 0.022222222
## 196  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 197  0.034749035 0.029922780 0.027027027 0.007722008 0.028957529
## 198  0.020000000 0.020000000 0.060000000 0.020000000 0.000000000
## 199  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 200  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 201  0.032894737 0.089912281 0.017543860 0.057017544 0.010964912
## 202  0.045454545 0.000000000 0.000000000 0.000000000 0.000000000
## 203  0.053333333 0.013333333 0.013333333 0.040000000 0.026666667
## 204  0.076045627 0.049429658 0.072243346 0.038022814 0.026615970
## 205  0.051371862 0.054290718 0.060128430 0.026853473 0.025685931
## 206  0.041474654 0.029953917 0.000000000 0.020737327 0.023041475
## 207  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 208  0.005617978 0.000000000 0.011235955 0.011235955 0.022471910
## 209  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 210  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 211  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 212  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 213  0.036729858 0.021327014 0.018957346 0.030805687 0.028436019
## 214  0.000000000 0.067567568 0.040540541 0.000000000 0.000000000
## 215  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 216  0.058139535 0.040697674 0.023255814 0.000000000 0.000000000
## 217  0.009708738 0.000000000 0.009708738 0.135922330 0.009708738
## 218  0.014285714 0.021428571 0.021428571 0.007142857 0.000000000
## 219  0.000000000 0.032258065 0.000000000 0.032258065 0.000000000
## 220  0.000000000 0.096153846 0.009615385 0.009615385 0.009615385
## 221  0.044585987 0.038216561 0.000000000 0.108280255 0.006369427
## 222  0.033907147 0.042253521 0.038080334 0.032342201 0.024517475
## 223  0.031963470 0.000000000 0.031963470 0.086757991 0.073059361
## 224  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 225  0.047528517 0.028517110 0.017110266 0.047528517 0.108365019
## 226  0.052631579 0.052631579 0.000000000 0.000000000 0.000000000
## 227  0.077922078 0.012987013 0.051948052 0.012987013 0.000000000
## 228  0.057142857 0.000000000 0.009523810 0.000000000 0.000000000
## 229  0.014874142 0.016018307 0.009153318 0.000000000 0.028604119
## 230  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 231  0.010684606 0.012861100 0.032845271 0.039176890 0.047091413
## 232  0.043715847 0.038251366 0.027322404 0.005464481 0.016393443
## 233  0.024691358 0.008230453 0.008230453 0.074074074 0.000000000
## 234  0.042141230 0.026195900 0.075170843 0.038724374 0.020501139
## 235  0.012121212 0.022727273 0.016666667 0.018181818 0.033333333
## 236  0.030436147 0.058362096 0.071226859 0.058989645 0.037966740
## 237  0.021759697 0.014191107 0.035950804 0.061494797 0.024597919
## 238  0.043169121 0.018283393 0.018791265 0.019299137 0.015236160
## 239  0.039033457 0.037174721 0.027881041 0.031598513 0.050185874
## 240  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 241  0.048076923 0.019230769 0.000000000 0.000000000 0.009615385
## 242  0.019160584 0.021897810 0.010036496 0.015510949 0.010948905
## 243  0.019841270 0.023809524 0.011904762 0.027777778 0.051587302
## 244  0.048101266 0.015189873 0.043037975 0.045569620 0.043037975
## 245  0.008823529 0.067647059 0.044117647 0.026470588 0.014705882
## 246  0.023289665 0.030567686 0.014556041 0.036390102 0.020378457
## 247  0.033333333 0.033333333 0.033333333 0.050000000 0.033333333
## 248  0.045977011 0.022988506 0.020114943 0.025862069 0.005747126
## 249  0.017391304 0.026086957 0.026086957 0.043478261 0.017391304
## 250  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 251  0.017857143 0.008928571 0.035714286 0.053571429 0.000000000
## 252  0.000000000 0.000000000 0.024096386 0.048192771 0.036144578
## 253  0.000000000 0.062500000 0.046875000 0.062500000 0.031250000
## 254  0.013698630 0.000000000 0.013698630 0.041095890 0.054794521
## 255  0.007692308 0.030769231 0.023076923 0.015384615 0.015384615
## 256  0.010869565 0.043478261 0.065217391 0.065217391 0.043478261
## 257  0.019230769 0.000000000 0.019230769 0.038461538 0.038461538
## 258  0.026315789 0.078947368 0.052631579 0.026315789 0.105263158
## 259  0.043478261 0.028985507 0.043478261 0.000000000 0.057971014
## 260  0.019230769 0.028846154 0.038461538 0.019230769 0.019230769
## 261  0.016666667 0.066666667 0.016666667 0.033333333 0.033333333
## 262  0.047619048 0.031746032 0.047619048 0.015873016 0.047619048
## 263  0.030303030 0.060606061 0.000000000 0.015151515 0.045454545
## 264  0.026315789 0.092105263 0.013157895 0.013157895 0.026315789
## 265  0.033860045 0.006772009 0.018058691 0.015801354 0.015801354
## 266  0.040650407 0.036585366 0.054878049 0.016260163 0.040650407
## 267  0.031421159 0.013548573 0.027673681 0.049582012 0.069472470
## 268  0.044543430 0.012249443 0.010022272 0.036748330 0.008908686
## 269  0.000000000 0.014705882 0.000000000 0.000000000 0.014705882
## 270  0.015384615 0.007692308 0.015384615 0.023076923 0.061538462
## 271  0.024390244 0.000000000 0.036585366 0.036585366 0.048780488
## 272  0.028571429 0.000000000 0.019047619 0.019047619 0.019047619
## 273  0.007092199 0.007092199 0.021276596 0.028368794 0.021276596
## 274  0.046875000 0.007812500 0.015625000 0.023437500 0.039062500
## 275  0.016949153 0.000000000 0.008474576 0.008474576 0.025423729
## 276  0.028985507 0.021739130 0.014492754 0.007246377 0.028985507
## 277  0.113281250 0.029296875 0.046875000 0.003906250 0.000000000
## 278  0.025117739 0.018838305 0.020408163 0.014128728 0.026687598
## 279  0.050000000 0.050000000 0.000000000 0.010000000 0.020000000
## 280  0.008196721 0.049180328 0.008196721 0.024590164 0.016393443
## 281  0.012658228 0.000000000 0.012658228 0.012658228 0.025316456
## 282  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 283  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 284  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 285  0.000000000 0.000000000 0.076923077 0.230769231 0.153846154
## 286  0.000000000 0.150000000 0.000000000 0.050000000 0.000000000
## 287  0.000000000 0.090909091 0.000000000 0.000000000 0.000000000
## 288  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 289  0.000000000 0.111111111 0.000000000 0.000000000 0.000000000
## 290  0.030303030 0.000000000 0.015151515 0.000000000 0.000000000
## 291  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 292  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 293  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 294  0.019230769 0.019230769 0.000000000 0.000000000 0.000000000
## 295  0.009615385 0.009615385 0.000000000 0.009615385 0.009615385
## 296  0.013157895 0.013157895 0.026315789 0.052631579 0.013157895
## 297  0.127659574 0.021276596 0.042553191 0.063829787 0.000000000
## 298  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 299  0.000000000 0.000000000 0.000000000 0.043478261 0.000000000
## 300  0.038461538 0.057692308 0.000000000 0.019230769 0.000000000
## 301  0.013513514 0.008108108 0.022972973 0.012162162 0.031081081
## 302  0.185185185 0.037037037 0.074074074 0.000000000 0.000000000
## 303  0.044943820 0.033707865 0.000000000 0.000000000 0.022471910
## 304  0.057692308 0.028846154 0.000000000 0.028846154 0.028846154
## 305  0.024271845 0.012135922 0.009708738 0.012135922 0.002427184
## 306  0.025470653 0.036544850 0.032668882 0.019379845 0.038205980
## 307  0.014634146 0.019512195 0.014634146 0.048780488 0.024390244
## 308  0.000000000 0.000000000 0.016949153 0.000000000 0.000000000
## 309  0.031496063 0.000000000 0.015748031 0.015748031 0.007874016
## 310  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 311  0.052456286 0.051623647 0.015820150 0.008326395 0.002497918
## 312  0.022823034 0.012640449 0.025280899 0.023876404 0.025280899
## 313  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 314  0.033898305 0.022598870 0.005649718 0.028248588 0.016949153
## 315  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 316  0.019841270 0.027777778 0.039682540 0.019841270 0.015873016
## 317  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 318  0.025742574 0.015841584 0.027722772 0.037623762 0.015841584
## 319  0.000000000 0.016260163 0.016260163 0.008130081 0.040650407
## 320  0.021413276 0.017130621 0.032119914 0.017130621 0.010706638
## 321  0.000000000 0.006024096 0.018072289 0.018072289 0.012048193
## 322  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 323  0.000000000 0.027896996 0.025751073 0.019313305 0.006437768
## 324  0.031250000 0.010416667 0.031250000 0.020833333 0.041666667
## 325  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 326  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 327  0.000000000 0.013071895 0.013071895 0.006535948 0.078431373
## 328  0.032000000 0.048000000 0.008000000 0.008000000 0.000000000
## 329  0.053146853 0.054545455 0.039160839 0.030769231 0.016783217
## 330  0.444444444 0.055555556 0.000000000 0.000000000 0.000000000
## 331  0.000000000 0.000000000 0.034188034 0.017094017 0.008547009
## 332  0.016055046 0.014525994 0.032110092 0.088685015 0.029051988
## 333  0.052631579 0.046783626 0.000000000 0.011695906 0.011695906
## 334  0.007947020 0.019867550 0.019867550 0.017218543 0.007947020
## 335  0.072368421 0.026315789 0.065789474 0.046052632 0.000000000
## 336  0.106100796 0.111405836 0.055702918 0.021220159 0.000000000
## 337  0.041111111 0.021111111 0.041111111 0.023333333 0.005555556
## 338  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 339  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 340  0.019718310 0.014084507 0.011267606 0.014084507 0.022535211
## 341  0.043844857 0.052276560 0.026981450 0.037099494 0.003372681
## 342  0.000000000 0.000000000 0.000000000 0.015151515 0.015151515
## 343  0.005509642 0.016528926 0.022038567 0.011019284 0.000000000
## 344  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 345  0.000000000 0.020833333 0.000000000 0.000000000 0.000000000
## 346  0.012195122 0.000000000 0.012195122 0.000000000 0.000000000
## 347  0.004739336 0.009478673 0.000000000 0.000000000 0.000000000
## 348  0.032608696 0.019021739 0.029891304 0.048913043 0.002717391
## 349  0.006906077 0.016574586 0.013812155 0.012430939 0.000000000
## 350  0.000000000 0.105263158 0.000000000 0.000000000 0.000000000
## 351  0.028446389 0.013129103 0.021881838 0.010940919 0.000000000
## 352  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 353  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 354  0.024000000 0.048000000 0.016000000 0.008000000 0.000000000
## 355  0.013793103 0.034482759 0.041379310 0.000000000 0.000000000
## 356  0.030075188 0.045112782 0.022556391 0.000000000 0.000000000
## 357  0.013793103 0.006896552 0.034482759 0.000000000 0.000000000
## 358  0.027272727 0.018181818 0.018181818 0.000000000 0.000000000
## 359  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 360  0.031969309 0.016624041 0.021739130 0.005115090 0.000000000
## 361  0.036407767 0.025485437 0.015776699 0.001213592 0.000000000
## 362  0.046052632 0.013157895 0.026315789 0.013157895 0.000000000
## 363  0.006891271 0.029096478 0.008422665 0.004594181 0.000000000
## 364  0.000000000 0.005128205 0.005128205 0.005128205 0.000000000
## 365  0.000000000 0.000000000 0.047619048 0.000000000 0.000000000
## 366  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 367  0.014462810 0.024793388 0.022727273 0.004132231 0.000000000
## 368  0.178861789 0.101626016 0.138211382 0.008130081 0.000000000
## 369  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 370  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 371  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 372  0.051779935 0.080906149 0.035598706 0.012944984 0.000000000
## 373  0.000000000 0.022222222 0.088888889 0.000000000 0.000000000
## 374  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 375  0.053691275 0.021252796 0.023489933 0.003355705 0.000000000
## 376  0.000000000 0.025641026 0.057692308 0.000000000 0.000000000
## 377  0.000000000 0.000000000 0.000000000 0.055555556 0.000000000
## 378  0.000000000 0.000000000 0.012658228 0.000000000 0.000000000
## 379  0.046413502 0.045007032 0.036568214 0.002812940 0.000000000
## 380  0.026490066 0.006622517 0.033112583 0.000000000 0.000000000
## 381  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 382  0.002789400 0.009298001 0.000464900 0.000000000 0.000000000
## 383  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 384  0.120689655 0.017241379 0.000000000 0.000000000 0.000000000
## 385  0.026132404 0.054006969 0.003484321 0.000000000 0.000000000
## 386  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 387  0.013559322 0.027118644 0.000000000 0.000000000 0.000000000
## 388  0.006622517 0.013245033 0.000000000 0.000000000 0.000000000
## 389  0.008088979 0.010111223 0.002022245 0.000000000 0.000000000
## 390  0.000000000 0.000000000 0.036363636 0.000000000 0.000000000
## 391  0.011049724 0.016574586 0.000000000 0.000000000 0.000000000
## 392  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 393  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 394  0.075396825 0.039682540 0.000000000 0.000000000 0.000000000
## 395  0.033946252 0.012729844 0.005657709 0.000000000 0.000000000
## 396  0.000000000 0.053571429 0.000000000 0.000000000 0.000000000
## 397  0.026986507 0.013493253 0.028485757 0.000000000 0.000000000
## 398  0.086956522 0.043478261 0.000000000 0.000000000 0.000000000
## 399  0.017600000 0.011200000 0.022400000 0.003200000 0.000000000
## 400  0.033333333 0.000000000 0.000000000 0.000000000 0.000000000
## 401  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 402  0.045936396 0.021201413 0.003533569 0.000000000 0.000000000
## 403  0.013782542 0.006125574 0.004594181 0.000000000 0.000000000
## 404  0.005319149 0.005319149 0.000000000 0.000000000 0.000000000
## 405  0.022727273 0.000000000 0.000000000 0.000000000 0.000000000
## 406  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 407  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 408  0.060301508 0.015075377 0.000000000 0.000000000 0.000000000
## 409  0.011904762 0.005952381 0.005952381 0.000000000 0.000000000
## 410  0.000000000 0.028571429 0.000000000 0.000000000 0.000000000
## 411  0.019717102 0.018431204 0.002571796 0.000000000 0.000000000
## 412  0.000000000 0.011363636 0.000000000 0.000000000 0.000000000
## 413  0.000000000 0.057142857 0.028571429 0.000000000 0.000000000
## 414  0.023701003 0.030993619 0.001823154 0.000000000 0.000000000
## 415  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 416  0.032258065 0.018433180 0.000000000 0.000000000 0.000000000
## 417  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 418  0.056179775 0.058426966 0.006741573 0.000000000 0.000000000
## 419  0.066666667 0.066666667 0.000000000 0.000000000 0.000000000
## 420  0.002066116 0.035123967 0.000000000 0.000000000 0.000000000
## 421  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 422  0.015873016 0.000000000 0.000000000 0.000000000 0.000000000
## 423  0.014925373 0.014925373 0.000000000 0.000000000 0.000000000
## 424  0.022988506 0.000000000 0.000000000 0.000000000 0.000000000
## 425  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 426  0.052631579 0.000000000 0.000000000 0.000000000 0.000000000
## 427  0.006984866 0.009313155 0.000000000 0.000000000 0.000000000
## 428  0.030000000 0.005000000 0.000000000 0.000000000 0.000000000
## 429  0.014084507 0.000000000 0.000000000 0.000000000 0.000000000
## 430  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 431  0.000000000 0.023809524 0.000000000 0.000000000 0.000000000
## 432  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 433  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 434  0.004728132 0.000000000 0.000000000 0.000000000 0.000000000
## 435  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 436  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 437  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 438  0.030534351 0.000000000 0.000000000 0.000000000 0.000000000
## 439  0.098039216 0.058823529 0.000000000 0.000000000 0.000000000
## 440  0.018018018 0.000000000 0.000000000 0.000000000 0.000000000
## 441  0.010638298 0.000000000 0.000000000 0.000000000 0.000000000
## 442  0.030769231 0.000000000 0.000000000 0.000000000 0.000000000
## 443  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 444  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 445  0.012750455 0.001821494 0.000000000 0.000000000 0.000000000
## 446  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 447  0.041666667 0.000000000 0.000000000 0.000000000 0.000000000
## 448  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 449  0.012110727 0.003460208 0.000000000 0.000000000 0.000000000
## 450  0.031847134 0.006369427 0.000000000 0.000000000 0.000000000
## 451  0.030303030 0.000000000 0.000000000 0.000000000 0.000000000
## 452  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 453  0.142857143 0.000000000 0.000000000 0.000000000 0.000000000
## 454  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 455  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 456  0.017543860 0.017543860 0.000000000 0.000000000 0.000000000
## 457  0.022222222 0.000000000 0.000000000 0.000000000 0.000000000
## 458  0.052631579 0.000000000 0.000000000 0.000000000 0.000000000
## 459  0.022471910 0.000000000 0.000000000 0.000000000 0.000000000
## 460  0.014705882 0.000000000 0.000000000 0.000000000 0.000000000
## 461  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 462  0.020000000 0.000000000 0.000000000 0.000000000 0.000000000
## 463  0.036144578 0.012048193 0.000000000 0.000000000 0.000000000
## 464  0.005102041 0.030612245 0.000000000 0.000000000 0.000000000
## 465  0.003484321 0.000000000 0.000000000 0.000000000 0.000000000
## 466  0.031250000 0.000000000 0.000000000 0.000000000 0.000000000
## 467  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 468  0.014598540 0.007299270 0.000000000 0.000000000 0.000000000
## 469  0.011857708 0.000000000 0.000000000 0.000000000 0.000000000
## 470  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 471  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 472  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 473  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 474  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 475  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 476  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 477  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 478  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 479  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 480  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 481  0.028985507 0.032608696 0.028985507 0.010869565 0.025362319
## 482  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 483  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 484  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 485  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 486  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 487  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 488  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 489  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 490  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 491  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 492  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 493  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 494  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 495  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 496  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 497  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 498  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 499  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 500  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 501  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 502  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 503  0.008888889 0.000000000 0.000000000 0.000000000 0.000000000
## 504  0.014655172 0.000000000 0.000000000 0.000000000 0.000000000
## 505  0.005973716 0.000000000 0.000000000 0.000000000 0.000000000
## 506  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 507  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 508  0.003616637 0.000000000 0.000000000 0.000000000 0.000000000
## 509  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 510  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 511  0.007434944 0.000000000 0.000000000 0.000000000 0.000000000
## 512  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 513  0.010309278 0.000000000 0.000000000 0.000000000 0.000000000
## 514  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 515  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 516  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 517  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 518  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 519  0.003802281 0.000000000 0.000000000 0.000000000 0.000000000
## 520  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 521  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 522  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 523  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 524  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 525  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 526  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 527  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 528  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 529  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 530  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 531  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 532  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 533  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 534  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 535  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 536  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 537  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 538  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 539  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 540  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 541  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 542  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 543  0.008620690 0.000000000 0.000000000 0.000000000 0.000000000
## 544  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 545  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 546  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 547  0.004651163 0.000000000 0.000000000 0.000000000 0.000000000
## 548  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 549  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 550  0.020408163 0.000000000 0.000000000 0.000000000 0.000000000
## 551  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 552  0.021276596 0.000000000 0.000000000 0.000000000 0.000000000
## 553  0.020833333 0.000000000 0.000000000 0.000000000 0.000000000
## 554  0.016949153 0.000000000 0.000000000 0.000000000 0.000000000
## 555  0.015384615 0.000000000 0.000000000 0.000000000 0.000000000
## 556  0.015384615 0.000000000 0.000000000 0.000000000 0.000000000
## 557  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 558  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 559  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 560  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 561  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 562  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 563  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 564  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 565  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 566  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 567  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 568  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 569  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 570  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 571  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 572  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 573  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 574  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 575  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 576  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 577  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 578  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 579  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 580  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 581  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 582  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 583  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 584  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 585  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 586  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 587  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 588  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 589  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 590  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 591  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 592  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 593  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 594  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 595  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 596  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 597  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 598  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 599  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 600  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 601  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 602  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 603  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 604  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 605  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 606  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 607  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 608  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 609  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 610  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 611  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 612  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 613  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 614  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 615  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 616  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 617  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 618  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 619  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 620  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 621  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 622  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 623  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 624  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 625  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 626  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 627  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 628  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 629  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 630  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 631  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 632  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 633  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 634  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 635  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 636  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 637  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 638  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 639  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 640  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 641  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 642  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 643  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 644  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 645  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 646  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 647  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 648  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 649  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 650  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 651  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 652  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 653  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 654  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 655  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 656  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 657  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 658  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 659  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 660  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 661  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 662  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 663  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 664  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 665  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 666  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 667  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 668  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 669  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 670  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 671  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 672  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 673  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 674  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 675  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 676  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 677  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 678  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 679  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 680  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 681  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 682  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 683  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 684  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 685  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 686  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 687  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 688  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 689  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 690  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 691  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 692  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 693  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 694  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 695  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 696  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 697  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 698  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 699  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 700  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 701  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 702  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 703  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 704  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 705  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 706  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 707  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 708  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 709  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 710  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 711  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 712  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 713  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 714  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 715  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 716  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 717  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 718  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 719  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 720  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 721  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 722  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 723  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 724  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 725  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 726  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 727  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 728  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 729  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 730  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 731  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 732  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 733  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 734  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 735  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 736  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 737  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 738  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 739  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 740  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 741  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 742  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 743  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 744  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 745  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 746  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 747  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 748  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 749  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 750  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 751  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 752  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 753  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 754  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 755  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 756  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 757  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 758  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 759  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 760  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 761  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 762  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 763  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 764  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 765  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 766  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 767  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 768  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 769  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 770  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 771  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 772  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 773  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 774  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 775  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 776  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 777  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 778  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 779  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 780  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 781  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 782  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 783  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 784  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 785  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 786  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 787  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 788  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 789  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 790  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 791  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 792  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 793  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 794  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 795  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 796  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 797  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 798  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 799  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 800  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 801  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 802  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 803  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 804  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 805  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 806  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 807  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 808  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 809  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 810  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 811  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 812  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 813  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 814  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 815  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 816  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 817  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 818  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 819  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 820  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 821  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 822  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 823  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 824  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 825  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 826  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 827  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 828  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 829  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 830  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 831  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 832  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 833  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 834  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 835  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 836  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 837  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 838  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 839  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 840  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 841  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 842  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 843  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 844  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 845  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 846  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 847  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 848  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 849  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 850  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 851  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 852  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 853  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 854  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 855  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 856  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 857  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 858  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 859  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 860  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 861  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 862  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 863  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 864  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 865  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 866  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 867  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 868  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 869  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 870  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 871  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 872  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 873  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 874  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 875  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 876  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 877  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 878  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 879  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 880  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 881  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 882  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 883  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 884  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 885  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 886  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 887  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 888  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 889  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 890  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 891  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 892  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 893  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 894  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 895  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 896  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 897  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 898  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 899  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 900  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 901  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 902  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 903  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 904  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 905  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 906  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 907  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 908  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 909  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 910  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 911  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 912  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 913  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 914  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 915  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 916  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 917  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 918  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 919  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 920  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 921  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 922  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 923  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 924  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 925  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 926  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 927  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 928  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 929  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 930  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 931  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 932  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 933  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 934  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 935  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 936  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 937  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 938  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 939  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 940  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 941  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 942  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 943  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 944  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 945  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 946  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 947  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 948  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 949  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 950  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 951  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 952  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 953  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 954  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 955  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 956  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 957  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 958  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 959  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 960  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 961  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 962  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 963  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 964  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 965  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 966  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 967  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 968  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 969  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 970  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 971  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 972  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 973  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 974  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 975  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 976  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 977  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 978  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 979  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 980  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 981  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 982  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 983  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 984  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 985  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 986  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 987  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 988  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 989  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 990  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 991  0.041112214 0.060575968 0.045878848 0.057795432 0.026216485
## 992  0.084967320 0.068627451 0.009803922 0.029411765 0.035947712
## 993  0.026923077 0.030769231 0.026923077 0.023076923 0.015384615
## 994  0.043939394 0.021212121 0.033333333 0.042424242 0.037878788
## 995  0.010309278 0.000000000 0.000000000 0.000000000 0.000000000
## 996  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 997  0.046255507 0.091960352 0.120594714 0.051211454 0.060022026
## 998  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 999  0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
## 1000 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000
##               69          70           71          72           73
## 1    0.026695527 0.022366522 0.0548340548 0.045454545 0.0245310245
## 2    0.000000000 0.000000000 0.0000000000 0.000000000 0.0131578947
## 3    0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 4    0.033395176 0.027829314 0.0927643785 0.059369202 0.0111317254
## 5    0.024329382 0.016219588 0.0199625702 0.034310667 0.0324391765
## 6    0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 7    0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 8    0.005369376 0.014441770 0.0175893353 0.015552675 0.0135160156
## 9    0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 10   0.000000000 0.017241379 0.0344827586 0.017241379 0.0172413793
## 11   0.026390870 0.026390870 0.0349500713 0.044222539 0.0342368046
## 12   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 13   0.017543860 0.017543860 0.0526315789 0.000000000 0.0000000000
## 14   0.033333333 0.008333333 0.0000000000 0.008333333 0.0083333333
## 15   0.000000000 0.037037037 0.0000000000 0.000000000 0.0000000000
## 16   0.032258065 0.000000000 0.0322580645 0.000000000 0.0645161290
## 17   0.044176707 0.048192771 0.0080321285 0.000000000 0.0000000000
## 18   0.048275862 0.006896552 0.0413793103 0.020689655 0.0758620690
## 19   0.050000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 20   0.007005254 0.017513135 0.0087565674 0.015761821 0.0087565674
## 21   0.018823529 0.007058824 0.0541176471 0.014117647 0.0541176471
## 22   0.020833333 0.000000000 0.0000000000 0.000000000 0.0000000000
## 23   0.098802395 0.003992016 0.0000000000 0.000000000 0.0000000000
## 24   0.030508475 0.010169492 0.0474576271 0.010169492 0.3016949153
## 25   0.000000000 0.000000000 0.0681818182 0.045454545 0.0227272727
## 26   0.025641026 0.025641026 0.0256410256 0.000000000 0.0000000000
## 27   0.005747126 0.005747126 0.0402298851 0.040229885 0.0000000000
## 28   0.023437500 0.023437500 0.0312500000 0.003906250 0.0000000000
## 29   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 30   0.000000000 0.100000000 0.0000000000 0.000000000 0.0000000000
## 31   0.019698725 0.078794902 0.0602549247 0.034762457 0.0208574739
## 32   0.000000000 0.004347826 0.2652173913 0.008695652 0.0173913043
## 33   0.024038462 0.024038462 0.0048076923 0.000000000 0.0000000000
## 34   0.022698613 0.087011349 0.0592686003 0.030264817 0.0491803279
## 35   0.058309038 0.017492711 0.0029154519 0.000000000 0.0000000000
## 36   0.054054054 0.005405405 0.0000000000 0.032432432 0.1243243243
## 37   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 38   0.034285714 0.005714286 0.0000000000 0.028571429 0.0342857143
## 39   0.041666667 0.020833333 0.0277777778 0.006944444 0.0000000000
## 40   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 41   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 42   0.115183246 0.000000000 0.0000000000 0.068062827 0.0680628272
## 43   0.010638298 0.010638298 0.0000000000 0.021276596 0.0425531915
## 44   0.010512038 0.022719566 0.0288233299 0.026110546 0.0149203120
## 45   0.015873016 0.008818342 0.0599647266 0.102292769 0.0335097002
## 46   0.054644809 0.043715847 0.0150273224 0.017759563 0.0191256831
## 47   0.049132948 0.023121387 0.0173410405 0.023121387 0.0809248555
## 48   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 49   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 50   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 51   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 52   0.003597122 0.014388489 0.0431654676 0.010791367 0.0215827338
## 53   0.046822742 0.006688963 0.0133779264 0.036789298 0.0434782609
## 54   0.017857143 0.000000000 0.0000000000 0.017857143 0.0000000000
## 55   0.020304569 0.005076142 0.0000000000 0.030456853 0.0253807107
## 56   0.092640247 0.020586722 0.0138960371 0.037056099 0.0319094184
## 57   0.015151515 0.083333333 0.0075757576 0.000000000 0.0000000000
## 58   0.027888446 0.025896414 0.0876494024 0.015936255 0.0298804781
## 59   0.031887755 0.006377551 0.0114795918 0.000000000 0.0000000000
## 60   0.013157895 0.000000000 0.0000000000 0.039473684 0.0263157895
## 61   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 62   0.043478261 0.043478261 0.0000000000 0.000000000 0.0000000000
## 63   0.023668639 0.032544379 0.0443786982 0.002958580 0.0000000000
## 64   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 65   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 66   0.044145873 0.007677543 0.0825335893 0.000000000 0.0000000000
## 67   0.000000000 0.000000000 0.0119047619 0.071428571 0.0000000000
## 68   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 69   0.010007148 0.035025018 0.0521801287 0.076483202 0.0007147963
## 70   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 71   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 72   0.032258065 0.080645161 0.0000000000 0.000000000 0.0000000000
## 73   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 74   0.007119387 0.013691128 0.0394304491 0.050383352 0.0339539978
## 75   0.016557237 0.027976021 0.0573793891 0.029688838 0.0054239224
## 76   0.003642987 0.003642987 0.0145719490 0.010928962 0.0236794171
## 77   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 78   0.065292096 0.030927835 0.0034364261 0.000000000 0.0000000000
## 79   0.003558719 0.014234875 0.0391459075 0.017793594 0.0533807829
## 80   0.018518519 0.018518519 0.0185185185 0.000000000 0.0000000000
## 81   0.030172414 0.056034483 0.0689655172 0.000000000 0.0000000000
## 82   0.042553191 0.010638298 0.0000000000 0.000000000 0.0000000000
## 83   0.036879433 0.021276596 0.0184397163 0.031205674 0.0241134752
## 84   0.017985612 0.079136691 0.1043165468 0.035971223 0.0431654676
## 85   0.017910448 0.011940299 0.0059701493 0.050746269 0.0358208955
## 86   0.031250000 0.006250000 0.0312500000 0.034375000 0.0093750000
## 87   0.025362319 0.010869565 0.0000000000 0.000000000 0.0000000000
## 88   0.076923077 0.000000000 0.0000000000 0.000000000 0.0000000000
## 89   0.039271485 0.010813887 0.0284575982 0.000569152 0.0000000000
## 90   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 91   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 92   0.023853211 0.012844037 0.0311926606 0.022018349 0.0385321101
## 93   0.012944984 0.006472492 0.0161812298 0.032362460 0.0064724919
## 94   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 95   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 96   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 97   0.005312085 0.008632138 0.0119521912 0.000000000 0.0006640106
## 98   0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 99   0.036850921 0.033500838 0.0519262982 0.155778894 0.0385259631
## 100  0.013698630 0.041095890 0.0000000000 0.000000000 0.0000000000
## 101  0.016000000 0.004000000 0.0020000000 0.000000000 0.0000000000
## 102  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 103  0.011583012 0.007722008 0.0231660232 0.046332046 0.0000000000
## 104  0.103448276 0.000000000 0.0344827586 0.000000000 0.0000000000
## 105  0.019354839 0.000000000 0.0000000000 0.006451613 0.0709677419
## 106  0.023788546 0.021145374 0.0193832599 0.029074890 0.0237885463
## 107  0.011904762 0.007936508 0.0119047619 0.000000000 0.0039682540
## 108  0.018348624 0.064220183 0.0000000000 0.018348624 0.0183486239
## 109  0.029203540 0.015044248 0.0035398230 0.000000000 0.0000000000
## 110  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 111  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 112  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 113  0.058098592 0.033450704 0.0246478873 0.027288732 0.0352112676
## 114  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 115  0.014970060 0.022155689 0.0191616766 0.026347305 0.0473053892
## 116  0.000000000 0.000000000 0.0333333333 0.000000000 0.1333333333
## 117  0.009523810 0.000000000 0.0476190476 0.019047619 0.0000000000
## 118  0.006082108 0.001013685 0.0005068424 0.005068424 0.0430816016
## 119  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 120  0.000000000 0.000000000 0.0000000000 0.028571429 0.0000000000
## 121  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 122  0.035714286 0.024725275 0.0439560440 0.032967033 0.0192307692
## 123  0.021080369 0.027667984 0.0105401845 0.017127800 0.0329380764
## 124  0.009153318 0.038901602 0.0068649886 0.000000000 0.0000000000
## 125  0.024691358 0.037037037 0.0370370370 0.000000000 0.0000000000
## 126  0.021403092 0.013079667 0.0047562426 0.000000000 0.0000000000
## 127  0.022727273 0.022727273 0.0000000000 0.000000000 0.0681818182
## 128  0.031564809 0.014103425 0.0161182001 0.010073875 0.0167897918
## 129  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 130  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 131  0.000000000 0.083333333 0.0000000000 0.000000000 0.0833333333
## 132  0.001890359 0.013232514 0.0226843100 0.005671078 0.0000000000
## 133  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 134  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 135  0.070003764 0.021076402 0.0440346255 0.016748212 0.0351900640
## 136  0.000000000 0.000000000 0.0100000000 0.030000000 0.0000000000
## 137  0.013333333 0.008888889 0.0311111111 0.040000000 0.0577777778
## 138  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 139  0.036202186 0.036202186 0.1031420765 0.089480874 0.0416666667
## 140  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 141  0.000000000 0.000000000 0.0000000000 0.051282051 0.0000000000
## 142  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 143  0.055555556 0.000000000 0.0000000000 0.000000000 0.0000000000
## 144  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 145  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 146  0.000000000 0.009900990 0.0132013201 0.016501650 0.0231023102
## 147  0.039215686 0.019607843 0.0980392157 0.000000000 0.0000000000
## 148  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 149  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 150  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 151  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 152  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 153  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 154  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 155  0.017288444 0.024567789 0.0300272975 0.031847134 0.0263876251
## 156  0.015400411 0.009753593 0.0200205339 0.039527721 0.0744353183
## 157  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 158  0.008196721 0.131147541 0.0000000000 0.000000000 0.0000000000
## 159  0.025125628 0.011306533 0.0238693467 0.003768844 0.0125628141
## 160  0.013090909 0.004727273 0.0040000000 0.009090909 0.0072727273
## 161  0.003508772 0.003508772 0.0035087719 0.024561404 0.0666666667
## 162  0.000000000 0.000000000 0.0106382979 0.042553191 0.0106382979
## 163  0.022988506 0.000000000 0.0114942529 0.000000000 0.0000000000
## 164  0.019559902 0.024449878 0.0562347188 0.034229829 0.0366748166
## 165  0.029197080 0.021897810 0.0000000000 0.116788321 0.0364963504
## 166  0.006993007 0.004662005 0.0027972028 0.000000000 0.0000000000
## 167  0.014634146 0.000000000 0.0048780488 0.000000000 0.0000000000
## 168  0.000000000 0.000000000 0.0169491525 0.000000000 0.0338983051
## 169  0.000000000 0.000000000 0.0178571429 0.011904762 0.0297619048
## 170  0.034246575 0.013698630 0.1027397260 0.013698630 0.0136986301
## 171  0.000000000 0.000000000 0.0000000000 0.005917160 0.0000000000
## 172  0.028571429 0.000000000 0.0000000000 0.000000000 0.0000000000
## 173  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 174  0.036326942 0.057517659 0.0242179617 0.014127144 0.0000000000
## 175  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 176  0.017391304 0.013043478 0.0304347826 0.013043478 0.1173913043
## 177  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 178  0.017718715 0.019564415 0.0346991510 0.016611296 0.0166112957
## 179  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 180  0.010714286 0.010714286 0.0357142857 0.025000000 0.0000000000
## 181  0.021476510 0.007158837 0.0058165548 0.007382550 0.0156599553
## 182  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 183  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 184  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 185  0.032036613 0.019221968 0.0288329519 0.021510297 0.0105263158
## 186  0.058770344 0.042495479 0.0036166365 0.000000000 0.0000000000
## 187  0.055555556 0.076023392 0.0438596491 0.020467836 0.0321637427
## 188  0.006681514 0.024498886 0.0089086860 0.011135857 0.0356347439
## 189  0.015053763 0.015053763 0.0000000000 0.000000000 0.0000000000
## 190  0.021008403 0.142857143 0.0000000000 0.000000000 0.0000000000
## 191  0.000000000 0.000000000 0.0312500000 0.046875000 0.0625000000
## 192  0.078241431 0.025335320 0.0394932936 0.040983607 0.0037257824
## 193  0.009345794 0.004672897 0.0046728972 0.000000000 0.0093457944
## 194  0.013100437 0.013100437 0.0043668122 0.030567686 0.0043668122
## 195  0.000000000 0.055555556 0.0000000000 0.000000000 0.0222222222
## 196  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 197  0.021235521 0.030888031 0.0357142857 0.023166023 0.0173745174
## 198  0.000000000 0.020000000 0.0000000000 0.000000000 0.0000000000
## 199  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 200  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 201  0.015350877 0.024122807 0.0219298246 0.054824561 0.0087719298
## 202  0.045454545 0.000000000 0.0000000000 0.000000000 0.0000000000
## 203  0.000000000 0.000000000 0.0266666667 0.000000000 0.0000000000
## 204  0.015209125 0.038022814 0.0456273764 0.068441065 0.0532319392
## 205  0.046701693 0.025685931 0.0338587274 0.084646818 0.0402802102
## 206  0.018433180 0.046082949 0.0207373272 0.020737327 0.0092165899
## 207  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 208  0.011235955 0.000000000 0.0168539326 0.000000000 0.0000000000
## 209  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 210  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 211  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 212  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 213  0.023696682 0.018957346 0.0213270142 0.090047393 0.0462085308
## 214  0.391891892 0.000000000 0.0405405405 0.013513514 0.0135135135
## 215  0.000000000 0.000000000 0.0333333333 0.000000000 0.0000000000
## 216  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 217  0.000000000 0.000000000 0.0000000000 0.029126214 0.0000000000
## 218  0.021428571 0.007142857 0.0500000000 0.050000000 0.0071428571
## 219  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 220  0.009615385 0.000000000 0.0000000000 0.000000000 0.0000000000
## 221  0.000000000 0.038216561 0.0000000000 0.000000000 0.0000000000
## 222  0.031298905 0.027647366 0.0281690141 0.026082420 0.0406885759
## 223  0.045662100 0.031963470 0.0091324201 0.000000000 0.0000000000
## 224  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 225  0.041825095 0.028517110 0.0361216730 0.045627376 0.0323193916
## 226  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 227  0.012987013 0.000000000 0.0259740260 0.012987013 0.0000000000
## 228  0.019047619 0.000000000 0.0095238095 0.000000000 0.0000000000
## 229  0.037757437 0.029748284 0.0343249428 0.029748284 0.0022883295
## 230  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 231  0.025920063 0.030866640 0.0290858726 0.071626435 0.0391768896
## 232  0.000000000 0.027322404 0.0163934426 0.005464481 0.0163934426
## 233  0.102880658 0.028806584 0.0329218107 0.037037037 0.0041152263
## 234  0.044419134 0.063781321 0.0421412301 0.039863326 0.0421412301
## 235  0.056060606 0.065151515 0.0515151515 0.046969697 0.0424242424
## 236  0.026357076 0.016943834 0.0134923125 0.022905554 0.0185127079
## 237  0.023651845 0.010406812 0.0104068117 0.014191107 0.0264900662
## 238  0.029456577 0.022346369 0.0238699848 0.017267649 0.0121889284
## 239  0.014869888 0.039033457 0.0687732342 0.046468401 0.0204460967
## 240  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 241  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 242  0.011861314 0.009124088 0.0218978102 0.010948905 0.0036496350
## 243  0.019841270 0.035714286 0.0515873016 0.015873016 0.0793650794
## 244  0.053164557 0.050632911 0.0278481013 0.030379747 0.0151898734
## 245  0.017647059 0.026470588 0.0411764706 0.014705882 0.0000000000
## 246  0.013100437 0.017467249 0.0174672489 0.020378457 0.0174672489
## 247  0.033333333 0.016666667 0.0000000000 0.016666667 0.0166666667
## 248  0.011494253 0.008620690 0.0114942529 0.022988506 0.0143678161
## 249  0.017391304 0.008695652 0.0260869565 0.000000000 0.0521739130
## 250  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 251  0.000000000 0.026785714 0.0357142857 0.017857143 0.0446428571
## 252  0.024096386 0.024096386 0.0240963855 0.000000000 0.0000000000
## 253  0.000000000 0.015625000 0.0625000000 0.031250000 0.0156250000
## 254  0.041095890 0.027397260 0.0000000000 0.000000000 0.0000000000
## 255  0.000000000 0.007692308 0.0692307692 0.015384615 0.0153846154
## 256  0.021739130 0.021739130 0.0000000000 0.000000000 0.0000000000
## 257  0.038461538 0.019230769 0.0000000000 0.000000000 0.0000000000
## 258  0.026315789 0.052631579 0.0000000000 0.052631579 0.0000000000
## 259  0.028985507 0.057971014 0.0144927536 0.000000000 0.0000000000
## 260  0.028846154 0.019230769 0.0000000000 0.000000000 0.0000000000
## 261  0.033333333 0.016666667 0.0166666667 0.000000000 0.0000000000
## 262  0.031746032 0.015873016 0.0000000000 0.000000000 0.0000000000
## 263  0.045454545 0.015151515 0.0151515152 0.000000000 0.0000000000
## 264  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 265  0.036117381 0.011286682 0.0067720090 0.000000000 0.0000000000
## 266  0.030487805 0.002032520 0.0000000000 0.000000000 0.0000000000
## 267  0.059094840 0.052464687 0.0066301528 0.000000000 0.0000000000
## 268  0.044543430 0.027839644 0.0000000000 0.000000000 0.0000000000
## 269  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 270  0.000000000 0.023076923 0.0000000000 0.000000000 0.0000000000
## 271  0.000000000 0.012195122 0.0000000000 0.000000000 0.0000000000
## 272  0.019047619 0.019047619 0.0000000000 0.000000000 0.0000000000
## 273  0.007092199 0.014184397 0.0070921986 0.000000000 0.0000000000
## 274  0.015625000 0.007812500 0.0000000000 0.000000000 0.0000000000
## 275  0.008474576 0.008474576 0.0000000000 0.000000000 0.0000000000
## 276  0.014492754 0.014492754 0.0000000000 0.000000000 0.0000000000
## 277  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 278  0.061224490 0.067503925 0.0109890110 0.000000000 0.0000000000
## 279  0.040000000 0.010000000 0.0100000000 0.000000000 0.0000000000
## 280  0.000000000 0.081967213 0.0000000000 0.000000000 0.0000000000
## 281  0.101265823 0.012658228 0.0000000000 0.000000000 0.0000000000
## 282  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 283  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 284  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 285  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 286  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 287  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 288  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 289  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 290  0.000000000 0.030303030 0.0151515152 0.000000000 0.0000000000
## 291  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 292  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 293  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 294  0.019230769 0.000000000 0.0000000000 0.000000000 0.0000000000
## 295  0.019230769 0.000000000 0.0000000000 0.000000000 0.0000000000
## 296  0.013157895 0.000000000 0.0000000000 0.000000000 0.0000000000
## 297  0.021276596 0.000000000 0.0000000000 0.000000000 0.0000000000
## 298  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 299  0.043478261 0.000000000 0.0000000000 0.000000000 0.0000000000
## 300  0.038461538 0.000000000 0.0000000000 0.000000000 0.0000000000
## 301  0.025675676 0.001351351 0.0000000000 0.000000000 0.0000000000
## 302  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 303  0.044943820 0.000000000 0.0000000000 0.000000000 0.0000000000
## 304  0.048076923 0.009615385 0.0000000000 0.000000000 0.0000000000
## 305  0.019417476 0.000000000 0.0000000000 0.000000000 0.0000000000
## 306  0.041528239 0.006644518 0.0000000000 0.000000000 0.0000000000
## 307  0.082926829 0.019512195 0.0000000000 0.000000000 0.0000000000
## 308  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 309  0.015748031 0.000000000 0.0000000000 0.000000000 0.0000000000
## 310  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 311  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 312  0.005266854 0.000000000 0.0000000000 0.000000000 0.0000000000
## 313  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 314  0.028248588 0.000000000 0.0000000000 0.000000000 0.0000000000
## 315  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 316  0.015873016 0.000000000 0.0000000000 0.000000000 0.0000000000
## 317  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 318  0.003960396 0.000000000 0.0000000000 0.000000000 0.0000000000
## 319  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 320  0.002141328 0.000000000 0.0000000000 0.000000000 0.0000000000
## 321  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 322  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 323  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 324  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 325  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 326  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 327  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 328  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 329  0.006993007 0.000000000 0.0000000000 0.000000000 0.0000000000
## 330  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 331  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 332  0.001529052 0.000000000 0.0000000000 0.000000000 0.0000000000
## 333  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 334  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 335  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 336  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 337  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 338  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 339  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 340  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 341  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 342  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 343  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 344  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 345  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 346  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 347  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 348  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 349  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 350  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 351  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 352  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 353  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 354  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 355  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 356  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 357  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 358  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 359  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 360  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 361  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 362  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 363  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 364  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 365  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 366  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 367  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 368  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 369  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 370  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 371  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 372  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 373  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 374  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 375  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 376  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 377  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 378  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 379  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 380  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 381  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 382  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 383  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 384  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 385  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 386  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 387  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 388  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 389  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 390  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 391  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 392  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 393  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 394  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 395  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 396  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 397  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 398  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 399  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 400  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 401  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 402  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 403  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 404  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 405  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 406  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 407  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 408  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 409  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 410  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 411  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 412  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 413  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 414  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 415  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 416  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 417  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 418  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 419  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 420  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 421  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 422  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 423  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 424  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 425  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 426  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 427  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 428  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 429  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 430  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 431  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 432  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 433  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 434  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 435  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 436  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 437  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 438  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 439  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 440  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 441  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 442  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 443  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 444  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 445  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 446  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 447  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 448  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 449  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 450  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 451  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 452  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 453  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 454  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 455  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 456  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 457  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 458  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 459  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 460  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 461  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 462  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 463  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 464  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 465  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 466  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 467  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 468  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 469  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 470  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 471  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 472  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 473  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 474  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 475  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 476  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 477  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 478  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 479  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 480  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 481  0.018115942 0.000000000 0.0072463768 0.025362319 0.0036231884
## 482  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 483  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 484  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 485  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 486  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 487  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 488  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 489  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 490  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 491  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 492  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 493  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 494  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 495  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 496  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 497  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 498  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 499  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 500  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 501  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 502  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 503  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 504  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 505  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 506  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 507  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 508  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 509  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 510  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 511  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 512  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 513  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 514  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 515  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 516  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 517  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 518  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 519  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 520  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 521  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 522  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 523  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 524  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 525  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 526  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 527  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 528  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 529  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 530  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 531  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 532  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 533  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 534  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 535  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 536  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 537  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 538  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 539  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 540  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 541  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 542  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 543  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 544  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 545  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 546  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 547  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 548  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 549  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 550  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 551  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 552  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 553  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 554  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 555  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 556  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 557  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 558  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 559  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 560  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 561  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 562  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 563  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 564  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 565  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 566  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 567  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 568  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 569  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 570  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 571  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 572  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 573  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 574  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 575  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 576  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 577  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 578  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 579  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 580  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 581  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 582  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 583  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 584  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 585  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 586  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 587  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 588  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 589  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 590  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 591  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 592  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 593  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 594  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 595  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 596  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 597  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 598  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 599  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 600  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 601  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 602  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 603  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 604  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 605  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 606  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 607  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 608  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 609  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 610  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 611  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 612  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 613  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 614  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 615  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 616  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 617  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 618  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 619  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 620  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 621  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 622  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 623  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 624  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 625  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 626  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 627  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 628  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 629  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 630  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 631  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 632  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 633  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 634  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 635  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 636  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 637  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 638  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 639  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 640  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 641  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 642  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 643  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 644  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 645  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 646  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 647  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 648  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 649  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 650  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 651  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 652  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 653  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 654  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 655  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 656  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 657  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 658  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 659  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 660  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 661  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 662  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 663  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 664  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 665  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 666  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 667  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 668  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 669  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 670  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 671  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 672  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 673  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 674  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 675  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 676  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 677  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 678  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 679  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 680  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 681  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 682  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 683  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 684  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 685  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 686  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 687  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 688  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 689  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 690  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 691  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 692  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 693  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 694  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 695  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 696  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 697  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 698  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 699  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 700  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 701  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 702  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 703  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 704  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 705  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 706  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 707  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 708  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 709  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 710  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 711  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 712  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 713  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 714  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 715  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 716  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 717  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 718  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 719  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 720  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 721  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 722  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 723  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 724  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 725  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 726  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 727  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 728  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 729  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 730  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 731  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 732  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 733  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 734  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 735  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 736  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 737  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 738  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 739  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 740  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 741  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 742  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 743  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 744  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 745  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 746  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 747  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 748  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 749  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 750  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 751  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 752  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 753  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 754  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 755  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 756  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 757  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 758  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 759  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 760  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 761  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 762  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 763  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 764  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 765  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 766  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 767  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 768  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 769  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 770  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 771  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 772  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 773  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 774  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 775  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 776  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 777  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 778  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 779  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 780  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 781  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 782  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 783  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 784  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 785  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 786  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 787  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 788  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 789  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 790  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 791  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 792  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 793  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 794  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 795  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 796  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 797  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 798  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 799  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 800  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 801  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 802  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 803  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 804  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 805  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 806  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 807  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 808  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 809  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 810  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 811  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 812  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 813  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 814  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 815  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 816  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 817  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 818  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 819  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 820  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 821  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 822  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 823  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 824  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 825  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 826  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 827  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 828  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 829  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 830  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 831  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 832  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 833  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 834  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 835  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 836  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 837  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 838  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 839  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 840  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 841  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 842  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 843  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 844  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 845  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 846  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 847  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 848  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 849  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 850  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 851  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 852  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 853  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 854  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 855  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 856  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 857  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 858  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 859  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 860  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 861  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 862  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 863  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 864  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 865  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 866  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 867  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 868  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 869  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 870  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 871  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 872  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 873  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 874  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 875  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 876  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 877  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 878  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 879  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 880  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 881  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 882  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 883  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 884  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 885  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 886  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 887  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 888  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 889  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 890  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 891  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 892  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 893  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 894  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 895  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 896  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 897  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 898  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 899  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 900  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 901  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 902  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 903  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 904  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 905  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 906  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 907  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 908  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 909  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 910  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 911  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 912  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 913  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 914  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 915  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 916  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 917  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 918  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 919  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 920  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 921  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 922  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 923  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 924  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 925  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 926  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 927  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 928  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 929  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 930  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 931  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 932  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 933  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 934  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 935  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 936  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 937  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 938  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 939  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 940  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 941  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 942  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 943  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 944  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 945  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 946  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 947  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 948  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 949  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 950  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 951  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 952  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 953  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 954  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 955  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 956  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 957  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 958  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 959  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 960  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 961  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 962  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 963  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 964  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 965  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 966  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 967  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 968  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 969  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 970  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 971  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 972  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 973  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 974  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 975  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 976  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 977  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 978  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 979  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 980  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 981  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 982  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 983  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 984  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 985  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 986  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 987  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 988  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 989  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 990  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 991  0.019860973 0.016881827 0.0280039722 0.028401192 0.0206554121
## 992  0.055555556 0.000000000 0.0000000000 0.000000000 0.0000000000
## 993  0.019230769 0.026923077 0.0038461538 0.000000000 0.0000000000
## 994  0.024242424 0.015151515 0.0106060606 0.036363636 0.0666666667
## 995  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 996  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 997  0.011563877 0.017621145 0.0154185022 0.038546256 0.0424008811
## 998  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 999  0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
## 1000 0.000000000 0.000000000 0.0000000000 0.000000000 0.0000000000
##                74           75           76           77          78
## 1    0.0093795094 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 2    0.0000000000 0.0394736842 0.0526315789 0.0000000000 0.000000000
## 3    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 4    0.0055658627 0.0185528757 0.0278293135 0.0315398887 0.040816327
## 5    0.0330630069 0.0056144729 0.0000000000 0.0000000000 0.000000000
## 6    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 7    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 8    0.0027772635 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 9    0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 10   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 11   0.0213980029 0.0014265335 0.0000000000 0.0000000000 0.000000000
## 12   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 13   0.0000000000 0.0350877193 0.1578947368 0.0175438596 0.000000000
## 14   0.0666666667 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 15   0.0000000000 0.1111111111 0.1111111111 0.0000000000 0.000000000
## 16   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 17   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 18   0.0275862069 0.0482758621 0.0137931034 0.0000000000 0.000000000
## 19   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 20   0.0157618214 0.0017513135 0.0000000000 0.0000000000 0.000000000
## 21   0.0117647059 0.0282352941 0.0047058824 0.0000000000 0.000000000
## 22   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 23   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 24   0.0474576271 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 25   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 26   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 27   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 28   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 29   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 30   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 31   0.0243337196 0.0289687138 0.0312862109 0.0301274623 0.019698725
## 32   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 33   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 34   0.0012610340 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 35   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 36   0.0162162162 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 37   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 38   0.0114285714 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 39   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 40   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 41   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 42   0.0261780105 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 43   0.0638297872 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 44   0.0030518820 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 45   0.0414462081 0.0423280423 0.0017636684 0.0000000000 0.000000000
## 46   0.0122950820 0.0327868852 0.0355191257 0.0327868852 0.006830601
## 47   0.0578034682 0.0346820809 0.0780346821 0.0028901734 0.000000000
## 48   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 49   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 50   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 51   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 52   0.0287769784 0.0107913669 0.0000000000 0.0000000000 0.000000000
## 53   0.0200668896 0.0301003344 0.0000000000 0.0000000000 0.000000000
## 54   0.0178571429 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 55   0.0152284264 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 56   0.0092640247 0.0036026763 0.0000000000 0.0000000000 0.000000000
## 57   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 58   0.0039840637 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 59   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 60   0.0197368421 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 61   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 62   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 63   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 64   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 65   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 66   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 67   0.0000000000 0.0119047619 0.0119047619 0.0238095238 0.011904762
## 68   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 69   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 70   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 71   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 72   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 73   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 74   0.0323110624 0.0043811610 0.0000000000 0.0000000000 0.000000000
## 75   0.0039965744 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 76   0.0036429872 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 77   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 78   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 79   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 80   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 81   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 82   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 83   0.0113475177 0.0042553191 0.0496453901 0.0439716312 0.048226950
## 84   0.0395683453 0.0323741007 0.0143884892 0.0251798561 0.053956835
## 85   0.0298507463 0.0179104478 0.0268656716 0.0089552239 0.000000000
## 86   0.0093750000 0.0093750000 0.0000000000 0.0000000000 0.000000000
## 87   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 88   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 89   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 90   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 91   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 92   0.0128440367 0.0128440367 0.0018348624 0.0000000000 0.000000000
## 93   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 94   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 95   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 96   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.016666667
## 97   0.0006640106 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 98   0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 99   0.0167504188 0.0402010050 0.0167504188 0.0217755444 0.023450586
## 100  0.0000000000 0.0273972603 0.0000000000 0.0000000000 0.000000000
## 101  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 102  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 103  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 104  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 105  0.0322580645 0.0129032258 0.0129032258 0.0000000000 0.000000000
## 106  0.0466960352 0.0246696035 0.0237885463 0.0017621145 0.000000000
## 107  0.0198412698 0.0079365079 0.0000000000 0.0000000000 0.000000000
## 108  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 109  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 110  0.0434782609 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 111  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 112  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 113  0.0272887324 0.0281690141 0.0017605634 0.0000000000 0.000000000
## 114  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 115  0.0149700599 0.0311377246 0.0017964072 0.0000000000 0.000000000
## 116  0.0333333333 0.0333333333 0.0333333333 0.0000000000 0.000000000
## 117  0.0095238095 0.0000000000 0.0095238095 0.0095238095 0.000000000
## 118  0.0506842372 0.0020273695 0.0000000000 0.0000000000 0.000000000
## 119  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 120  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 121  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 122  0.0247252747 0.0192307692 0.0412087912 0.0521978022 0.021978022
## 123  0.0065876153 0.0144927536 0.0052700922 0.0000000000 0.000000000
## 124  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 125  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 126  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 127  0.0227272727 0.0454545455 0.0000000000 0.0000000000 0.000000000
## 128  0.0322364003 0.0315648086 0.0255204835 0.0006715917 0.000000000
## 129  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 130  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 131  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 132  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 133  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 134  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 135  0.0097854723 0.0013172751 0.0000000000 0.0000000000 0.000000000
## 136  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 137  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 138  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 139  0.0280054645 0.0505464481 0.0348360656 0.0717213115 0.029371585
## 140  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 141  0.2564102564 0.0000000000 0.0000000000 0.0512820513 0.000000000
## 142  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 143  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 144  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 145  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 146  0.0264026403 0.0132013201 0.0000000000 0.0000000000 0.000000000
## 147  0.0588235294 0.0392156863 0.0000000000 0.0000000000 0.000000000
## 148  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 149  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 150  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 151  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 152  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 153  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 154  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 155  0.0036396724 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 156  0.0559548255 0.0467145791 0.0123203285 0.0000000000 0.000000000
## 157  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 158  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 159  0.0188442211 0.0213567839 0.0037688442 0.0125628141 0.001256281
## 160  0.0221818182 0.0007272727 0.0000000000 0.0000000000 0.000000000
## 161  0.0035087719 0.0035087719 0.0000000000 0.0000000000 0.000000000
## 162  0.0319148936 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 163  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 164  0.1173594132 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 165  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 166  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 167  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 168  0.0169491525 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 169  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 170  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 171  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 172  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 173  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 174  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 175  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 176  0.0956521739 0.0130434783 0.0000000000 0.0000000000 0.000000000
## 177  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 178  0.0169804356 0.0132890365 0.0018456995 0.0000000000 0.000000000
## 179  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 180  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 181  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 182  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 183  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 184  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 185  0.0892448513 0.1006864989 0.0215102975 0.0265446224 0.015560641
## 186  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 187  0.0380116959 0.0204678363 0.0233918129 0.0029239766 0.052631579
## 188  0.0066815145 0.0111358575 0.0000000000 0.0000000000 0.000000000
## 189  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 190  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 191  0.0156250000 0.0000000000 0.0156250000 0.0000000000 0.000000000
## 192  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 193  0.0140186916 0.0046728972 0.0373831776 0.0186915888 0.000000000
## 194  0.0786026201 0.0087336245 0.0000000000 0.0000000000 0.000000000
## 195  0.0000000000 0.0111111111 0.0111111111 0.0000000000 0.000000000
## 196  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 197  0.0125482625 0.0077220077 0.0000000000 0.0000000000 0.000000000
## 198  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 199  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 200  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 201  0.0197368421 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 202  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 203  0.0266666667 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 204  0.0114068441 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 205  0.0023350846 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 206  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 207  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 208  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 209  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 210  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 211  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 212  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 213  0.0331753555 0.0213270142 0.0473933649 0.0177725118 0.005924171
## 214  0.0000000000 0.0270270270 0.0270270270 0.0000000000 0.000000000
## 215  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 216  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 217  0.0000000000 0.0097087379 0.0000000000 0.0000000000 0.000000000
## 218  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 219  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 220  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 221  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 222  0.0156494523 0.0229525300 0.0114762650 0.0318205529 0.035993740
## 223  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 224  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 225  0.0095057034 0.0190114068 0.0019011407 0.0000000000 0.000000000
## 226  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 227  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 228  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 229  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 230  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 231  0.0461020973 0.0334388603 0.0182034032 0.0138504155 0.027700831
## 232  0.0054644809 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 233  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 234  0.0159453303 0.0410022779 0.0273348519 0.0375854214 0.039863326
## 235  0.0257575758 0.0212121212 0.0060606061 0.0621212121 0.040909091
## 236  0.0219642297 0.0134923125 0.0235331032 0.0037652965 0.000000000
## 237  0.0208136235 0.0312204352 0.0009460738 0.0000000000 0.000000000
## 238  0.0015236160 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 239  0.0018587361 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 240  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 241  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 242  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 243  0.0317460317 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 244  0.0101265823 0.0177215190 0.0050632911 0.0000000000 0.000000000
## 245  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 246  0.0087336245 0.0014556041 0.0000000000 0.0000000000 0.000000000
## 247  0.0333333333 0.0166666667 0.0000000000 0.0000000000 0.000000000
## 248  0.0057471264 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 249  0.0260869565 0.0086956522 0.0000000000 0.0000000000 0.000000000
## 250  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 251  0.0446428571 0.0446428571 0.0000000000 0.0000000000 0.000000000
## 252  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 253  0.0156250000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 254  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 255  0.0076923077 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 256  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 257  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 258  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 259  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 260  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 261  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 262  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 263  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 264  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 265  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 266  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 267  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 268  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 269  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 270  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 271  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 272  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 273  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 274  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 275  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 276  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 277  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 278  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 279  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 280  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 281  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 282  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 283  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 284  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 285  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 286  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 287  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 288  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 289  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 290  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 291  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 292  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 293  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 294  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 295  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 296  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 297  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 298  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 299  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 300  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 301  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 302  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 303  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 304  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 305  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 306  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 307  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 308  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 309  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 310  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 311  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 312  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 313  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 314  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 315  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 316  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 317  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 318  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 319  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 320  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 321  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 322  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 323  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 324  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 325  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 326  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 327  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 328  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 329  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 330  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 331  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 332  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 333  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 334  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 335  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 336  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 337  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 338  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 339  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 340  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 341  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 342  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 343  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 344  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 345  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 346  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 347  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 348  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 349  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 350  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 351  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 352  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 353  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 354  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 355  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 356  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 357  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 358  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 359  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 360  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 361  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 362  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 363  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 364  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 365  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 366  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 367  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 368  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 369  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 370  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 371  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 372  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 373  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 374  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 375  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 376  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 377  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 378  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 379  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 380  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 381  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 382  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 383  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 384  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 385  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 386  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 387  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 388  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 389  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 390  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 391  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 392  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 393  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 394  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 395  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 396  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 397  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 398  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 399  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 400  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 401  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 402  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 403  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 404  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 405  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 406  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 407  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 408  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 409  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 410  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 411  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 412  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 413  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 414  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 415  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 416  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 417  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 418  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 419  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 420  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 421  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 422  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 423  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 424  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 425  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 426  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 427  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 428  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 429  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 430  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 431  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 432  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 433  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 434  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 435  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 436  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 437  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 438  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 439  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 440  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 441  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 442  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 443  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 444  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 445  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 446  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 447  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 448  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 449  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 450  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 451  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 452  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 453  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 454  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 455  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 456  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 457  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 458  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 459  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 460  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 461  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 462  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 463  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 464  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 465  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 466  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 467  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 468  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 469  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 470  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 471  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 472  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 473  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 474  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 475  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 476  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 477  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 478  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 479  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 480  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 481  0.0398550725 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 482  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 483  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 484  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 485  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 486  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 487  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 488  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 489  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 490  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 491  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 492  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 493  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 494  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 495  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 496  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 497  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 498  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 499  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 500  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 501  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 502  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 503  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 504  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 505  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 506  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 507  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 508  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 509  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 510  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 511  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 512  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 513  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 514  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 515  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 516  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 517  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 518  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 519  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 520  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 521  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 522  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 523  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 524  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 525  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 526  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 527  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 528  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 529  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 530  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 531  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 532  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 533  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 534  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 535  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 536  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 537  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 538  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 539  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 540  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 541  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 542  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 543  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 544  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 545  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 546  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 547  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 548  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 549  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 550  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 551  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 552  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 553  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 554  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 555  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 556  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 557  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 558  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 559  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 560  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 561  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 562  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 563  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 564  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 565  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 566  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 567  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 568  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 569  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 570  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 571  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 572  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 573  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 574  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 575  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 576  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 577  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 578  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 579  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 580  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 581  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 582  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 583  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 584  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 585  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 586  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 587  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 588  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 589  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 590  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 591  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 592  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 593  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 594  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 595  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 596  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 597  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 598  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 599  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 600  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 601  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 602  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 603  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 604  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 605  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 606  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 607  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 608  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 609  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 610  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 611  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 612  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 613  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 614  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 615  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 616  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 617  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 618  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 619  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 620  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 621  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 622  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 623  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 624  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 625  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 626  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 627  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 628  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 629  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 630  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 631  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 632  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 633  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 634  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 635  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 636  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 637  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 638  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 639  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 640  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 641  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 642  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 643  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 644  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 645  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 646  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 647  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 648  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 649  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 650  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 651  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 652  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 653  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 654  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 655  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 656  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 657  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 658  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 659  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 660  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 661  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 662  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 663  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 664  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 665  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 666  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 667  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 668  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 669  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 670  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 671  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 672  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 673  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 674  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 675  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 676  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 677  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 678  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 679  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 680  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 681  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 682  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 683  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 684  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 685  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 686  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 687  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 688  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 689  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 690  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 691  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 692  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 693  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 694  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 695  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 696  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 697  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 698  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 699  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 700  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 701  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 702  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 703  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 704  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 705  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 706  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 707  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 708  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 709  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 710  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 711  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 712  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 713  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 714  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 715  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 716  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 717  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 718  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 719  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 720  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 721  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 722  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 723  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 724  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 725  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 726  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 727  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 728  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 729  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 730  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 731  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 732  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 733  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 734  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 735  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 736  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 737  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 738  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 739  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 740  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 741  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 742  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 743  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 744  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 745  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 746  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 747  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 748  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 749  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 750  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 751  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 752  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 753  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 754  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 755  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 756  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 757  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 758  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 759  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 760  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 761  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 762  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 763  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 764  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 765  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 766  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 767  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 768  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 769  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 770  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 771  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 772  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 773  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 774  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 775  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 776  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 777  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 778  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 779  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 780  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 781  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 782  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 783  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 784  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 785  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 786  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 787  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 788  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 789  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 790  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 791  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 792  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 793  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 794  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 795  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 796  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 797  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 798  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 799  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 800  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 801  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 802  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 803  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 804  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 805  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 806  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 807  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 808  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 809  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 810  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 811  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 812  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 813  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 814  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 815  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 816  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 817  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 818  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 819  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 820  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 821  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 822  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 823  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 824  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 825  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 826  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 827  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 828  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 829  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 830  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 831  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 832  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 833  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 834  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 835  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 836  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 837  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 838  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 839  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 840  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 841  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 842  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 843  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 844  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 845  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 846  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 847  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 848  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 849  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 850  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 851  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 852  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 853  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 854  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 855  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 856  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 857  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 858  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 859  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 860  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 861  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 862  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 863  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 864  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 865  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 866  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 867  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 868  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 869  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 870  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 871  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 872  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 873  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 874  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 875  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 876  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 877  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 878  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 879  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 880  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 881  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 882  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 883  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 884  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 885  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 886  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 887  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 888  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 889  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 890  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 891  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 892  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 893  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 894  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 895  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 896  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 897  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 898  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 899  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 900  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 901  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 902  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 903  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 904  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 905  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 906  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 907  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 908  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 909  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 910  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 911  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 912  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 913  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 914  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 915  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 916  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 917  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 918  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 919  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 920  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 921  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 922  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 923  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 924  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 925  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 926  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 927  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 928  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 929  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 930  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 931  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 932  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 933  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 934  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 935  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 936  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 937  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 938  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 939  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 940  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 941  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 942  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 943  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 944  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 945  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 946  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 947  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 948  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 949  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 950  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 951  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 952  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 953  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 954  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 955  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 956  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 957  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 958  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 959  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 960  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 961  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 962  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 963  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 964  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 965  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 966  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 967  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 968  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 969  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 970  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 971  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 972  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 973  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 974  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 975  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 976  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 977  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 978  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 979  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 980  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 981  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 982  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 983  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 984  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 985  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 986  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 987  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 988  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 989  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 990  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 991  0.0244289970 0.0021847071 0.0000000000 0.0000000000 0.000000000
## 992  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 993  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 994  0.0515151515 0.0045454545 0.0030303030 0.0000000000 0.000000000
## 995  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 996  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 997  0.0033039648 0.0055066079 0.0005506608 0.0000000000 0.000000000
## 998  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 999  0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
## 1000 0.0000000000 0.0000000000 0.0000000000 0.0000000000 0.000000000
##              79          80          81          82          83
## 1    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 2    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 3    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 4    0.01855288 0.000000000 0.000000000 0.000000000 0.000000000
## 5    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 6    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 7    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 8    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 9    0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 10   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 11   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 12   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 13   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 14   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 15   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 16   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 17   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 18   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 19   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 20   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 21   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 22   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 23   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 24   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 25   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 26   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 27   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 28   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 29   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 30   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 31   0.03244496 0.035921205 0.005793743 0.000000000 0.000000000
## 32   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 33   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 34   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 35   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 36   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 37   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 38   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 39   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 40   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 41   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 42   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 43   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 44   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 45   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 46   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 47   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 48   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 49   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 50   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 51   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 52   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 53   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 54   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 55   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 56   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 57   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 58   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 59   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 60   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 61   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 62   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 63   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 64   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 65   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 66   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 67   0.01190476 0.000000000 0.000000000 0.000000000 0.000000000
## 68   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 69   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 70   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 71   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 72   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 73   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 74   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 75   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 76   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 77   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 78   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 79   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 80   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 81   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 82   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 83   0.00141844 0.000000000 0.000000000 0.000000000 0.000000000
## 84   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 85   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 86   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 87   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 88   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 89   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 90   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 91   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 92   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 93   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 94   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 95   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 96   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 97   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 98   0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 99   0.05192630 0.045226131 0.036850921 0.000000000 0.000000000
## 100  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 101  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 102  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 103  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 104  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 105  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 106  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 107  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 108  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 109  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 110  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 111  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 112  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 113  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 114  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 115  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 116  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 117  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 118  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 119  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 120  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 121  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 122  0.02197802 0.000000000 0.000000000 0.000000000 0.000000000
## 123  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 124  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 125  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 126  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 127  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 128  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 129  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 130  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 131  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 132  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 133  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 134  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 135  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 136  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 137  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 138  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 139  0.00136612 0.010245902 0.025956284 0.025273224 0.003415301
## 140  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 141  0.07692308 0.000000000 0.000000000 0.000000000 0.000000000
## 142  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 143  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 144  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 145  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 146  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 147  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 148  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 149  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 150  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 151  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 152  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 153  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 154  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 155  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 156  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 157  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 158  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 159  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 160  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 161  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 162  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 163  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 164  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 165  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 166  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 167  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 168  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 169  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 170  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 171  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 172  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 173  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 174  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 175  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 176  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 177  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 178  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 179  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 180  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 181  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 182  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 183  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 184  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 185  0.02974828 0.006864989 0.000000000 0.000000000 0.000000000
## 186  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 187  0.07017544 0.000000000 0.000000000 0.000000000 0.000000000
## 188  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 189  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 190  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 191  0.00000000 0.015625000 0.000000000 0.000000000 0.000000000
## 192  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 193  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 194  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 195  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 196  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 197  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 198  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 199  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 200  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 201  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 202  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 203  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 204  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 205  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 206  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 207  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 208  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 209  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 210  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 211  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 212  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 213  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 214  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 215  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 216  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 217  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 218  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 219  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 220  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 221  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 222  0.02764737 0.028169014 0.005216484 0.000000000 0.000000000
## 223  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 224  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 225  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 226  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 227  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 228  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 229  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 230  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 231  0.03521963 0.036011080 0.032647408 0.004155125 0.000000000
## 232  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 233  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 234  0.01138952 0.003416856 0.000000000 0.000000000 0.000000000
## 235  0.06212121 0.007575758 0.000000000 0.000000000 0.000000000
## 236  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 237  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 238  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 239  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 240  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 241  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 242  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 243  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 244  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 245  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 246  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 247  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 248  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 249  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 250  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 251  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 252  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 253  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 254  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 255  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 256  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 257  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 258  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 259  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 260  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 261  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 262  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 263  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 264  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 265  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 266  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 267  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 268  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 269  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 270  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 271  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 272  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 273  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 274  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 275  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 276  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 277  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 278  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 279  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 280  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 281  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 282  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 283  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 284  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 285  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 286  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 287  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 288  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 289  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 290  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 291  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 292  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 293  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 294  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 295  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 296  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 297  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 298  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 299  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 300  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 301  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 302  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 303  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 304  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 305  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 306  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 307  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 308  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 309  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 310  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 311  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 312  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 313  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 314  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 315  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 316  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 317  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 318  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 319  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 320  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 321  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 322  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 323  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 324  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 325  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 326  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 327  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 328  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 329  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 330  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 331  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 332  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 333  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 334  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 335  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 336  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 337  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 338  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 339  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 340  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 341  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 342  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 343  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 344  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 345  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 346  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 347  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 348  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 349  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 350  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 351  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 352  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 353  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 354  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 355  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 356  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 357  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 358  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 359  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 360  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 361  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 362  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 363  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 364  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 365  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 366  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 367  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 368  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 369  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 370  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 371  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 372  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 373  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 374  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 375  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 376  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 377  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 378  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 379  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 380  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 381  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 382  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 383  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 384  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 385  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 386  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 387  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 388  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 389  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 390  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 391  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 392  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 393  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 394  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 395  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 396  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 397  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 398  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 399  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 400  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 401  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 402  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 403  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 404  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 405  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 406  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 407  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 408  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 409  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 410  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 411  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 412  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 413  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 414  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 415  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 416  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 417  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 418  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 419  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 420  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 421  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 422  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 423  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 424  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 425  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 426  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 427  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 428  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 429  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 430  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 431  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 432  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 433  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 434  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 435  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 436  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 437  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 438  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 439  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 440  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 441  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 442  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 443  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 444  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 445  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 446  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 447  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 448  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 449  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 450  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 451  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 452  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 453  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 454  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 455  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 456  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 457  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 458  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 459  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 460  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 461  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 462  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 463  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 464  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 465  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 466  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 467  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 468  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 469  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 470  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 471  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 472  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 473  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 474  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 475  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 476  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 477  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 478  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 479  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 480  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 481  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 482  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 483  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 484  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 485  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 486  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 487  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 488  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 489  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 490  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 491  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 492  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 493  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 494  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 495  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 496  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 497  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 498  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 499  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 500  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 501  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 502  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 503  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 504  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 505  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 506  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 507  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 508  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 509  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 510  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 511  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 512  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 513  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 514  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 515  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 516  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 517  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 518  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 519  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 520  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 521  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 522  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 523  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 524  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 525  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 526  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 527  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 528  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 529  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 530  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 531  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 532  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 533  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 534  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 535  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 536  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 537  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 538  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 539  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 540  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 541  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 542  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 543  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 544  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 545  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 546  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 547  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 548  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 549  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 550  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 551  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 552  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 553  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 554  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 555  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 556  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 557  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 558  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 559  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 560  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 561  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 562  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 563  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 564  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 565  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 566  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 567  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 568  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 569  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 570  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 571  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 572  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 573  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 574  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 575  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 576  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 577  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 578  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 579  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 580  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 581  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 582  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 583  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 584  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 585  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 586  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 587  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 588  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 589  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 590  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 591  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 592  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 593  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 594  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 595  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 596  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 597  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 598  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 599  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 600  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 601  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 602  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 603  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 604  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 605  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 606  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 607  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 608  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 609  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 610  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 611  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 612  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 613  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 614  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 615  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 616  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 617  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 618  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 619  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 620  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 621  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 622  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 623  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 624  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 625  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 626  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 627  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 628  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 629  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 630  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 631  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 632  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 633  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 634  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 635  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 636  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 637  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 638  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 639  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 640  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 641  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 642  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 643  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 644  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 645  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 646  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 647  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 648  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 649  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 650  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 651  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 652  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 653  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 654  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 655  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 656  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 657  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 658  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 659  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 660  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 661  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 662  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 663  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 664  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 665  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 666  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 667  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 668  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 669  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 670  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 671  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 672  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 673  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 674  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 675  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 676  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 677  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 678  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 679  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 680  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 681  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 682  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 683  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 684  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 685  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 686  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 687  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 688  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 689  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 690  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 691  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 692  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 693  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 694  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 695  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 696  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 697  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 698  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 699  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 700  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 701  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 702  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 703  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 704  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 705  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 706  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 707  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 708  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 709  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 710  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 711  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 712  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 713  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 714  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 715  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 716  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 717  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 718  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 719  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 720  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 721  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 722  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 723  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 724  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 725  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 726  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 727  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 728  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 729  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 730  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 731  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 732  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 733  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 734  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 735  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 736  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 737  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 738  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 739  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 740  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 741  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 742  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 743  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 744  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 745  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 746  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 747  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 748  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 749  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 750  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 751  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 752  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 753  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 754  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 755  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 756  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 757  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 758  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 759  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 760  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 761  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 762  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 763  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 764  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 765  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 766  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 767  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 768  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 769  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 770  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 771  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 772  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 773  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 774  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 775  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 776  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 777  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 778  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 779  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 780  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 781  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 782  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 783  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 784  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 785  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 786  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 787  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 788  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 789  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 790  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 791  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 792  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 793  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 794  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 795  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 796  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 797  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 798  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 799  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 800  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 801  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 802  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 803  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 804  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 805  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 806  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 807  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 808  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 809  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 810  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 811  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 812  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 813  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 814  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 815  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 816  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 817  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 818  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 819  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 820  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 821  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 822  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 823  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 824  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 825  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 826  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 827  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 828  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 829  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 830  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 831  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 832  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 833  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 834  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 835  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 836  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 837  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 838  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 839  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 840  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 841  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 842  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 843  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 844  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 845  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 846  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 847  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 848  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 849  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 850  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 851  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 852  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 853  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 854  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 855  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 856  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 857  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 858  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 859  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 860  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 861  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 862  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 863  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 864  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 865  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 866  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 867  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 868  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 869  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 870  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 871  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 872  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 873  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 874  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 875  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 876  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 877  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 878  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 879  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 880  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 881  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 882  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 883  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 884  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 885  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 886  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 887  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 888  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 889  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 890  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 891  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 892  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 893  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 894  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 895  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 896  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 897  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 898  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 899  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 900  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 901  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 902  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 903  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 904  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 905  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 906  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 907  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 908  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 909  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 910  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 911  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 912  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 913  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 914  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 915  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 916  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 917  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 918  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 919  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 920  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 921  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 922  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 923  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 924  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 925  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 926  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 927  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 928  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 929  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 930  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 931  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 932  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 933  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 934  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 935  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 936  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 937  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 938  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 939  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 940  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 941  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 942  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 943  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 944  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 945  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 946  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 947  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 948  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 949  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 950  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 951  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 952  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 953  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 954  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 955  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 956  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 957  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 958  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 959  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 960  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 961  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 962  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 963  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 964  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 965  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 966  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 967  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 968  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 969  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 970  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 971  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 972  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 973  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 974  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 975  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 976  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 977  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 978  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 979  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 980  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 981  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 982  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 983  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 984  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 985  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 986  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 987  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 988  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 989  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 990  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 991  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 992  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 993  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 994  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 995  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 996  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 997  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 998  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 999  0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
## 1000 0.00000000 0.000000000 0.000000000 0.000000000 0.000000000
library(reshape2)
## 
## Attaching package: 'reshape2'
## The following objects are masked from 'package:data.table':
## 
##     dcast, melt
## The following object is masked from 'package:tidyr':
## 
##     smiths
library(ggvis)
## 
## Attaching package: 'ggvis'
## The following objects are masked from 'package:scales':
## 
##     fullseq, zero_range
## The following object is masked from 'package:ggplot2':
## 
##     resolution
df1 <- melt(all_months, "article_id")
df1$variable <- as.integer(df1$variable)

ggplot(data = df1, aes(x=variable, y = value, colour = article_id)) + geom_line(aes(group = article_id)) + scale_y_continuous(labels = scales::percent) + geom_point()

ggsave('img-older/article-revisions-by-month-since-creation-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

Note* we now have 0 in for articles that couldn’t have existed that long. So we need to trim the end off. And we need to recalculate percents to be windows of 5 years. So percent of the revisions that occur in the first five years.

filtered_revisions_counts <- collapsed
arrange(filtered_revisions_counts, article_id)
## # A tibble: 27,909 x 3
## # Groups:   article_id [1,000]
##    article_id date    count
##         <int> <chr>   <int>
##  1        670 2001-11     1
##  2        670 2001-12    21
##  3        670 2002-02     3
##  4        670 2002-03     2
##  5        670 2002-04     3
##  6        670 2002-05     5
##  7        670 2002-06     3
##  8        670 2002-08     2
##  9        670 2002-09     1
## 10        670 2002-10     2
## # ... with 27,899 more rows
ggplot(data = filtered_revisions_counts, aes(x=as.yearmon(date), y = count, colour = article_id)) + geom_line(aes(group = article_id)) + geom_vline(xintercept = as.yearmon("2003-01"), colour = "red") + scale_color_gradient2(midpoint = 7000000)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggsave('img-older/article-revisions-filtered-5years-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

Okay. Now we want need to convert date to months since creations (so we can cap off the first 5 years). Convert records to time since first revision

aligned_revisions_counts <- filtered_revisions_counts
aligned_revisions_counts$first <- t.first$date[match(aligned_revisions_counts$article_id, t.first$article_id)]
aligned_revisions_counts$time.since.creation <- round((as.yearmon(aligned_revisions_counts$date) - as.yearmon(aligned_revisions_counts$first))*12)

library(scales)
ggplot(data = aligned_revisions_counts, aes(x=time.since.creation/12, y = count, colour = article_id)) + geom_line(aes(group = article_id)) + geom_point() + xlab("Years since First Revision")

ggsave('img-older/article-revisions-by-month-since-first-revision-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

This is really interesting that smaller article_ids (older articles?) were heavily edited around 4-6 years after first creation. Okay now we need to convert to wide format. Age/article_id aside, there appears to be an upward trend in the number of revisions/month with article age.

library(data.table)
aligned.drop.first <- subset(aligned_revisions_counts, select = -c(date,first))
all_months_counts1 <- as.data.frame(dcast(setDT(aligned.drop.first), article_id ~ time.since.creation, value.var='count'))
all_months_counts1[is.na(all_months_counts1)] <- 0

all_months_counts <- as.data.frame(dcast(setDT(aligned.drop.first), article_id ~ time.since.creation, value.var='count'))
all_months_counts[is.na(all_months_counts)] <- 0
all_months_counts$first <- aligned_revisions_counts$first[match(all_months_counts$article_id, aligned_revisions_counts$article_id)]
# reorganize columns
all_months_counts <- all_months_counts %>%
  select(article_id, first, everything())
library(reshape2)
library(ggvis)

# if having issues in future, I adjusted what df1_counts looks like. used to be made with counts not counts1
df1_counts <- reshape2::melt(all_months_counts1, "article_id")
df1_counts$variable <- as.integer(df1_counts$variable)

ggplot(data = df1_counts, aes(x=variable, y = value, colour = article_id)) + geom_line(aes(group = article_id))

ggsave('img-older/article-revisions-by-month-melt-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

Okay. So since the cut-off date was 2003-01, then the maximum amount of time for revisions is 5 years. Thus we should cut off all the data after 60 months since first revision. Then convert the values to percentages of all revisions.

data_5yrs <- all_months_counts[,0:63]
data_5yrs_norm <- data_5yrs
data_5yrs_norm$totalrevisions <- rowSums(data_5yrs[,3:63])
data_5yrs_norm[,3:63] <- data_5yrs[,3:63]/data_5yrs_norm$totalrevisions
df1_5yrs <- melt(data_5yrs_norm, c("article_id", "first", "totalrevisions"))
df1_5yrs$variable <- as.integer(df1_5yrs$variable)

ggplot(data = df1_5yrs, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=totalrevisions), size = 0.4) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision")

ggsave('img-older/article-revisions-60months-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

color by first revision date.

ggplot(data = df1_5yrs, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=first), size = 0.4) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision")

ggsave('img-older/color-by-first-revision-date-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

Clearly, we need to bin the first creation maybe into quarters?

data_5yrs_norm$quarter <- lubridate::quarter(as.yearmon(data_5yrs_norm$first), with_year=TRUE)

df1_5yrs <- melt(data_5yrs_norm, c("article_id", "totalrevisions", "quarter", "first"))
df1_5yrs$variable <- as.integer(df1_5yrs$variable)
df1_5yrs$quarter <- as.factor(df1_5yrs$quarter)

colorsusedquarters <- scales::hue_pal(direction = -1)(length(levels(df1_5yrs$quarter)))
names(colorsusedquarters) <- levels(df1_5yrs$quarter)
group.colors <- c("2001.1" = colorsusedquarters[1], "2001.2" = colorsusedquarters[2], "2001.3" = colorsusedquarters[3], "2001.4" = colorsusedquarters[4], "2002.1" = colorsusedquarters[5],
                  "2001.2" = colorsusedquarters[6], "2001.3" = colorsusedquarters[7], "2001.4" = colorsusedquarters[8])

ggplot(data = df1_5yrs, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=as.factor(quarter), alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_color_hue(direction = -1) + facet_grid(~as.factor(quarter)) +  theme(legend.position="none")

ggsave('img-older/article-revisions-60months-facet-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)
# USE THIS
percent.revision.since.created <- ggplot(data = df1_5yrs, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.6), size = 0.2) + scale_y_continuous(labels = scales::percent) + 
  ylab("Percent of Article Revisions") + 
  xlab("Months since First Revision") + 
  scale_color_hue(direction = -1) + 
  scale_colour_manual(name = "Quarter", values = colorsusedquarters) + 
  labs(title = "Percent of Articles by Month Since Created", color = "Fiscal Quarter of First Revision") + 
  scale_alpha(guide = 'none')+
  theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))
## Scale for 'colour' is already present. Adding another scale for
## 'colour', which will replace the existing scale.
percent.revision.since.created

ggsave("img/percent-revision-since-created.png", percent.revision.since.created,width = 10, height = 6)

# USE THIS
percent.revision.since.created.no.200204 <- ggplot(data = df1_5yrs[which(df1_5yrs$quarter != "2002.4"),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.6), size = 0.2) + scale_y_continuous(labels = scales::percent) + 
  ylab("Percent of Article Revisions") + 
  xlab("Months since First Revision") + 
  scale_colour_manual(name = "Quarter", values = colorsusedquarters) + 
  labs(title = "Percent of Articles by Month Since Created (Without 2002.4)", color = "Fiscal Quarter of First Revision") + 
  scale_alpha(guide = 'none')+
  theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))

percent.revision.since.created.no.200204

ggsave("img/percent-revision-since-created-no-200204.png", percent.revision.since.created.no.200204,width = 10, height = 6)
ggplot(data = df1_5yrs[which(!df1_5yrs$quarter %in% c("2002.4","2002.3")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

ggsave('img-older/article-revisions-quarters1-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

ggplot(data = df1_5yrs[which(!df1_5yrs$quarter %in% c("2002.4","2002.3", "2002.2")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

ggsave('img-older/article-revisions-quarters2-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)



ggplot(data = df1_5yrs[which(!df1_5yrs$quarter %in% c("2002.4","2002.3", "2002.2", "2002.1")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

ggsave('img-older/article-revisions-quarters3-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)


ggplot(data = df1_5yrs[which(!df1_5yrs$quarter %in% c("2002.4","2002.3", "2002.2", "2002.1", "2001.4")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

ggsave('img-older/article-revisions-quarters4-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)


ggplot(data = df1_5yrs[which(!df1_5yrs$quarter %in% c("2002.4","2002.3", "2002.2", "2002.1", "2001.4", "2001.3")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

ggsave('img-older/article-revisions-quarters5-sample2.png', 
       plot = last_plot(),
       width = 10,
       height = 6)

Let’s explore articles from the last quarter

ggplot(data = df1_5yrs[which(df1_5yrs$quarter == "2002.4"),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=quarter, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + scale_colour_manual(name = "quarter", values = colorsusedquarters) + labs(color = "Fiscal Quarter of First Revision") + scale_alpha(guide = 'none')

# USE THIS
percent.revision.since.created.last.quarter <- ggplot(data = df1_5yrs[which(df1_5yrs$quarter == "2002.4"),], aes(x=variable, y = value)) + 
  geom_line(aes(group = article_id, color=first, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + 
  ylab("Percent of Article Revisions") + 
  xlab("Months since First Revision") + 
  labs(title = "Percent of Articles by Month Since Created (Last Quarter)", color = "Quarter") + 
  theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))

percent.revision.since.created.last.quarter

ggsave("img/percent-revision-since-created-last-quarter.png", percent.revision.since.created.last.quarter,width = 10, height = 6)



ggplot(data = df1_5yrs[which(df1_5yrs$first %in% c("2002-09", "2002-10", "2002-11", "2002-12")),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=first, alpha = 0.2), size = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + labs(color = "Month of First Revision") + scale_alpha(guide = 'none') + facet_grid(~as.factor(first))

I want to know how many articles are produced per month, and per quarter

article_count_by_month <- df1_5yrs %>%
  group_by(first) %>%
  summarise(count = n())

ggplot(data = article_count_by_month, aes(x=as.yearmon(first), y = count)) + geom_line(size = 0.5) + ylab("Number of Articles First Revised") + xlab("Date of First Revision") + scale_x_yearmon(format = "%b %Y", n=24, labels = function(x) lapply(strwrap(x, width = 5, simplify = FALSE), paste, collapse="\n")) 

# USE THIS but fix x-axis
first.article.revisions.by.year.month <- ggplot(data = article_count_by_month, aes(x=as.integer(format(as.yearmon(first), "%m")), y = count)) + 
  geom_line(size = 0.5) + 
  ylab("Number of Articles First Revised") + 
  xlab("Date of First Revision") + 
  facet_grid(. ~ format(as.yearmon(first), "%Y")) + 
  scale_x_discrete(breaks=c(1:12))+
  labs(title = "Number of First Article Revisions by Month", color = "Quarter") + 
  theme(plot.title = element_text(size = rel(1.3)), axis.ticks.length = unit(.25, "cm"))

first.article.revisions.by.year.month

ggsave("img/first-article-revisions-by-year-month.png", first.article.revisions.by.year.month,width = 10, height = 6)



article_count_by_quarter <- df1_5yrs %>%
  group_by(quarter) %>%
  dplyr::summarise(count = n())


ggplot(data = article_count_by_quarter, aes(x=quarter, y = count)) + geom_point(size = 0.5) + ylab("Number of Articles First Revised") + xlab("Quarter of First Revision")

Coloring by number of revisions

I want to discretize the number of total revisions

data_5yrs_norm$bins <- cut(data_5yrs_norm$totalrevisions, breaks=c(0,2,10,25,100, 500, 20000), labels=c("1-2", "3-10", "10-25", "25-100", "100-500", "500-"))

df1_5yrs <- melt(data_5yrs_norm, c("article_id", "totalrevisions", "bins", "quarter", "first"))
df1_5yrs$variable <- as.integer(df1_5yrs$variable)

# USE THIS

ggplot(data = df1_5yrs, aes(x=variable, y = value)) + 
  geom_line(aes(group = article_id, 
                color=bins, 
                alpha = 0.2), 
            size = 0.5) + 
  scale_y_continuous(labels = scales::percent) + 
  ylab("Percent of Article Revisions") + 
  xlab("Months Since First Revision") + 
  scale_color_hue(direction = -1) + 
  facet_grid(~bins) +  
  theme(legend.position="none") + 
  scale_alpha(guide = 'none') + 
  ggtitle("Articles By Total Revisions")

ggsave("img/articles-by-total-revisions-facet.png", 
       plot = last_plot(),
       width = 10,
       height = 6)
ggplot(data = df1_5yrs, aes(x=variable, y = value)) + 
  geom_line(aes(group = article_id, color=bins, alpha = 0.8), size = 0.8) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + 
  xlab("Months since First Revision") + scale_color_hue(direction = -1) + labs(color = "Total Article Revisions") 

# + scale_alpha(guide = "none")
# USE THIS
ggplot(data = df1_5yrs, aes(x=variable, y = value)) + 
  geom_line(aes(group = article_id, 
                color=bins, 
                alpha = 0.2), 
            size = 0.2) + 
  scale_y_continuous(labels = scales::percent) + 
  ylab("Percent of Article Revisions") + 
  xlab("Months Since First Revision") + 
  scale_color_hue(direction = -1) + 
  labs(color = "Total Article Revisions") +
  scale_alpha(guide = 'none') +
  ggtitle("Total Article Revisions Normalized by First Revision Date")

ggsave("img/articles-by-total-revisions-normalized-by-first-revision.png", 
       plot = last_plot(),
       width = 10,
       height = 6)
factorlevels <- levels(df1_5yrs$bins)
colorsused <- scales::hue_pal(direction = -1)(length(factorlevels))
counter <- 1
for (f in factorlevels){
  print(ggplot(data = df1_5yrs[df1_5yrs$bins == f,], aes(x=variable, y = value)) + geom_line(aes(group = article_id), color=colorsused[counter], size = 0.6, alpha = 0.5) + scale_y_continuous(labels = scales::percent, limits = c(0,1)) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + facet_grid(~bins) + theme(legend.position="none") )
  print(ggplot(data = df1_5yrs[df1_5yrs$bins == f,], aes(x=variable, y = value)) + geom_line(aes(group = article_id), color=colorsused[counter], size = 0.6, alpha = 0.5) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision") + facet_grid(~bins) + theme(legend.position="none") )
  counter <- counter +1
}

Articles with few revisions tend to be revised close to their creation, and articles that are heavily revised have most of their revisions further away from their creation date. Strong peak around 26 months for 10-25 revisions and can still see it for articles with 25-100 revisions.

articles.10.2002 <- aligned_revisions[which(first == "2002-10")] 
articleids.10.2002 <- unique(articles.10.2002$article_id)

# USE THIS - screenshot
(article.names.10.2002 <- unique(revisions_processed$article_title[which(revisions_processed$article_id %in% articleids.10.2002)]))
##   [1] "Parvati"                                           
##   [2] "System-on-a-chip"                                  
##   [3] "People_in_systems_and_control"                     
##   [4] "Full-spectrum_dominance"                           
##   [5] "Jethro_Tull_(agriculturist)"                       
##   [6] "Bongil_Bongil_National_Park"                       
##   [7] "Bouddi_National_Park"                              
##   [8] "Cottan-Bimbang_National_Park"                      
##   [9] "Fortis_Creek_National_Park"                        
##  [10] "Mount_Nothofagus_National_Park"                    
##  [11] "New_England_National_Park"                         
##  [12] "Douglas_Apsley_National_Park"                      
##  [13] "Bound_for_Glory_(film)"                            
##  [14] "De\\u015fteapt\\u0103-te,_rom\\u00e2ne!"           
##  [15] "Peak_Charles_National_Park"                        
##  [16] "Wilhelmina_of_the_Netherlands"                     
##  [17] "Board_of_Longitude"                                
##  [18] "Chattanooga,_Tennessee"                            
##  [19] "Bure_Valley_Railway"                               
##  [20] "Scouting_in_Hawaii"                                
##  [21] "Scouting_in_Tennessee"                             
##  [22] "Palmerston_Rocks_National_Park"                    
##  [23] "Paul_Morrissey"                                    
##  [24] "List_of_historians"                                
##  [25] "Fulton,_Alabama"                                   
##  [26] "Rockford,_Alabama"                                 
##  [27] "Level_Plains,_Alabama"                             
##  [28] "Pine_Ridge,_Alabama"                               
##  [29] "Attalla,_Alabama"                                  
##  [30] "Gules"                                             
##  [31] "Nightmute,_Alaska"                                 
##  [32] "Tatitlek,_Alaska"                                  
##  [33] "Summit,_Arizona"                                   
##  [34] "Bentonville,_Arkansas"                             
##  [35] "Kibler,_Arkansas"                                  
##  [36] "Bodcaw,_Arkansas"                                  
##  [37] "Clearlake_Oaks,_California"                        
##  [38] "Hidden_Valley_Lake,_California"                    
##  [39] "Mill_Valley,_California"                           
##  [40] "Storrie,_California"                               
##  [41] "Cathedral_City,_California"                        
##  [42] "Lakeview,_California"                              
##  [43] "Farmington,_California"                            
##  [44] "Corralitos,_California"                            
##  [45] "Woodland,_California"                              
##  [46] "Alamosa_East,_Colorado"                            
##  [47] "Marble,_Colorado"                                  
##  [48] "Viola,_Delaware"                                   
##  [49] "Matlacha_Isles-Matlacha_Shores,_Florida"           
##  [50] "St._James_City,_Florida"                           
##  [51] "Sweetwater,_Florida"                               
##  [52] "Key_Colony_Beach,_Florida"                         
##  [53] "Inwood,_Florida"                                   
##  [54] "Crescent_Beach,_Florida"                           
##  [55] "Live_Oak,_Florida"                                 
##  [56] "Sopchoppy,_Florida"                                
##  [57] "Conley,_Georgia"                                   
##  [58] "Newnan,_Georgia"                                   
##  [59] "McCaysville,_Georgia"                              
##  [60] "Sugar_Hill,_Georgia"                               
##  [61] "Sycamore,_Georgia"                                 
##  [62] "Driggs,_Idaho"                                     
##  [63] "Ashland,_Illinois"                                 
##  [64] "Harvey,_Illinois"                                  
##  [65] "Indian_Head_Park,_Illinois"                        
##  [66] "Palos_Park,_Illinois"                              
##  [67] "Pyroxene"                                          
##  [68] "Lomax,_Illinois"                                   
##  [69] "St._Anne,_Illinois"                                
##  [70] "Cedar_Point,_Illinois"                             
##  [71] "Dana,_Illinois"                                    
##  [72] "Irving,_Illinois"                                  
##  [73] "Dalton_City,_Illinois"                             
##  [74] "Pleasant_Hill,_Illinois"                           
##  [75] "Buffalo,_Illinois"                                 
##  [76] "Flora,_Indiana"                                    
##  [77] "Patoka,_Indiana"                                   
##  [78] "Jonesboro,_Indiana"                                
##  [79] "Hobart,_Indiana"                                   
##  [80] "Stinesville,_Indiana"                              
##  [81] "Valparaiso,_Indiana"                               
##  [82] "Sharpsville,_Indiana"                              
##  [83] "Campbellsburg,_Indiana"                            
##  [84] "St._Olaf,_Iowa"                                    
##  [85] "Pontius_Pilate"                                    
##  [86] "Djoser"                                            
##  [87] "Monarch_of_China"                                  
##  [88] "The_Hitch-Hiker_(The_Twilight_Zone)"               
##  [89] "This_Broken_Heart"                                 
##  [90] "Maquoketa,_Iowa"                                   
##  [91] "Robins,_Iowa"                                      
##  [92] "Earlham,_Iowa"                                     
##  [93] "Delphos,_Iowa"                                     
##  [94] "Panama,_Iowa"                                      
##  [95] "Rose_Hill,_Kansas"                                 
##  [96] "Protection,_Kansas"                                
##  [97] "Longton,_Kansas"                                   
##  [98] "Scranton,_Kansas"                                  
##  [99] "Chase,_Kansas"                                     
## [100] "Burlington,_Kentucky"                              
## [101] "Ewing,_Kentucky"                                   
## [102] "Supreme,_Louisiana"                                
## [103] "Maringouin,_Louisiana"                             
## [104] "Fenton,_Louisiana"                                 
## [105] "Violet,_Louisiana"                                 
## [106] "Morgan_City,_Louisiana"                            
## [107] "Nashville_Plantation,_Maine"                       
## [108] "Orient,_Maine"                                     
## [109] "Raymond,_Maine"                                    
## [110] "Rockport,_Maine"                                   
## [111] "Sebec,_Maine"                                      
## [112] "The_Forks,_Maine"                                  
## [113] "Belmont,_Maine"                                    
## [114] "Roque_Bluffs,_Maine"                               
## [115] "Maryland_City,_Maryland"                           
## [116] "Kingsville,_Maryland"                              
## [117] "Middle_River,_Maryland"                            
## [118] "Braddock_Heights,_Maryland"                        
## [119] "Havre_de_Grace,_Maryland"                          
## [120] "Darnestown,_Maryland"                              
## [121] "Camp_Springs,_Maryland"                            
## [122] "Forest_Heights,_Maryland"                          
## [123] "Monomoscoy_Island,_Massachusetts"                  
## [124] "Spurr_Township,_Michigan"                          
## [125] "Portsmouth_Township,_Michigan"                     
## [126] "Matteson_Township,_Michigan"                       
## [127] "Holt,_Michigan"                                    
## [128] "Burleigh_Township,_Michigan"                       
## [129] "Eden_Township,_Lake,_Michigan"                     
## [130] "Hadley_Township,_Michigan"                         
## [131] "Onsted,_Michigan"                                  
## [132] "Genoa_Township,_Michigan"                          
## [133] "Macomb_Township,_Michigan"                         
## [134] "Stephenson_Township,_Michigan"                     
## [135] "Kollumerland_c.a."                                 
## [136] "Wymbritseradiel"                                   
## [137] "De_Ronde_Venen"                                    
## [138] "Halderberge"                                       
## [139] "Steenbergen"                                       
## [140] "Woensdrecht"                                       
## [141] "Troy,_Michigan"                                    
## [142] "Mio,_Michigan"                                     
## [143] "St._Clair_Township,_Michigan"                      
## [144] "Vassar,_Michigan"                                  
## [145] "York_Charter_Township,_Michigan"                   
## [146] "Clark_Township,_Aitkin_County,_Minnesota"          
## [147] "McGrath,_Minnesota"                                
## [148] "Spalding_Township,_Minnesota"                      
## [149] "Callaway,_Minnesota"                               
## [150] "Pleasant_Mound_Township,_Minnesota"                
## [151] "Mandt_Township,_Minnesota"                         
## [152] "Gonvick,_Minnesota"                                
## [153] "Alvwood_Township,_Minnesota"                       
## [154] "Zemple,_Minnesota"                                 
## [155] "Dovre_Township,_Minnesota"                         
## [156] "Pelan_Township,_Minnesota"                         
## [157] "Shelburne_Township,_Minnesota"                     
## [158] "Beaulieu_Township,_Minnesota"                      
## [159] "Kingston,_Minnesota"                               
## [160] "Sassenheim"                                        
## [161] "Wateringen"                                        
## [162] "Sullivan_Township,_Minnesota"                      
## [163] "Rolling_Forks_Township,_Minnesota"                 
## [164] "Gem_Lake,_Minnesota"                               
## [165] "Becker,_Minnesota"                                 
## [166] "Fairbanks_Township,_Minnesota"                     
## [167] "Reynolds_Township,_Minnesota"                      
## [168] "Zumbro_Township,_Minnesota"                        
## [169] "Minnesota_Falls_Township,_Minnesota"               
## [170] "Petal,_Mississippi"                                
## [171] "Morton,_Mississippi"                               
## [172] "Mize,_Mississippi"                                 
## [173] "Waynesboro,_Mississippi"                           
## [174] "Seligman,_Missouri"                                
## [175] "Freeman,_Missouri"                                 
## [176] "Farley,_Missouri"                                  
## [177] "Leadwood,_Missouri"                                
## [178] "Pasadena_Hills,_Missouri"                          
## [179] "Frenchtown,_Montana"                               
## [180] "Stevensville,_Montana"                             
## [181] "Lame_Deer,_Montana"                                
## [182] "Cortland,_Nebraska"                                
## [183] "Cairo,_Nebraska"                                   
## [184] "Steele_City,_Nebraska"                             
## [185] "Burchard,_Nebraska"                                
## [186] "Carleton,_Nebraska"                                
## [187] "Indianola,_Mississippi"                            
## [188] "Raymondville,_Missouri"                            
## [189] "Lee,_New_Hampshire"                                
## [190] "Bergenfield,_New_Jersey"                           
## [191] "Bogota,_New_Jersey"                                
## [192] "River_Edge,_New_Jersey"                            
## [193] "Wildwood_Crest,_New_Jersey"                        
## [194] "Millville,_New_Jersey"                             
## [195] "Thoreau,_New_Mexico"                               
## [196] "Williamsburg,_New_Mexico"                          
## [197] "Manzano,_New_Mexico"                               
## [198] "Guilderland,_New_York"                             
## [199] "Billington_Heights,_New_York"                      
## [200] "Willsboro,_New_York"                               
## [201] "Franklin,_Franklin_County,_New_York"               
## [202] "Poland,_Herkimer_County,_New_York"                 
## [203] "Barisan_Nasional"                                  
## [204] "Merrick,_New_York"                                 
## [205] "East_Nassau,_New_York"                             
## [206] "West_Sand_Lake,_New_York"                          
## [207] "Pitcairn,_New_York"                                
## [208] "Coram,_New_York"                                   
## [209] "Eastport,_New_York"                                
## [210] "Huntington_Station,_New_York"                      
## [211] "Village_of_the_Branch,_New_York"                   
## [212] "Trumansburg,_New_York"                             
## [213] "Napanoch,_New_York"                                
## [214] "Whiteville,_North_Carolina"                        
## [215] "Stanley,_North_Carolina"                           
## [216] "Prospect,_North_Carolina"                          
## [217] "Gibson,_North_Carolina"                            
## [218] "Regan,_North_Dakota"                               
## [219] "Finley,_North_Dakota"                              
## [220] "Tioga,_North_Dakota"                               
## [221] "St._Clairsville,_Ohio"                             
## [222] "Bridgetown_North,_Ohio"                            
## [223] "Grandview,_Ohio"                                   
## [224] "Mowrystown,_Ohio"                                  
## [225] "Hanging_Rock,_Ohio"                                
## [226] "Port_Clinton,_Ohio"                                
## [227] "Churchill,_Ohio"                                   
## [228] "Lone_Grove,_Oklahoma"                              
## [229] "Hillsdale,_Oklahoma"                               
## [230] "Kingfisher,_Oklahoma"                              
## [231] "Fallis,_Oklahoma"                                  
## [232] "Simms,_Oklahoma"                                   
## [233] "Corn,_Oklahoma"                                    
## [234] "H\\u00f6rby_Municipality"                          
## [235] "Vellinge_Municipality"                             
## [236] "Falls_City,_Oregon"                                
## [237] "North_Versailles_Township,_Pennsylvania"           
## [238] "Spring_Ridge,_Pennsylvania"                        
## [239] "Wyalusing_Township,_Pennsylvania"                  
## [240] "Chalfont,_Pennsylvania"                            
## [241] "Chicora,_Pennsylvania"                             
## [242] "Carrolltown,_Pennsylvania"                         
## [243] "Parryville,_Pennsylvania"                          
## [244] "Blooming_Valley,_Pennsylvania"                     
## [245] "Pymatuning_Central,_Pennsylvania"                  
## [246] "Londonderry_Township,_Dauphin_County,_Pennsylvania"
## [247] "Gossamer_Albatross"                                
## [248] "Hickory_Township,_Forest_County,_Pennsylvania"     
## [249] "Oliver_Township,_Jefferson_County,_Pennsylvania"   
## [250] "Ashley,_Pennsylvania"                              
## [251] "Anthony_Township,_Lycoming_County,_Pennsylvania"   
## [252] "Mill_Creek_Township,_Lycoming_County,_Pennsylvania"
## [253] "Sandy_Lake_Township,_Pennsylvania"                 
## [254] "West_Norriton,_Pennsylvania"                       
## [255] "Zerbe_Township,_Pennsylvania"                      
## [256] "Brooklyn_Township,_Pennsylvania"                   
## [257] "Elco,_Pennsylvania"                                
## [258] "Washington,_Pennsylvania"                          
## [259] "Manor,_Pennsylvania"                               
## [260] "West_Leechburg,_Pennsylvania"                      
## [261] "Jefferson,_York_County,_Pennsylvania"              
## [262] "Winterstown,_Pennsylvania"                         
## [263] "Manning,_South_Carolina"                           
## [264] "Williams,_South_Carolina"                          
## [265] "Darlington,_South_Carolina"                        
## [266] "Tulare,_South_Dakota"                              
## [267] "Gates,_Tennessee"                                  
## [268] "Baxter,_Tennessee"                                 
## [269] "South_Carthage,_Tennessee"                         
## [270] "Encino,_Texas"                                     
## [271] "Bangs,_Texas"                                      
## [272] "Solis,_Texas"                                      
## [273] "Freer,_Texas"                                      
## [274] "Thompsons,_Texas"                                  
## [275] "Havana,_Texas"                                     
## [276] "Bryson,_Texas"                                     
## [277] "Alfred-South_La_Paloma,_Texas"                     
## [278] "Strawn,_Texas"                                     
## [279] "Rockwall,_Texas"                                   
## [280] "Buffalo_Gap,_Texas"                                
## [281] "Throckmorton,_Texas"                               
## [282] "Laughlin_AFB,_Texas"                               
## [283] "Washington,_Utah"                                  
## [284] "North_Bennington,_Vermont"                         
## [285] "Grafton,_Vermont"                                  
## [286] "Hybla_Valley,_Virginia"                            
## [287] "Smithfield,_Virginia"                              
## [288] "Merrimac,_Virginia"                                
## [289] "Fairlawn,_Pulaski_County,_Virginia"                
## [290] "West_Side_Highway,_Washington"                     
## [291] "Mister_Rogers'_Neighborhood"                       
## [292] "Arlington,_Washington"                             
## [293] "Fayetteville,_West_Virginia"                       
## [294] "Bruceton_Mills,_West_Virginia"                     
## [295] "Pittsfield,_Wisconsin"                             
## [296] "Granton,_Wisconsin"                                
## [297] "Peru,_Wisconsin"                                   
## [298] "Sheridan,_Wisconsin"                               
## [299] "Lancaster,_Wisconsin"                              
## [300] "Exeter,_Wisconsin"                                 
## [301] "Greendale,_Wisconsin"                              
## [302] "La_Grange,_Monroe_County,_Wisconsin"               
## [303] "Ogema,_Wisconsin"                                  
## [304] "Sturtevant,_Wisconsin"                             
## [305] "Dellona,_Wisconsin"                                
## [306] "Mukwa,_Wisconsin"                                  
## [307] "Smoot,_Wyoming"                                    
## [308] "Superior,_Wyoming"                                 
## [309] "Alta,_Wyoming"                                     
## [310] "Castle_Hill,_Australia"                            
## [311] "Twickenham_Film_Studios"                           
## [312] "Tivoli_Gardens"                                    
## [313] "Gold_rush"                                         
## [314] "Unseen_character"                                  
## [315] "Middletown,_New_York"                              
## [316] "Cooper_Township,_Pennsylvania"                     
## [317] "Forks_Township,_Pennsylvania"                      
## [318] "Green_Township,_Pennsylvania"                      
## [319] "Harmony_Township,_Pennsylvania"                    
## [320] "Southampton_Township,_Pennsylvania"                
## [321] "Marshfield,_Wisconsin"                             
## [322] "Nicephorus_Gregoras"                               
## [323] "As_Good_as_It_Gets"                                
## [324] "John_Xiphilinus"                                   
## [325] "Sandusky,_Ohio"                                    
## [326] "Dallas_County,_Arkansas"                           
## [327] "Vernon_Parish,_Louisiana"                          
## [328] "Lansquenet"                                        
## [329] "Arsnuphis"                                         
## [330] "Windom"                                            
## [331] "Syngman_Rhee"                                      
## [332] "Georg_Ernst_Stahl"                                 
## [333] "Alternating_hemiplegia"                            
## [334] "Seymour"                                           
## [335] "Marutgana"                                         
## [336] "Whitsunday"                                        
## [337] "Late_Show_with_David_Letterman"
# Lydia's google searching identifies Rambot, created by RamMan
collapsed.by.day <- revisions_processed[which(revisions_processed$article_id %in% articleids.10.2002),] %>%
  mutate(date = as.Date(date)) %>% 
  group_by(date) %>%
  dplyr::summarise(count = n(), unique.articles = length(unique(article_id)))
arrange(collapsed.by.day, desc(count))
library(zoo)


molten.collapsed.by.day <- melt(collapsed.by.day, 
                     variable.name = "type",
                     value.names = "value",
                     id.vars = c("date"))


# USE THIS  
ggplot(data = molten.collapsed.by.day,
       aes(x=date, y=value, colour = type)) +
  geom_line()+
  labs(title = 'Behavior of Articles First Revised in October 2002',
       colour= 'Article Type') +
   xlab("Days") +
   ylab("Number of Revisions") +
  scale_color_manual(labels = c("Article Revisions", "Unique Article Revisions"), values = c("blue", "lightblue"))

ggsave("img/articles-first-revised-in-oct-2002.png", 
       plot = last_plot(),
       width = 10,
       height = 6)

# Add Lydia's discovery of KevinBot

These are articles that were first revised in October of 2002. Blue is the number of article revisions by day (each point is a single day). We see there are many revisions shortly after, and then again around 2 years later. There are 337 articles in this dataset that were first revised in Oct of 2002. The black is the number of unique articles revised. When black is as high as blue, the revisions for that date are all on unique articles. When black is lower than blue, there were multiple revisions on single articles for that date. So ~105 of the 337 article first revised on Oct 2002 were also edited around a single time ~ 2 yrs later.

arrange(collapsed.by.day, desc(count))
## # A tibble: 1,668 x 3
##    date       count unique.articles
##    <date>     <int>           <int>
##  1 2007-10-11   118              70
##  2 2004-11-11   108             106
##  3 2007-10-13   106              93
##  4 2007-04-14    85              15
##  5 2002-12-15    84              83
##  6 2004-11-12    83              78
##  7 2006-12-02    83              12
##  8 2007-10-12    79              76
##  9 2007-12-18    78              57
## 10 2007-10-10    77              60
## # ... with 1,658 more rows
authors.question <- revisions_processed[which(revisions_processed$article_id %in% articleids.10.2002),] %>%
  group_by(article_id) %>%
  dplyr::summarise(count = n(), unique.articles = length(unique(article_id)), proportion = count/unique.articles)

arrange(authors.question, desc(count))
## # A tibble: 337 x 4
##    article_id count unique.articles proportion
##         <int> <int>           <int>      <dbl>
##  1   14099209  2312               1      2312.
##  2     102797  1265               1      1265.
##  3      99955  1104               1      1104.
##  4     137896  1104               1      1104.
##  5     140672  1064               1      1064.
##  6     104202   973               1       973.
##  7     113070   784               1       784.
##  8     118798   489               1       489.
##  9      98543   436               1       436.
## 10     102298   400               1       400.
## # ... with 327 more rows

categories

categories <- do.call(rbind,strsplit(readLines("1000categories.txt"), "\x1e"))
categories <- as.data.frame(categories)
names(categories) <- c("article_id", "category")
cat.unique.counts <- categories %>%
  group_by(category) %>%
  summarize(count = n())
arrange(cat.unique.counts, desc(count))
## # A tibble: 5,059 x 2
##    category                        count
##    <fct>                           <int>
##  1 Disambiguation pages               34
##  2 Living people                      21
##  3 Place name disambiguation pages    15
##  4 Townships in Minnesota             15
##  5 American films                     10
##  6 English-language films             10
##  7 Villages in Illinois               10
##  8 IUCN Category II                    8
##  9 Towns in Wisconsin                  8
## 10 Townships in Michigan               8
## # ... with 5,049 more rows
arrange(categories, desc(article_id))
##      article_id
## 1         99955
## 2         99955
## 3         99955
## 4         99955
## 5         99955
## 6         99955
## 7         99955
## 8         99955
## 9         99955
## 10        99955
## 11        99955
## 12        99955
## 13        99955
## 14        99955
## 15        99955
## 16        99955
## 17        99955
## 18        99810
## 19        99740
## 20        99740
## 21        99740
## 22      9969267
## 23      9969267
## 24      9969267
## 25      9969267
## 26      9969267
## 27      9969267
## 28         9946
## 29         9946
## 30         9946
## 31         9946
## 32         9946
## 33         9946
## 34         9946
## 35         9946
## 36         9946
## 37        99233
## 38        99233
## 39        98917
## 40        98917
## 41        98917
## 42        98917
## 43        98917
## 44        98917
## 45        98917
## 46        98917
## 47        98917
## 48        98917
## 49        98917
## 50        98543
## 51        98543
## 52        98543
## 53        98543
## 54        98543
## 55        98543
## 56        98543
## 57        98543
## 58        98543
## 59        98543
## 60        98543
## 61        98543
## 62        98543
## 63        98543
## 64        98543
## 65        98543
## 66        98543
## 67        98543
## 68        98543
## 69        98543
## 70        98543
## 71        98543
## 72        98543
## 73         9846
## 74         9838
## 75         9838
## 76         9838
## 77         9838
## 78         9838
## 79         9838
## 80        98230
## 81        98230
## 82        98200
## 83        98200
## 84        98200
## 85        98200
## 86        98200
## 87        98082
## 88        97659
## 89        97659
## 90        97659
## 91        97659
## 92        97480
## 93        97480
## 94        97480
## 95        97480
## 96        97092
## 97        97092
## 98        97092
## 99        97092
## 100       97092
## 101       97092
## 102       97092
## 103       97092
## 104       97092
## 105       97092
## 106       97092
## 107       97092
## 108       97092
## 109       97092
## 110       97092
## 111       96820
## 112       96820
## 113       96820
## 114       96820
## 115       96820
## 116        9649
## 117        9649
## 118       96348
## 119       96348
## 120       96348
## 121       96348
## 122       96341
## 123       96341
## 124       96341
## 125       96341
## 126       96341
## 127       96242
## 128       96242
## 129       96242
## 130       96242
## 131       96242
## 132       96242
## 133       96150
## 134       96150
## 135       96150
## 136       96150
## 137       96150
## 138       95701
## 139       95701
## 140       95701
## 141       95701
## 142       95611
## 143       95611
## 144       95611
## 145       95611
## 146       95611
## 147       95611
## 148       95476
## 149       95287
## 150       95171
## 151       95171
## 152       95171
## 153       95171
## 154       95171
## 155       95171
## 156       95171
## 157       95171
## 158       95171
## 159       95171
## 160       95171
## 161       95171
## 162       95171
## 163       95171
## 164       95171
## 165       95171
## 166       95171
## 167       95171
## 168       95171
## 169       95171
## 170       95171
## 171       95171
## 172       95171
## 173       95171
## 174       95171
## 175       95171
## 176       95171
## 177       95171
## 178       95171
## 179       95171
## 180       95171
## 181       95171
## 182       95171
## 183       95171
## 184       95171
## 185       95171
## 186       95171
## 187       95171
## 188       95171
## 189       95171
## 190       95171
## 191       95171
## 192       95171
## 193       95171
## 194       95171
## 195       95171
## 196        9515
## 197        9515
## 198        9515
## 199        9515
## 200        9515
## 201        9515
## 202        9515
## 203        9515
## 204        9515
## 205        9515
## 206        9515
## 207        9515
## 208        9515
## 209       95088
## 210       95088
## 211       95088
## 212       95088
## 213       95088
## 214       94849
## 215       94849
## 216       94849
## 217       94849
## 218       94849
## 219       94721
## 220       94721
## 221       94721
## 222       94721
## 223       94721
## 224       94721
## 225       94721
## 226       94721
## 227       94721
## 228       94721
## 229       94721
## 230       94721
## 231       94721
## 232       94721
## 233       94721
## 234       94721
## 235       94721
## 236       94721
## 237       94721
## 238       94721
## 239       94721
## 240       94567
## 241       94567
## 242       94567
## 243       94567
## 244       94567
## 245        9430
## 246        9430
## 247        9430
## 248        9430
## 249        9430
## 250        9430
## 251        9430
## 252        9430
## 253        9430
## 254        9430
## 255        9430
## 256        9430
## 257        9430
## 258        9430
## 259        9430
## 260        9430
## 261        9430
## 262        9430
## 263        9430
## 264        9430
## 265        9430
## 266        9430
## 267        9430
## 268        9430
## 269        9430
## 270        9430
## 271        9430
## 272        9430
## 273        9430
## 274        9430
## 275        9430
## 276        9430
## 277        9430
## 278        9430
## 279        9430
## 280        9430
## 281        9430
## 282        9430
## 283        9430
## 284        9430
## 285        9430
## 286        9430
## 287        9430
## 288        9430
## 289        9430
## 290        9430
## 291        9430
## 292        9430
## 293        9430
## 294        9430
## 295        9430
## 296        9430
## 297       93997
## 298       93997
## 299       93997
## 300       93660
## 301       93660
## 302       93660
## 303       93660
## 304       93598
## 305       93598
## 306       93598
## 307       93598
## 308       93388
## 309       93388
## 310       93388
## 311       93388
## 312       93264
## 313       93264
## 314       93264
## 315       93264
## 316       93264
## 317       93208
## 318       93208
## 319       93208
## 320       93208
## 321       93044
## 322       93044
## 323       93044
## 324       93044
## 325       93044
## 326       93044
## 327       92788
## 328       92788
## 329       92556
## 330       92556
## 331       92556
## 332       92556
## 333       92556
## 334       92556
## 335       92556
## 336       92556
## 337       92265
## 338       92265
## 339       92265
## 340       92265
## 341       92265
## 342       92046
## 343       92046
## 344       92046
## 345       92046
## 346       91991
## 347       91991
## 348       91991
## 349       91991
## 350       91990
## 351       91990
## 352       91990
## 353       91990
## 354       91990
## 355       91982
## 356       91982
## 357       91982
## 358       91982
## 359       91941
## 360       91941
## 361       91608
## 362       91608
## 363       91608
## 364       91608
## 365       91608
## 366       91577
## 367       91577
## 368       91577
## 369       91577
## 370       91547
## 371       91547
## 372       91547
## 373       91547
## 374       91547
## 375       91450
## 376       91450
## 377       91450
## 378       91450
## 379       91450
## 380       91203
## 381       91203
## 382       91203
## 383       91203
## 384       91203
## 385       91203
## 386       91178
## 387       91178
## 388       91178
## 389       91178
## 390       90323
## 391       90323
## 392       90323
## 393       90323
## 394       90323
## 395       90301
## 396       90301
## 397       90301
## 398       90270
## 399       90270
## 400       90270
## 401       90270
## 402       90270
## 403       90111
## 404        9011
## 405        9011
## 406        9011
## 407        9011
## 408        9011
## 409        9011
## 410        9011
## 411        9011
## 412         898
## 413         898
## 414         898
## 415         898
## 416         898
## 417         898
## 418         898
## 419       89061
## 420       89061
## 421       89061
## 422       89061
## 423       89061
## 424       89061
## 425       89061
## 426       89061
## 427       89061
## 428       89061
## 429       89061
## 430       88922
## 431       88922
## 432       88922
## 433       88922
## 434       88922
## 435       88922
## 436       88915
## 437       88915
## 438       88915
## 439       88915
## 440       88915
## 441       88915
## 442       88915
## 443       88915
## 444       88915
## 445       88915
## 446       88915
## 447       88915
## 448       88915
## 449       88915
## 450        8803
## 451        8803
## 452        8803
## 453        8803
## 454        8803
## 455        8803
## 456        8803
## 457        8803
## 458        8803
## 459        8803
## 460       88011
## 461       87774
## 462       87774
## 463       87774
## 464       87774
## 465       87774
## 466       87774
## 467       87774
## 468       87774
## 469       87774
## 470       87774
## 471       87774
## 472       87682
## 473       87682
## 474       87682
## 475       87682
## 476       87682
## 477       87433
## 478       87433
## 479       87179
## 480       87179
## 481       87179
## 482       87179
## 483       87179
## 484       87179
## 485       87179
## 486       87179
## 487       87179
## 488       87179
## 489       87179
## 490       87179
## 491       87179
## 492       86419
## 493       86419
## 494       86419
## 495       86419
## 496       86419
## 497       86419
## 498       86419
## 499       86419
## 500       86419
## 501       86419
## 502       86419
## 503       86419
## 504       86419
## 505       86419
## 506       86419
## 507       85694
## 508       85694
## 509       85694
## 510       85694
## 511       85694
## 512       85694
## 513       85495
## 514       85495
## 515       85495
## 516       85277
## 517       85277
## 518       85277
## 519       85158
## 520       85158
## 521       85158
## 522       85158
## 523       85158
## 524       85158
## 525        8507
## 526        8507
## 527        8507
## 528       84999
## 529       84999
## 530       84600
## 531       84600
## 532       84600
## 533       84573
## 534       84573
## 535       84573
## 536       84573
## 537       84573
## 538       84573
## 539       84573
## 540       84573
## 541       84573
## 542       84573
## 543       84443
## 544       84443
## 545       84443
## 546       84443
## 547       84237
## 548       84237
## 549       84237
## 550       84237
## 551       84237
## 552       84237
## 553       84237
## 554       84237
## 555       84237
## 556       84237
## 557       84237
## 558       84237
## 559       84237
## 560       84237
## 561       84227
## 562       84227
## 563       84227
## 564       84227
## 565       84227
## 566       84217
## 567       84217
## 568       84217
## 569       84217
## 570       84217
## 571       84217
## 572       84217
## 573       84217
## 574       84217
## 575       84217
## 576       84217
## 577       84217
## 578       84217
## 579       84217
## 580       84217
## 581       84217
## 582       84217
## 583       84217
## 584       84217
## 585       84217
## 586       84217
## 587       84217
## 588       84217
## 589       84217
## 590       84217
## 591         839
## 592         839
## 593         839
## 594       83737
## 595       83737
## 596        8352
## 597        8352
## 598       83133
## 599       83133
## 600       83133
## 601       83011
## 602       83011
## 603       83011
## 604       83011
## 605       83011
## 606       82972
## 607       82972
## 608       82972
## 609       82972
## 610       82972
## 611       82512
## 612       82512
## 613       82512
## 614       82512
## 615       82247
## 616       82247
## 617       82247
## 618       82247
## 619       82247
## 620       82247
## 621       82247
## 622       82247
## 623       82247
## 624       82247
## 625       82160
## 626       82160
## 627       82160
## 628       82160
## 629       82001
## 630       82001
## 631       82001
## 632       82001
## 633       82001
## 634       81928
## 635       81928
## 636       81588
## 637       81588
## 638       80517
## 639       80225
## 640       80225
## 641       80225
## 642       80225
## 643       80225
## 644       80225
## 645       80225
## 646       80225
## 647       80225
## 648       80225
## 649       80225
## 650       80225
## 651       80225
## 652       80225
## 653       80225
## 654       80225
## 655       80225
## 656       80225
## 657       80225
## 658       80225
## 659       80225
## 660       80225
## 661       80059
## 662       79843
## 663       79843
## 664       79843
## 665       79843
## 666       79843
## 667       79843
## 668       79843
## 669       79843
## 670       79843
## 671       79843
## 672       79533
## 673       79533
## 674       79533
## 675       79533
## 676       79376
## 677       79376
## 678       79376
## 679       79376
## 680       79376
## 681       79376
## 682       79374
## 683       79374
## 684       79374
## 685       79374
## 686       78966
## 687       78713
## 688       78713
## 689       78713
## 690       78713
## 691       78713
## 692       78713
## 693       78713
## 694       78371
## 695       78371
## 696       78371
## 697       78371
## 698       78371
## 699       78371
## 700       78371
## 701       78371
## 702       78371
## 703       78371
## 704       78371
## 705       78371
## 706       78371
## 707        7810
## 708        7810
## 709        7810
## 710        7810
## 711        7810
## 712        7810
## 713        7810
## 714        7810
## 715        7810
## 716        7810
## 717        7810
## 718        7810
## 719        7810
## 720        7810
## 721        7810
## 722        7810
## 723        7810
## 724        7810
## 725        7810
## 726        7810
## 727        7810
## 728        7810
## 729        7810
## 730        7810
## 731        7810
## 732        7810
## 733       77894
## 734       77894
## 735       77894
## 736       77894
## 737       77894
## 738       77894
## 739       77894
## 740       77894
## 741       77894
## 742       77894
## 743       77894
## 744       77854
## 745       77854
## 746       77854
## 747       77854
## 748       77854
## 749       77854
## 750       77854
## 751       77854
## 752       77854
## 753       77854
## 754       77854
## 755       77854
## 756       77854
## 757       77854
## 758       77854
## 759       77854
## 760       77854
## 761       77854
## 762       77854
## 763       77854
## 764       77854
## 765       77854
## 766       77854
## 767       77854
## 768       77854
## 769       77854
## 770       77854
## 771       77845
## 772        7766
## 773        7766
## 774        7766
## 775       77643
## 776       77643
## 777       77643
## 778       77643
## 779       77643
## 780       77643
## 781       77643
## 782       77643
## 783       77643
## 784       77643
## 785       77643
## 786       77643
## 787       77643
## 788       77414
## 789       77414
## 790       77414
## 791       77414
## 792       77414
## 793       77414
## 794       77414
## 795       77414
## 796       77414
## 797       77414
## 798       77414
## 799       77414
## 800       77414
## 801       77414
## 802       77414
## 803       77396
## 804       77396
## 805       77368
## 806       77368
## 807       77368
## 808       77368
## 809       77368
## 810       77368
## 811       77163
## 812       76929
## 813        7685
## 814        7685
## 815        7685
## 816       76568
## 817       76568
## 818       76568
## 819       76568
## 820       76492
## 821       76492
## 822       76492
## 823       76193
## 824       76193
## 825       76193
## 826       76193
## 827       76193
## 828       76193
## 829       76193
## 830       75773
## 831       75773
## 832       75773
## 833       75773
## 834       75773
## 835       75773
## 836       75773
## 837       75773
## 838       75773
## 839       75773
## 840       75773
## 841       75773
## 842       75773
## 843       75773
## 844       75773
## 845       75773
## 846       75773
## 847       75773
## 848       75773
## 849       75472
## 850       75472
## 851       74510
## 852       74425
## 853       74425
## 854       74425
## 855        7372
## 856        7372
## 857        7372
## 858       73463
## 859       73463
## 860       73463
## 861       73463
## 862       73463
## 863       73463
## 864       73463
## 865       73463
## 866       73463
## 867       73463
## 868       73463
## 869       73059
## 870       73059
## 871       73059
## 872       73059
## 873       73059
## 874       73059
## 875       73016
## 876       73016
## 877       73016
## 878       73016
## 879       73016
## 880       73016
## 881       73016
## 882       73016
## 883       73016
## 884       73016
## 885       73016
## 886       73016
## 887       73016
## 888       73016
## 889       73016
## 890       73016
## 891       72887
## 892       72887
## 893       72887
## 894       72887
## 895       72887
## 896       72887
## 897       72758
## 898       72758
## 899       72758
## 900       72758
## 901       72758
## 902       72758
## 903       72758
## 904       72758
## 905       72740
## 906       72740
## 907       72677
## 908       72677
## 909       72431
## 910        7224
## 911        7222
## 912        7222
## 913        7222
## 914        7222
## 915        7222
## 916        7222
## 917        7222
## 918        7222
## 919        7222
## 920        7222
## 921        7222
## 922       71975
## 923       71975
## 924       71975
## 925       71975
## 926       71975
## 927       71975
## 928       71975
## 929       71975
## 930       71975
## 931       71975
## 932       71975
## 933       71975
## 934       71975
## 935       71975
## 936       71975
## 937       71975
## 938       71975
## 939       71975
## 940       71788
## 941       71788
## 942       71788
## 943       71788
## 944       71788
## 945       71788
## 946       71788
## 947        7176
## 948        7176
## 949        7176
## 950       71611
## 951       71611
## 952       71611
## 953       70887
## 954       70727
## 955       70727
## 956       70727
## 957       70727
## 958       70727
## 959       70727
## 960       70727
## 961       70727
## 962       70727
## 963       70727
## 964       70727
## 965       70727
## 966       70727
## 967       70727
## 968       70727
## 969       70727
## 970       70727
## 971       70659
## 972       70659
## 973       70659
## 974       70659
## 975       70659
## 976       70659
## 977       70659
## 978       70659
## 979       70659
## 980       70659
## 981       70659
## 982       70659
## 983       70659
## 984       70659
## 985       70659
## 986       70659
## 987       70528
## 988       70528
## 989       70528
## 990       70528
## 991       70528
## 992       70528
## 993       70350
## 994       70350
## 995       70350
## 996       70350
## 997       70350
## 998       70350
## 999       70350
## 1000      70350
## 1001      70350
## 1002      70350
## 1003      70350
## 1004      70350
## 1005      70350
## 1006      70350
## 1007      70350
## 1008      70350
## 1009      70350
## 1010      70350
## 1011      70350
## 1012      70350
## 1013      70350
## 1014      70350
## 1015      70218
## 1016      70218
## 1017      70218
## 1018      70218
## 1019      70218
## 1020      70218
## 1021      70218
## 1022      70218
## 1023      70218
## 1024      70218
## 1025      70218
## 1026      70218
## 1027      70218
## 1028      70218
## 1029      70218
## 1030      70218
## 1031      70218
## 1032      70218
## 1033      70218
## 1034      70218
## 1035      70218
## 1036      70218
## 1037      70218
## 1038      70218
## 1039      70218
## 1040      70218
## 1041      70218
## 1042      70218
## 1043      70218
## 1044      70218
## 1045      70218
## 1046      70218
## 1047      70218
## 1048      70218
## 1049      70181
## 1050      70181
## 1051      70181
## 1052      70181
## 1053      70181
## 1054      70181
## 1055      70181
## 1056      70147
## 1057      70147
## 1058      70147
## 1059      70147
## 1060      70147
## 1061      70147
## 1062      70147
## 1063      70147
## 1064       6982
## 1065       6982
## 1066       6982
## 1067        696
## 1068      69236
## 1069      69236
## 1070      69236
## 1071      69236
## 1072      69236
## 1073      69236
## 1074      69236
## 1075      69236
## 1076      69236
## 1077      69236
## 1078      69236
## 1079      69236
## 1080      69236
## 1081      69236
## 1082      69236
## 1083      69236
## 1084      69236
## 1085      69236
## 1086      69236
## 1087      69236
## 1088      69236
## 1089      69236
## 1090      69236
## 1091      69236
## 1092      69236
## 1093      69236
## 1094      69236
## 1095      69236
## 1096      69236
## 1097      69236
## 1098      69236
## 1099      69236
## 1100      69236
## 1101      69236
## 1102      68726
## 1103      68726
## 1104      68726
## 1105      68726
## 1106      68726
## 1107      68726
## 1108      68726
## 1109      68726
## 1110      68726
## 1111      68726
## 1112      68726
## 1113      68726
## 1114      68726
## 1115      68726
## 1116      68726
## 1117      68726
## 1118      68726
## 1119      68726
## 1120      68726
## 1121      68726
## 1122      68625
## 1123      68625
## 1124      68625
## 1125      68625
## 1126      68545
## 1127      68545
## 1128      68545
## 1129      68545
## 1130      68545
## 1131      68545
## 1132      68532
## 1133      68532
## 1134       6852
## 1135       6852
## 1136       6852
## 1137       6852
## 1138       6852
## 1139       6852
## 1140       6852
## 1141       6852
## 1142       6852
## 1143       6852
## 1144       6852
## 1145       6852
## 1146       6852
## 1147       6852
## 1148       6852
## 1149       6852
## 1150       6852
## 1151      68386
## 1152      68386
## 1153      68386
## 1154      68386
## 1155      68386
## 1156      68386
## 1157      68386
## 1158      68386
## 1159      68386
## 1160      68386
## 1161      68245
## 1162      68245
## 1163      68245
## 1164      68245
## 1165      68245
## 1166      68245
## 1167      68245
## 1168      68245
## 1169      68245
## 1170      68245
## 1171      68245
## 1172      68245
## 1173      68245
## 1174      68245
## 1175      68245
## 1176      68245
## 1177      68245
## 1178      68245
## 1179      68245
## 1180      68245
## 1181      68245
## 1182      68245
## 1183      68245
## 1184      68245
## 1185      68245
## 1186      68029
## 1187      68029
## 1188      68029
## 1189      68029
## 1190      68029
## 1191      68029
## 1192      68029
## 1193      67981
## 1194      67981
## 1195       6753
## 1196       6753
## 1197       6753
## 1198      67287
## 1199      67287
## 1200      67287
## 1201      67287
## 1202      67287
## 1203      67287
## 1204      67287
## 1205      67287
## 1206      67287
## 1207      67246
## 1208        670
## 1209        670
## 1210       6689
## 1211       6689
## 1212       6689
## 1213       6689
## 1214       6689
## 1215      66886
## 1216      66886
## 1217      66886
## 1218      66865
## 1219      66865
## 1220      66865
## 1221      66865
## 1222      66865
## 1223      66865
## 1224      66865
## 1225      66865
## 1226      66865
## 1227      66865
## 1228      66865
## 1229      66865
## 1230      66865
## 1231      66865
## 1232      66865
## 1233      66865
## 1234      66865
## 1235      66865
## 1236      66865
## 1237      66865
## 1238      66865
## 1239      66524
## 1240      66524
## 1241      66524
## 1242      66524
## 1243      66524
## 1244      66380
## 1245      66380
## 1246      66380
## 1247      66054
## 1248      66054
## 1249      66054
## 1250      66054
## 1251      66054
## 1252      66054
## 1253      66054
## 1254      66054
## 1255      66054
## 1256      66054
## 1257      66054
## 1258      66054
## 1259      66054
## 1260      66054
## 1261      66054
## 1262      65852
## 1263      65852
## 1264      65840
## 1265      65840
## 1266      65840
## 1267      65840
## 1268      65840
## 1269      65734
## 1270      65734
## 1271      65734
## 1272      65734
## 1273      65734
## 1274      65734
## 1275      65734
## 1276      65734
## 1277      65734
## 1278      65432
## 1279      65432
## 1280      65432
## 1281      65432
## 1282      65432
## 1283      65432
## 1284      65432
## 1285      65432
## 1286      65432
## 1287      65432
## 1288      65432
## 1289      65432
## 1290      65432
## 1291      65432
## 1292      65432
## 1293      65236
## 1294      65236
## 1295      65236
## 1296      65236
## 1297      65128
## 1298      65128
## 1299      65128
## 1300      65128
## 1301      65128
## 1302      64669
## 1303      64669
## 1304      64669
## 1305      64669
## 1306      64523
## 1307      64523
## 1308      64523
## 1309       6421
## 1310       6421
## 1311       6421
## 1312       6421
## 1313       6421
## 1314      63916
## 1315      63916
## 1316      63658
## 1317      63658
## 1318      63630
## 1319      63531
## 1320      63531
## 1321      63531
## 1322      63531
## 1323      63531
## 1324      63531
## 1325      63531
## 1326      63531
## 1327      63531
## 1328      63328
## 1329      63328
## 1330      63328
## 1331      63328
## 1332      63328
## 1333      63328
## 1334      63328
## 1335      63328
## 1336      63328
## 1337      63328
## 1338      63328
## 1339      63328
## 1340      63328
## 1341      63328
## 1342      63328
## 1343      63328
## 1344      63328
## 1345      63328
## 1346      63328
## 1347      63328
## 1348       6328
## 1349       6328
## 1350      62743
## 1351     623231
## 1352     623231
## 1353     623231
## 1354     623231
## 1355     623231
## 1356     623231
## 1357     623231
## 1358     623231
## 1359     623231
## 1360     623231
## 1361     623231
## 1362     623231
## 1363      62305
## 1364      62305
## 1365      62305
## 1366      62125
## 1367      62125
## 1368      62085
## 1369      62085
## 1370      62085
## 1371      62085
## 1372      62085
## 1373      62085
## 1374      62085
## 1375      62085
## 1376      62085
## 1377      62085
## 1378      62085
## 1379      62085
## 1380      62085
## 1381      62085
## 1382      61855
## 1383      61855
## 1384      61855
## 1385      61855
## 1386      61855
## 1387      61855
## 1388      61855
## 1389      61855
## 1390      61855
## 1391      61855
## 1392      61855
## 1393      61855
## 1394      61855
## 1395      61855
## 1396      61855
## 1397      61855
## 1398      61855
## 1399      61855
## 1400      61855
## 1401      61855
## 1402      61855
## 1403      61855
## 1404      61855
## 1405      61855
## 1406      61855
## 1407      61855
## 1408      61855
## 1409      61855
## 1410      61855
## 1411      61855
## 1412      61855
## 1413      61855
## 1414      61855
## 1415      61855
## 1416      61855
## 1417      61829
## 1418      61788
## 1419      61700
## 1420      61700
## 1421      61700
## 1422      61700
## 1423      61700
## 1424      61480
## 1425      61480
## 1426      61480
## 1427      61480
## 1428      61480
## 1429      61480
## 1430      61480
## 1431      61480
## 1432      61322
## 1433      61322
## 1434      61322
## 1435      61322
## 1436      61322
## 1437      61322
## 1438      61322
## 1439      61322
## 1440      61322
## 1441      61322
## 1442      61322
## 1443      61322
## 1444      61322
## 1445      61165
## 1446      61165
## 1447      61165
## 1448      61157
## 1449      61157
## 1450      61157
## 1451      61157
## 1452      61157
## 1453      61157
## 1454      61157
## 1455      61157
## 1456      61157
## 1457      61157
## 1458      61157
## 1459      61157
## 1460      61157
## 1461      61157
## 1462      61157
## 1463      61157
## 1464      61157
## 1465      61157
## 1466      61157
## 1467      61157
## 1468      61157
## 1469      61056
## 1470      61056
## 1471      60891
## 1472      60891
## 1473      60891
## 1474      60891
## 1475      60700
## 1476      60383
## 1477      60383
## 1478      60341
## 1479      60341
## 1480      60341
## 1481      60341
## 1482      60341
## 1483      60341
## 1484      60341
## 1485      60341
## 1486      60199
## 1487      60199
## 1488      59926
## 1489      59926
## 1490      59926
## 1491      59926
## 1492      59926
## 1493      59926
## 1494      59926
## 1495      59926
## 1496      59926
## 1497      59926
## 1498      59926
## 1499      59926
## 1500      59926
## 1501      59926
## 1502      59926
## 1503      59926
## 1504      59926
## 1505      59926
## 1506      59926
## 1507      59926
## 1508      59926
## 1509      59926
## 1510      59926
## 1511      59926
## 1512      59926
## 1513      59926
## 1514      59926
## 1515      59926
## 1516      59926
## 1517      59926
## 1518      59926
## 1519      59926
## 1520      59926
## 1521      59926
## 1522      59926
## 1523      59926
## 1524      59926
## 1525      59926
## 1526      59926
## 1527      59906
## 1528      59906
## 1529      59906
## 1530      59906
## 1531      59906
## 1532      59906
## 1533      59906
## 1534      59906
## 1535      59906
## 1536      59906
## 1537       5978
## 1538       5978
## 1539       5978
## 1540       5978
## 1541       5978
## 1542       5978
## 1543       5978
## 1544       5978
## 1545       5978
## 1546       5978
## 1547       5978
## 1548       5978
## 1549       5978
## 1550       5978
## 1551       5978
## 1552       5978
## 1553       5978
## 1554       5978
## 1555       5978
## 1556       5978
## 1557       5978
## 1558       5978
## 1559       5978
## 1560       5978
## 1561       5978
## 1562       5978
## 1563       5978
## 1564       5978
## 1565       5978
## 1566       5978
## 1567       5978
## 1568       5978
## 1569       5978
## 1570       5978
## 1571       5978
## 1572       5978
## 1573       5978
## 1574       5978
## 1575       5978
## 1576       5978
## 1577       5978
## 1578       5978
## 1579       5978
## 1580       5978
## 1581       5978
## 1582       5978
## 1583       5978
## 1584       5978
## 1585       5978
## 1586       5978
## 1587       5978
## 1588       5978
## 1589       5978
## 1590       5978
## 1591       5978
## 1592       5978
## 1593       5978
## 1594       5978
## 1595       5978
## 1596       5978
## 1597       5978
## 1598       5978
## 1599       5978
## 1600       5978
## 1601       5978
## 1602       5978
## 1603       5978
## 1604       5978
## 1605       5978
## 1606       5978
## 1607       5978
## 1608       5978
## 1609       5978
## 1610       5978
## 1611       5978
## 1612       5978
## 1613       5978
## 1614       5978
## 1615       5978
## 1616       5978
## 1617       5978
## 1618       5978
## 1619       5978
## 1620       5978
## 1621       5978
## 1622       5978
## 1623       5978
## 1624       5978
## 1625       5978
## 1626       5978
## 1627       5978
## 1628       5978
## 1629       5978
## 1630       5978
## 1631       5978
## 1632       5978
## 1633       5978
## 1634       5978
## 1635       5978
## 1636       5978
## 1637       5978
## 1638       5978
## 1639       5978
## 1640       5978
## 1641       5978
## 1642       5978
## 1643       5978
## 1644       5978
## 1645       5978
## 1646       5978
## 1647       5978
## 1648       5978
## 1649       5978
## 1650       5978
## 1651       5978
## 1652       5978
## 1653       5978
## 1654       5978
## 1655       5978
## 1656       5978
## 1657       5978
## 1658       5978
## 1659       5978
## 1660       5978
## 1661       5978
## 1662       5978
## 1663       5978
## 1664       5978
## 1665       5978
## 1666       5978
## 1667       5978
## 1668       5978
## 1669       5978
## 1670       5978
## 1671       5978
## 1672       5978
## 1673       5978
## 1674       5978
## 1675       5978
## 1676       5978
## 1677       5978
## 1678       5978
## 1679       5978
## 1680       5978
## 1681       5978
## 1682       5978
## 1683       5978
## 1684       5978
## 1685       5978
## 1686       5978
## 1687       5978
## 1688       5978
## 1689       5978
## 1690       5978
## 1691       5978
## 1692       5978
## 1693       5978
## 1694       5978
## 1695       5978
## 1696       5978
## 1697       5978
## 1698       5978
## 1699       5978
## 1700       5978
## 1701       5978
## 1702       5978
## 1703       5978
## 1704       5978
## 1705       5978
## 1706       5978
## 1707       5978
## 1708       5978
## 1709       5978
## 1710       5978
## 1711       5978
## 1712       5978
## 1713       5978
## 1714       5978
## 1715       5978
## 1716       5978
## 1717       5978
## 1718       5978
## 1719       5978
## 1720       5978
## 1721       5978
## 1722       5978
## 1723       5978
## 1724       5978
## 1725       5978
## 1726       5978
## 1727       5978
## 1728       5978
## 1729       5978
## 1730       5978
## 1731       5978
## 1732       5978
## 1733       5978
## 1734       5978
## 1735       5978
## 1736       5978
## 1737       5978
## 1738       5978
## 1739       5978
## 1740       5978
## 1741       5978
## 1742       5978
## 1743       5978
## 1744       5978
## 1745       5978
## 1746       5978
## 1747       5978
## 1748       5978
## 1749       5978
## 1750       5978
## 1751      59771
## 1752      59771
## 1753      59771
## 1754      59771
## 1755      59771
## 1756      59771
## 1757      59771
## 1758      59771
## 1759      59604
## 1760      59604
## 1761      59604
## 1762      59604
## 1763      59592
## 1764      59592
## 1765      59592
## 1766      59592
## 1767      59592
## 1768      59592
## 1769      59592
## 1770      59592
## 1771      59592
## 1772      59592
## 1773      59592
## 1774      59592
## 1775      59592
## 1776      59592
## 1777      59592
## 1778      59592
## 1779      59592
## 1780      59592
## 1781      59592
## 1782      59551
## 1783      59551
## 1784      59551
## 1785      59551
## 1786      59551
## 1787      59551
## 1788      59551
## 1789      59551
## 1790      59496
## 1791      59496
## 1792      59496
## 1793      59496
## 1794      59496
## 1795      59496
## 1796      59496
## 1797      59496
## 1798      59496
## 1799      59496
## 1800      59496
## 1801      59496
## 1802      59496
## 1803      59496
## 1804      59496
## 1805      59496
## 1806      59405
## 1807      59405
## 1808      59405
## 1809      59399
## 1810      59399
## 1811      59399
## 1812      59399
## 1813      59370
## 1814      59370
## 1815      59370
## 1816      59370
## 1817      59370
## 1818      59256
## 1819      59256
## 1820      59256
## 1821      59256
## 1822      59256
## 1823      59256
## 1824      59256
## 1825      59256
## 1826      59256
## 1827      59256
## 1828      59256
## 1829      59256
## 1830      59256
## 1831      59256
## 1832      59256
## 1833      59256
## 1834      59256
## 1835      59256
## 1836      59256
## 1837      59256
## 1838      59256
## 1839      59256
## 1840      59256
## 1841      59256
## 1842      59256
## 1843      59256
## 1844      59256
## 1845      59156
## 1846      59156
## 1847      59156
## 1848      59156
## 1849      59156
## 1850       5914
## 1851       5914
## 1852       5914
## 1853       5876
## 1854       5876
## 1855       5876
## 1856      58644
## 1857      58644
## 1858      58644
## 1859      58644
## 1860      58644
## 1861      58644
## 1862      58644
## 1863      58644
## 1864      58644
## 1865      58644
## 1866      58597
## 1867      58597
## 1868      58597
## 1869      58597
## 1870      58495
## 1871      58495
## 1872      58495
## 1873      58495
## 1874      58495
## 1875      58495
## 1876      58495
## 1877      58495
## 1878      58495
## 1879      58495
## 1880      58495
## 1881      58495
## 1882      58495
## 1883      58410
## 1884      58410
## 1885      58410
## 1886      58410
## 1887      58410
## 1888      58410
## 1889      58410
## 1890      58410
## 1891      58410
## 1892      58410
## 1893      58410
## 1894      58410
## 1895      58410
## 1896      58410
## 1897      58410
## 1898      58410
## 1899      58410
## 1900      58410
## 1901      58410
## 1902      58410
## 1903      58410
## 1904      58410
## 1905      58410
## 1906      58410
## 1907      58410
## 1908      58410
## 1909      58410
## 1910      58410
## 1911      58410
## 1912      58410
## 1913      58410
## 1914      58410
## 1915      58410
## 1916      58410
## 1917      58410
## 1918      58410
## 1919      58410
## 1920      58410
## 1921      58410
## 1922      58410
## 1923      58410
## 1924      58410
## 1925      58116
## 1926      58116
## 1927      58116
## 1928      58116
## 1929      57993
## 1930      57993
## 1931      57993
## 1932      57993
## 1933      57993
## 1934      57993
## 1935      57993
## 1936      57993
## 1937      57993
## 1938      57843
## 1939      57843
## 1940      57843
## 1941      57843
## 1942      57843
## 1943      57843
## 1944      57843
## 1945      57843
## 1946      57843
## 1947      57843
## 1948       5762
## 1949       5762
## 1950      57602
## 1951      57602
## 1952      57602
## 1953      57602
## 1954      57602
## 1955       5751
## 1956       5751
## 1957       5751
## 1958       5751
## 1959       5751
## 1960       5751
## 1961       5751
## 1962       5751
## 1963      57111
## 1964      57111
## 1965      57111
## 1966      57111
## 1967      56633
## 1968      56633
## 1969      56633
## 1970      56633
## 1971      56633
## 1972      56633
## 1973      56633
## 1974      56633
## 1975      56633
## 1976      56617
## 1977      56617
## 1978      56617
## 1979      56617
## 1980      56617
## 1981      56617
## 1982      56617
## 1983      56617
## 1984      56617
## 1985      55858
## 1986      55858
## 1987      55858
## 1988      55858
## 1989      55858
## 1990      55858
## 1991      55858
## 1992      55858
## 1993      55858
## 1994      55858
## 1995      55832
## 1996      55832
## 1997      55832
## 1998      55832
## 1999      55832
## 2000      55832
## 2001      55832
## 2002      55832
## 2003      55832
## 2004      55832
## 2005      55832
## 2006      55832
## 2007      55832
## 2008      55832
## 2009      55832
## 2010      55766
## 2011      55766
## 2012      55766
## 2013      55688
## 2014      55688
## 2015      55688
## 2016      55688
## 2017       5567
## 2018       5419
## 2019       5419
## 2020       5419
## 2021       5419
## 2022      54175
## 2023      54175
## 2024      54175
## 2025      54175
## 2026      54175
## 2027      54175
## 2028      54175
## 2029      54175
## 2030      54175
## 2031      54175
## 2032      54175
## 2033      54175
## 2034      54175
## 2035      54175
## 2036      54175
## 2037      54175
## 2038      54175
## 2039      54175
## 2040      54136
## 2041      54136
## 2042      54136
## 2043       5369
## 2044       5369
## 2045       5369
## 2046       5369
## 2047       5356
## 2048       5356
## 2049       5356
## 2050      53555
## 2051      53512
## 2052      53500
## 2053      53500
## 2054      53500
## 2055      53253
## 2056      53159
## 2057      53159
## 2058      53036
## 2059      52495
## 2060      52495
## 2061      52495
## 2062      52495
## 2063      52495
## 2064      52495
## 2065      52495
## 2066      52495
## 2067      52495
## 2068      52495
## 2069      52368
## 2070      52368
## 2071      52368
## 2072      52368
## 2073      52368
## 2074      52368
## 2075      52368
## 2076      52368
## 2077      52368
## 2078      52368
## 2079      51664
## 2080      51664
## 2081      51664
## 2082      51664
## 2083      51664
## 2084      51611
## 2085      51611
## 2086      51611
## 2087      51611
## 2088      51611
## 2089      51611
## 2090      51611
## 2091      51483
## 2092      51483
## 2093      51483
## 2094      51303
## 2095      51303
## 2096      51303
## 2097      51303
## 2098      51303
## 2099      51303
## 2100      51303
## 2101      51303
## 2102      51303
## 2103      51273
## 2104      51273
## 2105      51273
## 2106      50874
## 2107      50874
## 2108      50874
## 2109      50874
## 2110      50778
## 2111      50778
## 2112      50778
## 2113      50778
## 2114      50778
## 2115      50778
## 2116      50778
## 2117      50778
## 2118      50778
## 2119      50778
## 2120      50778
## 2121      50693
## 2122      50693
## 2123      50693
## 2124      50693
## 2125      50693
## 2126      50693
## 2127      50693
## 2128      50693
## 2129      50693
## 2130      50693
## 2131      50693
## 2132      50693
## 2133      50693
## 2134      50693
## 2135      50693
## 2136      50693
## 2137      50693
## 2138      50693
## 2139      50693
## 2140      50693
## 2141      50693
## 2142      50693
## 2143      50693
## 2144      50693
## 2145      50693
## 2146      50693
## 2147      50682
## 2148      50677
## 2149      50677
## 2150      50677
## 2151      50677
## 2152      50677
## 2153      50677
## 2154      50677
## 2155      50458
## 2156      50458
## 2157      50458
## 2158      50458
## 2159      50458
## 2160      50458
## 2161      50458
## 2162      50411
## 2163      50411
## 2164      50411
## 2165      50359
## 2166      50359
## 2167      50359
## 2168      50359
## 2169      50359
## 2170      50359
## 2171      50359
## 2172      50359
## 2173      50359
## 2174      50359
## 2175      50230
## 2176      50230
## 2177      50230
## 2178      50230
## 2179      50230
## 2180      50230
## 2181      50230
## 2182      50230
## 2183      50230
## 2184      50230
## 2185      50230
## 2186      50230
## 2187      50230
## 2188      50230
## 2189      50230
## 2190      50230
## 2191      50230
## 2192      50230
## 2193      50230
## 2194      50027
## 2195      50027
## 2196      49460
## 2197      49460
## 2198      49460
## 2199      49443
## 2200      48969
## 2201      48969
## 2202      48969
## 2203      48969
## 2204      48969
## 2205      48969
## 2206      48969
## 2207      48969
## 2208      48969
## 2209      48969
## 2210      48906
## 2211      48906
## 2212      48906
## 2213      48906
## 2214      48906
## 2215      48906
## 2216      48876
## 2217      48876
## 2218      48876
## 2219      48876
## 2220      48876
## 2221      48876
## 2222      48876
## 2223      48876
## 2224      48876
## 2225      48876
## 2226      48876
## 2227      48876
## 2228      48876
## 2229      48876
## 2230      48836
## 2231      48836
## 2232      48836
## 2233      48836
## 2234      48836
## 2235      48836
## 2236      48836
## 2237      48836
## 2238      48836
## 2239      48836
## 2240      48836
## 2241      48836
## 2242      48836
## 2243      48836
## 2244      48836
## 2245      48836
## 2246      48836
## 2247      48836
## 2248      48836
## 2249      48836
## 2250      48836
## 2251      48836
## 2252      48653
## 2253      48352
## 2254      48352
## 2255      48352
## 2256      48352
## 2257      48352
## 2258      47902
## 2259      47902
## 2260      47902
## 2261      47902
## 2262      47902
## 2263      47702
## 2264      47702
## 2265      47702
## 2266      47702
## 2267      47702
## 2268      47702
## 2269      47702
## 2270      47702
## 2271      47702
## 2272       4760
## 2273       4760
## 2274       4760
## 2275       4760
## 2276       4760
## 2277       4760
## 2278       4760
## 2279       4760
## 2280      47595
## 2281      47595
## 2282      47595
## 2283      47595
## 2284      47595
## 2285      47052
## 2286      47052
## 2287      47052
## 2288      47052
## 2289      46931
## 2290      46931
## 2291      46931
## 2292       4691
## 2293       4691
## 2294       4691
## 2295       4691
## 2296       4691
## 2297       4691
## 2298       4666
## 2299       4666
## 2300      46120
## 2301      45652
## 2302      45652
## 2303      45652
## 2304      45652
## 2305      45652
## 2306      45652
## 2307      45652
## 2308      45652
## 2309      45652
## 2310      45652
## 2311      45652
## 2312      45652
## 2313      45652
## 2314      45652
## 2315      45652
## 2316      45330
## 2317      45330
## 2318      45330
## 2319      45330
## 2320      45330
## 2321      45330
## 2322      45330
## 2323      45330
## 2324      45185
## 2325      45185
## 2326      45185
## 2327      45185
## 2328      45185
## 2329      45185
## 2330      45185
## 2331      45185
## 2332      45185
## 2333      45185
## 2334      45185
## 2335      45185
## 2336      45185
## 2337      45185
## 2338      45185
## 2339      45185
## 2340      45185
## 2341      45185
## 2342      45185
## 2343      45185
## 2344      45185
## 2345      45185
## 2346      45185
## 2347      45185
## 2348      45185
## 2349      45185
## 2350      45185
## 2351      45185
## 2352      45185
## 2353      45185
## 2354      45185
## 2355      45185
## 2356      45185
## 2357      45185
## 2358      45185
## 2359      45185
## 2360      45185
## 2361      45185
## 2362      45185
## 2363      45185
## 2364      45185
## 2365      44831
## 2366      44831
## 2367      44831
## 2368      44831
## 2369      44831
## 2370      44831
## 2371      44831
## 2372      44831
## 2373      44831
## 2374      44672
## 2375      44672
## 2376      44672
## 2377      44672
## 2378      44672
## 2379      44672
## 2380      44672
## 2381      44408
## 2382      43866
## 2383      43866
## 2384      43866
## 2385      43659
## 2386      43659
## 2387      43659
## 2388      43659
## 2389      43659
## 2390      43659
## 2391      43659
## 2392      43659
## 2393      43659
## 2394      43659
## 2395      43659
## 2396      43659
## 2397      43659
## 2398      43374
## 2399      43374
## 2400      43374
## 2401      42877
## 2402      42877
## 2403      42877
## 2404      42877
## 2405      42812
## 2406       4260
## 2407       4260
## 2408       4260
## 2409       4260
## 2410      42282
## 2411      42282
## 2412      42282
## 2413      42282
## 2414      41848
## 2415      41778
## 2416      41504
## 2417      41504
## 2418      41491
## 2419      41491
## 2420      41491
## 2421      41491
## 2422      41491
## 2423      41383
## 2424      41276
## 2425      41276
## 2426      41274
## 2427      41274
## 2428      41271
## 2429       4113
## 2430       4113
## 2431      41015
## 2432      40913
## 2433      40913
## 2434      40913
## 2435      40913
## 2436      40754
## 2437      40450
## 2438      40450
## 2439      40450
## 2440      40360
## 2441      40360
## 2442      40360
## 2443      40360
## 2444      40177
## 2445      39770
## 2446      39770
## 2447      39751
## 2448      39751
## 2449       3954
## 2450       3954
## 2451       3954
## 2452      39311
## 2453      39311
## 2454      39311
## 2455      39311
## 2456      39311
## 2457      39311
## 2458      39311
## 2459      39311
## 2460      39311
## 2461      39311
## 2462      39311
## 2463      39311
## 2464      39311
## 2465      39311
## 2466      39311
## 2467      39311
## 2468      39311
## 2469      39311
## 2470      39311
## 2471      39311
## 2472      39311
## 2473      39311
## 2474      39311
## 2475      39311
## 2476      39311
## 2477      39311
## 2478      39311
## 2479      39311
## 2480      39311
## 2481      39311
## 2482      39311
## 2483      39311
## 2484      39311
## 2485      39311
## 2486      39002
## 2487      39002
## 2488      39002
## 2489      39002
## 2490      39002
## 2491      39002
## 2492      39002
## 2493      39002
## 2494      39002
## 2495      38659
## 2496      38658
## 2497      38646
## 2498      38635
## 2499      38624
## 2500       3861
## 2501       3861
## 2502      38598
## 2503      38597
## 2504      38227
## 2505      38152
## 2506      38152
## 2507      38152
## 2508      38152
## 2509      37751
## 2510      37751
## 2511      37751
## 2512      37535
## 2513      37535
## 2514      37535
## 2515      37535
## 2516      37535
## 2517      37535
## 2518      37535
## 2519      37535
## 2520      37535
## 2521      37535
## 2522      37535
## 2523      37535
## 2524      37535
## 2525      37535
## 2526      37535
## 2527      37535
## 2528      37535
## 2529      37535
## 2530      37535
## 2531      37535
## 2532      37535
## 2533      37535
## 2534      37535
## 2535      37535
## 2536      37535
## 2537      37535
## 2538      37535
## 2539      37535
## 2540      37533
## 2541      37533
## 2542      37533
## 2543      37533
## 2544      37533
## 2545      37533
## 2546      37533
## 2547      37533
## 2548      37533
## 2549      37533
## 2550      37533
## 2551    3687095
## 2552    3687095
## 2553    3687095
## 2554    3687095
## 2555    3687095
## 2556    3687095
## 2557    3687095
## 2558      36587
## 2559      36587
## 2560      36587
## 2561      36587
## 2562      36587
## 2563      36587
## 2564      36587
## 2565      36587
## 2566      36587
## 2567      36587
## 2568      36587
## 2569      36419
## 2570      36404
## 2571      36349
## 2572      36318
## 2573      36230
## 2574      36059
## 2575      35917
## 2576      35862
## 2577      35828
## 2578      35617
## 2579      35340
## 2580      35304
## 2581      35250
## 2582      35221
## 2583      34889
## 2584      34787
## 2585      34692
## 2586      34675
## 2587      34675
## 2588      34633
## 2589      34633
## 2590      34633
## 2591      34471
## 2592      34471
## 2593      34471
## 2594      34471
## 2595      34360
## 2596      34360
## 2597      34360
## 2598      34360
## 2599      34360
## 2600      34360
## 2601      34360
## 2602      34360
## 2603      34360
## 2604      34360
## 2605      34360
## 2606      34360
## 2607      34360
## 2608      34360
## 2609      34360
## 2610      34360
## 2611      34360
## 2612      34360
## 2613      34360
## 2614      34360
## 2615      34360
## 2616      34360
## 2617      34360
## 2618      34360
## 2619      34360
## 2620      34360
## 2621      34360
## 2622      34360
## 2623       3413
## 2624      34040
## 2625      34040
## 2626      34040
## 2627      34040
## 2628      34040
## 2629      34040
## 2630      34040
## 2631      34040
## 2632      34040
## 2633      33982
## 2634      33982
## 2635      33982
## 2636      33982
## 2637      33982
## 2638      33982
## 2639      33821
## 2640      33821
## 2641      33821
## 2642      33821
## 2643      33821
## 2644      33821
## 2645      33821
## 2646      33821
## 2647      33821
## 2648      33821
## 2649      33821
## 2650      33821
## 2651      33816
## 2652      33816
## 2653      33816
## 2654      33816
## 2655      33816
## 2656      33816
## 2657      33816
## 2658      33816
## 2659      33816
## 2660      33816
## 2661      33816
## 2662      33816
## 2663      33816
## 2664      33816
## 2665      33816
## 2666      33816
## 2667      33816
## 2668      33816
## 2669      33816
## 2670      33816
## 2671      33816
## 2672      33816
## 2673      33622
## 2674      33622
## 2675      33622
## 2676      33622
## 2677      33622
## 2678      33622
## 2679      33622
## 2680      33622
## 2681      33622
## 2682      33622
## 2683      33622
## 2684      33622
## 2685      33622
## 2686      33622
## 2687      33622
## 2688      33622
## 2689      33622
## 2690      33622
## 2691      33622
## 2692      33622
## 2693      33622
## 2694      33622
## 2695      33622
## 2696      33622
## 2697      33622
## 2698      33622
## 2699      33622
## 2700      33622
## 2701      33622
## 2702      33622
## 2703      33622
## 2704      33622
## 2705      33622
## 2706      33622
## 2707      33622
## 2708      33622
## 2709      33523
## 2710      33523
## 2711      33523
## 2712      33523
## 2713      33523
## 2714      33523
## 2715      33523
## 2716      33523
## 2717      33523
## 2718      33523
## 2719      33523
## 2720      33523
## 2721      33523
## 2722      33523
## 2723      33523
## 2724      33523
## 2725      33523
## 2726      33523
## 2727      33523
## 2728      33523
## 2729      33523
## 2730      33523
## 2731      33523
## 2732      33523
## 2733      33523
## 2734      33523
## 2735      33523
## 2736      33523
## 2737      33523
## 2738      33523
## 2739      33523
## 2740      33523
## 2741      33523
## 2742      33523
## 2743      33523
## 2744      33523
## 2745      33523
## 2746      33523
## 2747      33523
## 2748      33523
## 2749      33523
## 2750      33523
## 2751      33523
## 2752      33523
## 2753      33523
## 2754      33523
## 2755      33523
## 2756      33523
## 2757      33180
## 2758      33180
## 2759      33180
## 2760      33180
## 2761       3303
## 2762       3303
## 2763       3303
## 2764       3303
## 2765       3303
## 2766      32794
## 2767      32794
## 2768      32794
## 2769      32794
## 2770      32794
## 2771      32794
## 2772      32794
## 2773      32794
## 2774      32794
## 2775      32794
## 2776      32794
## 2777      32794
## 2778      32794
## 2779      32794
## 2780      32794
## 2781      32794
## 2782      32680
## 2783      32680
## 2784      32680
## 2785      32680
## 2786      32680
## 2787      32680
## 2788      32680
## 2789      32680
## 2790      32680
## 2791      32680
## 2792      32680
## 2793      32680
## 2794      32680
## 2795      32680
## 2796      32680
## 2797      32680
## 2798      32680
## 2799      32680
## 2800      32680
## 2801      32680
## 2802      32374
## 2803      32374
## 2804      32374
## 2805      32374
## 2806      32374
## 2807      32374
## 2808      32374
## 2809      32374
## 2810      32374
## 2811      32374
## 2812      32374
## 2813      32341
## 2814      32341
## 2815      32341
## 2816      32341
## 2817      32290
## 2818      32290
## 2819      32254
## 2820      32254
## 2821      32254
## 2822      32254
## 2823      32254
## 2824      32254
## 2825      32254
## 2826      32245
## 2827      32245
## 2828      32065
## 2829      32065
## 2830      32065
## 2831      32065
## 2832      32065
## 2833      32065
## 2834      32065
## 2835      32065
## 2836      32019
## 2837      31775
## 2838      31775
## 2839      31775
## 2840      31775
## 2841      31775
## 2842      31513
## 2843      31513
## 2844      31513
## 2845      31513
## 2846      31513
## 2847      31513
## 2848      31444
## 2849      31444
## 2850      31444
## 2851      31444
## 2852      31444
## 2853      31322
## 2854      31322
## 2855      31322
## 2856      31322
## 2857      31322
## 2858      31322
## 2859      31322
## 2860      31175
## 2861      31175
## 2862      31175
## 2863     308577
## 2864     308577
## 2865     308577
## 2866     308577
## 2867     308577
## 2868     308577
## 2869     308577
## 2870     308577
## 2871     308577
## 2872     308577
## 2873     308577
## 2874     308577
## 2875     308577
## 2876     308577
## 2877     308577
## 2878     308577
## 2879     308577
## 2880     308577
## 2881     308577
## 2882     308577
## 2883     308577
## 2884     308577
## 2885      30854
## 2886      30854
## 2887      30854
## 2888      30854
## 2889      30854
## 2890      30854
## 2891      30854
## 2892      30854
## 2893      30854
## 2894      30854
## 2895      30854
## 2896      30614
## 2897      30614
## 2898      30614
## 2899      30515
## 2900      30515
## 2901      30515
## 2902      30515
## 2903      30515
## 2904      30515
## 2905      30515
## 2906      30515
## 2907      30515
## 2908      30515
## 2909      30515
## 2910      30515
## 2911      30515
## 2912      30515
## 2913      30515
## 2914      30305
## 2915      30305
## 2916      30305
## 2917      30305
## 2918      29719
## 2919      29719
## 2920      29719
## 2921      29719
## 2922      29719
## 2923      29719
## 2924      29719
## 2925      29719
## 2926      29549
## 2927      29477
## 2928      29477
## 2929      29477
## 2930      29477
## 2931      29477
## 2932      29477
## 2933      29477
## 2934      29477
## 2935      29359
## 2936      29359
## 2937      29359
## 2938      29359
## 2939      29359
## 2940      29359
## 2941      29359
## 2942      28922
## 2943      28922
## 2944      28922
## 2945      28922
## 2946      28798
## 2947      28798
## 2948      28782
## 2949      28782
## 2950      28782
## 2951      28526
## 2952      28526
## 2953       2851
## 2954       2851
## 2955       2851
## 2956       2851
## 2957       2851
## 2958       2851
## 2959       2851
## 2960       2851
## 2961       2851
## 2962       2851
## 2963       2851
## 2964       2851
## 2965       2851
## 2966       2851
## 2967       2851
## 2968       2851
## 2969       2851
## 2970       2851
## 2971       2851
## 2972       2851
## 2973       2851
## 2974       2851
## 2975       2851
## 2976       2851
## 2977       2851
## 2978       2851
## 2979       2851
## 2980       2851
## 2981       2851
## 2982       2851
## 2983      28491
## 2984      28491
## 2985      28491
## 2986      28491
## 2987      28457
## 2988      28457
## 2989      28457
## 2990      28457
## 2991      28457
## 2992      28457
## 2993      28457
## 2994      28457
## 2995      28457
## 2996      28457
## 2997      28423
## 2998      28387
## 2999      28387
## 3000      28387
## 3001      28387
## 3002      28009
## 3003      27802
## 3004      27802
## 3005      27802
## 3006      27802
## 3007      27802
## 3008      27802
## 3009      27802
## 3010      27802
## 3011      27802
## 3012      27802
## 3013      27802
## 3014      27802
## 3015      27802
## 3016      27802
## 3017      27802
## 3018      27802
## 3019      27802
## 3020      27802
## 3021      27651
## 3022      27651
## 3023      27456
## 3024      27456
## 3025      27456
## 3026      27228
## 3027      27228
## 3028      27228
## 3029      27228
## 3030      27228
## 3031      27228
## 3032      27228
## 3033      27228
## 3034      27228
## 3035      27228
## 3036      27228
## 3037      27228
## 3038      27090
## 3039      27090
## 3040      27090
## 3041      27001
## 3042      26984
## 3043      26984
## 3044      26984
## 3045      26984
## 3046      26984
## 3047      26984
## 3048      26984
## 3049      26984
## 3050       2665
## 3051       2665
## 3052      26196
## 3053      26196
## 3054      26196
## 3055      26196
## 3056      26196
## 3057      26196
## 3058      26196
## 3059      26196
## 3060      26196
## 3061      26196
## 3062      26196
## 3063      26196
## 3064      26196
## 3065      26196
## 3066      26196
## 3067      26196
## 3068      26196
## 3069      26196
## 3070      26196
## 3071      26196
## 3072      26196
## 3073      26152
## 3074      26152
## 3075      26152
## 3076      26152
## 3077      26037
## 3078      26037
## 3079       2578
## 3080      25656
## 3081      25656
## 3082      25656
## 3083      25656
## 3084      25431
## 3085      25431
## 3086      25431
## 3087      25431
## 3088      25431
## 3089      25431
## 3090      25431
## 3091      25431
## 3092      25431
## 3093      25431
## 3094      25431
## 3095      25431
## 3096      25431
## 3097      25431
## 3098      25431
## 3099      25431
## 3100      25431
## 3101      25431
## 3102      25431
## 3103      25431
## 3104      25431
## 3105      25431
## 3106      25431
## 3107      25431
## 3108      25431
## 3109      25431
## 3110      25431
## 3111      25431
## 3112      25431
## 3113      25431
## 3114      25431
## 3115      25431
## 3116      25265
## 3117      25041
## 3118      25041
## 3119      25041
## 3120      25041
## 3121      25041
## 3122      25041
## 3123      24934
## 3124      24934
## 3125      24934
## 3126      24934
## 3127      24934
## 3128      24934
## 3129      24844
## 3130      24830
## 3131      24780
## 3132      24780
## 3133      24780
## 3134      24780
## 3135      24780
## 3136      24780
## 3137      24635
## 3138      24512
## 3139      24512
## 3140      24512
## 3141      24512
## 3142      24512
## 3143      24512
## 3144      24512
## 3145      24512
## 3146      24508
## 3147      24508
## 3148      24508
## 3149      24508
## 3150      24454
## 3151      24245
## 3152      24245
## 3153      24245
## 3154      24245
## 3155      24245
## 3156      24245
## 3157      24245
## 3158      24227
## 3159      24227
## 3160      24227
## 3161      24227
## 3162      24227
## 3163      24227
## 3164      24227
## 3165      24227
## 3166      24227
## 3167      24227
## 3168      24227
## 3169      24227
## 3170      24227
## 3171      24008
## 3172      24008
## 3173      24008
## 3174      24008
## 3175      24008
## 3176      24008
## 3177      23994
## 3178      23994
## 3179      23994
## 3180      23994
## 3181      23994
## 3182      23994
## 3183      23994
## 3184      23994
## 3185      23994
## 3186      23994
## 3187      23994
## 3188      23994
## 3189      23994
## 3190      23994
## 3191      23994
## 3192      23994
## 3193      23994
## 3194      23994
## 3195      23994
## 3196      23994
## 3197      23878
## 3198      23878
## 3199      23878
## 3200      23878
## 3201      23878
## 3202      23878
## 3203      23878
## 3204      23878
## 3205      23878
## 3206      23490
## 3207      23490
## 3208      23490
## 3209      23396
## 3210      23396
## 3211       2335
## 3212       2335
## 3213       2335
## 3214       2335
## 3215       2335
## 3216      23328
## 3217      23055
## 3218      23055
## 3219      23055
## 3220      23055
## 3221      23055
## 3222      23055
## 3223      23055
## 3224      22984
## 3225      22984
## 3226      22984
## 3227      22984
## 3228      22178
## 3229      22178
## 3230      22178
## 3231      22178
## 3232      22175
## 3233      22175
## 3234      22175
## 3235       2217
## 3236       2217
## 3237       2217
## 3238       2217
## 3239       2217
## 3240       2217
## 3241       2217
## 3242       2217
## 3243       2217
## 3244       2217
## 3245       2217
## 3246       2217
## 3247       2217
## 3248       2217
## 3249      21987
## 3250      21914
## 3251      21914
## 3252      21914
## 3253      21914
## 3254      21914
## 3255       2167
## 3256       2167
## 3257      21609
## 3258      21609
## 3259      21464
## 3260      21464
## 3261      21464
## 3262      21464
## 3263      21464
## 3264      21464
## 3265      21464
## 3266      21464
## 3267      21464
## 3268      21464
## 3269      21464
## 3270      21464
## 3271      21464
## 3272      21464
## 3273      21464
## 3274      21464
## 3275      21464
## 3276      21388
## 3277      21388
## 3278      21388
## 3279      21388
## 3280      21380
## 3281      21206
## 3282      21206
## 3283       2114
## 3284       2114
## 3285       2114
## 3286       2114
## 3287       2114
## 3288      21115
## 3289      20528
## 3290      20528
## 3291      20528
## 3292      20528
## 3293      20528
## 3294      20528
## 3295      20528
## 3296      20528
## 3297      20528
## 3298      20528
## 3299      20528
## 3300      20528
## 3301      20528
## 3302      20528
## 3303      20528
## 3304      20528
## 3305      20528
## 3306      20528
## 3307      20528
## 3308      20528
## 3309      20528
## 3310      20528
## 3311      20528
## 3312      20286
## 3313      20286
## 3314      20286
## 3315      20286
## 3316      20286
## 3317      20286
## 3318      20286
## 3319      20286
## 3320      20286
## 3321      20286
## 3322      20206
## 3323      20206
## 3324      20206
## 3325      20206
## 3326      20206
## 3327      20206
## 3328      20206
## 3329      20206
## 3330      20087
## 3331      20087
## 3332      20087
## 3333      19973
## 3334      19973
## 3335      19973
## 3336      19973
## 3337      19973
## 3338      19803
## 3339      19803
## 3340      19803
## 3341      19803
## 3342      19803
## 3343      19803
## 3344      19803
## 3345      19803
## 3346      19803
## 3347      19803
## 3348      19803
## 3349       1979
## 3350       1979
## 3351       1979
## 3352       1979
## 3353       1979
## 3354       1979
## 3355       1979
## 3356       1979
## 3357       1979
## 3358       1979
## 3359       1979
## 3360       1979
## 3361       1979
## 3362       1979
## 3363       1979
## 3364       1979
## 3365       1979
## 3366       1979
## 3367      19763
## 3368      19763
## 3369      19763
## 3370      19763
## 3371      19763
## 3372      19763
## 3373      19763
## 3374      19763
## 3375      19763
## 3376      19763
## 3377      19763
## 3378      19763
## 3379      19763
## 3380      19763
## 3381      19763
## 3382      19763
## 3383      19763
## 3384      19763
## 3385      19763
## 3386      19763
## 3387      19763
## 3388      19763
## 3389      19763
## 3390      19763
## 3391      19763
## 3392      19763
## 3393      19763
## 3394      19763
## 3395      19763
## 3396      19763
## 3397      19763
## 3398      19763
## 3399      19763
## 3400      19763
## 3401      19763
## 3402      19763
## 3403      19763
## 3404      19763
## 3405      19763
## 3406      19763
## 3407      19763
## 3408      19763
## 3409      19763
## 3410      19763
## 3411       1947
## 3412       1947
## 3413      19365
## 3414      19169
## 3415      19169
## 3416      19169
## 3417      19169
## 3418      19169
## 3419      19169
## 3420      19169
## 3421      19169
## 3422      19169
## 3423      19169
## 3424      19169
## 3425       1905
## 3426       1905
## 3427       1905
## 3428       1905
## 3429       1905
## 3430      18737
## 3431      18737
## 3432      18737
## 3433      18737
## 3434      18737
## 3435      18737
## 3436      18687
## 3437      18687
## 3438      18687
## 3439      18687
## 3440      18687
## 3441       1835
## 3442       1835
## 3443     182000
## 3444     182000
## 3445     182000
## 3446     182000
## 3447     182000
## 3448     182000
## 3449     182000
## 3450     182000
## 3451     182000
## 3452     182000
## 3453     182000
## 3454     182000
## 3455     182000
## 3456     182000
## 3457     182000
## 3458     182000
## 3459     182000
## 3460     182000
## 3461     182000
## 3462     182000
## 3463     182000
## 3464     182000
## 3465     182000
## 3466     182000
## 3467     182000
## 3468     182000
## 3469     182000
## 3470     182000
## 3471     182000
## 3472     182000
## 3473     182000
## 3474     182000
## 3475     182000
## 3476     182000
## 3477     182000
## 3478     182000
## 3479     182000
## 3480     182000
## 3481     182000
## 3482     182000
## 3483     182000
## 3484     182000
## 3485     182000
## 3486     182000
## 3487     182000
## 3488     182000
## 3489     182000
## 3490     182000
## 3491     182000
## 3492     182000
## 3493     182000
## 3494     182000
## 3495      18195
## 3496      18195
## 3497      18195
## 3498      18195
## 3499      18195
## 3500      18195
## 3501      18195
## 3502      18195
## 3503    1795597
## 3504    1795597
## 3505    1795597
## 3506    1795597
## 3507    1795597
## 3508    1795597
## 3509    1795597
## 3510    1795597
## 3511    1795597
## 3512    1795597
## 3513      17845
## 3514      17845
## 3515      17845
## 3516      17663
## 3517      17663
## 3518      17634
## 3519      17634
## 3520       1734
## 3521       1734
## 3522       1734
## 3523      17224
## 3524      17224
## 3525      16897
## 3526      16773
## 3527      16773
## 3528       1654
## 3529       1654
## 3530       1654
## 3531       1654
## 3532       1654
## 3533       1654
## 3534       1654
## 3535       1654
## 3536       1654
## 3537     163466
## 3538     163466
## 3539     163466
## 3540     163466
## 3541     163466
## 3542     163466
## 3543     163466
## 3544     163466
## 3545     163466
## 3546     163466
## 3547     163466
## 3548     163466
## 3549     163466
## 3550     163466
## 3551     163466
## 3552     163466
## 3553     163072
## 3554     163072
## 3555     163072
## 3556     162864
## 3557     162864
## 3558     162864
## 3559     162864
## 3560     162864
## 3561     162864
## 3562     162864
## 3563     162864
## 3564     162864
## 3565     162864
## 3566     162864
## 3567     162864
## 3568     162864
## 3569     162864
## 3570     162864
## 3571     162864
## 3572     162864
## 3573     162864
## 3574     162864
## 3575     162864
## 3576     162864
## 3577     162864
## 3578     162864
## 3579     162864
## 3580     162864
## 3581     162864
## 3582     162864
## 3583     162864
## 3584     162864
## 3585     162864
## 3586     162864
## 3587     162864
## 3588     162864
## 3589     162864
## 3590     162401
## 3591     162401
## 3592     162401
## 3593     162401
## 3594     162371
## 3595     162371
## 3596     162371
## 3597     162371
## 3598     162371
## 3599     162371
## 3600     162371
## 3601     162371
## 3602     162371
## 3603     162371
## 3604     162371
## 3605     162371
## 3606     162371
## 3607     162371
## 3608     162371
## 3609     162371
## 3610     162371
## 3611     162371
## 3612     162371
## 3613     162371
## 3614     162371
## 3615     162371
## 3616     162371
## 3617     162371
## 3618     162371
## 3619     162371
## 3620     162371
## 3621     162371
## 3622     161771
## 3623     161771
## 3624     161771
## 3625     161771
## 3626     161771
## 3627     161653
## 3628     161653
## 3629     161421
## 3630      16126
## 3631     161186
## 3632     161186
## 3633     161186
## 3634     161186
## 3635     161186
## 3636     161186
## 3637     161186
## 3638     161186
## 3639     161186
## 3640     161076
## 3641     161076
## 3642      16083
## 3643      16083
## 3644      16083
## 3645      16083
## 3646      16083
## 3647     159864
## 3648     159864
## 3649     159864
## 3650     159864
## 3651     159864
## 3652     159864
## 3653     159799
## 3654     159799
## 3655     159799
## 3656     159799
## 3657     159799
## 3658     159799
## 3659     159799
## 3660     159799
## 3661     159617
## 3662     159617
## 3663     159617
## 3664     159617
## 3665     159617
## 3666     159499
## 3667     158866
## 3668     158866
## 3669     158866
## 3670     158866
## 3671     158866
## 3672     158866
## 3673     158795
## 3674     158795
## 3675     158795
## 3676     158795
## 3677     158795
## 3678     158795
## 3679     158795
## 3680     158795
## 3681     158795
## 3682     158795
## 3683     158795
## 3684     158795
## 3685     158358
## 3686     158358
## 3687      15831
## 3688      15831
## 3689     157987
## 3690     157987
## 3691     157987
## 3692     157987
## 3693     157987
## 3694     157987
## 3695     157906
## 3696     157906
## 3697     157906
## 3698     157906
## 3699     157906
## 3700     157906
## 3701     157906
## 3702     157715
## 3703     157715
## 3704     157715
## 3705     157715
## 3706     157715
## 3707     157715
## 3708     157636
## 3709     157636
## 3710     157636
## 3711     157636
## 3712     157636
## 3713     157636
## 3714     157538
## 3715     157538
## 3716     157538
## 3717     157538
## 3718     157538
## 3719     157538
## 3720     157538
## 3721     157538
## 3722     157538
## 3723     157538
## 3724     157538
## 3725     157538
## 3726     157538
## 3727     157538
## 3728     157154
## 3729     157112
## 3730     157112
## 3731     157112
## 3732     157112
## 3733     157112
## 3734     157112
## 3735     157112
## 3736     157112
## 3737     157112
## 3738     157112
## 3739     157112
## 3740     157112
## 3741     157112
## 3742     157112
## 3743     157112
## 3744     157112
## 3745     157112
## 3746     157112
## 3747      15690
## 3748      15690
## 3749      15690
## 3750      15690
## 3751      15690
## 3752      15690
## 3753      15690
## 3754      15690
## 3755      15690
## 3756      15690
## 3757      15690
## 3758      15690
## 3759      15690
## 3760      15687
## 3761      15687
## 3762      15687
## 3763      15687
## 3764      15687
## 3765      15687
## 3766      15687
## 3767      15687
## 3768      15687
## 3769      15687
## 3770      15687
## 3771      15687
## 3772      15687
## 3773     156780
## 3774      15670
## 3775      15670
## 3776     156602
## 3777     156602
## 3778     156602
## 3779     156602
## 3780     156602
## 3781     156602
## 3782     156602
## 3783     156602
## 3784     156602
## 3785      15658
## 3786      15658
## 3787      15658
## 3788      15658
## 3789      15658
## 3790      15658
## 3791      15658
## 3792      15658
## 3793      15658
## 3794      15658
## 3795      15658
## 3796      15658
## 3797      15658
## 3798      15658
## 3799      15658
## 3800     156123
## 3801     156123
## 3802     156123
## 3803     156123
## 3804     156123
## 3805     156123
## 3806     156123
## 3807     156123
## 3808     156123
## 3809     156123
## 3810     156123
## 3811     156123
## 3812     156123
## 3813     156123
## 3814     156123
## 3815     156123
## 3816     156123
## 3817     156123
## 3818     156123
## 3819     156123
## 3820     156123
## 3821     156123
## 3822     156123
## 3823     156123
## 3824     156123
## 3825     156123
## 3826     156123
## 3827     156123
## 3828     156123
## 3829     156123
## 3830     156123
## 3831     156095
## 3832     156095
## 3833     156095
## 3834     156095
## 3835     156089
## 3836     156089
## 3837     156089
## 3838     156089
## 3839     156089
## 3840     156089
## 3841     156089
## 3842     156089
## 3843     156089
## 3844     156089
## 3845     156089
## 3846     156089
## 3847     156089
## 3848     156089
## 3849     156089
## 3850     156089
## 3851     156089
## 3852     156089
## 3853     156089
## 3854     156089
## 3855     156089
## 3856     156089
## 3857     156089
## 3858     156089
## 3859     156089
## 3860     156089
## 3861     156089
## 3862     156089
## 3863     156089
## 3864     156089
## 3865     156089
## 3866     156089
## 3867     156089
## 3868       1556
## 3869       1556
## 3870       1556
## 3871       1556
## 3872       1556
## 3873       1556
## 3874       1556
## 3875       1556
## 3876       1556
## 3877       1556
## 3878       1556
## 3879       1556
## 3880     155439
## 3881     155439
## 3882     155439
## 3883     155410
## 3884     155410
## 3885     155410
## 3886     155410
## 3887     155410
## 3888     155410
## 3889     155410
## 3890     155410
## 3891     155410
## 3892     155410
## 3893     155410
## 3894     155410
## 3895     155410
## 3896     155410
## 3897     155410
## 3898     155145
## 3899     155145
## 3900     155145
## 3901     154568
## 3902     154568
## 3903     154568
## 3904     154568
## 3905     154568
## 3906     154568
## 3907     154382
## 3908     154382
## 3909     154382
## 3910     154382
## 3911     154382
## 3912     154350
## 3913     154350
## 3914     154350
## 3915     154350
## 3916     154170
## 3917     154170
## 3918     154170
## 3919     154170
## 3920     154170
## 3921     154020
## 3922     154020
## 3923     154020
## 3924     154020
## 3925     154020
## 3926     154020
## 3927     153472
## 3928     153472
## 3929     153229
## 3930      15260
## 3931      15260
## 3932      15260
## 3933       1526
## 3934       1526
## 3935       1526
## 3936     152119
## 3937     152119
## 3938     152119
## 3939     152119
## 3940     152119
## 3941     152119
## 3942     151992
## 3943     151992
## 3944     151992
## 3945     151992
## 3946      15175
## 3947      15175
## 3948      15175
## 3949     151606
## 3950     151606
## 3951     151606
## 3952     151606
## 3953     151606
## 3954     151606
## 3955     151606
## 3956     151606
## 3957     151606
## 3958     151606
## 3959     151606
## 3960     151606
## 3961     151606
## 3962     151606
## 3963     151606
## 3964     151606
## 3965     151606
## 3966     151606
## 3967     151606
## 3968     151606
## 3969     151606
## 3970     151606
## 3971     151606
## 3972     151503
## 3973     151503
## 3974     151503
## 3975     151503
## 3976     151503
## 3977     151503
## 3978     151503
## 3979     151503
## 3980     151439
## 3981     151439
## 3982     151439
## 3983     151439
## 3984     151439
## 3985     151439
## 3986     151408
## 3987     151408
## 3988     151408
## 3989     151408
## 3990     151408
## 3991     151408
## 3992     151408
## 3993     151408
## 3994     151408
## 3995     151408
## 3996     151408
## 3997     151408
## 3998     151408
## 3999     151408
## 4000     151408
## 4001     151408
## 4002     151408
## 4003     151408
## 4004     151351
## 4005     151351
## 4006     151351
## 4007     151351
## 4008     151351
## 4009     151351
## 4010     151351
## 4011     151351
## 4012     151351
## 4013     151351
## 4014     151351
## 4015     151351
## 4016     151351
## 4017     151351
## 4018     151351
## 4019     151351
## 4020     151351
## 4021     151351
## 4022     151351
## 4023     151268
## 4024     151268
## 4025     151268
## 4026     151268
## 4027     151268
## 4028     151268
## 4029     151268
## 4030     151268
## 4031     151268
## 4032     151268
## 4033     151222
## 4034     151222
## 4035     151222
## 4036     151222
## 4037     151222
## 4038     151222
## 4039     151222
## 4040     151222
## 4041     151088
## 4042     151088
## 4043     151088
## 4044     151088
## 4045     151088
## 4046     151088
## 4047     151088
## 4048     151088
## 4049     151088
## 4050     151088
## 4051     151006
## 4052     151006
## 4053     151006
## 4054     151006
## 4055     150841
## 4056     150841
## 4057     150841
## 4058     150841
## 4059     150841
## 4060     150811
## 4061     150811
## 4062     150811
## 4063     150811
## 4064     150811
## 4065     150807
## 4066     150807
## 4067     150807
## 4068     150807
## 4069     150807
## 4070     150753
## 4071     150753
## 4072     150753
## 4073     150753
## 4074     150694
## 4075     150694
## 4076     150694
## 4077     150694
## 4078     150694
## 4079     150694
## 4080     150694
## 4081     150694
## 4082     150694
## 4083     150694
## 4084     150694
## 4085     150694
## 4086     150694
## 4087     150694
## 4088     150694
## 4089     150694
## 4090     150594
## 4091     150594
## 4092     150582
## 4093     150582
## 4094     150582
## 4095     150582
## 4096     150582
## 4097     150582
## 4098     150582
## 4099     150582
## 4100     150582
## 4101     150582
## 4102     150582
## 4103     150582
## 4104     150582
## 4105     150582
## 4106     150582
## 4107     150582
## 4108     150582
## 4109     150582
## 4110     150582
## 4111     150582
## 4112     150582
## 4113     150582
## 4114     150582
## 4115     150582
## 4116     150582
## 4117     150582
## 4118     150518
## 4119     150518
## 4120     150400
## 4121     150400
## 4122     150400
## 4123     150400
## 4124     150400
## 4125     150207
## 4126     150207
## 4127     150207
## 4128     150207
## 4129     150207
## 4130     150207
## 4131     150207
## 4132     150207
## 4133     149294
## 4134     149294
## 4135     149294
## 4136     149294
## 4137     149240
## 4138     149240
## 4139     149240
## 4140     149240
## 4141     149240
## 4142     149240
## 4143     149240
## 4144     149240
## 4145     149240
## 4146     149240
## 4147     149240
## 4148     149240
## 4149     149240
## 4150     149134
## 4151     149134
## 4152     149134
## 4153     149134
## 4154     149134
## 4155     149134
## 4156     149134
## 4157      14895
## 4158      14895
## 4159      14895
## 4160      14895
## 4161      14895
## 4162      14895
## 4163      14895
## 4164      14895
## 4165      14895
## 4166      14895
## 4167      14895
## 4168      14895
## 4169      14895
## 4170     148846
## 4171      14870
## 4172      14870
## 4173      14870
## 4174      14870
## 4175      14870
## 4176      14870
## 4177      14870
## 4178      14870
## 4179      14870
## 4180      14870
## 4181     148683
## 4182     148683
## 4183     148683
## 4184     148683
## 4185     148683
## 4186     148683
## 4187     148683
## 4188     148683
## 4189     148683
## 4190     148683
## 4191     148683
## 4192     148683
## 4193     148683
## 4194     148683
## 4195     148683
## 4196     148683
## 4197     148323
## 4198     148323
## 4199     148323
## 4200     148243
## 4201     148243
## 4202     148243
## 4203     148243
## 4204     148243
## 4205     148243
## 4206     148243
## 4207     148243
## 4208     148243
## 4209     148243
## 4210     148243
## 4211     148243
## 4212     148243
## 4213     148223
## 4214     148223
## 4215     148223
## 4216     148208
## 4217     147775
## 4218     147775
## 4219      14774
## 4220      14774
## 4221     147722
## 4222     147722
## 4223     147722
## 4224     147722
## 4225     147722
## 4226     147722
## 4227     147722
## 4228     147632
## 4229      14744
## 4230     147425
## 4231     147425
## 4232     147425
## 4233     147425
## 4234     147425
## 4235     147425
## 4236     147425
## 4237     147425
## 4238     147425
## 4239     147425
## 4240     147237
## 4241     147237
## 4242     147237
## 4243     147237
## 4244     147237
## 4245     147237
## 4246     147237
## 4247     147237
## 4248     147237
## 4249     147237
## 4250     147237
## 4251     147237
## 4252     147237
## 4253     147237
## 4254     147237
## 4255     147117
## 4256     146949
## 4257     146949
## 4258     146949
## 4259     146949
## 4260     146949
## 4261     146949
## 4262     146949
## 4263     146949
## 4264     146949
## 4265     146949
## 4266     146949
## 4267     146949
## 4268     146949
## 4269     146949
## 4270     146949
## 4271     146949
## 4272     146949
## 4273     146949
## 4274     146949
## 4275     146949
## 4276     146949
## 4277     146949
## 4278     146949
## 4279     146949
## 4280     146949
## 4281     146949
## 4282     146949
## 4283     146949
## 4284     146949
## 4285     146949
## 4286     146949
## 4287     146000
## 4288     146000
## 4289     145844
## 4290     145844
## 4291     145844
## 4292     145790
## 4293     145541
## 4294     145541
## 4295     145541
## 4296     145541
## 4297     145439
## 4298     145439
## 4299     145309
## 4300     145309
## 4301     145309
## 4302     145309
## 4303     145309
## 4304     145309
## 4305     145309
## 4306     145309
## 4307     145072
## 4308     145072
## 4309     145072
## 4310     144766
## 4311     144766
## 4312     144766
## 4313     144685
## 4314     144685
## 4315     144490
## 4316     144318
## 4317     144318
## 4318     144318
## 4319     144318
## 4320     144318
## 4321     144264
## 4322     144264
## 4323     144264
## 4324     143981
## 4325     143981
## 4326     143580
## 4327     143580
## 4328     143580
## 4329     143580
## 4330     143580
## 4331     143580
## 4332     143580
## 4333     143580
## 4334     143580
## 4335     143580
## 4336     143580
## 4337     143580
## 4338     143580
## 4339     143580
## 4340     143580
## 4341     143580
## 4342     143479
## 4343     143475
## 4344     143475
## 4345     143475
## 4346     143475
## 4347     143475
## 4348     143475
## 4349     143475
## 4350     143475
## 4351     143475
## 4352     143475
## 4353     143475
## 4354     143475
## 4355     143475
## 4356     143475
## 4357     143475
## 4358     143475
## 4359     143475
## 4360     143475
## 4361     143475
## 4362     143475
## 4363     143475
## 4364     143475
## 4365     143475
## 4366     143475
## 4367     143475
## 4368     143475
## 4369     143475
## 4370     143475
## 4371     143475
## 4372     143475
## 4373     143475
## 4374     143475
## 4375     143475
## 4376     143475
## 4377     143475
## 4378     143289
## 4379     143289
## 4380     143289
## 4381     143289
## 4382     143289
## 4383     143289
## 4384     143289
## 4385     143289
## 4386     143265
## 4387     143265
## 4388     143265
## 4389     143265
## 4390     143265
## 4391     143265
## 4392     143265
## 4393     143265
## 4394     143265
## 4395     143265
## 4396     143265
## 4397   14301875
## 4398   14301875
## 4399   14301875
## 4400   14301875
## 4401   14301875
## 4402   14301875
## 4403   14301875
## 4404     142760
## 4405     142760
## 4406     142760
## 4407     142447
## 4408     142447
## 4409     142447
## 4410     142447
## 4411     142447
## 4412     142447
## 4413     142447
## 4414     142447
## 4415     142447
## 4416     142447
## 4417     142447
## 4418     142447
## 4419     142447
## 4420     142447
## 4421     142447
## 4422     142447
## 4423     142447
## 4424     142447
## 4425     142447
## 4426     142447
## 4427     142447
## 4428     142447
## 4429     142447
## 4430     142391
## 4431     142391
## 4432     142391
## 4433     142391
## 4434     142391
## 4435     142391
## 4436     142391
## 4437     141757
## 4438     141757
## 4439     141757
## 4440     141757
## 4441     141757
## 4442     141593
## 4443     141593
## 4444     141476
## 4445     141476
## 4446     141469
## 4447     141469
## 4448     141457
## 4449     141457
## 4450     141430
## 4451     141430
## 4452     141356
## 4453   14099209
## 4454   14099209
## 4455     140672
## 4456     140672
## 4457     140672
## 4458     140661
## 4459     140661
## 4460     140661
## 4461     140661
## 4462     140661
## 4463     140661
## 4464     140661
## 4465     140661
## 4466     140661
## 4467     140637
## 4468     140637
## 4469     140637
## 4470     140637
## 4471     140637
## 4472     140637
## 4473     140371
## 4474     140223
## 4475     140223
## 4476     140223
## 4477     140218
## 4478     140218
## 4479     140144
## 4480     140144
## 4481     139986
## 4482     139986
## 4483       1399
## 4484       1399
## 4485       1399
## 4486       1399
## 4487       1399
## 4488       1399
## 4489       1399
## 4490       1399
## 4491       1399
## 4492       1399
## 4493     139693
## 4494     139693
## 4495      13969
## 4496      13969
## 4497      13969
## 4498      13969
## 4499      13969
## 4500      13969
## 4501      13969
## 4502      13969
## 4503      13969
## 4504      13969
## 4505      13969
## 4506     139615
## 4507     139615
## 4508     139615
## 4509     139598
## 4510     139598
## 4511     139439
## 4512     139439
## 4513     139415
## 4514     139415
## 4515     139415
## 4516     139110
## 4517     139110
## 4518     139086
## 4519     139086
## 4520     139086
## 4521     139086
## 4522     139086
## 4523     139002
## 4524     139002
## 4525     138997
## 4526     138997
## 4527     138828
## 4528     138828
## 4529     138742
## 4530     138742
## 4531     138742
## 4532     138559
## 4533     138559
## 4534     138559
## 4535     138388
## 4536     138388
## 4537     138388
## 4538     138388
## 4539     138192
## 4540     138192
## 4541     138192
## 4542     138192
## 4543     138192
## 4544     137896
## 4545     137896
## 4546     137896
## 4547     137896
## 4548     137896
## 4549     137896
## 4550     137896
## 4551     137896
## 4552     137896
## 4553     137896
## 4554     137896
## 4555     137896
## 4556     137896
## 4557     137896
## 4558     137896
## 4559     137896
## 4560     137896
## 4561     137896
## 4562     137896
## 4563     137891
## 4564     137891
## 4565     137736
## 4566     137689
## 4567     137689
## 4568     137689
## 4569     137689
## 4570     137654
## 4571     137654
## 4572     137654
## 4573     137654
## 4574     137575
## 4575     137575
## 4576     137575
## 4577     137430
## 4578     137430
## 4579     137430
## 4580     137247
## 4581     137247
## 4582     137247
## 4583     137247
## 4584     137247
## 4585     137196
## 4586     137196
## 4587     137196
## 4588     137196
## 4589     137196
## 4590      13679
## 4591      13679
## 4592      13679
## 4593     136735
## 4594     136735
## 4595     136735
## 4596     136735
## 4597     136735
## 4598     136735
## 4599     136735
## 4600     136681
## 4601     136681
## 4602     136681
## 4603     136666
## 4604     136666
## 4605     136666
## 4606     136666
## 4607     136539
## 4608     136539
## 4609     136539
## 4610     136539
## 4611     136539
## 4612       1365
## 4613       1365
## 4614       1365
## 4615       1365
## 4616       1365
## 4617       1365
## 4618       1365
## 4619       1365
## 4620       1365
## 4621       1365
## 4622       1365
## 4623     136469
## 4624     136469
## 4625     136208
## 4626     136208
## 4627     136182
## 4628     136182
## 4629     136082
## 4630     136082
## 4631     135901
## 4632     135901
## 4633     135901
## 4634     135806
## 4635     135806
## 4636     135636
## 4637     135636
## 4638     135569
## 4639     135569
## 4640     135569
## 4641     135569
## 4642     135566
## 4643     135566
## 4644     135369
## 4645     135369
## 4646     135329
## 4647     135329
## 4648     135329
## 4649     135260
## 4650     135260
## 4651     135029
## 4652     135029
## 4653   13472387
## 4654   13472387
## 4655   13472387
## 4656   13472387
## 4657   13472387
## 4658   13472387
## 4659     134459
## 4660     134459
## 4661     134459
## 4662     134459
## 4663     134459
## 4664     134459
## 4665     134458
## 4666     134458
## 4667     134449
## 4668     134449
## 4669     134449
## 4670     134302
## 4671     134302
## 4672     134302
## 4673     134251
## 4674     134251
## 4675     134251
## 4676     134191
## 4677     134191
## 4678     134191
## 4679     134191
## 4680     134191
## 4681     134159
## 4682     134159
## 4683     134159
## 4684     134159
## 4685     134086
## 4686     134086
## 4687     134086
## 4688     134086
## 4689     134086
## 4690     134086
## 4691     134086
## 4692     134086
## 4693     134046
## 4694     134046
## 4695     134046
## 4696     134046
## 4697     134046
## 4698     133848
## 4699     133848
## 4700     133848
## 4701     133547
## 4702     133547
## 4703     133547
## 4704     133435
## 4705     133435
## 4706     133274
## 4707     133141
## 4708     133141
## 4709     133106
## 4710     133106
## 4711     133106
## 4712     133013
## 4713     133013
## 4714     133013
## 4715     132769
## 4716     132769
## 4717     132569
## 4718     132569
## 4719     132569
## 4720     132569
## 4721     132488
## 4722     132488
## 4723     132488
## 4724     132488
## 4725     132488
## 4726     132488
## 4727     132488
## 4728     132368
## 4729     132218
## 4730     132218
## 4731     132176
## 4732     132176
## 4733     132176
## 4734      13207
## 4735      13207
## 4736     131742
## 4737     131742
## 4738     131742
## 4739     131653
## 4740     131653
## 4741     131653
## 4742     131583
## 4743     131583
## 4744     131583
## 4745     131512
## 4746     131512
## 4747     131512
## 4748     131512
## 4749     131512
## 4750     131500
## 4751     131500
## 4752     131500
## 4753     131405
## 4754     131405
## 4755     130928
## 4756     130928
## 4757     130928
## 4758     130928
## 4759     130928
## 4760     130805
## 4761     130805
## 4762     130780
## 4763     130780
## 4764     130780
## 4765     130658
## 4766     130658
## 4767     130658
## 4768     130418
## 4769     130418
## 4770     130326
## 4771     130326
## 4772     130326
## 4773     130292
## 4774     130292
## 4775     130292
## 4776     130292
## 4777     130292
## 4778     130201
## 4779     130201
## 4780      13019
## 4781      13019
## 4782      13019
## 4783      13019
## 4784     130085
## 4785     130085
## 4786     130085
## 4787     129867
## 4788     129694
## 4789     129694
## 4790     129694
## 4791     129694
## 4792     129508
## 4793     129508
## 4794     129434
## 4795     129350
## 4796     129350
## 4797     129330
## 4798     129330
## 4799     128948
## 4800     128948
## 4801     128948
## 4802     128948
## 4803     128948
## 4804     128868
## 4805     128868
## 4806     128868
## 4807     128792
## 4808     128792
## 4809     128792
## 4810     128792
## 4811     128473
## 4812     128473
## 4813     128473
## 4814     128473
## 4815     128236
## 4816     128236
## 4817     128179
## 4818     128179
## 4819     128179
## 4820     127913
## 4821     127913
## 4822     127829
## 4823     127829
## 4824     127829
## 4825     127472
## 4826     127472
## 4827     127472
## 4828     127472
## 4829     127472
## 4830     127472
## 4831     127447
## 4832     127447
## 4833     127447
## 4834     127447
## 4835     127385
## 4836     127385
## 4837     127385
## 4838     127307
## 4839     127307
## 4840     127307
## 4841     127307
## 4842     127307
## 4843     127284
## 4844     127284
## 4845     127284
## 4846     127284
## 4847     127284
## 4848     127284
## 4849     127284
## 4850     127268
## 4851     127268
## 4852     127268
## 4853     127268
## 4854     127268
## 4855     127200
## 4856     127200
## 4857     127060
## 4858     127060
## 4859     127060
## 4860     127060
## 4861     127046
## 4862     127046
## 4863     126751
## 4864     126751
## 4865     126751
## 4866     126751
## 4867     126751
## 4868     126544
## 4869     126544
## 4870     126544
## 4871     126523
## 4872     126523
## 4873     126523
## 4874     126463
## 4875     126463
## 4876     126463
## 4877     126463
## 4878     126449
## 4879     126449
## 4880     126399
## 4881     126399
## 4882     126399
## 4883     126399
## 4884     126399
## 4885      12620
## 4886      12620
## 4887     126084
## 4888     126084
## 4889     126084
## 4890     126053
## 4891     126053
## 4892     126053
## 4893     126036
## 4894     126036
## 4895     125933
## 4896     125933
## 4897     125933
## 4898     125146
## 4899     125146
## 4900     125146
## 4901     125146
## 4902     125146
## 4903     125146
## 4904     125146
## 4905     125130
## 4906     125130
## 4907     125130
## 4908     125130
## 4909     125130
## 4910     125130
## 4911     125130
## 4912     125130
## 4913     125130
## 4914   12505972
## 4915   12505972
## 4916   12505972
## 4917   12505972
## 4918   12505972
## 4919   12505972
## 4920   12505972
## 4921   12505972
## 4922   12505972
## 4923   12505972
## 4924   12505972
## 4925   12505972
## 4926   12505972
## 4927   12505972
## 4928   12505972
## 4929   12505972
## 4930   12505972
## 4931   12505972
## 4932   12505972
## 4933   12505972
## 4934   12505972
## 4935     125003
## 4936     125003
## 4937     125003
## 4938     125003
## 4939     125003
## 4940     125003
## 4941     124974
## 4942     124974
## 4943     124974
## 4944     124974
## 4945     124974
## 4946     124974
## 4947     124973
## 4948     124973
## 4949     124973
## 4950     124973
## 4951     124973
## 4952     124926
## 4953     124926
## 4954     124926
## 4955     124863
## 4956     124863
## 4957     124711
## 4958     124711
## 4959     124711
## 4960     124711
## 4961     124239
## 4962     124239
## 4963     124104
## 4964     124104
## 4965     124003
## 4966     124003
## 4967     123944
## 4968     123944
## 4969     123944
## 4970     123923
## 4971     123923
## 4972     123608
## 4973     123608
## 4974     123589
## 4975     123589
## 4976     123589
## 4977     123546
## 4978     123546
## 4979     123219
## 4980     123219
## 4981     123157
## 4982     123157
## 4983     123157
## 4984       1231
## 4985       1231
## 4986       1231
## 4987       1231
## 4988       1231
## 4989       1231
## 4990       1231
## 4991     123042
## 4992     123042
## 4993      12296
## 4994      12296
## 4995      12296
## 4996     122586
## 4997     122586
## 4998     122506
## 4999     122506
## 5000     122465
## 5001     122465
## 5002     122465
## 5003     122428
## 5004     122428
## 5005     122419
## 5006     122419
## 5007     122268
## 5008     122268
## 5009     122268
## 5010     122189
## 5011     122189
## 5012     121999
## 5013     121999
## 5014     121999
## 5015     121999
## 5016     121945
## 5017     121945
## 5018     121739
## 5019     121739
## 5020     121659
## 5021     121659
## 5022     121659
## 5023     121453
## 5024     121453
## 5025     121443
## 5026     121443
## 5027     121409
## 5028     121409
## 5029     121207
## 5030     121207
## 5031     121207
## 5032     121185
## 5033     121185
## 5034     121185
## 5035     121185
## 5036     120798
## 5037     120798
## 5038     120634
## 5039     120634
## 5040     120626
## 5041     120626
## 5042     120479
## 5043     120479
## 5044     120421
## 5045     120421
## 5046     120363
## 5047     120363
## 5048     120301
## 5049     120301
## 5050     119787
## 5051     119787
## 5052     119709
## 5053     119709
## 5054      11963
## 5055      11963
## 5056      11963
## 5057      11963
## 5058      11963
## 5059      11963
## 5060      11963
## 5061      11963
## 5062      11963
## 5063      11963
## 5064      11963
## 5065      11963
## 5066      11963
## 5067      11963
## 5068      11963
## 5069      11963
## 5070      11963
## 5071      11963
## 5072      11963
## 5073      11963
## 5074      11963
## 5075     119554
## 5076     119554
## 5077     119554
## 5078     119380
## 5079     119380
## 5080     119346
## 5081     119346
## 5082     119334
## 5083     119334
## 5084     119314
## 5085     119314
## 5086     119240
## 5087     119240
## 5088     119188
## 5089     119188
## 5090     119188
## 5091     119188
## 5092     119129
## 5093     119129
## 5094     118891
## 5095     118891
## 5096     118891
## 5097     118891
## 5098     118891
## 5099     118891
## 5100     118891
## 5101     118798
## 5102     118798
## 5103     118798
## 5104     118798
## 5105     118798
## 5106     118758
## 5107     118758
## 5108     118758
## 5109     118751
## 5110     118751
## 5111     118751
## 5112     118724
## 5113     118724
## 5114     118724
## 5115     118665
## 5116     118665
## 5117     118665
## 5118     118506
## 5119     118506
## 5120     118506
## 5121     118489
## 5122     118489
## 5123     118489
## 5124     118142
## 5125     118142
## 5126     118142
## 5127     118015
## 5128     118015
## 5129     118015
## 5130     117970
## 5131     117970
## 5132     117970
## 5133     117954
## 5134     117954
## 5135     117903
## 5136     117903
## 5137      11779
## 5138      11779
## 5139      11779
## 5140     117710
## 5141     117710
## 5142     117661
## 5143     117661
## 5144     117661
## 5145     117661
## 5146     117661
## 5147      11766
## 5148      11766
## 5149      11766
## 5150      11766
## 5151      11749
## 5152     117201
## 5153     117201
## 5154     117120
## 5155     117120
## 5156     117081
## 5157     117081
## 5158     116653
## 5159     116653
## 5160     116653
## 5161     116653
## 5162     116523
## 5163     116523
## 5164     116523
## 5165     116523
## 5166     116509
## 5167     116509
## 5168     116509
## 5169     116477
## 5170     116477
## 5171     116477
## 5172     116449
## 5173     116449
## 5174     116449
## 5175     116449
## 5176     116449
## 5177     116449
## 5178     116449
## 5179     116449
## 5180     116449
## 5181     116420
## 5182     116420
## 5183     116420
## 5184     116351
## 5185     116351
## 5186     116346
## 5187     116346
## 5188     116321
## 5189     116321
## 5190     116254
## 5191     116254
## 5192     116254
## 5193     116198
## 5194     116198
## 5195     116195
## 5196     116195
## 5197     116160
## 5198     116160
## 5199     116042
## 5200     116042
## 5201     116042
## 5202     115948
## 5203     115948
## 5204     115948
## 5205     115948
## 5206     115909
## 5207     115909
## 5208     115904
## 5209     115904
## 5210     115904
## 5211     115772
## 5212     115772
## 5213     115772
## 5214     115772
## 5215     115772
## 5216     115725
## 5217     115725
## 5218     115725
## 5219     115725
## 5220     115605
## 5221     115605
## 5222     115590
## 5223     115590
## 5224     115590
## 5225     115482
## 5226     115482
## 5227     115107
## 5228     115107
## 5229     115027
## 5230     115027
## 5231     115027
## 5232      11499
## 5233      11499
## 5234      11499
## 5235      11499
## 5236      11499
## 5237     114873
## 5238     114873
## 5239     114804
## 5240     114804
## 5241     114804
## 5242     114546
## 5243     114546
## 5244     114496
## 5245     114496
## 5246     114449
## 5247     114449
## 5248     114449
## 5249     114222
## 5250     114222
## 5251     114185
## 5252     114185
## 5253     114025
## 5254     114025
## 5255     114025
## 5256     114000
## 5257     114000
## 5258     114000
## 5259     113904
## 5260     113904
## 5261     113904
## 5262     113904
## 5263     113904
## 5264     113904
## 5265     113904
## 5266     113416
## 5267     113323
## 5268     113323
## 5269     113323
## 5270     113323
## 5271     113323
## 5272     113214
## 5273     113214
## 5274     113214
## 5275     113214
## 5276     113093
## 5277     113093
## 5278     113070
## 5279     113070
## 5280     113070
## 5281     113070
## 5282     113070
## 5283     113070
## 5284     113070
## 5285     113070
## 5286     113070
## 5287     112917
## 5288     112917
## 5289     112917
## 5290      11281
## 5291      11281
## 5292      11281
## 5293      11281
## 5294      11281
## 5295      11281
## 5296      11281
## 5297      11281
## 5298      11281
## 5299      11281
## 5300      11281
## 5301     112672
## 5302     112672
## 5303     112672
## 5304     112672
## 5305     112672
## 5306     112635
## 5307     112635
## 5308     112635
## 5309     112635
## 5310     112550
## 5311     112550
## 5312     112550
## 5313     112550
## 5314     112550
## 5315     112550
## 5316     112550
## 5317     112489
## 5318     112489
## 5319     112489
## 5320     112417
## 5321     112417
## 5322     112417
## 5323     112279
## 5324     112279
## 5325     112272
## 5326     112272
## 5327     112272
## 5328     112272
## 5329     112272
## 5330     112272
## 5331     112147
## 5332     112147
## 5333     111868
## 5334     111868
## 5335     111868
## 5336     111807
## 5337     111807
## 5338     111746
## 5339     111746
## 5340     111746
## 5341     111723
## 5342     111723
## 5343     111425
## 5344     111425
## 5345     111425
## 5346     111424
## 5347     111424
## 5348     111424
## 5349     111424
## 5350     111397
## 5351     111397
## 5352     111273
## 5353     111273
## 5354     111273
## 5355     111273
## 5356     111194
## 5357     111194
## 5358     111035
## 5359     111035
## 5360     111035
## 5361     111035
## 5362     111035
## 5363     110998
## 5364     110998
## 5365     110998
## 5366     110998
## 5367     110998
## 5368     110998
## 5369     110988
## 5370     110988
## 5371     110988
## 5372     110988
## 5373     110988
## 5374      11092
## 5375      11092
## 5376      11092
## 5377      11092
## 5378      11092
## 5379      11092
## 5380      11092
## 5381     110865
## 5382     110865
## 5383     110774
## 5384     110774
## 5385     110774
## 5386     110774
## 5387     110774
## 5388     110774
## 5389     110394
## 5390     110394
## 5391     110148
## 5392     110148
## 5393     110087
## 5394     110087
## 5395     110017
## 5396     110017
## 5397     110017
## 5398     110017
## 5399      11001
## 5400      11001
## 5401      11001
## 5402      11001
## 5403      11001
## 5404      11001
## 5405      11001
## 5406      11001
## 5407      11001
## 5408      11001
## 5409      11001
## 5410      11001
## 5411      11001
## 5412      11001
## 5413      11001
## 5414      11001
## 5415      11001
## 5416      11001
## 5417      11001
## 5418     109970
## 5419     109970
## 5420     109844
## 5421     109844
## 5422     109844
## 5423     109844
## 5424     109816
## 5425     109816
## 5426     109816
## 5427     109785
## 5428     109785
## 5429     109785
## 5430     109785
## 5431     109785
## 5432     109785
## 5433     109713
## 5434     109713
## 5435     109493
## 5436     109493
## 5437     109493
## 5438     109493
## 5439     109493
## 5440     109475
## 5441     109475
## 5442     109475
## 5443     109350
## 5444     109350
## 5445     109350
## 5446     109350
## 5447     109338
## 5448     109338
## 5449     109338
## 5450     108905
## 5451     108905
## 5452     108518
## 5453     108518
## 5454     108518
## 5455      10845
## 5456      10845
## 5457     108371
## 5458     108371
## 5459     108345
## 5460     108345
## 5461     108345
## 5462     108345
## 5463     108345
## 5464     108345
## 5465     108345
## 5466     108345
## 5467     108175
## 5468     108175
## 5469     108070
## 5470     108070
## 5471     107927
## 5472     107927
## 5473     107909
## 5474     107909
## 5475     107909
## 5476     107909
## 5477     107909
## 5478     107909
## 5479     107896
## 5480     107896
## 5481       1078
## 5482       1078
## 5483       1078
## 5484       1078
## 5485       1078
## 5486       1078
## 5487       1078
## 5488     107727
## 5489     107727
## 5490     107727
## 5491     107727
## 5492     107727
## 5493     107727
## 5494     107727
## 5495     107727
## 5496     107582
## 5497     107582
## 5498     107580
## 5499     107580
## 5500     107157
## 5501     107157
## 5502     107157
## 5503       1070
## 5504     106932
## 5505     106932
## 5506     106932
## 5507     106832
## 5508     106832
## 5509     106832
## 5510     106832
## 5511     106832
## 5512     106832
## 5513     106725
## 5514     106725
## 5515     106725
## 5516      10632
## 5517      10632
## 5518     105692
## 5519     105692
## 5520     105692
## 5521     105692
## 5522     105273
## 5523     105273
## 5524     105273
## 5525     105273
## 5526     105251
## 5527     105251
## 5528      10500
## 5529      10500
## 5530      10500
## 5531      10500
## 5532     104688
## 5533     104688
## 5534     104688
## 5535     104688
## 5536     104669
## 5537     104669
## 5538     104636
## 5539     104636
## 5540     104636
## 5541     104594
## 5542     104594
## 5543     104594
## 5544     104594
## 5545     104594
## 5546     104570
## 5547     104570
## 5548     104202
## 5549     104202
## 5550     104202
## 5551     103561
## 5552     103561
## 5553     103561
## 5554     103561
## 5555     103561
## 5556     103561
## 5557     103561
## 5558     103561
## 5559     103561
## 5560     103561
## 5561     103454
## 5562     103454
## 5563     103454
## 5564     103444
## 5565     103444
## 5566     103444
## 5567      10334
## 5568      10334
## 5569      10334
## 5570      10334
## 5571      10334
## 5572     102965
## 5573     102965
## 5574     102965
## 5575     102807
## 5576     102807
## 5577     102807
## 5578     102807
## 5579     102807
## 5580     102807
## 5581     102797
## 5582     102797
## 5583     102797
## 5584     102797
## 5585     102797
## 5586     102797
## 5587     102797
## 5588     102797
## 5589     102797
## 5590     102797
## 5591     102797
## 5592     102797
## 5593     102793
## 5594     102793
## 5595     102793
## 5596     102793
## 5597     102298
## 5598     102298
## 5599     102298
## 5600     102298
## 5601     102298
## 5602     102298
## 5603     102298
## 5604     102298
## 5605     102298
## 5606     102298
## 5607     102298
## 5608     102298
## 5609     102298
## 5610     102298
## 5611     102298
## 5612     102298
## 5613     102298
## 5614     102298
## 5615     102298
## 5616     102298
## 5617     102298
## 5618     102298
## 5619     102298
## 5620     102298
## 5621     102298
## 5622     102151
## 5623     102151
## 5624     102151
## 5625     102151
## 5626     102151
## 5627     102151
## 5628     102047
## 5629     102047
## 5630     102047
## 5631     102047
## 5632     102047
## 5633     102047
## 5634     101927
## 5635     101927
## 5636     101927
## 5637     101927
## 5638     101927
## 5639     101927
## 5640     101927
## 5641     101927
## 5642     101927
## 5643     101927
## 5644     101927
## 5645     101927
## 5646     101927
## 5647     101927
## 5648     101927
## 5649     101927
## 5650     101927
## 5651     101927
## 5652     101793
## 5653     101793
## 5654     101793
## 5655     101793
## 5656     101793
## 5657     101084
## 5658     101084
## 5659     101084
## 5660     101084
## 5661     101084
## 5662     101084
## 5663     101084
## 5664     101084
## 5665     101073
## 5666     101073
## 5667     101073
## 5668     101073
## 5669     101073
## 5670     101073
## 5671     101073
## 5672     101073
## 5673     101026
## 5674     101026
## 5675     101026
## 5676     101026
## 5677     101026
## 5678     101015
## 5679     101015
## 5680     101015
## 5681     101015
## 5682       1010
## 5683       1010
## 5684     100992
## 5685     100992
## 5686     100992
## 5687     100992
## 5688     100992
## 5689     100987
## 5690     100987
## 5691     100987
## 5692     100987
## 5693     100987
## 5694     100766
## 5695     100766
## 5696     100766
## 5697     100766
## 5698     100766
## 5699     100766
## 5700     100766
## 5701     100766
## 5702     100766
## 5703     100766
## 5704      10074
## 5705      10074
## 5706     100646
## 5707     100643
## 5708     100643
## 5709     100563
## 5710     100563
## 5711     100563
## 5712     100169
## 5713     100169
## 5714     100169
## 5715     100169
## 5716     100169
## 5717     100169
##                                                                                      category
## 1                                                      1993 American television series debuts
## 2                                                     2015 American television series endings
## 3                                                 1990s American late-night television series
## 4                                                 2000s American late-night television series
## 5                                                 2010s American late-night television series
## 6                                                    1990s American variety television series
## 7                                                    2000s American variety television series
## 8                                                    2010s American variety television series
## 9                                                                           CBS network shows
## 10                                                                  Late Show (CBS TV series)
## 11                                                                            David Letterman
## 12                                                       English-language television programs
## 13                                Primetime Emmy Award for Outstanding Variety Series winners
## 14                                                Television series by CBS Television Studios
## 15                                          Television series by Worldwide Pants Incorporated
## 16                                           Television series with live action and animation
## 17                                                Television shows filmed in New York (state)
## 18                                                                       Disambiguation pages
## 19                                                                           Rigvedic deities
## 20                                                                                 Hindu gods
## 21                                                                       Sky and weather gods
## 22                                                               Wikipedia supplemental pages
## 23                                                                           Wikipedia how-to
## 24                                              Wikipedia essays on building the encyclopedia
## 25                                                                      Wikipedia editor help
## 26                                                             Wikipedia essays about editing
## 27                                                                        Wikipedia page help
## 28                                                                                1901 births
## 29                                                                                1974 deaths
## 30                                                           American people of Irish descent
## 31                                                          American television personalities
## 32                                                              Burials at Ferncliff Cemetery
## 33                                                     Deaths from cancer in New York (state)
## 34                                                              Deaths from esophageal cancer
## 35                                                                          Gossip columnists
## 36                                                Television personalities from New York City
## 37                                                                       Disambiguation pages
## 38                                                            Place name disambiguation pages
## 39                                                                                1659 births
## 40                                                                                1734 deaths
## 41                                                                        People from Ansbach
## 42                                                    People from the Principality of Ansbach
## 43                                                                            German chemists
## 44                                                             17th-century German physicians
## 45                                                             18th-century German physicians
## 46                                                                17th-century German writers
## 47                                                                18th-century German writers
## 48                                                                  University of Jena alumni
## 49                                                                        German male writers
## 50                                                                               Syngman Rhee
## 51                                                                                1875 births
## 52                                                                                1965 deaths
## 53                                                                          People from Haeju
## 54                                                                  Presidents of South Korea
## 55                                                                   Prime Ministers of Korea
## 56                                                                      Joseon Dynasty people
## 57                                                    Korean expatriates in the United States
## 58                                                              Korean independence activists
## 59                                                                        Korean nationalists
## 60                                                        George Washington University alumni
## 61                                                                  Harvard University alumni
## 62                                                                                House of Yi
## 63                                                                Princeton University alumni
## 64                                                               South Korean anti-communists
## 65                                                                    South Korean Methodists
## 66                                                                     Korean revolutionaries
## 67                                                    Liberal Party (South Korea) politicians
## 68                                                              First Republic of South Korea
## 69                                            Speakers of the National Assembly (South Korea)
## 70                                                                          Yi clan of Jeonju
## 71                                                        Deaths from cerebrovascular disease
## 72                                                                World Peace Prize laureates
## 73                                                                       Disambiguation pages
## 74                                                      Object-oriented programming languages
## 75                                                          Class-based programming languages
## 76                                                                Object-oriented programming
## 77                                                             Formal specification languages
## 78                                                        High Integrity Programming Language
## 79                                                      Programming languages created in 1986
## 80                                                                       Disambiguation pages
## 81                                                            Place name disambiguation pages
## 82                                                                              Egyptian gods
## 83                                                                             Nubian deities
## 84                                                                                Savior gods
## 85                                                                       Sky and weather gods
## 86                                                                                   War gods
## 87                                                                       Comparing card games
## 88                                                                         Louisiana parishes
## 89                                                                   Vernon Parish, Louisiana
## 90                                                           1871 establishments in Louisiana
## 91                                                       Populated places established in 1871
## 92                                                                          Arkansas counties
## 93                                                                    Dallas County, Arkansas
## 94                                                            1845 establishments in Arkansas
## 95                                                       Populated places established in 1845
## 96                                                                                  35 births
## 97                                                                                 100 deaths
## 98                                                                 Ancient Roman rhetoricians
## 99                                                                     Latin-language writers
## 100                                                                     Ancient Roman writers
## 101                                                                          Literary critics
## 102                                                                        Literary theorists
## 103                                                                        Rhetoric theorists
## 104                                                                  Silver Age Latin writers
## 105                                                                           Trope theorists
## 106                                                                      Romans from Hispania
## 107                                                                        1st-century Romans
## 108                                                                       1st-century writers
## 109                                                                                     Fabii
## 110                                                                     1st-century educators
## 111                                                             Georgia (U.S. state) counties
## 112                                                                     Bryan County, Georgia
## 113                                               1793 establishments in Georgia (U.S. state)
## 114                                                                Savannah metropolitan area
## 115                                                      Populated places established in 1793
## 116                                                                                    Energy
## 117                                                                           State functions
## 118                                                                            Idaho counties
## 119                                                              1915 establishments in Idaho
## 120                                                                    Boundary County, Idaho
## 121                                                      Populated places established in 1915
## 122                                                                            Idaho counties
## 123                                                                      Cassia County, Idaho
## 124                                                      Populated places established in 1879
## 125                                                           Burley, Idaho micropolitan area
## 126                                                    1879 establishments in Idaho Territory
## 127                                                                         Illinois counties
## 128                                                           1821 establishments in Illinois
## 129                                                      Populated places established in 1821
## 130                                                                 Hamilton County, Illinois
## 131                                                                              Little Egypt
## 132                                                  Mount Vernon, Illinois micropolitan area
## 133                                                                         Illinois counties
## 134                                                           1841 establishments in Illinois
## 135                                                      Populated places established in 1841
## 136                                                                 Woodford County, Illinois
## 137                                                                  Peoria metropolitan area
## 138                                                                           Kansas counties
## 139                                                                      Kiowa County, Kansas
## 140                                                             1867 establishments in Kansas
## 141                                                      Populated places established in 1867
## 142                                                                         Kentucky counties
## 143                                                                  Elliott County, Kentucky
## 144                                                                  Dry counties of Kentucky
## 145                                                                    Counties of Appalachia
## 146                                                           1869 establishments in Kentucky
## 147                                                      Populated places established in 1869
## 148                                                                      Disambiguation pages
## 149                                                                      Disambiguation pages
## 150                                                                                 TOPIX 100
## 151                                                              1918 establishments in Japan
## 152                                                             Audio equipment manufacturers
## 153                                                                     Battery manufacturers
## 154                                                       Companies based in Osaka Prefecture
## 155                                    Companies formerly listed on the London Stock Exchange
## 156                                  Companies formerly listed on the New York Stock Exchange
## 157                                         Companies listed on the Osaka Securities Exchange
## 158                                              Companies listed on the Tokyo Stock Exchange
## 159                                                               Computer hardware companies
## 160                                                                Computer printer companies
## 161                                                Conglomerate companies established in 1918
## 162                                                           Conglomerate companies of Japan
## 163                                                            Consumer battery manufacturers
## 164                                                               Consumer electronics brands
## 165                                                              Cycle manufacturers of Japan
## 166                                                                Defense companies of Japan
## 167                                                              Display technology companies
## 168                                                 Electronics companies established in 1918
## 169                                                            Electronics companies of Japan
## 170                                                                  Headphones manufacturers
## 171                                                              Home appliance manufacturers
## 172                                                              HVAC manufacturing companies
## 173                                                                           Japanese brands
## 174                                                    Japanese companies established in 1918
## 175                                                                             Kadoma, Osaka
## 176                                                                           Lighting brands
## 177                                               Manufacturing companies established in 1918
## 178                                                           Medical equipment manufacturers
## 179                                                                  Microphone manufacturers
## 180                                                                Mobile phone manufacturers
## 181                                            Multinational companies headquartered in Japan
## 182                                                                     Netbook manufacturers
## 183                                                                                 Panasonic
## 184                                                            Photography companies of Japan
## 185                                                                   Point of sale companies
## 186                                                       Portable audio player manufacturers
## 187                                                                  Power tool manufacturers
## 188                                                               Robotics companies of Japan
## 189                                                                   Semiconductor companies
## 190                                                          Semiconductor companies of Japan
## 191                                                  Technology companies established in 1918
## 192                                                             Technology companies of Japan
## 193                                                              Vacuum cleaner manufacturers
## 194                                                       Wireless Power Consortium companies
## 195                                                             Video equipment manufacturers
## 196                                                                      1863 in American law
## 197                                                         Abolitionism in the United States
## 198                                                        African Americans in the Civil War
## 199                                                              American Civil War documents
## 200                                                    History of the United States (1849–65)
## 201                                                                  Human rights instruments
## 202                                                             Presidency of Abraham Lincoln
## 203                                                                             Proclamations
## 204                                                              Works about American slavery
## 205                                                                 1863 in American politics
## 206                                                                            1863 documents
## 207                                                     United States presidential directives
## 208                                                            United States executive orders
## 209                                                                         Michigan counties
## 210                                                                    Ionia County, Michigan
## 211                                                            Grand Rapids metropolitan area
## 212                                                           1837 establishments in Michigan
## 213                                                      Populated places established in 1837
## 214                                                                      Mississippi counties
## 215                                                               Calhoun County, Mississippi
## 216                                                                    Counties of Appalachia
## 217                                                        1852 establishments in Mississippi
## 218                                                      Populated places established in 1852
## 219                                                                              1170s births
## 220                                                                               1253 deaths
## 221                                                              Medieval English theologians
## 222                                                                     Medieval philosophers
## 223                                                               Roman Catholic philosophers
## 224                                                                   Scholastic philosophers
## 225                                                                    People from Stradbroke
## 226                                                                        English scientists
## 227                                                                      English philosophers
## 228                                                                       English Franciscans
## 229                                                                   Philosophers of science
## 230                                                          Roman Catholic cleric-scientists
## 231                                                                        Bishops of Lincoln
## 232                                                                  Archdeacons of Leicester
## 233                                                                                    Clerks
## 234                                                     Academics of the University of Oxford
## 235                                                   Chancellors of the University of Oxford
## 236                                                       13th-century Roman Catholic bishops
## 237                                                                13th-century Latin writers
## 238                                                   13th-century Roman Catholic theologians
## 239                                                                   Greek–Latin translators
## 240                                                                         Missouri counties
## 241                                                                    Perry County, Missouri
## 242                                                 1820 establishments in Missouri Territory
## 243                                                      Populated places established in 1820
## 244                                                Missouri counties on the Mississippi River
## 245                                                                          Ernest Hemingway
## 246                                                                          Hemingway family
## 247                                                                               1899 births
## 248                                                                               1961 deaths
## 249                                                           20th-century American novelists
## 250                                                                   American male novelists
## 251                                                                    American war novelists
## 252                                                 20th-century American short story writers
## 253                                                                        American essayists
## 254                                                                   American travel writers
## 255                                                              American short story writers
## 256                                                                       American memoirists
## 257                                                                      Writers from Chicago
## 258                                                             Writers who committed suicide
## 259                                                                         Modernist writers
## 260                                                                 American male journalists
## 261                                                                      American journalists
## 262                                                                       Toronto Star people
## 263                                                               American war correspondents
## 264                                                                 Journalists from Illinois
## 265                                                        War correspondents of World War II
## 266                                                            American expatriates in Canada
## 267                                                              American expatriates in Cuba
## 268                                                            American expatriates in France
## 269                                                             American expatriates in Italy
## 270                                                             American expatriates in Spain
## 271                                                                          American hunters
## 272                                                                          American fishers
## 273                                                American military personnel of World War I
## 274                                                  American people of the Spanish Civil War
## 275                                                                 French Resistance members
## 276                                                                 Operation Overlord people
## 277                                                                  American Nobel laureates
## 278                                                                  Bancarella Prize winners
## 279                                                             Nobel laureates in Literature
## 280                                                        Pulitzer Prize for Fiction winners
## 281                                          Recipients of the Silver Medal of Military Valor
## 282                                                                  American Roman Catholics
## 283                                                             Converts to Roman Catholicism
## 284                                                              History of Key West, Florida
## 285                                                           Writers from Oak Park, Illinois
## 286                                                              Suicides by firearm in Idaho
## 287                                              Survivors of aviation accidents or incidents
## 288                                                                    American anti-fascists
## 289                                                                   American male essayists
## 290                                                         American male short story writers
## 291                                                                People from Ketchum, Idaho
## 292                                                         20th-century American journalists
## 293                                                                 20th-century male writers
## 294                                                         Journalists who committed suicide
## 295                                                                             Male suicides
## 296                                                                   Novelists from Illinois
## 297                                                                           Areas of London
## 298                                               Districts of the London Borough of Hounslow
## 299                                                                                 Middlesex
## 300                                                                         Nebraska counties
## 301                                                                    Grant County, Nebraska
## 302                                                           1887 establishments in Nebraska
## 303                                                      Populated places established in 1887
## 304                                                                           Nevada counties
## 305                                                                    Mineral County, Nevada
## 306                                                             1911 establishments in Nevada
## 307                                                      Populated places established in 1911
## 308                                                                       New Mexico counties
## 309                                                                   Taos County, New Mexico
## 310                                               1852 establishments in New Mexico Territory
## 311                                                      Populated places established in 1852
## 312                                                                   North Carolina counties
## 313                                                            Pamlico County, North Carolina
## 314                                                     1872 establishments in North Carolina
## 315                                                                New Bern micropolitan area
## 316                                                      Populated places established in 1872
## 317                                                                     North Dakota counties
## 318                                                               Dickey County, North Dakota
## 319                                                   1882 establishments in Dakota Territory
## 320                                                      Populated places established in 1882
## 321                                                                             Ohio counties
## 322                                                                    Muskingum County, Ohio
## 323                                                                          Appalachian Ohio
## 324                                                                    Counties of Appalachia
## 325                                                               1804 establishments in Ohio
## 326                                                      Populated places established in 1804
## 327                                                                                Inuit gods
## 328                                                            North American mythology stubs
## 329                                                               Maya mythology and religion
## 330                                                                          Mayan literature
## 331                                                                       Guatemalan folklore
## 332                                                         Mesoamerican historical documents
## 333                                                                           Religious texts
## 334                                                                            Creation myths
## 335                                                                        16th-century books
## 336                                                                                   K'iche'
## 337                                                                              Maya deities
## 338                                                               Maya mythology and religion
## 339                                                       Mesoamerican mythology and religion
## 340                                                                  Religion in the Americas
## 341                                                      Pre-Columbian mythology and religion
## 342                                                                         Oklahoma counties
## 343                                                           1907 establishments in Oklahoma
## 344                                                      Populated places established in 1907
## 345                                                                 Stephens County, Oklahoma
## 346                                                                           Oregon counties
## 347                                                                    Wheeler County, Oregon
## 348                                                             1899 establishments in Oregon
## 349                                                      Populated places established in 1899
## 350                                                                           Oregon counties
## 351                                                                    Yamhill County, Oregon
## 352                                                     1843 establishments in Oregon Country
## 353                                                      Populated places established in 1843
## 354                                                                Portland metropolitan area
## 355                                                                     Pennsylvania counties
## 356                                                                Berks County, Pennsylvania
## 357                                                       1752 establishments in Pennsylvania
## 358                                                      Populated places established in 1752
## 359                                                                     Pennsylvania counties
## 360                                                               Mercer County, Pennsylvania
## 361                                                                            Texas counties
## 362                                                                       Delta County, Texas
## 363                                                              1870 establishments in Texas
## 364                                                      Populated places established in 1870
## 365                                                      Dallas–Fort Worth metroplex counties
## 366                                                                            Texas counties
## 367                                                                    Gonzales County, Texas
## 368                                              1837 establishments in the Republic of Texas
## 369                                                      Populated places established in 1837
## 370                                                                            Texas counties
## 371                                                                  Hutchinson County, Texas
## 372                                                              1901 establishments in Texas
## 373                                                      Populated places established in 1901
## 374                                                                           Texas Panhandle
## 375                                                                            Texas counties
## 376                                                                     Sherman County, Texas
## 377                                                              1876 establishments in Texas
## 378                                                      Populated places established in 1876
## 379                                                                           Texas Panhandle
## 380                                                               Washington (state) counties
## 381                                                                   King County, Washington
## 382                                                   1852 establishments in Oregon Territory
## 383                                                      Populated places established in 1852
## 384                                                                 Seattle metropolitan area
## 385                                                                        Western Washington
## 386                                                                 Ships of the English navy
## 387                                                                Individual sailing vessels
## 388                                                                      Woolwich-built ships
## 389                                                                        16th-century ships
## 390                                                                           Aztec goddesses
## 391                                                                           Death goddesses
## 392                                                                       Fertility goddesses
## 393                                                                          Mother goddesses
## 394                                                                       Childhood goddesses
## 395                                                                                Aztec gods
## 396                                                                                Death gods
## 397                                                              Mesoamerican mythology stubs
## 398                                                                           Aztec goddesses
## 399                                                                    Agricultural goddesses
## 400                                                                           Death goddesses
## 401                                                                           Solar goddesses
## 402                                                              Mesoamerican mythology stubs
## 403                                                                         Latvian mythology
## 404                                                                   1879 in Austria-Hungary
## 405                                              Military alliances involving Austria-Hungary
## 406                                                           19th-century military alliances
## 407                                                                             1879 treaties
## 408                                            Military alliances involving the German Empire
## 409                                                                           1879 in Germany
## 410                                                                 Austria–Germany relations
## 411                                                         Austria-Hungary–Germany relations
## 412                                                                                  Antimony
## 413                                                                         Chemical elements
## 414                                                                                Metalloids
## 415                                                                   Native element minerals
## 416                                                                         Nuclear materials
## 417                                                                                Pnictogens
## 418                                                                         Trigonal minerals
## 419                                                                        University of Bonn
## 420                                                                   Universities in Germany
## 421                                                                                      Bonn
## 422                                              Educational institutions established in 1818
## 423                                       Universities and colleges in North Rhine-Westphalia
## 424                                                               Tourist attractions in Bonn
## 425                                                                         Deposit libraries
## 426                                                                         Libraries in Bonn
## 427                                                            1818 establishments in Prussia
## 428                                                            Holocaust locations in Germany
## 429                                         Agricultural universities and colleges in Germany
## 430                                                                     Pennsylvania counties
## 431                                                            Armstrong County, Pennsylvania
## 432                                                       1800 establishments in Pennsylvania
## 433                                                      Populated places established in 1800
## 434                                                              Pittsburgh metropolitan area
## 435                                                                    Counties of Appalachia
## 436                                                                               1928 births
## 437                                                                               2000 deaths
## 438                                                                     French film directors
## 439                                                                     French film producers
## 440                                                                   French male film actors
## 441                                                                  French male stage actors
## 442                                                                       Paris Match writers
## 443                                                                    Male actors from Paris
## 444                                                           20th-century French male actors
## 445                                                              Deaths from cancer in France
## 446                                                                      Deaths from lymphoma
## 447                                                                              Fonda family
## 448                                                                         People from Paris
## 449                                                          French people of Russian descent
## 450                                                     6th-century establishments in Germany
## 451                                                         Germanic archaeological artifacts
## 452                                                                       Danish architecture
## 453                                                                      Geography of Denmark
## 454                                                           Geography of Schleswig-Holstein
## 455                                                             History of Schleswig-Holstein
## 456                                                               Military history of Denmark
## 457                                                                      Iron Age Scandinavia
## 458                                                           Viking buildings and structures
## 459                                                                       Fortification lines
## 460                                                                      Disambiguation pages
## 461                                                    1995 American television series debuts
## 462                                                   1999 American television series endings
## 463                                                                    1990s American sitcoms
## 464                                                      English-language television programs
## 465                                                             Television series about radio
## 466                                                        Television series about journalism
## 467                                                                         NBC network shows
## 468                                             Television series by Sony Pictures Television
## 469                                                     Television shows set in New York City
## 470                                                                           Office comedies
## 471                                                 Television series by Brad Grey Television
## 472                                                      1982 French television series debuts
## 473                                                    Television programs featuring puppetry
## 474                                                           French comedy television series
## 475                                                                   French television stubs
## 476                                                       European television programme stubs
## 477                                                              Creatures in Norse mythology
## 478                                                                         Mythological pigs
## 479                                                           Applications of computer vision
## 480                                                                      Assistive technology
## 481                                                                          Crime prevention
## 482                                                                Law enforcement techniques
## 483                                                                         Physical security
## 484                                                                             Public safety
## 485                                                                      Security engineering
## 486                                                                       Security technology
## 487                                                                              Surveillance
## 488                                                                        Video surveillance
## 489                                                                                     Video
## 490                                                                           Warning systems
## 491                                          Telecommunications-related introductions in 1942
## 492                                                                          Barenaked Ladies
## 493                                                        Musical groups established in 1988
## 494                                                Fellows of the Royal Conservatory of Music
## 495                                                          Canadian alternative rock groups
## 496                                                                          Canadian buskers
## 497                                                                      Sire Records artists
## 498                                                                 Canadian folk rock groups
## 499                                                               Musical groups from Toronto
## 500                                                 Juno Award for Single of the Year winners
## 501                                                            1988 establishments in Ontario
## 502                                                                          Geek rock groups
## 503                                                                          Musical quartets
## 504                                                  Juno Award for Album of the Year winners
## 505                                       Juno Award for Children's Album of the Year winners
## 506                                                  Juno Award for Group of the Year winners
## 507                                             Women's National Basketball Association teams
## 508                                                                           Phoenix Mercury
## 509                                                      Basketball teams established in 1997
## 510                                                            1997 establishments in Arizona
## 511                                                                Sports in Phoenix, Arizona
## 512                                                               Basketball teams in Arizona
## 513                                                                          Nature goddesses
## 514                                                                           Roman goddesses
## 515                                                             Ancient Roman mythology stubs
## 516                                                                                   640s BC
## 517                                                                                    640 BC
## 518                                                                             BC year stubs
## 519                                                                    Agricultural goddesses
## 520                                                                       Fertility goddesses
## 521                                                                          Mother goddesses
## 522                                                                          Nature goddesses
## 523                                                                           Roman goddesses
## 524                                                                                   Demeter
## 525                                                                           Types of skiing
## 526                                                       Games and sports introduced in 1971
## 527                                                                          Freestyle skiing
## 528                                                                    Ancient Roman religion
## 529                                                                                    Sibyls
## 530                                                                      Disambiguation pages
## 531                                                           Place name disambiguation pages
## 532                                                                   Greek words and phrases
## 533                                                                            Existentialism
## 534                                                                   19th-century philosophy
## 535                                                                   20th-century philosophy
## 536                                                                     Metaphysical theories
## 537                                                                                 Modernism
## 538                                                                   Philosophical movements
## 539                                                                        Philosophy of life
## 540                                                                             Postmodernism
## 541                                                                           Social theories
## 542                                                                             Individualism
## 543                                                                         Kent, Connecticut
## 544                                                   Towns in Litchfield County, Connecticut
## 545                                                   Towns in the New York metropolitan area
## 546                                                                      Towns in Connecticut
## 547                                                                                  Cold War
## 548                                    History of science and technology in the United States
## 549                                                Science and technology in the Soviet Union
## 550                                                      Soviet Union–United States relations
## 551                                                             Presidency of John F. Kennedy
## 552                                                                              Space policy
## 553                                                           Presidency of Lyndon B. Johnson
## 554                                                        Presidency of Dwight D. Eisenhower
## 555                                                               Presidency of Richard Nixon
## 556                                                                 Presidency of Gerald Ford
## 557                                                                      Geopolitical rivalry
## 558                                                                       Technological races
## 559                                                                       Operation Paperclip
## 560                                                                         Space exploration
## 561                                                                     Greek mythology stubs
## 562                                                                Princes in Greek mythology
## 563                                                                            Kings of Argos
## 564                                                                                  Inachids
## 565                                                             Mythological Greek characters
## 566                                                                                1951 films
## 567                                                                    English-language films
## 568                                                                         1950s drama films
## 569                                                                            American films
## 570                                                                      American drama films
## 571                                                              Films directed by Elia Kazan
## 572                                                         Screenplays by Tennessee Williams
## 573                                                            American black-and-white films
## 574                                                                     Films about educators
## 575                                                                Films scored by Alex North
## 576                                                                      Films based on plays
## 577                          Films featuring a Best Actress Academy Award-winning performance
## 578                 Films featuring a Best Supporting Actor Academy Award-winning performance
## 579               Films featuring a Best Supporting Actress Academy Award-winning performance
## 580                Films featuring a Best Supporting Actress Golden Globe-winning performance
## 581                                                                  Films set in New Orleans
## 582                                                                 Films shot in New Orleans
## 583                                                                    Films set in Louisiana
## 584                         Films whose art director won the Best Art Direction Academy Award
## 585                                                                      Rail transport films
## 586                                                United States National Film Registry films
## 587                                                   Venice Grand Special Jury Prize winners
## 588                                                                        Warner Bros. films
## 589                                                                     Southern Gothic films
## 590                                                Films based on works by Tennessee Williams
## 591                                                                        Anglican Communion
## 592                                                            1867 establishments in England
## 593                                               Religious organizations established in 1867
## 594                                                                  Women in Greek mythology
## 595                                                                                  Neleides
## 596                                                                          Days of the year
## 597                                                                                  December
## 598                                                                         Religious objects
## 599                                                                           Greek mythology
## 600                                                                      Mythological objects
## 601                                                                                    Nymphs
## 602                                                                         Greek deity stubs
## 603                                                                      Children of Achelous
## 604                                                                        Children of Asopus
## 605                                                             Mythological Greek characters
## 606                                                                         Fortune goddesses
## 607                                                                           Greek goddesses
## 608                                                                                  Oceanids
## 609                                                                         Offspring of Zeus
## 610                                                                   Time and fate goddesses
## 611                                                            5th-century BC Greek sculptors
## 612                                                                   Ancient Greek sculptors
## 613                                                                Ancient Athenian sculptors
## 614                                                                Ancient Greek athletic art
## 615                                                  Municipalities in Mecklenburg-Vorpommern
## 616                                                           Towns in Mecklenburg-Vorpommern
## 617                                                                     Vorpommern-Greifswald
## 618                                          Populated coastal places in Germany (Baltic Sea)
## 619                                                          Port cities and towns in Germany
## 620                                                                Seaside resorts in Germany
## 621                                              Peenemünde Army Research Center and Airfield
## 622                                        Military facilities of the Soviet Union in Germany
## 623                                                             Russian and Soviet Navy bases
## 624                                                                  V-2 missile launch sites
## 625                                                                          Montana counties
## 626                                                                      Hill County, Montana
## 627                                                            1912 establishments in Montana
## 628                                                      Populated places established in 1912
## 629                                                                   Characters in the Iliad
## 630                                                                            Kings of Crete
## 631                                                                           Mycenaean Crete
## 632                                                                  People of the Trojan War
## 633                                                                           Human sacrifice
## 634                                                                      Seven Against Thebes
## 635                                                       Characters in Book VI of the Aeneid
## 636                                                             Mythological Greek characters
## 637                                                            Set indices on Greek mythology
## 638                                                                      Disambiguation pages
## 639                                                                               1922 births
## 640                                                                               2016 deaths
## 641                                                      20th-century American naval officers
## 642                                                         20th-century American politicians
## 643                                                  American naval personnel of World War II
## 644                                                        American people of the Vietnam War
## 645                                                                    American Presbyterians
## 646                                                    Burials at Arlington National Cemetery
## 647                                                                   Carleton College alumni
## 648                                                      George Washington University trustee
## 649                                                                Lake Forest Academy alumni
## 650                      Members of the United States House of Representatives from Wisconsin
## 651                                                   Military personnel from Omaha, Nebraska
## 652                                                         Military personnel from Wisconsin
## 653                                                      Nixon administration cabinet members
## 654                                                         People from Marshfield, Wisconsin
## 655                                                          Politicians from Omaha, Nebraska
## 656                                                  Presidential Medal of Freedom recipients
## 657                    Republican Party members of the United States House of Representatives
## 658                                                      United States Secretaries of Defense
## 659                                                                     Wisconsin Republicans
## 660                                                                  Wisconsin State Senators
## 661                                                                      Disambiguation pages
## 662                                                                        Vertigo characters
## 663                                                                 DC Comics cosmic entities
## 664                                                               Female characters in comics
## 665                                                       Fictional personifications of death
## 666                                                                               The Sandman
## 667                                                                        The Books of Magic
## 668                                                      Comics characters introduced in 1989
## 669                                                         Characters created by Neil Gaiman
## 670                                                      Fictional anthropomorphic characters
## 671                                                              DC Comics fantasy characters
## 672                                                                         Hydrogen vehicles
## 673                                                                             Rocket stages
## 674                                                                NASA space launch vehicles
## 675                                                                    United Launch Alliance
## 676                                                                               1878 births
## 677                                                                               1946 deaths
## 678                                                                 Danish classical scholars
## 679                                                                         Danish librarians
## 680                                                                       Danish philologists
## 681                                                                      Women encyclopedists
## 682                                                       Personifications in Greek mythology
## 683                                                                                Greek gods
## 684                                                                              Fortune gods
## 685                                                                         Offspring of Zeus
## 686                                                                      Indo-Aryan languages
## 687                                              Metamorphoses into plants in Greek mythology
## 688                                                                 Greek legendary creatures
## 689                                                                      Mythological hybrids
## 690                                                                     Dionysus in mythology
## 691                                                            LGBT themes in Greek mythology
## 692                                                             Pederastic heroes and deities
## 693                                                                     Greek mythology stubs
## 694                                                                                 Discworld
## 695                                                                      Fantasy novel series
## 696                                                                      Metafictional novels
## 697                                                     Norse mythology in art and literature
## 698                                                                       High fantasy novels
## 699                                                             Parallel universes in fiction
## 700                                                         British novels adapted into films
## 701                                                                Novels adapted into comics
## 702                                                         British novels adapted into plays
## 703                                                        Novels adapted into radio programs
## 704                                                   Novels adapted into television programs
## 705                                                           Novels adapted into video games
## 706                                                            Book series introduced in 1983
## 707                                     Buildings and structures completed in the 4th century
## 708                                                Buildings and structures completed in 1149
## 709                                                                     12th-century churches
## 710                                                Buildings and structures completed in 1555
## 711                                                Buildings and structures completed in 1809
## 712                                                                    Alleged tombs of Jesus
## 713                                                         Ancient churches in the Holy Land
## 714                                                  Armenian Apostolic churches in Jerusalem
## 715                                                            Basilica churches in Jerusalem
## 716                                                                     Christian pilgrimages
## 717                                                              Relics associated with Jesus
## 718                                               Christianity in the Palestinian territories
## 719                                                                    Christianity in Israel
## 720                                                                     Churches in Jerusalem
## 721                                                    Constantine the Great and Christianity
## 722                                                                            Crusade places
## 723                                                                                     Domes
## 724                                                         Eastern Orthodox church buildings
## 725                                                                   Greek Orthodox churches
## 726                                                                     Resurrection of Jesus
## 727                                                                            Round churches
## 728                                                           Roman Catholic churches in Asia
## 729                                                    Roman Catholic cathedrals in Jerusalem
## 730                                                  Eastern Orthodox cathedrals in Jerusalem
## 731                                                                         Crusader churches
## 732                                                                    Status quo holy places
## 733                                                       Media companies established in 1958
## 734                                                                  China Central Television
## 735                            Foreign television channels broadcasting in the United Kingdom
## 736                                                              Publicly funded broadcasters
## 737                                                                Companies based in Beijing
## 738                                                      Chinese-language television stations
## 739                                      Television channels and stations established in 1958
## 740                                                             Cable television in Hong Kong
## 741                                                                Multilingual news services
## 742                                                              1958 establishments in China
## 743                                                                          Media in Beijing
## 744                                                                               1965 births
## 745                                                                             Living people
## 746                                                                          Spanish infantas
## 747                                                                  House of Bourbon (Spain)
## 748                                                                New York University alumni
## 749                                                   Complutense University of Madrid alumni
## 750                                                                Dukes of Palma de Mallorca
## 751                                             Sailors at the 1988 Summer Olympics – Tornado
## 752                                                                  Olympic sailors of Spain
## 753                                                            Spanish female sailors (sport)
## 754                                                                      Nobility from Madrid
## 755                                                        Spanish expatriates in Switzerland
## 756                                 Knights Grand Cross of the Order of Isabella the Catholic
## 757                                          Grand Cordons of the Order of the Precious Crown
## 758                                           Grand Crosses of the Order of Adolphe of Nassau
## 759                                           Grand Crosses of the Order of Christ (Portugal)
## 760                                             Grand Crosses of the Order of Honour (Greece)
## 761                                                Grand Crosses of the Order of Prince Henry
## 762                                                 Grand Crosses of the Order of the Quetzal
## 763                                            Knights Grand Cross of the Order of the Falcon
## 764                                         Knights Grand Cross of the Order of Orange-Nassau
## 765                                     Members of the Order of Tri Shakti Patta, First Class
## 766                                          Grand Cordons of the Order of the Star of Jordan
## 767                                         Grand Crosses of the Order of José Matías Delgado
## 768                                                     Bands of the Order of the Aztec Eagle
## 769                                             Grand Crosses of the Order of the Sun of Peru
## 770                                                                               Tax evasion
## 771                                                           Human name disambiguation pages
## 772                                                              Cities and towns in Sardinia
## 773                                                         Communes of the Province of Nuoro
## 774                                                                  Sardinia geography stubs
## 775                                                                                1942 films
## 776                                                                    English-language films
## 777                                                                  1940s comedy-drama films
## 778                                                               1940s romantic comedy films
## 779                                                                            American films
## 780                                                               American comedy-drama films
## 781                                                            American romantic comedy films
## 782                                                                  American satirical films
## 783                                                            American black-and-white films
## 784                                                                   Columbia Pictures films
## 785                                                          Films directed by George Stevens
## 786                                                             Screenplays by Sidney Buchman
## 787                                                                 Screenplays by Irwin Shaw
## 788                                                                                111 births
## 789                                                                                130 deaths
## 790                                                                  2nd-century Greek people
## 791                                                                        2nd-century Romans
## 792                                                                        Deaths by drowning
## 793                                                                            Deified people
## 794                                                                                   Gay men
## 795                                                                                   Hadrian
## 796                                                                      History of pederasty
## 797                                                                         LGBT and religion
## 798                                                                   Life-death-rebirth gods
## 799                                                                    Nerva–Antonine dynasty
## 800                                                                       Ancient LGBT people
## 801                                                                           Roman mythology
## 802                                                                    Male lovers of royalty
## 803                                                                             Admiralty law
## 804                                                                         International law
## 805                                                                          Alabama counties
## 806                                                  Florence–Muscle Shoals metropolitan area
## 807                                                                   Colbert County, Alabama
## 808                                                            1867 establishments in Alabama
## 809                                                                    Counties of Appalachia
## 810                                                      Populated places established in 1867
## 811                                                                                    285 BC
## 812                                                           Place name disambiguation pages
## 813                                                             Lists of people by occupation
## 814                                                                             Cartographers
## 815                                                                             Map companies
## 816                                                              Symphonies by Antonín Dvořák
## 817                                                                         1893 compositions
## 818                                                                   Compositions in E minor
## 819                                           Music commissioned by the New York Philharmonic
## 820                                                                 IBM vacuum tube computers
## 821                                                                       IBM 700/7000 series
## 822                                                    Computer-related introductions in 1954
## 823                                                                    Massachusetts counties
## 824                                                             Hampden County, Massachusetts
## 825                                              Springfield metropolitan area, Massachusetts
## 826                                                      1812 establishments in Massachusetts
## 827                                                      Populated places established in 1812
## 828                                                   1998 disestablishments in Massachusetts
## 829                                                   Populated places disestablished in 1998
## 830                                                                                Maya sites
## 831                                                            World Heritage Sites in Mexico
## 832                                                                                  Palenque
## 833                                                                     Maya sites in Chiapas
## 834                                                                       Maya Classic Period
## 835                                                          Archaeological museums in Mexico
## 836                                                                        Museums in Chiapas
## 837                                                         Former populated places in Mexico
## 838                                  States and territories established in the 3rd century BC
## 839                                  States and territories disestablished in the 8th century
## 840                                                                    220s BC establishments
## 841                                    3rd-century BC establishments in the Maya civilization
## 842                                                                     799 disestablishments
## 843                                    8th-century disestablishments in the Maya civilization
## 844                                                      5th century in the Maya civilization
## 845                                                      6th century in the Maya civilization
## 846                                                      7th century in the Maya civilization
## 847                                                      8th century in the Maya civilization
## 848                                                            Tourist attractions in Chiapas
## 849                                                                   Transportation planning
## 850                                                                            Urban planning
## 851                                                                                   I Ching
## 852                                                                           Moons of Uranus
## 853                                                   Astronomical objects discovered in 1986
## 854                                                                                   Othello
## 855                                                               Interpersonal relationships
## 856                                                                        Sexual orientation
## 857                                                                                      LGBT
## 858                                                                                1915 films
## 859                                                                        1910s comedy films
## 860                                                                            American films
## 861                                                                     American comedy films
## 862                                                            American black-and-white films
## 863                                                         Films directed by Roscoe Arbuckle
## 864                                                               American silent short films
## 865                                                United States National Film Registry films
## 866                                                                         1910s short films
## 867                                                             1910s short comedy film stubs
## 868                                                                        Comedy short films
## 869                                                                          Facial piercings
## 870                                                                   Body piercing jewellery
## 871                                                                             1980s fashion
## 872                                                                             1990s fashion
## 873                                                                             2000s fashion
## 874                                                                             2010s fashion
## 875                                                                               1955 births
## 876                                                                             Living people
## 877                                                                     People from Stockholm
## 878                                                                 Uppsala University alumni
## 879                                 Members of the United States National Academy of Sciences
## 880                                          Members of the Royal Swedish Academy of Sciences
## 881                                                 Members of the French Academy of Sciences
## 882                Knight Commanders of the Order of Merit of the Federal Republic of Germany
## 883                                                                    Population geneticists
## 884                                                                       Swedish geneticists
## 885                                                   Gottfried Wilhelm Leibniz Prize winners
## 886                                                        Swedish people of Estonian descent
## 887                          Recipients of the Order of the Cross of Terra Mariana, 3rd Class
## 888                                                      Foreign Members of the Royal Society
## 889                                                    Recipients of the Lomonosov Gold Medal
## 890                                                                           LGBT scientists
## 891                                                                    Minnesota Timberwolves
## 892                                                     National Basketball Association teams
## 893                                                      Basketball teams established in 1989
## 894                                                                     Sports in Minneapolis
## 895                                                          1989 establishments in Minnesota
## 896                                                             Basketball teams in Minnesota
## 897                                                                               BBC Radio 4
## 898                                                               BBC national radio stations
## 899                                        News and talk radio stations in the United Kingdom
## 900                                                        Radio stations established in 1967
## 901                                                 1967 establishments in the United Kingdom
## 902                                                                     Peabody Award winners
## 903                                                                   Longwave radio stations
## 904                                                      Radio stations in the United Kingdom
## 905                                                                               Human names
## 906                                                                                   Slavery
## 907                                                               Vice-Chancellors of Germany
## 908                                                             Federal Government of Germany
## 909                                                                                    418 BC
## 910                                                                      Disambiguation pages
## 911                                                                                   Choctaw
## 912                                                         Native American tribes in Alabama
## 913                                                         Native American tribes in Florida
## 914                                                       Native American tribes in Louisiana
## 915                                                     Native American tribes in Mississippi
## 916                                                        Native American tribes in Oklahoma
## 917                                                   South Appalachian Mississippian culture
## 918                                          Indigenous peoples of the Southeastern Woodlands
## 919                                                           Native American tribes in Texas
## 920                                                      Native American tribes in California
## 921                                               Native Americans in the American Revolution
## 922                                                                                1987 films
## 923                                                                    English-language films
## 924                                                                                Hellraiser
## 925                                                                         1987 horror films
## 926                                                                             BDSM in films
## 927                                                                             British films
## 928                                                                      British horror films
## 929                                                         Films scored by Christopher Young
## 930                                                      Films based on works by Clive Barker
## 931                                                            Films directed by Clive Barker
## 932                                                              Films based on horror novels
## 933                                                                       Films set in London
## 934                                                                   Directorial debut films
## 935                                                                 Supernatural horror films
## 936                                                            Films shot at Pinewood Studios
## 937                                                                     Fratricide in fiction
## 938                                                                  New World Pictures films
## 939                                                                            Demons in film
## 940                                                                       Maxwell's equations
## 941                                                                          Electromagnetism
## 942                                                                      Equations of physics
## 943                                                            Partial differential equations
## 944                                                                       James Clerk Maxwell
## 945                                                               Functions of space and time
## 946                                                                           Scientific laws
## 947                                                                                Cryogenics
## 948                                                                        Cooling technology
## 949                                                                          Industrial gases
## 950                                                                  Mainframe computer stubs
## 951                                                                             IBM computers
## 952                                                                       Networking hardware
## 953                                                                         Culture of Sydney
## 954                                                                               1932 births
## 955                                                                               1997 deaths
## 956                                                                       American columnists
## 957                                                                 American male journalists
## 958                                                                      American journalists
## 959                                                                    Chicago Tribune people
## 960                                                                 Chicago Daily News people
## 961                                                     Pulitzer Prize for Commentary winners
## 962                                                                      Writers from Chicago
## 963                                                         American people of Polish descent
## 964                                                      American people of Ukrainian descent
## 965                                                            United States Air Force airmen
## 966                                                         Deaths from intracranial aneurysm
## 967                                                                  Chicago Sun-Times people
## 968                                                             20th-century American writers
## 969                                                  Burials at Acacia Park Cemetery, Chicago
## 970                                                                 20th-century male writers
## 971                                                                               1969 births
## 972                                                                             Living people
## 973                                                                          People from Lund
## 974                                                                    Swedish film directors
## 975                                                                             Swedish poets
## 976                                                            20th-century Swedish novelists
## 977                                                            21st-century Swedish novelists
## 978                                                                  Swedish-language writers
## 979                                                                        Swedish Christians
## 980                                                     Best Director Guldbagge Award winners
## 981                                                   Best Screenplay Guldbagge Award winners
## 982                                                                        Male screenwriters
## 983                                                                                Male poets
## 984                                                                    Swedish male novelists
## 985                                                                 20th-century male writers
## 986                                                                 21st-century male writers
## 987                                                 1990 establishments in Washington (state)
## 988                                                         Cities in King County, Washington
## 989                                                   Cities in the Seattle metropolitan area
## 990                                     Former census-designated places in Washington (state)
## 991                                                      Populated places established in 1990
## 992                                                                        SeaTac, Washington
## 993                                                                               1930 births
## 994                                                                             Living people
## 995                                                                      Australian academics
## 996                                                               Australian Living Treasures
## 997                                                                      Australian Maronites
## 998                                                            Australian healthcare managers
## 999                                                     Australian people of Lebanese descent
## 1000                                                                 Australian psychiatrists
## 1001                                                        Officiers of the Légion d'honneur
## 1002                                       Australian Commanders of the Royal Victorian Order
## 1003                                                          Dames of the Order of Australia
## 1004                                                   Dames of Grace of the Order of St John
## 1005                                         Grand Cordons of the National Order of the Cedar
## 1006                                                             Governors of New South Wales
## 1007                                Honorary air commodores of the Royal Australian Air Force
## 1008                                              People educated at Sydney Girls High School
## 1009                                                        Recipients of the Centenary Medal
## 1010                                                        Spouses of Australian politicians
## 1011                                                             Sydney Medical School alumni
## 1012                                                             University of Sydney faculty
## 1013              Fellows of the Australian Academy of Technological Sciences and Engineering
## 1014                                                           Australian women psychiatrists
## 1015                                                                              1887 births
## 1016                                                                              1922 deaths
## 1017                                         Knights of the Order of Saint Stephen of Hungary
## 1018                                                        20th-century venerated Christians
## 1019                                                                             Austria-Este
## 1020                                                                 Austrian anti-communists
## 1021                                                                Austrian beatified people
## 1022                                                                          Austrian exiles
## 1023                                                         Austrian expatriates in Portugal
## 1024                                                                 Austrian Roman Catholics
## 1025                                                      Beatifications by Pope John Paul II
## 1026                                                                Burials in Madeira Island
## 1027                                                                   Burials in Switzerland
## 1028                                                      Charles University in Prague alumni
## 1029                                                                      Emperors of Austria
## 1030                                        Grand Crosses of the Military Order of Max Joseph
## 1031                                         Grand Crosses of the Military Order of St. Henry
## 1032                                          Grand Masters of the Order of the Golden Fleece
## 1033                                                                Field marshals of Austria
## 1034                                                                Field marshals of Germany
## 1035                                                               House of Habsburg-Lorraine
## 1036                                                                Hungarian anti-communists
## 1037                                                                Hungarian Roman Catholics
## 1038                                                             Knights of the Golden Fleece
## 1039                                                                         Knights of Malta
## 1040                                                         People from Persenbeug-Gottsdorf
## 1041                                                  Recipients of the Order of Franz Joseph
## 1042                                               Recipients of the Order of the Black Eagle
## 1043                                           Recipients of the Iron Cross (1914), 1st class
## 1044                                        Recipients of the Pour le Mérite (military class)
## 1045                                                                  Roman Catholic monarchs
## 1046                                                 Venerated Catholics by Pope John Paul II
## 1047                                                                     Austrian monarchists
## 1048                                                                     Archdukes of Austria
## 1049                                                       Military history of Worcestershire
## 1050                                                                     History of Worcester
## 1051                                                        Battles of the English Civil Wars
## 1052                                                                          1651 in England
## 1053                                                                        Conflicts in 1651
## 1054                                              Registered historic battlefields in England
## 1055                                                           17th century in Worcestershire
## 1056                                                                             1370s births
## 1057                                                                              1440 deaths
## 1058                                                                Women of medieval England
## 1059                                                                          Beaufort family
## 1060                                                                           Neville family
## 1061                                                                     Ladies of the Garter
## 1062                                                                       English countesses
## 1063                                                               Daughters of English dukes
## 1064                                                                       Music competitions
## 1065                                                                    Classical music lists
## 1066                                                                    Lists of competitions
## 1067                                                                     Disambiguation pages
## 1068                                                                            Oswald Mosley
## 1069                                                                              1896 births
## 1070                                                                              1980 deaths
## 1071                                                        16th The Queen's Lancers officers
## 1072                                              Baronets in the Baronetage of Great Britain
## 1073                                                    British Army personnel of World War I
## 1074                                                    Chancellors of the Duchy of Lancaster
## 1075                                   Conservative Party (UK) MPs for English constituencies
## 1076                                                          Deaths from Parkinson's disease
## 1077                                                         Disease-related deaths in France
## 1078                                                            English expatriates in France
## 1079                                                                         English fascists
## 1080                                                                  English anti-communists
## 1081                                                                       English memoirists
## 1082                                                 Far-right politics in the United Kingdom
## 1083                                       Graduates of the Royal Military College, Sandhurst
## 1084                                                     Independent Labour Party politicians
## 1085                                         Labour Party (UK) MPs for English constituencies
## 1086                                                                            Mosley family
## 1087                                                                 Pan-European nationalism
## 1088                                             People detained under Defence Regulation 18B
## 1089                                                     People educated at West Downs School
## 1090                                                    People educated at Winchester College
## 1091                                                              Royal Flying Corps officers
## 1092                                                                           UK MPs 1918–22
## 1093                                                                           UK MPs 1922–23
## 1094                                                                           UK MPs 1923–24
## 1095                                                                           UK MPs 1924–29
## 1096                                                                           UK MPs 1929–31
## 1097                                                            People from Burton upon Trent
## 1098                                                            Fascism in the United Kingdom
## 1099                                                    British Union of Fascists politicians
## 1100                                                                       Critics of Judaism
## 1101                                                                             Anti-Masonry
## 1102                                                                              1920 births
## 1103                                                                              2002 deaths
## 1104                                                      20th-century Australian male actors
## 1105                                                                  Male actors from Sydney
## 1106                                                             Australian expatriate actors
## 1107                                                        Australian expatriates in England
## 1108                                                              Australian male film actors
## 1109                                            Australian military personnel of World War II
## 1110                                                             Australian male radio actors
## 1111                                                             Australian male stage actors
## 1112                                                        Australian male television actors
## 1113                                                             Australian male voice actors
## 1114                                                           Best Actor AACTA Award winners
## 1115                                                                     Deaths from diabetes
## 1116                                                        Disease-related deaths in England
## 1117                                                       Officers of the Order of Australia
## 1118                                          People educated at Sydney Technical High School
## 1119                                                        Royal Shakespeare Company members
## 1120                                                 Actors at the Royal Exchange, Manchester
## 1121                                                                            Spokespersons
## 1122                                                                   Book of Genesis people
## 1123                                                                                     Esau
## 1124                                                                Women in the Hebrew Bible
## 1125                                                                       Hebrew Bible stubs
## 1126                                                                  Kings of ancient Israel
## 1127                                                                   Kings of ancient Judah
## 1128                                                          10th-century BC biblical rulers
## 1129                                                                            911 BC deaths
## 1130                                                                         Theophoric names
## 1131                                                           10th-century BCE Hebrew people
## 1132                                                                             Torah places
## 1133                                                                       Hebrew Bible stubs
## 1134                                                                   Julio-Claudian dynasty
## 1135                                                                                12 births
## 1136                                                                                41 deaths
## 1137                                                                        People from Anzio
## 1138                                                                                    Julii
## 1139                                                               1st-century Roman emperors
## 1140                                                            1st-century murdered monarchs
## 1141                                                              Assassinated heads of state
## 1142                                                                          Capri, Campania
## 1143                                                                       Deaths by stabbing
## 1144                                          Roman emperors murdered by the Praetorian Guard
## 1145                                                     Burials at the Mausoleum of Augustus
## 1146                                                                                   Incest
## 1147                                                   Royalty and nobility with disabilities
## 1148                                                                     People with epilepsy
## 1149                                                                                 Caligula
## 1150                                                                          Roman quaestors
## 1151                                                                              1946 births
## 1152                                                                              2015 deaths
## 1153                                                                     People from Montreal
## 1154                                                      Canadian people convicted of murder
## 1155                                                     People convicted of murder by Canada
## 1156                                       Prisoners sentenced to life imprisonment by Canada
## 1157                                        Canadian prisoners sentenced to life imprisonment
## 1158                                                        People paroled from life sentence
## 1159                                                                           October Crisis
## 1160                                                  Canadian people convicted of kidnapping
## 1161                                                                               1967 films
## 1162                                                                   English-language films
## 1163                                                                  1960s crime drama films
## 1164                                                                 1960s biographical films
## 1165                                                                           American films
## 1166                                                              American biographical films
## 1167                                                                     American chase films
## 1168                                                               American crime drama films
## 1169                                                                     American road movies
## 1170                                                Biographical films about Bonnie and Clyde
## 1171                                                              Counterculture of the 1960s
## 1172                                                       Crime films based on actual events
## 1173                                                                 Films about bank robbery
## 1174                                                            Films directed by Arthur Penn
## 1175              Films featuring a Best Supporting Actress Academy Award-winning performance
## 1176                                                          Films produced by Warren Beatty
## 1177                                                                        Films set in 1934
## 1178                                                                        Films set in Iowa
## 1179                                                                    Films set in Oklahoma
## 1180                    Films whose cinematographer won the Best Cinematography Academy Award
## 1181                                               Screenplays by David Newman (screenwriter)
## 1182                                                             Screenplays by Robert Benton
## 1183                                               United States National Film Registry films
## 1184                                                                       Warner Bros. films
## 1185                                                          Films scored by Charles Strouse
## 1186                                                                                   Bilbao
## 1187                                                            1300 establishments in Europe
## 1188                                                                 Municipalities in Biscay
## 1189                                                        Populated coastal places in Spain
## 1190                                                Populated places established in the 1300s
## 1191                                                               Populated places in Biscay
## 1192                                      Port cities and towns on the Spanish Atlantic coast
## 1193                                                                     Disambiguation pages
## 1194                                                          Place name disambiguation pages
## 1195                                                                                   Syntax
## 1196                                                                          Morphophonology
## 1197                                                           Units of linguistic morphology
## 1198                                                                              1875 births
## 1199                                                                              1929 deaths
## 1200                                                                 Sportspeople from Boston
## 1201                                   Athletes (track and field) at the 1896 Summer Olympics
## 1202                                                                  American male sprinters
## 1203                          Olympic gold medalists for the United States in track and field
## 1204                                    Olympic track and field athletes of the United States
## 1205                                                   Boston University School of Law alumni
## 1206                                                    Medalists at the 1896 Summer Olympics
## 1207                                                                     Disambiguation pages
## 1208                                                                                Alphabets
## 1209                                                                              Orthography
## 1210                                                                       German Cistercians
## 1211                                                      13th-century Roman Catholic bishops
## 1212                                                                              1245 deaths
## 1213                                                                      People from Prussia
## 1214                                                       Christians of the Prussian Crusade
## 1215                                                            New Zealand rock music groups
## 1216                                                                       Garage rock groups
## 1217                                                                   Cambridge, New Zealand
## 1218                                                                                 Farscape
## 1219                                                                       APRA Award winners
## 1220                                                                       Nine Network shows
## 1221                                                                   Syfy original programs
## 1222                                             Australian science fiction television series
## 1223                                                 1999 Australian television series debuts
## 1224                                                2003 Australian television series endings
## 1225                                                       1990s Australian television series
## 1226                                                       2000s Australian television series
## 1227                                                   Australian adventure television series
## 1228                                               American science fiction television series
## 1229                                                   Television programs featuring puppetry
## 1230                                                                     Wormholes in fiction
## 1231                                                                                ADV Films
## 1232                                              Television series by The Jim Henson Company
## 1233                                                Television series by Universal Television
## 1234                                                        Science fantasy television series
## 1235                                                        Space adventure television series
## 1236                                                           Serial drama television series
## 1237                                                     English-language television programs
## 1238                                                                Films scored by Guy Gross
## 1239                                                                            Yekaterinburg
## 1240                                                                   Yekaterinburgsky Uyezd
## 1241                                                     Populated places established in 1723
## 1242                                                                          History of Ural
## 1243                                                1723 establishments in the Russian Empire
## 1244                                                                    DEC operating systems
## 1245                                                           Time-sharing operating systems
## 1246                                                                            1969 software
## 1247                                                                              1015 births
## 1248                                                                              1066 deaths
## 1249                                                                          Varangian Guard
## 1250                                                                Monarchs killed in action
## 1251                                                                       Norwegian monarchs
## 1252                                                                      Viking Age monarchs
## 1253                                                                 Vikings killed in battle
## 1254                                                            11th-century Norwegian people
## 1255                                                                         Norwegian exiles
## 1256                                                          11th-century monarchs in Europe
## 1257                                                         Pretenders to the English throne
## 1258                                                          Pretenders to the Danish throne
## 1259                                                                       Christian monarchs
## 1260                                                                        House of Hardrada
## 1261                                                                              Manglabitai
## 1262                                                          Disorders of endocrine pancreas
## 1263                                       Endocrine, nutritional and metabolic disease stubs
## 1264                                                               Airline trade associations
## 1265                                                  International Air Transport Association
## 1266                                              International organisations based in Canada
## 1267                                                        Organizations established in 1945
## 1268                                                          Organizations based in Montreal
## 1269                                                                                       Dō
## 1270                                                                             Feudal Japan
## 1271                                                        Japanese martial arts terminology
## 1272                                                                Military history of Japan
## 1273                                                                             Warrior code
## 1274                                                                         Codes of conduct
## 1275                                                                                  Samurai
## 1276                                                                                  Bushido
## 1277                                                                  17th-century neologisms
## 1278                                                         20th-century classical composers
## 1279                                                                   Experimental composers
## 1280                                                              American classical pianists
## 1281                                                                              1926 births
## 1282                                                                              1996 deaths
## 1283                                                  Contemporary classical music performers
## 1284                                                                     Avant-garde pianists
## 1285                                                           Black Mountain College faculty
## 1286                                                        American male classical composers
## 1287                                                             American classical composers
## 1288                                                              Musicians from Philadelphia
## 1289                                                          20th-century classical pianists
## 1290                                                           20th-century American pianists
## 1291                                  Experiments in Art and Technology collaborating artists
## 1292                                                          20th-century American composers
## 1293                                                                       Middle-earth Valar
## 1294                                                           Characters in The Silmarillion
## 1295                                                  Fictional characters introduced in 1977
## 1296                                                                       Sea and river gods
## 1297                                                                              1846 births
## 1298                                                                              1930 deaths
## 1299                                                                        People from Valls
## 1300                                                                       Renaixença writers
## 1301                                                                     Catalan writer stubs
## 1302                                                                          Boolean algebra
## 1303                                                                         Duality theories
## 1304                                                                       Rules of inference
## 1305                                                          Theorems in propositional logic
## 1306                                                                                Catacombs
## 1307                                                                               Cemeteries
## 1308                                                                  Subterranean structures
## 1309                                                                   Cygnus (constellation)
## 1310                                                                           Constellations
## 1311                                                                  Northern constellations
## 1312                                                         Constellations listed by Ptolemy
## 1313                                                                          Legendary birds
## 1314                                                                       Computer libraries
## 1315                                                              Operating system technology
## 1316                                                                     Disambiguation pages
## 1317                                                          Place name disambiguation pages
## 1318                                                                   Historical linguistics
## 1319                                                                                  Colitis
## 1320                                                                                 Diarrhea
## 1321                                                                           Abdominal pain
## 1322                                                                      Autoimmune diseases
## 1323                                                       Conditions diagnosed by stool test
## 1324                                                                            Inflammations
## 1325                                                       Noninfective enteritis and colitis
## 1326                                                      Cytomegalovirus-associated diseases
## 1327                                               Steroid-responsive inflammatory conditions
## 1328                                                                              1951 births
## 1329                                                                            Living people
## 1330                                                                      People from Guararé
## 1331                                              International Boxing Hall of Fame inductees
## 1332                                                                Light-middleweight boxers
## 1333                                                                       Lightweight boxers
## 1334                                                                      Middleweight boxers
## 1335                                                     Panamanian people of Mexican descent
## 1336                                                    Panamanian people of American descent
## 1337                                                       World Boxing Association champions
## 1338                                                           World Boxing Council champions
## 1339                                                                      Welterweight boxers
## 1340                                                                      Panamanian aviators
## 1341                                                                   Panamanian male boxers
## 1342                                                                Super-middleweight boxers
## 1343                                                              The Ring magazine champions
## 1344                                                       World lightweight boxing champions
## 1345                                                      World welterweight boxing champions
## 1346                                                World light-middleweight boxing champions
## 1347                                                      World middleweight boxing champions
## 1348                                                                   Historical linguistics
## 1349                                                                      Language comparison
## 1350                                                                          15th century BC
## 1351                                                                  Kings of ancient Israel
## 1352                                                                   Kings of ancient Judah
## 1353                                                                           640s BC births
## 1354                                                                            609 BC deaths
## 1355                                                                     Ancient child rulers
## 1356                                                      Military personnel killed in action
## 1357                                                  Christian saints from the Old Testament
## 1358                                                           7th-century BC biblical rulers
## 1359                                                                Monarchs killed in action
## 1360                                                                     7th-century BCE Jews
## 1361                                                                           Books of Kings
## 1362                                                                   Deaths by arrow wounds
## 1363                                                                                  Flavors
## 1364                                                                             Food science
## 1365                                                                                   Qualia
## 1366                                                     Private detectives and investigators
## 1367                                                                              Occupations
## 1368                                                                     1910s jazz standards
## 1369                                                                               1911 songs
## 1370                                                           Songs written by Irving Berlin
## 1371                                                                        Songs about music
## 1372                                                              Billy Murray (singer) songs
## 1373                                                                        The Muppets songs
## 1374                                                                       Bessie Smith songs
## 1375                                                                    Louis Armstrong songs
## 1376                                                                        Belle Baker songs
## 1377                                                                        Johnnie Ray songs
## 1378                                                                   Dick and Dee Dee songs
## 1379                                                                                     Rags
## 1380                                                                         Vaudeville songs
## 1381                                                                          Al Jolson songs
## 1382                                                                              1913 births
## 1383                                                                              1983 deaths
## 1384                                                            20th-century American singers
## 1385                                                                  Chicago blues musicians
## 1386                                                                 Electric blues musicians
## 1387                                                                    Delta blues musicians
## 1388                                                                  Blues revival musicians
## 1389                                                              African-American guitarists
## 1390                                                      African-American singer-songwriters
## 1391                                                              American singer-songwriters
## 1392                                                        American blues singer-songwriters
## 1393                                                                American blues guitarists
## 1394                                                                 American male guitarists
## 1395                                                                    American male singers
## 1396                                                                         American singers
## 1397                                                             Blues Hall of Fame inductees
## 1398                                                         Blues musicians from Mississippi
## 1399                                                                         American buskers
## 1400                                                                     Grammy Award winners
## 1401                                                Grammy Lifetime Achievement Award winners
## 1402                                                   Musicians from Clarksdale, Mississippi
## 1403                                                People from Issaquena County, Mississippi
## 1404                                                     Rock and Roll Hall of Fame inductees
## 1405                                                             Songwriters from Mississippi
## 1406                                                                         Slide guitarists
## 1407                                                                          Lead guitarists
## 1408                                                                    Chess Records artists
## 1409                                                                     Muse Records artists
## 1410                                                                  Mississippi Blues Trail
## 1411                                                                     Blues rock musicians
## 1412                                                         20th-century American guitarists
## 1413                                                                Songwriters from Illinois
## 1414                                                           People from Westmont, Illinois
## 1415                                                                 Guitarists from Illinois
## 1416                                                              Guitarists from Mississippi
## 1417                                                                              Pilgrimages
## 1418                                                                        Lists of diseases
## 1419                                                                                 Hominini
## 1420                                                                                Homininae
## 1421                                                               Miocene primates of Africa
## 1422                                                            Fossil taxa described in 2002
## 1423                                                                         Prehistoric Chad
## 1424                                                                               1935 films
## 1425                                                                   English-language films
## 1426                                                                           American films
## 1427                                                                      1930s musical films
## 1428                                                                Metro-Goldwyn-Mayer films
## 1429                                                              Films about musical theatre
## 1430                                                           American black-and-white films
## 1431                                                           Films directed by Roy Del Ruth
## 1432                                                                 5th-century BC Athenians
## 1433                                                                             Alcmaeonidae
## 1434                                                                Ancient Athenian generals
## 1435                                                                  Ancient Greek statesmen
## 1436                                                      Ancient Greeks accused of sacrilege
## 1437                                         Ancient Greek emigrants to the Achaemenid Empire
## 1438                                                         Ancient Greeks who were murdered
## 1439                                                              Ancient Olympic competitors
## 1440                                                                       Pupils of Socrates
## 1441                                                          People of the Peloponnesian War
## 1442                                                                  LGBT people from Greece
## 1443                                                                           450s BC births
## 1444                                                                            404 BC deaths
## 1445                                                                     Disambiguation pages
## 1446                                                          Place name disambiguation pages
## 1447                                        Disambiguation pages with given-name-holder lists
## 1448                                            Presidents of the Republic of China on Taiwan
## 1449                                                                  Chinese anti-communists
## 1450                                                           Chinese people of World War II
## 1451                                                                   Chiang Kai-shek family
## 1452                                                                       Crown Prince Party
## 1453                                                                              1910 births
## 1454                                                                              1988 deaths
## 1455                                                                  Politicians from Ningbo
## 1456                                              Premiers of the Republic of China on Taiwan
## 1457                                                                       Chinese Methodists
## 1458                                                       Chinese Nationalist heads of state
## 1459                                                           Chairpersons of the Kuomintang
## 1460                                              Republic of China politicians from Zhejiang
## 1461                                                           Taiwanese Ministers of Defense
## 1462                                      Taiwanese Ministers of the Veterans Affairs Council
## 1463                                                  Chinese expatriates in the Soviet Union
## 1464                                                     Moscow Sun Yat-sen University alumni
## 1465                                                             Children of national leaders
## 1466                                                               Chinese Civil War refugees
## 1467                                                           Taiwanese people from Zhejiang
## 1468                                   Communist University of the Toilers of the East alumni
## 1469                                                                Role-playing game systems
## 1470                                                                  Role-playing game stubs
## 1471                                                                                Surveying
## 1472                                                                                 Land use
## 1473                                                              Ancient Egyptian technology
## 1474                                                                      Egyptian inventions
## 1475                                                                                   185 BC
## 1476                                                         Procedural programming languages
## 1477                                                    Programming languages created in 1951
## 1478                                                                     Richmond, California
## 1479                                                        1905 establishments in California
## 1480                                                Cities in Contra Costa County, California
## 1481                                                     Cities in the San Francisco Bay Area
## 1482                                              Incorporated cities and towns in California
## 1483                                                     Populated places established in 1905
## 1484                             Port cities and towns of the West Coast of the United States
## 1485                                                   Populated coastal places in California
## 1486                                                                  Drum and bass subgenres
## 1487                                                                  English styles of music
## 1488                                                                    Belgian royal princes
## 1489                                                                              1875 births
## 1490                                                                              1934 deaths
## 1491                                              Burials at the Church of Our Lady of Laeken
## 1492                                                                     People from Brussels
## 1493                                                                         Belgian monarchs
## 1494                                                         Princes of Saxe-Coburg and Gotha
## 1495                                                 House of Saxe-Coburg and Gotha (Belgium)
## 1496                                                                   British field marshals
## 1497                                                                  Roman Catholic monarchs
## 1498                                                                  Belgian Roman Catholics
## 1499                                                             Accidental deaths in Belgium
## 1500                                                                    Mountaineering deaths
## 1501                                           Grand Crosses of the Order of the African Star
## 1502                                             Grand Crosses of the Royal Order of the Lion
## 1503                                        Grand Crosses of the Order of the Crown (Belgium)
## 1504                                 Recipients of the Grand Cross of the Order of Leopold II
## 1505                                              Recipients of the Croix de guerre (Belgium)
## 1506                                                             Knights of the Golden Fleece
## 1507                                             Bailiffs Grand Cross of the Order of St John
## 1508                                               Recipients of the Order of the Black Eagle
## 1509                                                    Recipients of the Order of St. Andrew
## 1510                                                    Extra Knights Companion of the Garter
## 1511                                    Honorary Knights Grand Cross of the Order of the Bath
## 1512                                          Recipients of the Order of Lāčplēsis, 1st class
## 1513                                                Recipients of the Order of the White Lion
## 1514                                       Knights Grand Cross of the Military Order of Savoy
## 1515                                          Grand Crosses of the Order of Christ (Portugal)
## 1516                                                       Grand Crosses of the Order of Aviz
## 1517                                   Grand Crosses of the Order of Saint James of the Sword
## 1518                                        Grand Crosses of the Order of the Tower and Sword
## 1519                                              Recipients of the Order of Saint Stanislaus
## 1520                                          Recipients of the Order of St. Alexander Nevsky
## 1521                                           Recipients of the Order of St. Anna, 1st class
## 1522                                                    Grand Crosses of the Virtuti Militari
## 1523                                                         Recipients of the Military Cross
## 1524                                            Recipients of the Royal Order of Kamehameha I
## 1525                                                                         Knights of Malta
## 1526                                                            Knights of the Holy Sepulchre
## 1527                                                                            Ernst & Young
## 1528                                                           1849 establishments in England
## 1529                                                   Accounting firms of the United Kingdom
## 1530                                                    Accounting firms of the United States
## 1531                                                                Companies based in London
## 1532                                                         Companies based in New York City
## 1533                                                            Companies established in 1849
## 1534                                                International management consulting firms
## 1535                                            Privately held companies in the United States
## 1536                                           Privately held companies of the United Kingdom
## 1537                                                                   Environmental treaties
## 1538                                                                           Carbon dioxide
## 1539                                                                           Carbon finance
## 1540                                                                  Climate change treaties
## 1541                                    United Nations Framework Convention on Climate Change
## 1542                                                               Treaties concluded in 1997
## 1543                                                      Treaties entered into force in 2005
## 1544                                                                  2005 in the environment
## 1545                                                                  Treaties of Afghanistan
## 1546                                                                      Treaties of Albania
## 1547                                                                      Treaties of Algeria
## 1548                                                                       Treaties of Angola
## 1549                                                          Treaties of Antigua and Barbuda
## 1550                                                                    Treaties of Argentina
## 1551                                                                      Treaties of Armenia
## 1552                                                                    Treaties of Australia
## 1553                                                                      Treaties of Austria
## 1554                                                                   Treaties of Azerbaijan
## 1555                                                                  Treaties of the Bahamas
## 1556                                                                      Treaties of Bahrain
## 1557                                                                   Treaties of Bangladesh
## 1558                                                                     Treaties of Barbados
## 1559                                                                      Treaties of Belarus
## 1560                                                                      Treaties of Belgium
## 1561                                                                       Treaties of Belize
## 1562                                                                        Treaties of Benin
## 1563                                                                       Treaties of Bhutan
## 1564                                                                      Treaties of Bolivia
## 1565                                                       Treaties of Bosnia and Herzegovina
## 1566                                                                     Treaties of Botswana
## 1567                                                                       Treaties of Brazil
## 1568                                                                       Treaties of Brunei
## 1569                                                                     Treaties of Bulgaria
## 1570                                                                 Treaties of Burkina Faso
## 1571                                                                      Treaties of Burundi
## 1572                                                                     Treaties of Cambodia
## 1573                                                                     Treaties of Cameroon
## 1574                                                                   Treaties of Cape Verde
## 1575                                                 Treaties of the Central African Republic
## 1576                                                                         Treaties of Chad
## 1577                                                                        Treaties of Chile
## 1578                                               Treaties of the People's Republic of China
## 1579                                                                     Treaties of Colombia
## 1580                                                                  Treaties of the Comoros
## 1581                                                    Treaties of the Republic of the Congo
## 1582                                                             Treaties of the Cook Islands
## 1583                                                                   Treaties of Costa Rica
## 1584                                                                  Treaties of Ivory Coast
## 1585                                                                      Treaties of Croatia
## 1586                                                                         Treaties of Cuba
## 1587                                                                       Treaties of Cyprus
## 1588                                                           Treaties of the Czech Republic
## 1589                                                                  Treaties of North Korea
## 1590                                         Treaties of the Democratic Republic of the Congo
## 1591                                                                      Treaties of Denmark
## 1592                                                                     Treaties of Djibouti
## 1593                                                                     Treaties of Dominica
## 1594                                                       Treaties of the Dominican Republic
## 1595                                                                      Treaties of Ecuador
## 1596                                                                        Treaties of Egypt
## 1597                                                                  Treaties of El Salvador
## 1598                                                            Treaties of Equatorial Guinea
## 1599                                                                      Treaties of Eritrea
## 1600                                                                      Treaties of Estonia
## 1601                                                                     Treaties of Ethiopia
## 1602                                                                         Treaties of Fiji
## 1603                                                                      Treaties of Finland
## 1604                                                                       Treaties of France
## 1605                                                                        Treaties of Gabon
## 1606                                                                   Treaties of the Gambia
## 1607                                                            Treaties of Georgia (country)
## 1608                                                                      Treaties of Germany
## 1609                                                                        Treaties of Ghana
## 1610                                                                       Treaties of Greece
## 1611                                                                      Treaties of Grenada
## 1612                                                                    Treaties of Guatemala
## 1613                                                                       Treaties of Guinea
## 1614                                                                Treaties of Guinea-Bissau
## 1615                                                                       Treaties of Guyana
## 1616                                                                        Treaties of Haiti
## 1617                                                                     Treaties of Honduras
## 1618                                                                      Treaties of Hungary
## 1619                                                                      Treaties of Iceland
## 1620                                                                        Treaties of India
## 1621                                                                    Treaties of Indonesia
## 1622                                                                         Treaties of Iran
## 1623                                                                         Treaties of Iraq
## 1624                                                                      Treaties of Ireland
## 1625                                             Treaties of the Islamic State of Afghanistan
## 1626                                                                       Treaties of Israel
## 1627                                                                        Treaties of Italy
## 1628                                                                      Treaties of Jamaica
## 1629                                                                        Treaties of Japan
## 1630                                                                       Treaties of Jordan
## 1631                                                                   Treaties of Kazakhstan
## 1632                                                                        Treaties of Kenya
## 1633                                                                     Treaties of Kiribati
## 1634                                                                       Treaties of Kuwait
## 1635                                                                   Treaties of Kyrgyzstan
## 1636                                                                         Treaties of Laos
## 1637                                                                       Treaties of Latvia
## 1638                                                                      Treaties of Lebanon
## 1639                                                                      Treaties of Lesotho
## 1640                                                                      Treaties of Liberia
## 1641                                                   Treaties of the Libyan Arab Jamahiriya
## 1642                                                                Treaties of Liechtenstein
## 1643                                                                    Treaties of Lithuania
## 1644                                                                   Treaties of Luxembourg
## 1645                                                                   Treaties of Madagascar
## 1646                                                                       Treaties of Malawi
## 1647                                                                     Treaties of Malaysia
## 1648                                                                 Treaties of the Maldives
## 1649                                                                         Treaties of Mali
## 1650                                                                        Treaties of Malta
## 1651                                                         Treaties of the Marshall Islands
## 1652                                                                   Treaties of Mauritania
## 1653                                                                    Treaties of Mauritius
## 1654                                                                       Treaties of Mexico
## 1655                                           Treaties of the Federated States of Micronesia
## 1656                                                                       Treaties of Monaco
## 1657                                                                     Treaties of Mongolia
## 1658                                                                   Treaties of Montenegro
## 1659                                                                      Treaties of Morocco
## 1660                                                                   Treaties of Mozambique
## 1661                                                                      Treaties of Myanmar
## 1662                                                                      Treaties of Namibia
## 1663                                                                        Treaties of Nauru
## 1664                                                                        Treaties of Nepal
## 1665                                                              Treaties of the Netherlands
## 1666                                                                  Treaties of New Zealand
## 1667                                                                    Treaties of Nicaragua
## 1668                                                                        Treaties of Niger
## 1669                                                                      Treaties of Nigeria
## 1670                                                                         Treaties of Niue
## 1671                                                                       Treaties of Norway
## 1672                                                                         Treaties of Oman
## 1673                                                                     Treaties of Pakistan
## 1674                                                                        Treaties of Palau
## 1675                                                                       Treaties of Panama
## 1676                                                             Treaties of Papua New Guinea
## 1677                                                                     Treaties of Paraguay
## 1678                                                                         Treaties of Peru
## 1679                                                              Treaties of the Philippines
## 1680                                                                       Treaties of Poland
## 1681                                                                     Treaties of Portugal
## 1682                                                                        Treaties of Qatar
## 1683                                                                  Treaties of South Korea
## 1684                                                                      Treaties of Moldova
## 1685                                                                      Treaties of Romania
## 1686                                                                       Treaties of Russia
## 1687                                                                       Treaties of Rwanda
## 1688                                                                        Treaties of Samoa
## 1689                                                                   Treaties of San Marino
## 1690                                                        Treaties of São Tomé and Príncipe
## 1691                                                                 Treaties of Saudi Arabia
## 1692                                                                      Treaties of Senegal
## 1693                                                                       Treaties of Serbia
## 1694                                                                   Treaties of Seychelles
## 1695                                                                 Treaties of Sierra Leone
## 1696                                                                    Treaties of Singapore
## 1697                                                                     Treaties of Slovakia
## 1698                                                                     Treaties of Slovenia
## 1699                                                          Treaties of the Solomon Islands
## 1700                               Treaties of the Transitional Federal Government of Somalia
## 1701                                                                 Treaties of South Africa
## 1702                                                                        Treaties of Spain
## 1703                                                                    Treaties of Sri Lanka
## 1704                                                        Treaties of Saint Kitts and Nevis
## 1705                                                                  Treaties of Saint Lucia
## 1706                                             Treaties of Saint Vincent and the Grenadines
## 1707                                        Treaties of the Republic of the Sudan (1985–2011)
## 1708                                                                     Treaties of Suriname
## 1709                                                                    Treaties of Swaziland
## 1710                                                                       Treaties of Sweden
## 1711                                                                  Treaties of Switzerland
## 1712                                                                        Treaties of Syria
## 1713                                                                   Treaties of Tajikistan
## 1714                                                                     Treaties of Thailand
## 1715                                                    Treaties of the Republic of Macedonia
## 1716                                                                   Treaties of East Timor
## 1717                                                                         Treaties of Togo
## 1718                                                                        Treaties of Tonga
## 1719                                                          Treaties of Trinidad and Tobago
## 1720                                                                      Treaties of Tunisia
## 1721                                                                       Treaties of Turkey
## 1722                                                                 Treaties of Turkmenistan
## 1723                                                                       Treaties of Tuvalu
## 1724                                                                       Treaties of Uganda
## 1725                                                                      Treaties of Ukraine
## 1726                                                     Treaties of the United Arab Emirates
## 1727                                                           Treaties of the United Kingdom
## 1728                                                                     Treaties of Tanzania
## 1729                                                                      Treaties of Uruguay
## 1730                                                                   Treaties of Uzbekistan
## 1731                                                                      Treaties of Vanuatu
## 1732                                                                    Treaties of Venezuela
## 1733                                                                      Treaties of Vietnam
## 1734                                                                        Treaties of Yemen
## 1735                                                                       Treaties of Zambia
## 1736                                                                     Treaties of Zimbabwe
## 1737                                              Treaties entered into by the European Union
## 1738                                                            Treaties extended to Guernsey
## 1739                                                              Treaties extended to Jersey
## 1740                                                     Treaties extended to the Isle of Man
## 1741                                                           Treaties extended to Gibraltar
## 1742                                                             Treaties extended to Bermuda
## 1743                                                  Treaties extended to the Cayman Islands
## 1744                                                Treaties extended to the Falkland Islands
## 1745                                                           Treaties extended to Greenland
## 1746                                                   Treaties extended to the Faroe Islands
## 1747                                                           Treaties extended to Hong Kong
## 1748                                                               Treaties extended to Macau
## 1749                                                                            1997 in Japan
## 1750                                                              History of Kyoto Prefecture
## 1751                                                                       Towns in Thuringia
## 1752                                                                            Martin Luther
## 1753                                                                                     Opel
## 1754                                                                                 Eisenach
## 1755                                                         Burial sites of the Ludovingians
## 1756                                                   Burial sites of the House of Leiningen
## 1757                                                      Grand Duchy of Saxe-Weimar-Eisenach
## 1758                                                           Holocaust locations in Germany
## 1759                                                                  Concepts in metaphysics
## 1760                                                                      Medical terminology
## 1761                                                                       Philosophy of mind
## 1762                                                                                Emergence
## 1763                                                                Kawasaki Heavy Industries
## 1764                                                          Conglomerate companies of Japan
## 1765                                                               Defense companies of Japan
## 1766                                                        Locomotive manufacturers of Japan
## 1767                                                     Motor vehicle manufacturers of Japan
## 1768                                                        Motorcycle manufacturers of Japan
## 1769                                                     Rolling stock manufacturers of Japan
## 1770                                                          Shipbuilding companies of Japan
## 1771                                                          Aircraft manufacturers of Japan
## 1772                                                              Robotics companies of Japan
## 1773                                                                                 Keiretsu
## 1774                                                                                 Zaibatsu
## 1775                                           Multinational companies headquartered in Japan
## 1776                                                    Manufacturing companies based in Kobe
## 1777                                      Vehicle manufacturing companies established in 1896
## 1778                                                             1896 establishments in Japan
## 1779                                   Companies traded over-the-counter in the United States
## 1780                                             Companies listed on the Tokyo Stock Exchange
## 1781                                               Conglomerate companies established in 1896
## 1782                                                                              Art Nouveau
## 1783                                                                            Art movements
## 1784                                                                     Architectural styles
## 1785                                                                          Decorative arts
## 1786                                                                               Modern art
## 1787                                                                  Art movements in Europe
## 1788                                                                 Art Nouveau architecture
## 1789                                                                        Art Nouveau works
## 1790                                                                          German chemists
## 1791                                                                         Swedish chemists
## 1792                                                                      Swedish pharmacists
## 1793                                                                              1742 births
## 1794                                                                              1786 deaths
## 1795                                                         Discoverers of chemical elements
## 1796                                         Members of the Royal Swedish Academy of Sciences
## 1797                                                                    People from Stralsund
## 1798                                                            People from Swedish Pomerania
## 1799                                                               German emigrants to Sweden
## 1800                                                                      Deaths by poisoning
## 1801                                                                      German male writers
## 1802                                                              18th-century German writers
## 1803                                                             18th-century Swedish writers
## 1804                                                                    18th-century chemists
## 1805                                                           18th-century German scientists
## 1806                                                                 Limits (category theory)
## 1807                                                                Objects (category theory)
## 1808                                                                                  Nothing
## 1809                                                                                 Forestry
## 1810                                                                          Timber industry
## 1811                                                                            Wood products
## 1812                                                                              Woodworking
## 1813                                                                              1275 births
## 1814                                                                              1322 deaths
## 1815                                                         Barons in the Peerage of England
## 1816                                                                  14th-century executions
## 1817                                                                 14th-century English MPs
## 1818                                                                        Taiping Rebellion
## 1819                                                                            1850 in China
## 1820                                                                            1851 in China
## 1821                                                                            1852 in China
## 1822                                                                            1853 in China
## 1823                                                                            1854 in China
## 1824                                                                            1855 in China
## 1825                                                                            1856 in China
## 1826                                                                            1857 in China
## 1827                                                                            1858 in China
## 1828                                                                            1859 in China
## 1829                                                                            1860 in China
## 1830                                                                            1861 in China
## 1831                                                                            1862 in China
## 1832                                                                            1863 in China
## 1833                                                                            1864 in China
## 1834                                                                    19th century in China
## 1835                                                                  19th-century rebellions
## 1836                                                                    Christianity in China
## 1837                                                                          Peasant revolts
## 1838                                                           Rebellions in the Qing dynasty
## 1839                                                                Religion-based civil wars
## 1840                                                                    Wars involving France
## 1841                                                          Wars involving the Qing dynasty
## 1842                                                        Wars involving the United Kingdom
## 1843                                                                         Christianization
## 1844                                                                            Eight Banners
## 1845                                                               Brands that became generic
## 1846                                                                           Carbon dioxide
## 1847                                                                                 Coolants
## 1848                                                                                      Ice
## 1849                                                                             Refrigerants
## 1850                                                                       Chemical reactions
## 1851                                                                        Chemical kinetics
## 1852                                                                                Catalysis
## 1853                                                                Aging-associated diseases
## 1854                                                                           Heart diseases
## 1855                                                                  Ischemic heart diseases
## 1856                                                                         Middle-earth Men
## 1857                                                                         Fictional undead
## 1858                                                              Fictional demons and devils
## 1859                                                                          Fictional kings
## 1860                                                                       Fictional henchmen
## 1861                                                                      Fictional swordsmen
## 1862                                                         The Lord of the Rings characters
## 1863                                                  Fictional characters introduced in 1954
## 1864                                                                        Literary villains
## 1865                                                                         Fictional nonets
## 1866                                                                  Palestinian nationalism
## 1867              Non-governmental organizations involved in the Israeli–Palestinian conflict
## 1868                                         Think tanks based in the Palestinian territories
## 1869                                             Educational institutions established in 1987
## 1870                                                                Former monarchies of Asia
## 1871                                                      Former countries in Chinese history
## 1872                                                                           Former empires
## 1873                                               States and territories established in 1038
## 1874                                            States and territories disestablished in 1227
## 1875                                                                              Western Xia
## 1876                                                             Dynasties in Chinese history
## 1877                                                                           Tangut history
## 1878                                                                    11th century in China
## 1879                                                                    12th century in China
## 1880                                                                    13th century in China
## 1881                                                             1030s establishments in Asia
## 1882                                                          1220s disestablishments in Asia
## 1883                                                                          Wright brothers
## 1884                                                                       Aviation inventors
## 1885                                                                        Aviation pioneers
## 1886                                                                       Aircraft designers
## 1887                                                                          Aerodynamicists
## 1888                                                             American aerospace engineers
## 1889                                                                        American aviators
## 1890                                                                       American engineers
## 1891                                                                       American inventors
## 1892                                                    Aviation history of the United States
## 1893                                                      Congressional Gold Medal recipients
## 1894                                               Hall of Fame for Great Americans inductees
## 1895                                                 National Aviation Hall of Fame inductees
## 1896                                            Royal Aeronautical Society Gold Medal winners
## 1897                                                           Flight altitude record holders
## 1898                                                           Flight distance record holders
## 1899                                                                       Flight instructors
## 1900                                                                            Glider pilots
## 1901                                                             Gliding in the United States
## 1902                                                                       Aviators from Ohio
## 1903                                                       American United Brethren in Christ
## 1904                                               Burials at Woodland Cemetery and Arboretum
## 1905                                                                Deaths from typhoid fever
## 1906                                                    Discovery and invention controversies
## 1907                                                                  History of Dayton, Ohio
## 1908                                                                 People from Dayton, Ohio
## 1909                                                            People from Richmond, Indiana
## 1910                                                          Wright-Patterson Air Force Base
## 1911                                                          19th-century American engineers
## 1912                                                          20th-century American engineers
## 1913                                                         19th-century American scientists
## 1914                                                         20th-century American scientists
## 1915                                                                             Sibling duos
## 1916                                                       American people of English descent
## 1917                                                         American people of Dutch descent
## 1918                                                        American people of German descent
## 1919                                                         American people of Swiss descent
## 1920                                                                   20th-century inventors
## 1921                                                         American aviation record holders
## 1922                                                              John Fritz Medal recipients
## 1923                                                National Inventors Hall of Fame inductees
## 1924                                             Survivors of aviation accidents or incidents
## 1925                                                                            Ohio counties
## 1926                                                                  Montgomery County, Ohio
## 1927                                                              1803 establishments in Ohio
## 1928                                                     Populated places established in 1803
## 1929                                                                    Ancient Greek theatre
## 1930                                                                       Ancient inventions
## 1931                                                                             Drama genres
## 1932                                                                       History of theatre
## 1933                                                                               Humanities
## 1934                                                                          Literary genres
## 1935                                                                        Theatrical genres
## 1936                                                                       Tragedies (dramas)
## 1937                                                                         Greek inventions
## 1938                                                                      Trenton, New Jersey
## 1939                                                        1719 establishments in New Jersey
## 1940                                                      Cities in Mercer County, New Jersey
## 1941                                                               County seats in New Jersey
## 1942                                                             Faulkner Act (mayor–council)
## 1943                                                     Former capitals of the United States
## 1944                                                                 New Jersey Supreme Court
## 1945                                                        New Jersey Urban Enterprise Zones
## 1946                                                     Populated places established in 1719
## 1947                                                   Populated places on the Delaware River
## 1948                                                                        Civil engineering
## 1949                                                                  Engineering disciplines
## 1950                                                                               El Alamein
## 1951                                                        Populated coastal places in Egypt
## 1952                                                  Populated places in Matrouh Governorate
## 1953                                                                         Tourism in Egypt
## 1954                                                              World War II sites in Egypt
## 1955                                                                       Analytic languages
## 1956                                                                         Chinese language
## 1957                                                                      Isolating languages
## 1958                                                                                 Sinology
## 1959                                                                  Language versus dialect
## 1960                                                                       Languages of China
## 1961                                                                      Languages of Taiwan
## 1962                                                                   Languages of Singapore
## 1963                                                                            Alcohol abuse
## 1964                                                                           Support groups
## 1965                                             Addiction organizations in the United States
## 1966                                                        Organizations established in 1986
## 1967                                                                     Towns in Saint Lucia
## 1968                                                                Capitals in the Caribbean
## 1969                                                     Populated places established in 1650
## 1970                                                  Martinique–Saint Lucia border crossings
## 1971                                                                                 Castries
## 1972                                                             Port cities in the Caribbean
## 1973                                        1650 establishments in the French colonial empire
## 1974                                                     1650 establishments in North America
## 1975                                                  Populated coastal places in Saint Lucia
## 1976                                                                                   Bangui
## 1977                                                                       Capitals in Africa
## 1978               Central African Republic–Democratic Republic of the Congo border crossings
## 1979                                         Populated places in the Central African Republic
## 1980                                                     Populated places established in 1889
## 1981                                              Prefectures of the Central African Republic
## 1982                                          Sub-prefectures of the Central African Republic
## 1983                                                                             Ubangi River
## 1984                                                            1889 establishments in Africa
## 1985                                                     Cities and towns in Salzburg (state)
## 1986                                                                                 Salzburg
## 1987                                                                     15 BC establishments
## 1988                                                                  Austrian state capitals
## 1989                                 Displaced persons camps in the aftermath of World War II
## 1990                                                            Districts of Salzburg (state)
## 1991                                 Places related to the history of the Georgia Salzburgers
## 1992                                                          World Heritage Sites in Austria
## 1993                                                              University towns in Austria
## 1994                                                           Holocaust locations in Austria
## 1995                                                                1941 in the United States
## 1996                                                         Economic aid during World War II
## 1997                                                   History of the United States (1918–45)
## 1998                                Military history of the United States during World War II
## 1999                                                      Presidency of Franklin D. Roosevelt
## 2000                                                     Soviet Union–United States relations
## 2001                                                   United Kingdom–United States relations
## 2002                                               United States federal commerce legislation
## 2003                                              United States foreign relations legislation
## 2004                                                          1939 in international relations
## 2005                                                       Military logistics of World War II
## 2006                                                                   1940s economic history
## 2007                                                        Foreign trade of the Soviet Union
## 2008                                                           British Empire in World War II
## 2009                                                           United Kingdom in World War II
## 2010                                                                     1932 in American law
## 2011                                                              72nd United States Congress
## 2012                                                  United States federal labor legislation
## 2013                                                                          Buckinghamshire
## 2014                                                                Non-metropolitan counties
## 2015                                                                       South East England
## 2016                                                                            Home counties
## 2017                                                                  Politics of Ivory Coast
## 2018                                                                                Computers
## 2019                                                                     Consumer electronics
## 2020                                                                    1990s fads and trends
## 2021                                                                    2000s fads and trends
## 2022                                                                               1977 films
## 2023                                                                   English-language films
## 2024                                                                1970s coming-of-age films
## 2025                                                                        1970s dance films
## 2026                                                                        1970s drama films
## 2027                                                             American coming-of-age films
## 2028                                                                     American dance films
## 2029                                                                     American drama films
## 2030                                                                           American films
## 2031                                                       Films about dysfunctional families
## 2032                                           Films based on newspaper and magazine articles
## 2033                                                            Films directed by John Badham
## 2034                                                        Films produced by Robert Stigwood
## 2035                                                                    Films set in Brooklyn
## 2036                                                              Films shot in New York City
## 2037                                                                 Paramount Pictures films
## 2038                                                             Screenplays by Norman Wexler
## 2039                                               United States National Film Registry films
## 2040                                                                        Lesbos Prefecture
## 2041                                                                    Prefectures of Greece
## 2042                                                            1915 establishments in Greece
## 2043                                                                           Women's health
## 2044                                                                            Birth control
## 2045                                                                       Medical technology
## 2046                                                                                Midwifery
## 2047                                                                          Cancer clusters
## 2048                                                                             Epidemiology
## 2049                                                                       Medical statistics
## 2050                                                                                Mnemonics
## 2051                                                                     Disambiguation pages
## 2052                                                                               Typography
## 2053                                                                                Typefaces
## 2054                                                                              Typesetting
## 2055                                                                             Magic tricks
## 2056                                                                              Naval ships
## 2057                                                                               Ship types
## 2058                                                              Network address translation
## 2059                                                                          BDSM literature
## 2060                                                                        Fictional planets
## 2061                                                                       Planetary romances
## 2062                                                              Science fiction book series
## 2063                                                                  Science fiction erotica
## 2064                                                                          Series of books
## 2065                                                        Works published under a pseudonym
## 2066                                                                           Counter-Earths
## 2067                                                                            Del Rey books
## 2068                                                           Book series introduced in 1966
## 2069                                                              University of Detroit Mercy
## 2070                                                     Universities and colleges in Detroit
## 2071                                    Jesuit universities and colleges in the United States
## 2072                                           Catholic universities and colleges in Michigan
## 2073                                             Educational institutions established in 1877
## 2074                                                          1877 establishments in Michigan
## 2075                                        Association of Catholic Colleges and Universities
## 2076                                             Buildings with sculpture by Corrado Parducci
## 2077                                                                       Culture of Detroit
## 2078                                                    Roman Catholic Archdiocese of Detroit
## 2079                                                                                    Logic
## 2080                                                                       Mathematical logic
## 2081                                                                                  Nothing
## 2082                                                                                    Truth
## 2083                                                                       Informal fallacies
## 2084                                                                               Shropshire
## 2085                                                                      Ceremonial counties
## 2086                                                            Counties of the Welsh Marches
## 2087                                 Local government districts of the West Midlands (region)
## 2088                                         NUTS 3 statistical regions of the United Kingdom
## 2089                                                   Unitary authority districts of England
## 2090                                                                   West Midlands (region)
## 2091                                                                      Mutualism (biology)
## 2092                                                                  Biological interactions
## 2093                                                                                Symbiosis
## 2094                                                                    Animal viral diseases
## 2095                                                                         Chordopoxvirinae
## 2096                                                                             Cat diseases
## 2097                                                                          Bovine diseases
## 2098                                                                          Animal virology
## 2099                                                       Virus-related cutaneous conditions
## 2100                                                                        Smallpox vaccines
## 2101                                                                                 Zoonoses
## 2102                                                                      Infectious diseases
## 2103                                                                                   Rabbis
## 2104                                                             Jewish religious occupations
## 2105                                                       Orthodox rabbinic roles and titles
## 2106                                                                  Geography of Madagascar
## 2107                                                            Geography of the Indian Ocean
## 2108                                                           Geography of Africa by country
## 2109                                                                    Continental fragments
## 2110                                                                     Fictional amphibians
## 2111                                                  Fictional characters introduced in 1999
## 2112                                                                         Fictional clowns
## 2113                                                                       Fictional generals
## 2114                                                                       Fictional senators
## 2115                                                                           Film sidekicks
## 2116                                                                 Star Wars CGI characters
## 2117                                                                      Fictional diplomats
## 2118                                                            Fantasy television characters
## 2119                                                                  Male characters in film
## 2120                                                            Male characters in television
## 2121                                                                              1890 births
## 2122                                                                              1976 deaths
## 2123                                                                      People from Glasgow
## 2124                                                                   British archaeologists
## 2125                                                                  Scottish archaeologists
## 2126                                                                    Scottish antiquarians
## 2127                                                                 Royal Artillery officers
## 2128                                         Members of the Order of the Companions of Honour
## 2129                                             Companions of the Order of the Indian Empire
## 2130                                                         Recipients of the Military Cross
## 2131                                                    British Army personnel of World War I
## 2132                                                   British Army personnel of World War II
## 2133                                                                         Knights Bachelor
## 2134                                            Academics of the UCL Institute of Archaeology
## 2135                                     People associated with the Indus Valley Civilisation
## 2136                                                           Fellows of the British Academy
## 2137                                                Fellows of the Royal Society (Statute 12)
## 2138                                          Fellows of the Society of Antiquaries of London
## 2139                                        Member of the Cambrian Archaeological Association
## 2140                                                            British television presenters
## 2141                                               People educated at Bradford Grammar School
## 2142                                                       Alumni of the University of London
## 2143                                  Directors General of the Archaeological Survey of India
## 2144                       People associated with the Amgueddfa Cymru – National Museum Wales
## 2145                                                          British expatriates in Pakistan
## 2146                                                             Archaeologists of South Asia
## 2147                                                                            Line printers
## 2148                                                                            Digital press
## 2149                                                                   Laser image generation
## 2150                                                                           Laser printers
## 2151                                                                         Office equipment
## 2152                                                            History of computing hardware
## 2153                                                                      American inventions
## 2154                                                   Computer-related introductions in 1975
## 2155                                                                              1982 albums
## 2156                                                            Albums produced by Jimmy Page
## 2157                                                       Albums with cover art by Hipgnosis
## 2158                                                            Albums published posthumously
## 2159                                                                      Led Zeppelin albums
## 2160                                                                 Swan Song Records albums
## 2161                                                         Albums recorded at Polar Studios
## 2162                                                                         Cistercian Order
## 2163                                                                              Monasticism
## 2164                                                           Roman Catholic monastic orders
## 2165                                                               Civil rights and liberties
## 2166                                                                           Gender studies
## 2167                                                                              Masculinity
## 2168                                                                                Masculism
## 2169                                                                           Men's movement
## 2170                                                                          Social theories
## 2171                                                                Words coined in the 1980s
## 2172                                                                             Men's rights
## 2173                                                                                      Men
## 2174                                                                             Men's health
## 2175                                                                              1941 births
## 2176                                                                            Living people
## 2177                                                   University of Wisconsin–Madison alumni
## 2178                                                   University of California, Davis alumni
## 2179                                                              American conceptual artists
## 2180                                                                              Walking art
## 2181                                                                   American video artists
## 2182                                                                             Neon artists
## 2183                                                                     American printmakers
## 2184                                                                  Artists from California
## 2185                                                                  Artists from New Mexico
## 2186                                      Members of the American Academy of Arts and Letters
## 2187                                               Members of the Academy of the Arts, Berlin
## 2188                                                                       Postmodern artists
## 2189                                                         Artists from Fort Wayne, Indiana
## 2190                                                      San Francisco Art Institute faculty
## 2191                                                                       Rome Prize winners
## 2192                                                             Wolf Prize in Arts laureates
## 2193                                                    Honorary Members of the Royal Academy
## 2194                                                           Geography of Matanzas Province
## 2195                                                                             Bays of Cuba
## 2196                                                                         History of logic
## 2197                                                                               Term logic
## 2198                                                                                Syllogism
## 2199                                                                                 Humanism
## 2200                                                                        Corvallis, Oregon
## 2201                                                          Cities in Benton County, Oregon
## 2202                                                                         Cities in Oregon
## 2203                                                                   County seats in Oregon
## 2204                                                                        Willamette Valley
## 2205                            Former colonial and territorial capitals in the United States
## 2206                                                    University towns in the United States
## 2207                                                     Populated places established in 1845
## 2208                                                    1845 establishments in Oregon Country
## 2209                                                 Populated places on the Willamette River
## 2210                                                                            Central banks
## 2211                                                                           Banks of China
## 2212                                                                          Monetary reform
## 2213                                                                Banks established in 1948
## 2214                                                             1948 establishments in China
## 2215                                                                   People's Bank of China
## 2216                                                                             Siluriformes
## 2217                                                                              Edible fish
## 2218                                                                          Commercial fish
## 2219                                                                             Ostariophysi
## 2220                                                                           Fish of Africa
## 2221                                                                             Fish of Asia
## 2222                                                                           Fish of Europe
## 2223                                                                          Fish of Oceania
## 2224                                                                    Fish of North America
## 2225                                                                  Fish of Central America
## 2226                                                                    Fish of South America
## 2227                                                                                Soul food
## 2228                                                                     Late Cretaceous fish
## 2229                                                 Extant Late Cretaceous first appearances
## 2230                                                                              Anxiolytics
## 2231                                                                                   Drinks
## 2232                                                                               Entheogens
## 2233                                                                           Fijian culture
## 2234                                                                         Medicinal plants
## 2235                                                                         Oceanian cuisine
## 2236                                                                            Piper (plant)
## 2237                                                                           Samoan culture
## 2238                                                                           Tongan culture
## 2239                                                                           Drugs in Tonga
## 2240                                                                        Vanuatuan culture
## 2241                                                                                     Kava
## 2242                                                                Ceremonial food and drink
## 2243                                            GABAA receptor positive allosteric modulators
## 2244                                                                  Sodium channel blockers
## 2245                                                                 Calcium channel blockers
## 2246                                              Norepinephrine-dopamine reuptake inhibitors
## 2247                                                             Monoamine oxidase inhibitors
## 2248                                                                    CB1 receptor agonists
## 2249                                                                                  Opioids
## 2250                                                             Polynesian words and phrases
## 2251                                                                       Polynesian cuisine
## 2252                                                                     Disambiguation pages
## 2253                                                                              1857 births
## 2254                                                                              1945 deaths
## 2255                                                                    People from Marseille
## 2256                                                                      French entertainers
## 2257                                                                               Flatulists
## 2258                                                                      Computer networking
## 2259                                                                        Data transmission
## 2260                                                          Network file transfer protocols
## 2261                                                                      Servers (computing)
## 2262                                                                                   Yachts
## 2263                                                                                  Torture
## 2264                                                                                    Abuse
## 2265                                                                  Crimes against humanity
## 2266                                                                      Human rights abuses
## 2267                                                                                 Violence
## 2268                                                                                 Morality
## 2269                                                                             Criminal law
## 2270                                                                        Philosophy of law
## 2271                                                    Ethically disputed judicial practices
## 2272                                                                 Songs of the Vietnam War
## 2273                                                                 American patriotic songs
## 2274                                                                       Barry Sadler songs
## 2275                                          Billboard Adult Contemporary number-one singles
## 2276                                                                 Songs about the military
## 2277                                                                             1966 singles
## 2278                                                                               1966 songs
## 2279                                                                     Anita Lindblom songs
## 2280                                                                                Manchuria
## 2281                                                                               Inner Asia
## 2282                                                                           Northeast Asia
## 2283                                                                         Regions of China
## 2284                                                             Historical regions in Russia
## 2285                                                                         English monarchy
## 2286                                                                         English monarchs
## 2287                                                                Lists of British monarchs
## 2288                                                         Kingdom of England-related lists
## 2289                                                     Dungeons & Dragons campaign settings
## 2290                                                               Dungeons & Dragons planets
## 2291                                                                                  Mystara
## 2292                                                                 Culture of New York City
## 2293                                                                 Symbols of New York City
## 2294                                                                              Etymologies
## 2295                                                                                    Slang
## 2296                                                                           American slang
## 2297                                                                     City fruit nicknames
## 2298                                                                              C*-algebras
## 2299                                                                      Functional analysis
## 2300                                                          Lossless compression algorithms
## 2301                                                                              1774 births
## 2302                                                                              1833 deaths
## 2303                                                                   Deaths from meningitis
## 2304                                                         18th-century Indian philosophers
## 2305                                                                 Indian male philosophers
## 2306                                                                    Scholars from Kolkata
## 2307                                                             People from Hooghly district
## 2308                                                                       Bengal Renaissance
## 2309                                                                           Bengali Hindus
## 2310                                                                                  Brahmos
## 2311                                                                         Indian reformers
## 2312                                                  Founders of Indian schools and colleges
## 2313                                                     Infectious disease deaths in England
## 2314                                                         19th-century Indian philosophers
## 2315                                                                              Neo-Vedanta
## 2316                                                                      California counties
## 2317                                                                Orange County, California
## 2318                                                            Los Angeles metropolitan area
## 2319                                                                 Greater Los Angeles Area
## 2320                                                          Counties in Southern California
## 2321                                                        1889 establishments in California
## 2322                                                     Populated places established in 1889
## 2323                                Government units that have filed for Chapter 9 bankruptcy
## 2324                                                                             Billy Wilder
## 2325                                                                              1906 births
## 2326                                                                              2002 deaths
## 2327                                                                  American film directors
## 2328                                                                  American film producers
## 2329                                                                American male journalists
## 2330                                                                     American journalists
## 2331                                                 American people of Polish-Jewish descent
## 2332                                                              American male screenwriters
## 2333                                                  Austrian emigrants to the United States
## 2334                                                                  Austrian film directors
## 2335                                                                  Austrian film producers
## 2336                                                                            Austrian Jews
## 2337                                                                     Austrian journalists
## 2338                                                                        Austrian refugees
## 2339                                                                   Austrian screenwriters
## 2340                                                                   BAFTA winners (people)
## 2341                                            Best Adapted Screenplay Academy Award winners
## 2342                                                     Best Directing Academy Award winners
## 2343                                                       Best Director Golden Globe winners
## 2344                                           Best Original Screenplay Academy Award winners
## 2345                                         Producers who won the Best Picture Academy Award
## 2346                                       Burials at Westwood Village Memorial Park Cemetery
## 2347                                                         Deaths from cancer in California
## 2348                                                               David di Donatello winners
## 2349                                                                    Deaths from pneumonia
## 2350                                                 Directors Guild of America Award winners
## 2351                                                          English-language film directors
## 2352                                                    European Film Awards winners (people)
## 2353                                                           German-language film directors
## 2354                                                  Infectious disease deaths in California
## 2355                                  Jewish emigrants from Nazi Germany to the United States
## 2356                                                       Jews from Galicia (Eastern Europe)
## 2357                                                                  Kennedy Center honorees
## 2358               Knight Commanders of the Order of Merit of the Federal Republic of Germany
## 2359                                                                 People from Innere Stadt
## 2360                                                                 People from Leopoldstadt
## 2361                                                              People from Sucha Beskidzka
## 2362                                                                              Polish Jews
## 2363                                          United States National Medal of Arts recipients
## 2364                                                          Directors of Palme d'Or winners
## 2365                                                                Cuisine of Emilia-Romagna
## 2366                                                                        Argentine cuisine
## 2367                                                                          Chilean cuisine
## 2368                                                                                 Cold cut
## 2369                                                                         Croatian cuisine
## 2370                                                                        Hungarian cuisine
## 2371                                    Italian products with protected designation of origin
## 2372                                                                         Italian sausages
## 2373                                                                                   Salumi
## 2374                                                                               1975 books
## 2375                                                       American novels adapted into films
## 2376                                                        Books about extraterrestrial life
## 2377                                                                                  Mothman
## 2378                                                                               Paranormal
## 2379                                                              Novels set in West Virginia
## 2380                                                        1970s science fiction novel stubs
## 2381                                                                              Microphones
## 2382                                                                                   Choirs
## 2383                                                                  Types of musical groups
## 2384                                                                              Vocal music
## 2385                                                                          Polka musicians
## 2386                                                                     Grammy Award winners
## 2387                                                            Singers from New York (state)
## 2388                                                                              1941 births
## 2389                                                                            Living people
## 2390                                                         American people of Irish descent
## 2391                                                                    American saxophonists
## 2392                                                                    American clarinetists
## 2393                                                                    American male singers
## 2394                                                               New York (state) Democrats
## 2395                                                            People from Warwick, New York
## 2396                                                                  American male musicians
## 2397                                                                       American musicians
## 2398                                                                     Disambiguation pages
## 2399                                        Disambiguation pages with given-name-holder lists
## 2400                                                              Greek masculine given names
## 2401                                                                                   Adages
## 2402                                                                           Computer humor
## 2403                                                              Software project management
## 2404                                                                   Programming principles
## 2405                                                                                      428
## 2406                                                                  Abstract strategy games
## 2407                                                                       Mathematical games
## 2408                                                                   Paper-and-pencil games
## 2409                                                                       1889 introductions
## 2410                                                  Documents of the Second Vatican Council
## 2411                                      Documents of the Catholic Social Teaching tradition
## 2412                                                                           1965 documents
## 2413                                                                     1965 in Christianity
## 2414                                                                     Disambiguation pages
## 2415                                                                        Data transmission
## 2416                                                                   Communication circuits
## 2417                                                                        Network protocols
## 2418                                                                      Telephony equipment
## 2419                                                                        Audio engineering
## 2420                                                                    Broadcast engineering
## 2421                                                             Electrical signal connectors
## 2422                                                                      Networking hardware
## 2423                                                                       Network addressing
## 2424                                                                                Telephony
## 2425                                                                          Telephony stubs
## 2426                                                                     Network architecture
## 2427                                                                 Telecommunications stubs
## 2428                                                                     Disambiguation pages
## 2429                                                                        Types of climbing
## 2430                                                                           Sport climbing
## 2431                                                                Digital signal processing
## 2432                                                                   Communication circuits
## 2433                                                                             Interference
## 2434                                                                      Noise (electronics)
## 2435                                                                 Telecommunications stubs
## 2436                                                                        Radio terminology
## 2437                                                                                 Fractals
## 2438                                                                          Metric geometry
## 2439                                                                         Dimension theory
## 2440                                                                       Particle detectors
## 2441                                                                            Spectrometers
## 2442                                                             Ionising radiation detectors
## 2443                                                                     Radiation protection
## 2444                                                                                  550s BC
## 2445                                                                         IBM workstations
## 2446                                                                          Server hardware
## 2447                                                              Operating system technology
## 2448                                                                      Software type stubs
## 2449                                                                             Biochemistry
## 2450                                                                            Biotechnology
## 2451                                                                        Molecular biology
## 2452                                                                               1991 films
## 2453                                                                   English-language films
## 2454                                                                      1990s mystery films
## 2455                                                                     1990s thriller films
## 2456                                                                           American films
## 2457                                                                   American mystery films
## 2458                                                                 American political films
## 2459                                                        American political thriller films
## 2460                                                                           Cold War films
## 2461                                                            Films scored by John Williams
## 2462                                                         Films based on non-fiction books
## 2463                                                          Films about conspiracy theories
## 2464                                              Films about Presidents of the United States
## 2465                                         Films about the assassination of John F. Kennedy
## 2466                                                            Films based on multiple works
## 2467                                                           Films directed by Oliver Stone
## 2468                                                                      Films set in Dallas
## 2469                                                                 Films set in New Orleans
## 2470                                                                        Films set in 1963
## 2471                                                                        Films set in 1966
## 2472                                                                        Films set in 1969
## 2473                                                            Films set in Washington, D.C.
## 2474                                                                     Films shot in Dallas
## 2475                                                                Films shot in New Orleans
## 2476                                                                   Films shot in Virginia
## 2477                                                           Films shot in Washington, D.C.
## 2478                                                                 Films partially in color
## 2479                    Films whose cinematographer won the Best Cinematography Academy Award
## 2480                                  Films whose director won the Best Director Golden Globe
## 2481                               Films whose editor won the Best Film Editing Academy Award
## 2482                                                                Regency Enterprises films
## 2483                                                              Screenplays by Oliver Stone
## 2484                                                                        StudioCanal films
## 2485                                                                        Vietnam War films
## 2486                                                                            Photovoltaics
## 2487                                                                         Space technology
## 2488                                                                           Thermodynamics
## 2489                                                                        Energy conversion
## 2490                                                                               Satellites
## 2491                                                                           Electric power
## 2492                                                                              Solar power
## 2493                                                                    Solar power and space
## 2494                                                                      Space-based economy
## 2495                                                                                     1673
## 2496                                                                                     1674
## 2497                                                                                     1694
## 2498                                                                                     1709
## 2499                                                                                     1668
## 2500                                                      American League Championship Series
## 2501                                            Recurring sporting events established in 1969
## 2502                                                                                     1579
## 2503                                                                                     1580
## 2504                                                                     Disambiguation pages
## 2505                                                              Governors General of Canada
## 2506                                                                     Government of Canada
## 2507                                                                       Westminster system
## 2508                                                                       Monarchy in Canada
## 2509                                                                                  Turtles
## 2510                                                           Kimmeridgian first appearances
## 2511                                                   Extant Late Jurassic first appearances
## 2512                                                               Metropolitan Museum of Art
## 2513                                                 African art museums in the United States
## 2514                                                          Art museums established in 1872
## 2515                                                             Art museums in New York City
## 2516                                                    Asian art museums in New York (state)
## 2517                                                Cultural infrastructure completed in 1880
## 2518        Buildings and structures on the National Register of Historic Places in Manhattan
## 2519                                                                             Central Park
## 2520                                           Egyptological collections in the United States
## 2521                                                     Fashion museums in the United States
## 2522                                                                             Fifth Avenue
## 2523                              Institutions accredited by the American Alliance of Museums
## 2524                                                  Modern art museums in the United States
## 2525                                                                     Museums in Manhattan
## 2526                                                                Museums of Ancient Greece
## 2527                                                                  Museums of Ancient Rome
## 2528                                                             Museums of Ancient Near East
## 2529                                           Pre-Columbian art museums in the United States
## 2530                                          Musical instrument museums in the United States
## 2531                                                                  Museums of American art
## 2532                                                 National Historic Landmarks in Manhattan
## 2533                                            Order of Arts and Letters of Spain recipients
## 2534                                                            Richard Morris Hunt buildings
## 2535                                                                       Rockefeller family
## 2536                                                     Textile museums in the United States
## 2537                                                  1872 establishments in New York (state)
## 2538                                                                       Armour collections
## 2539                                                                Sculptures by Karl Bitter
## 2540                                                              Indian Institute of Science
## 2541                                                        Engineering colleges in Bangalore
## 2542                                                         Research institutes in Bangalore
## 2543                                                         Research institutes in Karnataka
## 2544                                                    Multidisciplinary research institutes
## 2545                                                                        Tata institutions
## 2546                                                                        Kingdom of Mysore
## 2547                                             Educational institutions established in 1909
## 2548                                           Engineering universities and colleges in India
## 2549                                                             1909 establishments in India
## 2550                                                         Deemed universities in Karnataka
## 2551                                                                                 Lathyrus
## 2552                                                                            Annual plants
## 2553                                                                                    Vines
## 2554                                                                            Garden plants
## 2555                                                                  Garden plants of Europe
## 2556                                                                 Plants described in 1753
## 2557                                                                    Nitrogen-fixing crops
## 2558                                                         United Nations Development Group
## 2559                                        United Nations General Assembly subsidiary organs
## 2560                                                  International development organizations
## 2561                                                        International trade organizations
## 2562                                                           International factor movements
## 2563                                                               United Nations conferences
## 2564                                                    Diplomatic conferences in Switzerland
## 2565                                                      21st-century diplomatic conferences
## 2566                                                      20th-century diplomatic conferences
## 2567                                                        Organizations established in 1964
## 2568                                                            Organisations based in Geneva
## 2569                                                                                      897
## 2570                                                                                      729
## 2571                                                                                      875
## 2572                                                                                      616
## 2573                                                                                      706
## 2574                                                                                    1180s
## 2575                                                                                      853
## 2576                                                                                      199
## 2577                                                                                     1751
## 2578                                                                                      439
## 2579                                                                                      801
## 2580                                                                                       94
## 2581                                                                                       32
## 2582                                                      Integrated Services Digital Network
## 2583                                                                                     1566
## 2584                                                                                     1867
## 2585                                                                                    1490s
## 2586                                                                                     1924
## 2587                                                     Leap years in the Gregorian calendar
## 2588                                                                           2nd millennium
## 2589                                                                             13th century
## 2590                                                                                Centuries
## 2591                                                                           Kabbalah texts
## 2592                                                                   Apocalyptic literature
## 2593                                                                    Hebrew-language names
## 2594                                                                  Jewish texts in Aramaic
## 2595                                                                              1917 births
## 2596                                                                              1980 deaths
## 2597                                                                           Pashtun people
## 2598                                                                     People from Peshawar
## 2599                                                             People from Chakwal District
## 2600                                                          University of the Punjab alumni
## 2601                                                           Indian Military Academy alumni
## 2602                                                             British Indian Army officers
## 2603                                                                 Baloch Regiment officers
## 2604                                                    Indian Army personnel of World War II
## 2605                                                Indian military personnel of World War II
## 2606                                 Non-U.S. alumni of the Command and General Staff College
## 2607                                                                       Pakistani generals
## 2608                                                            20th-century Pakistani people
## 2609                                                               Pakistani military leaders
## 2610                                                 People of the Indo-Pakistani War of 1965
## 2611                                                                   Presidents of Pakistan
## 2612                                                                        Anti-nationalists
## 2613                                                           Chiefs of Army Staff, Pakistan
## 2614                                                            Foreign Ministers of Pakistan
## 2615                                                            Defence Ministers of Pakistan
## 2616                                                Generals of the Bangladesh Liberation War
## 2617                                               Generals of the Indo-Pakistani War of 1971
## 2618                                                                               Yahya Khan
## 2619                                      Causes and prelude of the Bangladesh Liberation War
## 2620                                                                       1971 controversies
## 2621                                                                Controversies in Pakistan
## 2622                                                                Pakistani anti-communists
## 2623                                                                           Job scheduling
## 2624                                                                              West Bengal
## 2625                                                             1947 establishments in India
## 2626                                                                            Bay of Bengal
## 2627                                                                                   Bengal
## 2628                                               Bengali-speaking countries and territories
## 2629                                               English-speaking countries and territories
## 2630                                               States and territories established in 1947
## 2631                                                    States and union territories of India
## 2632                                                               West Bengal related topics
## 2633                                                              Microsoft operating systems
## 2634                                                                        Microsoft Windows
## 2635                                                                      Computing platforms
## 2636                                                                Operating system families
## 2637                                                                            1985 software
## 2638                                                   Computer-related introductions in 1985
## 2639                                                                           Whistleblowers
## 2640                                                                           Whistleblowing
## 2641                                                                  Anti-corporate activism
## 2642                                                                                  Dissent
## 2643                                                                    Freedom of expression
## 2644                                                                        Freedom of speech
## 2645                                                    Grounds for termination of employment
## 2646                                                                               Labour law
## 2647                                                                    Political terminology
## 2648                                                  United States federal labor legislation
## 2649                                                                       Workplace bullying
## 2650                                                                Words coined in the 1970s
## 2651                                                                                 Watchmen
## 2652                                                                       1986 comics debuts
## 2653                                                                           1986 in comics
## 2654                                                                      1987 graphic novels
## 2655                                                                             Adult comics
## 2656                                                                 Alternate history comics
## 2657                                                                       Apocalyptic comics
## 2658                                                        British comics adapted into films
## 2659                                                        British novels adapted into films
## 2660                                                                         Cold War fiction
## 2661                                                          Comics adapted into video games
## 2662                                                                     Comics by Alan Moore
## 2663                                                                   Comics by Dave Gibbons
## 2664                                                     Cultural depictions of Richard Nixon
## 2665                                                             DC Comics adapted into films
## 2666                                                                         Dystopian comics
## 2667                                                                        Fictional sextets
## 2668                                                                 Hugo Award-winning works
## 2669                                                    Obscenity controversies in literature
## 2670                                                                          Satirical books
## 2671                                                                         Satirical comics
## 2672                                                                Discrimination in fiction
## 2673                                                                              Warsaw Pact
## 2674                                                                             Eastern Bloc
## 2675                                                                         1991 in politics
## 2676                                                          20th-century military alliances
## 2677                                                          Bulgaria–Soviet Union relations
## 2678                                                                        Cold War treaties
## 2679                                                                                Communism
## 2680                                                    Foreign relations of the Soviet Union
## 2681                                                       Former international organizations
## 2682                                                           Germany–Soviet Union relations
## 2683                                                         History of Poland (1989–present)
## 2684                                                                        History of Warsaw
## 2685                                                     International military organizations
## 2686                                                    International political organizations
## 2687                                                    Military alliances involving Bulgaria
## 2688                                              Military alliances involving Czechoslovakia
## 2689                                                     Military alliances involving Hungary
## 2690                                                      Military alliances involving Poland
## 2691                                                     Military alliances involving Romania
## 2692                                            Military alliances involving the Soviet Union
## 2693                                                                            Modern Europe
## 2694                                                        Organizations established in 1955
## 2695                                                     Organizations disestablished in 1991
## 2696                                                            Poland–Soviet Union relations
## 2697                                                               Treaties concluded in 1955
## 2698                                                      Treaties entered into force in 1955
## 2699                                                                 Treaties of East Germany
## 2700                                            Treaties of the People's Republic of Bulgaria
## 2701                                              Treaties of the Hungarian People's Republic
## 2702                                                 Treaties of the Polish People's Republic
## 2703                                   Treaties of the People's Socialist Republic of Albania
## 2704                                            Treaties of the Socialist Republic of Romania
## 2705                                                    Czechoslovakia–Soviet Union relations
## 2706                                                           Hungary–Soviet Union relations
## 2707                                    Treaties establishing intergovernmental organizations
## 2708                                                                     Cold War terminology
## 2709                                                                              1856 births
## 2710                                                                              1924 deaths
## 2711                                                             19th-century American people
## 2712                                                               19th-century Presbyterians
## 2713                                                        20th-century American politicians
## 2714                                                               20th-century Presbyterians
## 2715                                                                 American Nobel laureates
## 2716                                                       American people of English descent
## 2717                                                  American people of Scotch-Irish descent
## 2718                                                      American people of Scottish descent
## 2719                                                           American people of World War I
## 2720                                          American politicians with physical disabilities
## 2721                                                                   American Presbyterians
## 2722                                                                Bryn Mawr College faculty
## 2723                                                 Burials at Washington National Cathedral
## 2724                                         Democratic Party Presidents of the United States
## 2725                                    Democratic Party state governors of the United States
## 2726                                   Democratic Party (United States) presidential nominees
## 2727                                     Fellows of the American Academy of Arts and Sciences
## 2728                                                            Freemen of the City of London
## 2729                                                                  Governors of New Jersey
## 2730                                               Hall of Fame for Great Americans inductees
## 2731                                       History of racial segregation in the United States
## 2732                                                          Johns Hopkins University alumni
## 2733                                                                 League of Nations people
## 2734                                            Members of the American Philosophical Society
## 2735                                                                     New Jersey Democrats
## 2736                                                              Nobel Peace Prize laureates
## 2737                                                             Georgia (U.S. state) lawyers
## 2738                                                        Politicians from Augusta, Georgia
## 2739                                                      Politicians from Staunton, Virginia
## 2740                                                          People of the Russian Civil War
## 2741                                                             Presidency of Woodrow Wilson
## 2742                                                       Presidents of Princeton University
## 2743                                        Presidents of the American Historical Association
## 2744                                                          Presidents of the United States
## 2745                                                              Princeton University alumni
## 2746                                                             Princeton University faculty
## 2747                                                     Progressive Era in the United States
## 2748                                                                         Stroke survivors
## 2749                                              United States presidential candidates, 1912
## 2750                                              United States presidential candidates, 1916
## 2751                                                           University of Virginia faculty
## 2752                                                      Wesleyan Cardinals football coaches
## 2753                                                              Wesleyan University faculty
## 2754                                                                           Woodrow Wilson
## 2755                                                                    Woodrow Wilson family
## 2756                                                           People from Staunton, Virginia
## 2757                                                                                Graphemes
## 2758                                                                  ISO basic Latin letters
## 2759                                                                   Latin-script ligatures
## 2760                                                                            Vowel letters
## 2761                                                                         Baltimore Ravens
## 2762                                                           National Football League teams
## 2763                                                     American football teams in Baltimore
## 2764                                                         Sports clubs established in 1996
## 2765                                                          1996 establishments in Maryland
## 2766                                                                    1st-century BC births
## 2767                                                                    1st-century BC Romans
## 2768                                                                       1st-century deaths
## 2769                                                                 Ancient Roman architects
## 2770                                                                   Roman military writers
## 2771                                                            Ancient Roman civil engineers
## 2772                                                         Ancient Roman military engineers
## 2773                                                                   Ancient Roman soldiers
## 2774                                                              Architectural theoreticians
## 2775                                               Classical antiquarian architecture writers
## 2776                                                               Classical Latin literature
## 2777                                                                   Latin-language writers
## 2778                                                                 Golden Age Latin writers
## 2779                                                                        History of mining
## 2780                                                          Roman people of the Gallic Wars
## 2781                                                                            Julius Caesar
## 2782                                                                          Vilfredo Pareto
## 2783                                                                              1848 births
## 2784                                                                              1923 deaths
## 2785                                                                        People from Paris
## 2786                                                             19th-century Italian writers
## 2787                                                             20th-century Italian writers
## 2788                                                                20th-century male writers
## 2789                                                                  19th-century economists
## 2790                                                                  20th-century economists
## 2791                                                                20th-century philosophers
## 2792                                                                       Italian economists
## 2793                                                                     Italian philosophers
## 2794                                                                     Italian sociologists
## 2795                                                                  Italian anti-communists
## 2796                                                               Italian newspaper founders
## 2797                                                                     Revolution theorists
## 2798                                                                        People from Turin
## 2799                                                                             Elite theory
## 2800                                                                            Social status
## 2801                                                           University of Lausanne faculty
## 2802                                                                                Venezuela
## 2803                                                               Countries in South America
## 2804                                                               Countries in the Caribbean
## 2805                                                         Federal constitutional republics
## 2806                                                                  Former Spanish colonies
## 2807                                                                              G15 nations
## 2808                                                                    Member states of OPEC
## 2809                                                      Member states of the United Nations
## 2810                                     Member states of the Union of South American Nations
## 2811                                               Spanish-speaking countries and territories
## 2812                                               States and territories established in 1811
## 2813                                                                                Arguments
## 2814                                                                        Concepts in logic
## 2815                                                                      Deductive reasoning
## 2816                                                                            Logical truth
## 2817                                                             Cabinet of the United States
## 2818                                                                        National cabinets
## 2819                                                              German Type VIIC submarines
## 2820                                                       World War II submarines of Germany
## 2821                                                             U-boats commissioned in 1940
## 2822                                                                               1940 ships
## 2823                                                                   Ships built in Hamburg
## 2824                                                            Operation Regenbogen (U-boat)
## 2825                                                           Maritime incidents in May 1945
## 2826                                                                          Category theory
## 2827                                                                 Mathematical terminology
## 2828                                                                              1941 births
## 2829                                                                            Living people
## 2830                                                            20th-century Italian painters
## 2831                                                                    Italian male painters
## 2832                                                                          Italian artists
## 2833                                                             Italian contemporary artists
## 2834                                                                        People from Turin
## 2835                                                               University of Turin alumni
## 2836                                                           Geography of the United States
## 2837                                                                         Ultimate (sport)
## 2838                                                                              Team sports
## 2839                                                                             Mixed sports
## 2840                                                      Games and sports introduced in 1969
## 2841                                                  Sports originating in the United States
## 2842                                                        Characters created by Tom DeFalco
## 2843                                                     Comics characters introduced in 1982
## 2844                                                                   Elders of the Universe
## 2845                                                           Extraterrestrial supervillains
## 2846                                                            Marvel Comics martial artists
## 2847                                                              Marvel Comics supervillains
## 2848                                                                Words coined in the 1970s
## 2849                                                                        Feminist theology
## 2850                                                                    Feminist spirituality
## 2851                                                                        Postmodern theory
## 2852                                                                       Post-structuralism
## 2853                                                                  American ichthyologists
## 2854                                                                            Living people
## 2855                                                            Ohio State University faculty
## 2856                                                   University of Papua New Guinea faculty
## 2857                                                        Charles Darwin University faculty
## 2858                                                                 American science writers
## 2859                                                                              1943 births
## 2860                                                                   International taxation
## 2861                                                                Financial transaction tax
## 2862                                                              Anti-globalization movement
## 2863                                                                              1957 births
## 2864                                                       American people of Italian descent
## 2865                                                      American people of Sicilian descent
## 2866                                                        20th-century American male actors
## 2867                                                        21st-century American male actors
## 2868                                                           Male actors from New York City
## 2869                                                                American male film actors
## 2870                                                                  American film directors
## 2871                                                              American male screenwriters
## 2872                                                               American male stage actors
## 2873                                                          American male television actors
## 2874                                                               David di Donatello winners
## 2875                                                        Film directors from New York City
## 2876                                                                            Living people
## 2877                                                           Male actors of Italian descent
## 2878                                                                    Obie Award recipients
## 2879                                                                     People from Brooklyn
## 2880                                                             People from Queens, New York
## 2881                                                                People of Apulian descent
## 2882                                                             Primetime Emmy Award winners
## 2883                                         State University of New York at New Paltz alumni
## 2884                                                              Yale School of Drama alumni
## 2885                                                          First Transcontinental Railroad
## 2886                                                                              1826 births
## 2887                                                                              1863 deaths
## 2888                                                      People from Bridgeport, Connecticut
## 2889                                                                 Deaths from yellow fever
## 2890                                                19th-century American railroad executives
## 2891                                                  Rensselaer Polytechnic Institute alumni
## 2892                                            Infectious disease deaths in New York (state)
## 2893                                                                       American surveyors
## 2894                                                               People from Troy, New York
## 2895                                                                   American Episcopalians
## 2896                                                                  Events in track cycling
## 2897                                                             Team pursuit (track cycling)
## 2898                                                                            Cycling stubs
## 2899                                                                               1958 films
## 2900                                                              1950s Western (genre) films
## 2901                                                                           American films
## 2902                                                           American Western (genre) films
## 2903                                                                   English-language films
## 2904                                                                      American epic films
## 2905                                                          Films directed by William Wyler
## 2906                Films featuring a Best Supporting Actor Academy Award-winning performance
## 2907                                                                    Films featuring feuds
## 2908                                                                    Films shot in Arizona
## 2909                                                                 Films shot in California
## 2910                                                                     United Artists films
## 2911                                                    Films based on Western (genre) novels
## 2912                                                           Films based on American novels
## 2913                                                                Films adapted into comics
## 2914                                                                  Country classifications
## 2915                                                                    Political terminology
## 2916                                                                       Politics by region
## 2917                                                                     Cold War terminology
## 2918                                                                          Problem of evil
## 2919                                                   Arguments against the existence of God
## 2920                                                                     Christian philosophy
## 2921                                                                    Christian apologetics
## 2922                                                                             Epicureanism
## 2923                                                                        Jewish philosophy
## 2924                                                                   Philosophical problems
## 2925                                                                   Philosophy of religion
## 2926                                                                         Self-replication
## 2927                                                                                  Silesia
## 2928                                                                 Czech geographic history
## 2929                                                                          Divided regions
## 2930                                                            Historical regions in Germany
## 2931                                                             Historical regions in Poland
## 2932                                                          States of the Holy Roman Empire
## 2933                                                Kingdoms and countries of Austria-Hungary
## 2934                                                              Geography of Central Europe
## 2935                                                                         Sinhalese people
## 2936                                                                     Buddhist communities
## 2937                                                               Ethnic groups in Sri Lanka
## 2938                                                        Ethnic groups in the Indian Ocean
## 2939                                                                       Indo-Aryan peoples
## 2940                                                                       Sinhalese diaspora
## 2941                                                                        Sinhalese culture
## 2942                                                                                Scorpions
## 2943                                                                           Living fossils
## 2944                                                                Wenlock first appearances
## 2945                                                        Extant Silurian first appearances
## 2946                                                                                 Acronyms
## 2947                                                                Military slang and jargon
## 2948                                                                                 Fractals
## 2949                                                                       Scaling symmetries
## 2950                                                                           Homeomorphisms
## 2951                                                              Servants in Norse mythology
## 2952                                                                    Norse mythology stubs
## 2953                                                                              1907 births
## 2954                                                                              1972 deaths
## 2955                                                                      20th-century rabbis
## 2956                                              Activists for African-American civil rights
## 2957                                                             American Conservative rabbis
## 2958                                                                       American ethicists
## 2959                                                              American Jewish theologians
## 2960                                                                       American pacifists
## 2961                                                 American people of Polish-Jewish descent
## 2962                                                                       Guggenheim Fellows
## 2963                                                             Hebrew Union College faculty
## 2964                                                     Humboldt University of Berlin alumni
## 2965                                                                         Jewish pacifists
## 2966                                                                      Jewish philosophers
## 2967                                           Jewish Theological Seminary of America faculty
## 2968                                                           Jews and Judaism in Cincinnati
## 2969                                                                       People from Warsaw
## 2970                                                                  Philosophers of Judaism
## 2971                                                                 Philosophers of religion
## 2972                                                    Polish emigrants to the United States
## 2973                                                                         Polish ethicists
## 2974                                                                              Polish Jews
## 2975                                                                      Polish philosophers
## 2976                                                              Religious leaders from Ohio
## 2977                                                              Selma to Montgomery marches
## 2978                                                                      Activists from Ohio
## 2979                                                                             Jewish poets
## 2980                                                                   Yiddish-language poets
## 2981                                               Participants in the Second Vatican Council
## 2982                                                                  Jewish American writers
## 2983                                                                          Submachine guns
## 2984                                                                       Military equipment
## 2985                                                                Law enforcement equipment
## 2986                                                                      World War I weapons
## 2987                                                                                 Szczecin
## 2988                                                          Port cities and towns in Poland
## 2989                                                  Port cities and towns of the Baltic Sea
## 2990                                                                  City counties of Poland
## 2991                                          Cities and towns in West Pomeranian Voivodeship
## 2992                                                          Members of the Hanseatic League
## 2993                                                                         Magdeburg rights
## 2994                                                   Burial sites of the House of Pomerania
## 2995                                                           Military installations of NATO
## 2996                                                            Holocaust locations in Poland
## 2997                                                                     Disambiguation pages
## 2998                                                                             Spirituality
## 2999                                                                                  New Age
## 3000                                                                             Neoplatonism
## 3001                                                                                   Belief
## 3002                                                                 Rail transport in Sydney
## 3003                                                                              1928 births
## 3004                                                                              2016 deaths
## 3005                                                      Artificial intelligence researchers
## 3006                                                                  Cognitive psychologists
## 3007                                                               Computer science educators
## 3008                                                                       Guggenheim Fellows
## 3009                                                       History of artificial intelligence
## 3010                                                                              Lisp people
## 3011                                                                    Mathematics educators
## 3012                                                     People with traumatic brain injuries
## 3013                                                           Programming language designers
## 3014                                                     Socialist Workers Party (UK) members
## 3015                                                        South African computer scientists
## 3016                                                      South African educational theorists
## 3017                                                             South African mathematicians
## 3018                                                              University of Geneva alumni
## 3019                                                                 Anti-apartheid activists
## 3020                                                                     MIT Media Lab people
## 3021                                                                         Days of the year
## 3022                                                                                September
## 3023                                                World Trade Organization member economies
## 3024                                                           African Union member economies
## 3025                                                                     Economy of Swaziland
## 3026                                                         Saint Vincent and the Grenadines
## 3027                                                               Countries in the Caribbean
## 3028                                                                         Windward Islands
## 3029                                               English-speaking countries and territories
## 3030                                                 Member states of the Caribbean Community
## 3031                                             Member states of the Commonwealth of Nations
## 3032                            Member states of the Organisation of Eastern Caribbean States
## 3033                                                      Member states of the United Nations
## 3034                                               States and territories established in 1979
## 3035                                                           Small Island Developing States
## 3036                                                     1979 establishments in North America
## 3037                                                               Countries in North America
## 3038                                                                  Star Trek episode lists
## 3039                                                  Star Trek: The Original Series episodes
## 3040                             Lists of American science fiction television series episodes
## 3041                                                                                    Smoke
## 3042                                                                                Sophocles
## 3043                                                                           400s BC deaths
## 3044                                                                           490s BC births
## 3045                                                                 5th-century BC Athenians
## 3046                                                                   5th-century BC writers
## 3047                                                 Ancient Greek dramatists and playwrights
## 3048                                                                      Ancient Greek poets
## 3049                                                                             Tragic poets
## 3050                                                                                   Crimes
## 3051                                                                        Legal terminology
## 3052                                                                              1828 births
## 3053                                                                              1858 deaths
## 3054                                                                    Indian female royalty
## 3055                                                                      Indian women in war
## 3056                                                            Women in 19th-century warfare
## 3057                                                      Women Indian independence activists
## 3058                                                                 History of Uttar Pradesh
## 3059                                                                                   Jhansi
## 3060                                                                     People from Varanasi
## 3061                                                                            Indian rebels
## 3062                                          Revolutionaries of the Indian Rebellion of 1857
## 3063                                                             19th-century Indian monarchs
## 3064                                                                         Maratha warriors
## 3065                                                                           Hindu warriors
## 3066                                                                    Indian queen consorts
## 3067                                                             People of the Maratha Empire
## 3068                                                                           Marathi people
## 3069                                                                19th-century Indian women
## 3070                                                              Women of the Maratha Empire
## 3071                                                    Military personnel from Uttar Pradesh
## 3072                                                                 Women from Uttar Pradesh
## 3073                                                                                   Romani
## 3074                                                                       Indo-Aryan peoples
## 3075                                                                Nomadic groups in Eurasia
## 3076                                                                  Ethnic groups in Europe
## 3077                                                                Reconstructionist Judaism
## 3078                                                               Jewish religious movements
## 3079                                                                     Disambiguation pages
## 3080                                                                                 Numerals
## 3081                                                                          Numeral systems
## 3082                                                                        Roman mathematics
## 3083                                                                           Latin alphabet
## 3084                                                                         Russian language
## 3085                                                                    East Slavic languages
## 3086                                                                      Languages of Russia
## 3087                                                                     Languages of Estonia
## 3088                                                                      Languages of Latvia
## 3089                                                                   Languages of Lithuania
## 3090                                                                      Languages of Poland
## 3091                                                                     Languages of Belarus
## 3092                                                                     Languages of Moldova
## 3093                                                                     Languages of Armenia
## 3094                                                                  Languages of Azerbaijan
## 3095                                                                  Languages of Kazakhstan
## 3096                                                                  Languages of Kyrgyzstan
## 3097                                                                  Languages of Uzbekistan
## 3098                                                                Languages of Turkmenistan
## 3099                                                                  Languages of Tajikistan
## 3100                                                                    Languages of Mongolia
## 3101                                                                       Languages of China
## 3102                                                                 Languages of North Korea
## 3103                                                                       Languages of Japan
## 3104                                                           Languages of the United States
## 3105                                                                      Languages of Israel
## 3106                                                                     Languages of Finland
## 3107                                                                      Languages of Norway
## 3108                                                                    Languages of Abkhazia
## 3109                                                           Languages of Georgia (country)
## 3110                                                                Languages of the Caucasus
## 3111                                                                Languages of Transnistria
## 3112                                                                      Languages of Turkey
## 3113                                                                     Languages of Ukraine
## 3114                                                                   Stress-timed languages
## 3115                                                            Subject–verb–object languages
## 3116                                                                      Abstract data types
## 3117                                                                        Lockheed aircraft
## 3118                                                 United States fighter aircraft 1930–1939
## 3119                                                            Twin-engined tractor aircraft
## 3120                                                                       Twin-boom aircraft
## 3121                                                                        Mid-wing aircraft
## 3122                                                             Aircraft first flown in 1939
## 3123                                                    Discovery and invention controversies
## 3124                                                                           Forms of water
## 3125                                                                             Liquid water
## 3126                                                                     Pathological science
## 3127                                                                 Scientific controversies
## 3128                                                            Water chemistry controversies
## 3129                                                                     Disambiguation pages
## 3130                                                          Human name disambiguation pages
## 3131                                                                           Buddhist oaths
## 3132                                                                     Buddhist terminology
## 3133                                                                         Codes of conduct
## 3134                                                                           Cultural lists
## 3135                                                                                   Virtue
## 3136                                                                         Religious ethics
## 3137                                                                                   EC 2.7
## 3138                                                                               1969 books
## 3139                                                                                   Adages
## 3140                                                                          Sociology books
## 3141                                                                           Business books
## 3142                                                                              Office work
## 3143                                                                    Organizational theory
## 3144                                                                Words coined in the 1960s
## 3145                                                                             Incompetence
## 3146                                                                                  Pencils
## 3147                                                                            Art materials
## 3148                                                                               Stationery
## 3149                                                                       Writing implements
## 3150                                                                            Phylogenetics
## 3151                                                                   Ancient Olympic sports
## 3152                                                         Historical European martial arts
## 3153                                                                      Hybrid martial arts
## 3154                                                                          Sport wrestling
## 3155                                                                               Pankration
## 3156                                                                    European martial arts
## 3157                                                                Mixed martial arts styles
## 3158                                                                              1329 births
## 3159                                                                              1378 deaths
## 3160                                                                      People from Corrèze
## 3161                                                                                    Popes
## 3162                                                                             French popes
## 3163                                                                             Roger family
## 3164                                                      14th-century Roman Catholic bishops
## 3165                                                             University of Perugia alumni
## 3166                                                                         Bishops of Arras
## 3167                                                                         Cardinal-nephews
## 3168                                                                           Avignon Papacy
## 3169                                                               14th-century French people
## 3170                                                                       14th-century popes
## 3171                                                                                    Popes
## 3172                                                                               579 deaths
## 3173                                                                      6th-century bishops
## 3174                                                               6th-century Italian people
## 3175                                                             6th-century Byzantine people
## 3176                                                                        6th-century popes
## 3177                                                                        Ptolemaic dynasty
## 3178                                                               Dynasties of ancient Egypt
## 3179                                                                    Hellenistic dynasties
## 3180                                                                        African dynasties
## 3181                                                                   African royal families
## 3182                                                            Ancient Egyptian family trees
## 3183                                                                   Ancient Greek families
## 3184                                                                  Ancient Greeks in Egypt
## 3185                                                                   Ancient royal families
## 3186                                                                  4th century BC in Egypt
## 3187                                                                  3rd century BC in Egypt
## 3188                                                                  2nd century BC in Egypt
## 3189                                                                  1st century BC in Egypt
## 3190                                                   4th-century BC establishments in Egypt
## 3191                                             1st-millennium BC disestablishments in Egypt
## 3192                                                                                   305 BC
## 3193                                                                   300s BC establishments
## 3194                                                                                    30 BC
## 3195                                                  4th-century BC establishments in Greece
## 3196                                               1st-century BC disestablishments in Greece
## 3197                                                                         Flightless birds
## 3198                                                                                 Penguins
## 3199                                                                                 Seabirds
## 3200                                                                             Spheniscidae
## 3201                                                                             Spheniscinae
## 3202                                                                          Sphenisciformes
## 3203                                                                 Danian first appearances
## 3204                                                       Extant Paleocene first appearances
## 3205                                                                     Birds by common name
## 3206                                                                                Elections
## 3207                                                            Political science terminology
## 3208                                                                       Political spectrum
## 3209                                                World Trade Organization member economies
## 3210                                                                        Economy of Panama
## 3211                                                                             Adam and Eve
## 3212                                                                   Language and mysticism
## 3213                                       Latter Day Saint doctrines, beliefs, and practices
## 3214                                                        Latter Day Saint temple practices
## 3215                                                             Obsolete scientific theories
## 3216                                                                     Disambiguation pages
## 3217                                                                                Potassium
## 3218                                                                        Chemical elements
## 3219                                                                            Alkali metals
## 3220                                            Biology and pharmacology of chemical elements
## 3221                                                                         Dietary minerals
## 3222                                                                               Desiccants
## 3223                                                                          Reducing agents
## 3224                                                                                 Primates
## 3225                                                              Thanetian first appearances
## 3226                                                              Taxa named by Carl Linnaeus
## 3227                                                                            Mammal orders
## 3228                                              Information-theoretically secure algorithms
## 3229                                                                           Stream ciphers
## 3230                                                                             Cryptography
## 3231                                                                       1882 introductions
## 3232                                                                             Open content
## 3233                                                                              Digital art
## 3234                                                                    Free culture movement
## 3235                                                                        Armenian language
## 3236                                                                       Armenian languages
## 3237                                                            Subject–object–verb languages
## 3238                                                                     Languages of Armenia
## 3239                                                                      Languages of Russia
## 3240                                                                      Languages of Turkey
## 3241                                                                  Languages of Kazakhstan
## 3242                                                                        Languages of Iran
## 3243                                                                     Languages of Lebanon
## 3244                                                                  Languages of Azerbaijan
## 3245                                                           Languages of Georgia (country)
## 3246                                                                Languages of the Caucasus
## 3247                                                                      Languages of Cyprus
## 3248                                                  Languages attested from the 5th century
## 3249                                                                               Nootropics
## 3250                                                                                 Naturism
## 3251                                                                            Public nudity
## 3252                                                                          Social theories
## 3253                                                                      Underground culture
## 3254                                                                                  Utopias
## 3255                                                                                    Pleas
## 3256                                                                              Alford plea
## 3257                                                                        Pool (cue sports)
## 3258                                                  Sports originating in the United States
## 3259                                                                              1927 births
## 3260                                                                              1998 deaths
## 3261                                                                     People from Lüneburg
## 3262                                                            Functionalism (social theory)
## 3263                                                            University of Freiburg alumni
## 3264                                                                Harvard University people
## 3265                                                             Bielefeld University faculty
## 3266                                                                        German scientists
## 3267                                                                      German sociologists
## 3268                                                      People from the Province of Hanover
## 3269                                                                       Systems scientists
## 3270                                                                          Epistemologists
## 3271                                                                   Communication scholars
## 3272                                                                      German philosophers
## 3273                                                           Philosophers of social science
## 3274                                                                20th-century philosophers
## 3275                                                                      German male writers
## 3276                                                                                     OPEC
## 3277                                                                       Economy of Nigeria
## 3278                                                World Trade Organization member economies
## 3279                                                           African Union member economies
## 3280                                                                       Transport in Niger
## 3281                                                                Nobel Prize in Literature
## 3282                                                                              Nobel Prize
## 3283                                                                    IBM operating systems
## 3284                                                                  Power operating systems
## 3285                                                                PowerPC operating systems
## 3286                                                                            UNIX System V
## 3287                                              Object-oriented database management systems
## 3288                                                                  Lists of NASCAR drivers
## 3289                                                                               815 births
## 3290                                                                               827 births
## 3291                                                                               869 deaths
## 3292                                                                               885 deaths
## 3293                                                                  Byzantine Thessalonians
## 3294                                                             Saints of medieval Macedonia
## 3295                                                                Saints of medieval Greece
## 3296                                                                        Greek translators
## 3297                                            Translators of the Bible into Church Slavonic
## 3298                                                                    Byzantine theologians
## 3299                                                                          Cyrillic script
## 3300                                                                              Saints duos
## 3301                                                                            Great Moravia
## 3302                                                                Public holidays in Russia
## 3303                                                              Creators of writing systems
## 3304                                                             Greek Christian missionaries
## 3305                                                                           Slavic culture
## 3306                                                                Medieval Bulgarian saints
## 3307                                                             Old Church Slavonic language
## 3308                                                             9th-century Byzantine people
## 3309                                                             9th-century Christian saints
## 3310                                                                  Burials at San Clemente
## 3311                                                        Groups of Eastern Orthodox saints
## 3312                                                                            Living people
## 3313                                                                              1963 births
## 3314                                                      Alumni of University College London
## 3315                                                               British software engineers
## 3316                                                                         British bloggers
## 3317                                                               British technology writers
## 3318                                                                      Extreme programming
## 3319                                                                      People from Walsall
## 3320                                           People educated at Queen Mary's Grammar School
## 3321                                                 British expatriates in the United States
## 3322                                                                               Manchester
## 3323                                              1st-century establishments in Roman Britain
## 3324                                                                        79 establishments
## 3325                                                             Cities in North West England
## 3326                                         Local government districts of North West England
## 3327                                                                    Metropolitan boroughs
## 3328                                          Populated places established in the 1st century
## 3329                                                              Towns in Greater Manchester
## 3330                                                                       Modular arithmetic
## 3331                                                                             Finite rings
## 3332                                                                             Group theory
## 3333                                                                                     MIDI
## 3334                                                              Computer hardware standards
## 3335                                                                         Electronic music
## 3336                                                                      Japanese inventions
## 3337                                                                             Serial buses
## 3338                                                            Charter townships in Michigan
## 3339                                                                       Cities in Michigan
## 3340                                            Lists of cities in the United States by state
## 3341                                                  Lists of townships in the United States
## 3342                                                   Lists of villages in the United States
## 3343                                                             Local government in Michigan
## 3344                                                             Populated places in Michigan
## 3345                                                                    Townships in Michigan
## 3346                                                   Unincorporated communities in Michigan
## 3347                                                                     Villages in Michigan
## 3348                                                         Michigan geography-related lists
## 3349                                                                           Alpha Centauri
## 3350                                                                Centaurus (constellation)
## 3351                                                               G-type main-sequence stars
## 3352                                                               K-type main-sequence stars
## 3353                                                               M-type main-sequence stars
## 3354                                                                            Solar analogs
## 3355                                                                      Triple star systems
## 3356                                                             Multi-star planetary systems
## 3357                                                                  Stars with proper names
## 3358                                                                            Bayer objects
## 3359                                                           Henry Draper Catalogue objects
## 3360                                                                        Hipparcos objects
## 3361                                                                               HR objects
## 3362                                                                   Durchmusterung objects
## 3363                                                                    Gliese and GJ objects
## 3364                                                  Astronomical objects discovered in 1689
## 3365                                               Astronomical objects known since antiquity
## 3366                                                                        Planetary systems
## 3367                                                                              1782 births
## 3368                                                                              1862 deaths
## 3369                                                          Presidents of the United States
## 3370                                                     Vice Presidents of the United States
## 3371                                                             18th-century American people
## 3372                                           18th-century Calvinist and Reformed Christians
## 3373                                                          19th-century American diplomats
## 3374                                                        19th-century American politicians
## 3375                                           19th-century Calvinist and Reformed Christians
## 3376                                   Ambassadors of the United States to the United Kingdom
## 3377                                            American members of the Dutch Reformed Church
## 3378                                                         American people of Dutch descent
## 3379                                                              Burials in New York (state)
## 3380                                                                 Claverack College alumni
## 3381                                                                       Deaths from asthma
## 3382                                   Democratic Party (United States) presidential nominees
## 3383                              Democratic Party (United States) vice presidential nominees
## 3384                                         Democratic Party Presidents of the United States
## 3385                                    Democratic Party Vice Presidents of the United States
## 3386                                    Democratic Party state governors of the United States
## 3387                                       Democratic-Republican Party United States Senators
## 3388                                                            Governors of New York (state)
## 3389                                                   Jackson administration cabinet members
## 3390                                                  New York (state) Democratic-Republicans
## 3391                                                               New York (state) Democrats
## 3392                                                            New York (state) Free Soilers
## 3393                                                                 New York (state) lawyers
## 3394                                                         New York State Attorneys General
## 3395                                                                  New York State Senators
## 3396                                                         People from Kinderhook, New York
## 3397                                                       Reformed Church in America members
## 3398                                                                    American slave owners
## 3399                                                       United States Secretaries of State
## 3400                                             United States Senators from New York (state)
## 3401                                              United States presidential candidates, 1836
## 3402                                              United States presidential candidates, 1840
## 3403                                              United States presidential candidates, 1844
## 3404                                              United States presidential candidates, 1848
## 3405                                                United States presidential electors, 1820
## 3406                                         United States vice-presidential candidates, 1824
## 3407                                         United States vice-presidential candidates, 1832
## 3408                          American lawyers admitted to the practice of law by reading law
## 3409                                                                         Van Buren family
## 3410                                                                         Martin Van Buren
## 3411                                                                     Disambiguation pages
## 3412                                                               Genus disambiguation pages
## 3413                                                                     Disambiguation pages
## 3414                                                                               Martinique
## 3415                                                   Dependent territories in the Caribbean
## 3416                                                           Overseas departments of France
## 3417                                                                         French Caribbean
## 3418                                                                         Windward Islands
## 3419                            Member states of the Organisation of Eastern Caribbean States
## 3420                                                  Outermost regions of the European Union
## 3421                                                                        Islands of France
## 3422                                                                        Regions of France
## 3423                                                                             French Union
## 3424                                                French-speaking countries and territories
## 3425                                                                          Assault tactics
## 3426                                                                         Military tactics
## 3427                                                                Guerrilla warfare tactics
## 3428                                                                                 Ambushes
## 3429                                                              Military operations by type
## 3430                                                            Towns in Rhineland-Palatinate
## 3431                                                                     Free imperial cities
## 3432                                                                        Palatinate Forest
## 3433                                                                         South Palatinate
## 3434                                                                      Anterior Palatinate
## 3435                                                                                   Landau
## 3436                                                                                  Marxism
## 3437                                                                      Theories of history
## 3438                                                                           Vladimir Lenin
## 3439                                                           Eponymous political ideologies
## 3440                                                                                 Leninism
## 3441                                                                                  Affixes
## 3442                                                                            Lexical units
## 3443                                                                                 Gulf War
## 3444                                                                1990 in the United States
## 3445                                                                1991 in the United States
## 3446                                                                 1990 in the Soviet Union
## 3447                                                                 1991 in the Soviet Union
## 3448                                                                             1990 in Iraq
## 3449                                                                             1991 in Iraq
## 3450                                                                     1990 in Saudi Arabia
## 3451                                                                     1991 in Saudi Arabia
## 3452                                                                           1990 in Kuwait
## 3453                                                                           1991 in Kuwait
## 3454                                       20th-century military history of the United States
## 3455                                                      Operations involving special forces
## 3456                                           United States Marine Corps in the 20th century
## 3457                                                                 Wars involving Argentina
## 3458                                                                 Wars involving Australia
## 3459                                                                   Wars involving Bahrain
## 3460                                                                Wars involving Bangladesh
## 3461                                                                   Wars involving Belgium
## 3462                                                                    Wars involving Canada
## 3463                                                            Wars involving Czechoslovakia
## 3464                                                                   Wars involving Denmark
## 3465                                                                     Wars involving Egypt
## 3466                                                                    Wars involving France
## 3467                                                                    Wars involving Greece
## 3468                                                                   Wars involving Hungary
## 3469                                                                      Wars involving Iraq
## 3470                                                                     Wars involving Italy
## 3471                                                                    Wars involving Kuwait
## 3472                                                                   Wars involving Morocco
## 3473                                                           Wars involving the Netherlands
## 3474                                                               Wars involving New Zealand
## 3475                                                                     Wars involving Niger
## 3476                                                                    Wars involving Norway
## 3477                                                                      Wars involving Oman
## 3478                                                                  Wars involving Pakistan
## 3479                                                                    Wars involving Poland
## 3480                                                                     Wars involving Qatar
## 3481                                                              Wars involving Saudi Arabia
## 3482                                                                   Wars involving Senegal
## 3483                                                               Wars involving South Korea
## 3484                                                          Wars involving the Soviet Union
## 3485                                                                     Wars involving Spain
## 3486                                                                    Wars involving Sweden
## 3487                                                                     Wars involving Syria
## 3488                                                  Wars involving the United Arab Emirates
## 3489                                                        Wars involving the United Kingdom
## 3490                                                         Wars involving the United States
## 3491                                                                       DEFCON 2 Conflicts
## 3492                                                                               Proxy wars
## 3493                                                          Presidency of George H. W. Bush
## 3494                                                                        Mikhail Gorbachev
## 3495                                                                            1984 software
## 3496                                                             Declarative markup languages
## 3497                                                                        Free TeX software
## 3498                                                                        Free text editors
## 3499                                                                Free typesetting software
## 3500                                                                             Open formats
## 3501                                                          Software using the LPPL license
## 3502                                                               SRI International software
## 3503                                                                      Household chemicals
## 3504                                                                      Cosmetics chemicals
## 3505                                                                   Biotechnology products
## 3506                                                                           Dialkylketones
## 3507                                                                          Ketone solvents
## 3508                                                                           Fuel additives
## 3509                                                                               Excipients
## 3510                                                                      Commodity chemicals
## 3511                                            GABAA receptor positive allosteric modulators
## 3512                                                                          Anticonvulsants
## 3513                                                                        Letters (message)
## 3514                                                                           Paper products
## 3515                                                                            Postal system
## 3516                                                                         Abstract algebra
## 3517                                                                           Linear algebra
## 3518                                                                          Literary genres
## 3519                                                                    Collaborative fiction
## 3520                                                 Populated places in Al Anbar Governorate
## 3521                                                  Populated places on the Euphrates River
## 3522                                                                District capitals of Iraq
## 3523                                                                     Functional languages
## 3524                                                         Programming language topic stubs
## 3525                                                                                  Knights
## 3526                                                                     Disambiguation pages
## 3527                                                 Broadcast call sign disambiguation pages
## 3528                                                     Jews and Judaism in the Roman Empire
## 3529                                                                Ancient Romans in Britain
## 3530                                                                      People from Antioch
## 3531                                                                    Roman-era geographers
## 3532                                                               Roman governors of Britain
## 3533                                                                       4th-century Romans
## 3534                                                                     Byzantine-era pagans
## 3535                                                               Ancient Roman people stubs
## 3536                                                                         Geographer stubs
## 3537                                                                              1885 births
## 3538                                                                              1970 deaths
## 3539                                                                     People from Bordeaux
## 3540                                                        Members of the Académie française
## 3541                                                            Nobel laureates in Literature
## 3542                                                                   French Nobel laureates
## 3543                                                            20th-century French novelists
## 3544                                           20th-century French dramatists and playwrights
## 3545                                                                  French literary critics
## 3546                                                                       French journalists
## 3547                                                              20th-century French writers
## 3548                                                                   French Roman Catholics
## 3549                                                                   Writers from Aquitaine
## 3550                                                      Grand Croix of the Légion d'honneur
## 3551                                                              Grand Prix du Roman winners
## 3552                                                                    French male novelists
## 3553                                                                         Investment funds
## 3554                                                                 Exchange-traded products
## 3555                                                                     Investment companies
## 3556                                                                              Lauryn Hill
## 3557                                                                              1975 births
## 3558                                                                            Living people
## 3559                                                            21st-century American singers
## 3560                                                            20th-century American singers
## 3561                                                          20th-century American actresses
## 3562                                                          21st-century American actresses
## 3563                                                               African-American actresses
## 3564                                                                       American actresses
## 3565                                                          African-American female rappers
## 3566                                                               American female guitarists
## 3567                                                                      American contraltos
## 3568                                                                   American humanitarians
## 3569                                             American rhythm and blues singer-songwriters
## 3570                                                                    American soul singers
## 3571                                                            American soap opera actresses
## 3572                                                                  American film actresses
## 3573                                                            American television actresses
## 3574                                                  American people convicted of tax crimes
## 3575                                                                   American tax resisters
## 3576                                                                     Grammy Award winners
## 3577                                                                 American hip hop singers
## 3578                                                                         Neo soul singers
## 3579                                                     People from South Orange, New Jersey
## 3580                                                                  Rappers from New Jersey
## 3581                                                                       Feminist musicians
## 3582                                                               African-American feminists
## 3583                                                                       American feminists
## 3584                                                                           Fugees members
## 3585                                                              African-American guitarists
## 3586                                                                 Female hip hop musicians
## 3587                                                                  American female rappers
## 3588                                                               20th-century women singers
## 3589                                                               21st-century women singers
## 3590                                                                                   Chords
## 3591                                                            Guitar performance techniques
## 3592                                                       Heavy metal performance techniques
## 3593                                                                            Guitar chords
## 3594                                                                              1751 births
## 3595                                                                              1816 deaths
## 3596                                                                      Members of The Club
## 3597                                                                People from County Dublin
## 3598                                                                People from Dublin (city)
## 3599                                                         People educated at Harrow School
## 3600                                                       Whig (British political party) MPs
## 3601                    Members of the Parliament of Great Britain for English constituencies
## 3602                                                                      British MPs 1790–96
## 3603                                                                    British MPs 1796–1800
## 3604               Members of the Parliament of the United Kingdom for English constituencies
## 3605                                                                           UK MPs 1801–02
## 3606                                                                           UK MPs 1802–06
## 3607                                                                           UK MPs 1806–07
## 3608                                                                           UK MPs 1807–12
## 3609                                                                         Irish male poets
## 3610                                                    Irish male dramatists and playwrights
## 3611                                                  British male dramatists and playwrights
## 3612                                                                          Irish Anglicans
## 3613                                                                        Opera librettists
## 3614                                          18th-century British dramatists and playwrights
## 3615                                            18th-century Irish dramatists and playwrights
## 3616                                            19th-century Irish dramatists and playwrights
## 3617                                                                 18th-century Irish poets
## 3618                                                                 19th-century Irish poets
## 3619                                                             Burials at Westminster Abbey
## 3620                                                                19th-century male writers
## 3621                                                                         Irish Freemasons
## 3622                                                                       Arabian racehorses
## 3623                                                          Arabian and part-Arabian horses
## 3624                                                               17th-century animal births
## 3625                                                                       1706 animal deaths
## 3626                                                                   Byerley Turk sire line
## 3627                                                      International relations terminology
## 3628                                                             Power (social and political)
## 3629                                                                               Bábí texts
## 3630                                                                     Disambiguation pages
## 3631                                                       Drama schools in the United States
## 3632                                               Universities and colleges in New York City
## 3633                                             Educational institutions established in 1964
## 3634                                                 Universities and colleges in Los Angeles
## 3635                                                   Universities and colleges in Manhattan
## 3636                                                                                Hollywood
## 3637                                                  1964 establishments in New York (state)
## 3638                                                                   Theatre in Los Angeles
## 3639                                                                 Theatre in New York City
## 3640                                                         Cocktails with chocolate liqueur
## 3641                                                                   Cocktails with liqueur
## 3642                                                                         Society of Jesus
## 3643                                                            1540 establishments in Europe
## 3644                                                                      Counter-Reformation
## 3645                                         Religious organizations established in the 1540s
## 3646                          Roman Catholic religious orders established in the 16th century
## 3647                                                                      Airports in Austria
## 3648                                                             Airports established in 1938
## 3649                                                                   Wien-Umgebung District
## 3650                                                                                Schwechat
## 3651                                                                      Transport in Vienna
## 3652                                                Buildings and structures in Lower Austria
## 3653                                                                      Gospel music awards
## 3654                                                                    American music awards
## 3655                                                                      Music halls of fame
## 3656                                                               Halls of fame in Tennessee
## 3657                                                               Awards established in 1971
## 3658                                                      Gospel Music Hall of Fame inductees
## 3659                                                                                Dollywood
## 3660                                                               Southern gospel performers
## 3661                                                                        Labour Party (UK)
## 3662                                                                           Labour parties
## 3663                                                                Social democratic parties
## 3664                                                                  Socialist International
## 3665                                                  Socialist parties in the United Kingdom
## 3666                                                                     Disambiguation pages
## 3667                                                                           Gold compounds
## 3668                                                                                   Oxides
## 3669                                                                                 Sulfides
## 3670                                                                               Tellurides
## 3671                                                             Non-stoichiometric compounds
## 3672                                                                 Inorganic compound stubs
## 3673                                                                                 Chlorine
## 3674                                                                        Chemical elements
## 3675                                                                                 Halogens
## 3676                                                                       Diatomic nonmetals
## 3677                                                                 Hazardous air pollutants
## 3678                                                           Occupational safety and health
## 3679                                                                         Pulmonary agents
## 3680                                                                  Swimming pool equipment
## 3681                                                                         Oxidizing agents
## 3682                                                                         Industrial gases
## 3683                                                                         Gases with color
## 3684                                            World Health Organization essential medicines
## 3685                                                            Middle-earth cities and towns
## 3686                                                      Middle-earth castles and fortresses
## 3687                                                                         Days of the year
## 3688                                                                                     June
## 3689                                                                            Anglo-Normans
## 3690                                                                              1140 deaths
## 3691                                                                      Archbishops of York
## 3692                                                  12th-century Roman Catholic archbishops
## 3693                                                                    People of The Anarchy
## 3694                                                                                 Cluniacs
## 3695                                                               Cities and towns in Sicily
## 3696                                               Municipalities of the Province of Syracuse
## 3697                                                                                     Noto
## 3698                                                                  Coastal towns in Sicily
## 3699                                                                         Sicilian Baroque
## 3700                                                                    Wine regions of Italy
## 3701                                                            World Heritage Sites in Italy
## 3702                                                                    Castles in Shropshire
## 3703                                                             Country houses in Shropshire
## 3704                                                     English Heritage sites in Shropshire
## 3705                                                   Grade I listed buildings in Shropshire
## 3706                                                     Historic house museums in Shropshire
## 3707                                                Scheduled Ancient Monuments in Shropshire
## 3708                                                                    Towns in Lower Saxony
## 3709                                                                        Goslar (district)
## 3710                                                                        Towns in the Harz
## 3711                                                                     Clausthal-Zellerfeld
## 3712                                                                      Province of Hanover
## 3713                                                            Mining communities in Germany
## 3714                                                                    American comic strips
## 3715                                                                       Comics about women
## 3716                                                                       1983 comics debuts
## 3717                                                                      2008 comics endings
## 3718                                                     Comics characters introduced in 1983
## 3719                                                                          Feminist comics
## 3720                                                                       Fictional lesbians
## 3721                                                                   Lesbian feminist media
## 3722                                                                   Lesbian-related comics
## 3723                                               Lesbian-related media in the United States
## 3724                                                                LGBT-related comic strips
## 3725                                               Transgender and transsexual-related comics
## 3726                                                                             Adult comics
## 3727                                                                   Political comic strips
## 3728                                                                         Musical notation
## 3729                                                                              1876 births
## 3730                                                                              1909 deaths
## 3731                                                         19th-century classical composers
## 3732                                                         20th-century classical composers
## 3733                                                              Burials at Powązki Cemetery
## 3734                                                                              Clan Ostoja
## 3735                                                                     Deaths in avalanches
## 3736                                               Fryderyk Chopin University of Music alumni
## 3737                                                        Natural disaster deaths in Poland
## 3738                                                               Polish classical composers
## 3739                                                          Polish male classical composers
## 3740                                                                          Polish nobility
## 3741                                                                Polish Romantic composers
## 3742                                                                            Skiing deaths
## 3743                                                              University of Warsaw alumni
## 3744                                                                Polish conductors (music)
## 3745                                                          19th-century conductors (music)
## 3746                                                          20th-century conductors (music)
## 3747                                                                            Jarvis Island
## 3748                                              Islands claimed under the Guano Islands Act
## 3749                                          Pacific Remote Islands Marine National Monument
## 3750                                                       Former populated places in Oceania
## 3751                                         Uninhabited Pacific islands of the United States
## 3752                                                                       Island restoration
## 3753                                                                             Line Islands
## 3754                                                Pacific Ocean atolls of the United States
## 3755                                                     United States Minor Outlying Islands
## 3756                             National Wildlife Refuges in the United States insular areas
## 3757                                                      Protected areas established in 1974
## 3758                                                                            Coral islands
## 3759                                                1889 establishments in the British Empire
## 3760                                                                            Jarvis Island
## 3761                                              Islands claimed under the Guano Islands Act
## 3762                                          Pacific Remote Islands Marine National Monument
## 3763                                                       Former populated places in Oceania
## 3764                                         Uninhabited Pacific islands of the United States
## 3765                                                                       Island restoration
## 3766                                                                             Line Islands
## 3767                                                Pacific Ocean atolls of the United States
## 3768                                                     United States Minor Outlying Islands
## 3769                             National Wildlife Refuges in the United States insular areas
## 3770                                                      Protected areas established in 1974
## 3771                                                                            Coral islands
## 3772                                                1889 establishments in the British Empire
## 3773                                                                     Disambiguation pages
## 3774                                                        Science and technology in Jamaica
## 3775                                                                            Jamaica stubs
## 3776                                                                          1390s BC births
## 3777                                                                           1338 BC deaths
## 3778                                                                    14th-century BC women
## 3779                                                                            Amarna Period
## 3780                                        Queens consort of the Eighteenth Dynasty of Egypt
## 3781                                                                            Queen mothers
## 3782                                                                 Ancient Egyptian mummies
## 3783                                                                          Egyptian Museum
## 3784                                                                            Amenhotep III
## 3785                                                                                     Jeep
## 3786                                                                        Off-road vehicles
## 3787                                                                          American Motors
## 3788                                                                                 Chrysler
## 3789                                                                                     Fiat
## 3790                                                   Car manufacturers of the United States
## 3791                                                   Defense companies of the United States
## 3792                                         Motor vehicle manufacturers of the United States
## 3793                                            Motor vehicle manufacturers based in Michigan
## 3794                                                Motor vehicle manufacturers based in Ohio
## 3795                                      Vehicle manufacturing companies established in 1941
## 3796                                                          Companies based in Toledo, Ohio
## 3797                                                              Companies based in Michigan
## 3798                                                                   Auburn Hills, Michigan
## 3799                                                                               Car brands
## 3800                                                                              1965 births
## 3801                                                                            Living people
## 3802                                                               Allan Border Medal winners
## 3803                                                          Australia Test cricket captains
## 3804                                                Australian Cricket Hall of Fame inductees
## 3805                                                                    Australian cricketers
## 3806                                                                    Australian memoirists
## 3807                                               Australia One Day International cricketers
## 3808                                                     Australian of the Year Award winners
## 3809                                                              Australian Living Treasures
## 3810                                                                Australia Test cricketers
## 3811                                       Commonwealth Games silver medallists for Australia
## 3812                                                 Cricketers at the 1987 Cricket World Cup
## 3813                                                 Cricketers at the 1992 Cricket World Cup
## 3814                                                 Cricketers at the 1996 Cricket World Cup
## 3815                                                 Cricketers at the 1999 Cricket World Cup
## 3816                                                Cricketers at the 1998 Commonwealth Games
## 3817                                                                   Cricketers from Sydney
## 3818                                     International Cricket Council Hall of Fame inductees
## 3819                                                                       Ireland cricketers
## 3820                                                                          Kent cricketers
## 3821                                                               New South Wales cricketers
## 3822                                                       Officers of the Order of Australia
## 3823                                                Recipients of the Australian Sports Medal
## 3824                                                                      Somerset cricketers
## 3825                                                           Sportsmen from New South Wales
## 3826                                                               Twin people from Australia
## 3827                                                                        Twin sportspeople
## 3828                                                            Wisden Cricketers of the Year
## 3829                                                        World Cup cricketers of Australia
## 3830                                                 Commonwealth Games medallists in cricket
## 3831                                                                                 Gulbarga
## 3832                                                           Former capital cities in India
## 3833                                                      Municipal corporations in Karnataka
## 3834                                                                      Cities in Karnataka
## 3835                                                                              1916 births
## 3836                                                                              2002 deaths
## 3837                                                          Moscow State University faculty
## 3838                                       Moscow Institute of Physics and Technology faculty
## 3839                                             Full Members of the USSR Academy of Sciences
## 3840                                          Full Members of the Russian Academy of Sciences
## 3841                                                               Nobel laureates in Physics
## 3842                                                                  Russian Nobel laureates
## 3843                                                                   Soviet Nobel laureates
## 3844                                                                  Demidov Prize laureates
## 3845                                                       Recipients of the USSR State Prize
## 3846                                                                      Lenin Prize winners
## 3847                                          State Prize of the Russian Federation laureates
## 3848                                                               Heroes of Socialist Labour
## 3849                                                         Recipients of the Order of Lenin
## 3850                         Recipients of the Order "For Merit to the Fatherland", 2nd class
## 3851                                  Recipients of the Order of the Patriotic War, 1st class
## 3852                                           Recipients of the Medal "For Courage" (Russia)
## 3853                                                   Recipients of the Lomonosov Gold Medal
## 3854                                                     Australian people of Russian descent
## 3855                                                                  Experimental physicists
## 3856                                                                       Optical physicists
## 3857                                                                       Russian physicists
## 3858                                                                        Russian inventors
## 3859                                                                        Soviet physicists
## 3860                                                                  20th-century physicists
## 3861                                                Soviet military personnel of World War II
## 3862                                                 Saint Petersburg State University alumni
## 3863                                                 Australian emigrants to the Soviet Union
## 3864                                              Communist Party of the Soviet Union members
## 3865                                                          Burials at Novodevichy Cemetery
## 3866                                                                          Spectroscopists
## 3867                                     Members of the German Academy of Sciences Leopoldina
## 3868                                                                             14 BC births
## 3869                                                                                33 deaths
## 3870                                                                    1st-century BC Romans
## 3871                                                                       1st-century Romans
## 3872                                                                     1st-century BC women
## 3873                                                                        1st-century women
## 3874                                                                   Julio-Claudian dynasty
## 3875                                                                                 Vipsanii
## 3876                                                           Ancient Roman women in warfare
## 3877                                                                     Deaths by starvation
## 3878                                                             Women in 1st-century warfare
## 3879                                                     Burials at the Mausoleum of Augustus
## 3880                                                                         Towns in Alabama
## 3881                                                         Towns in Autauga County, Alabama
## 3882                                                             Montgomery metropolitan area
## 3883                                                                              1959 births
## 3884                                                                            Living people
## 3885                                                                People from Almaty Region
## 3886                                                                 Chechen field commanders
## 3887                                                     Candidates for President of Chechnya
## 3888                                                       Deputy prime ministers of Chechnya
## 3889                                                               Fugitives wanted by Russia
## 3890                                                            Moscow theater hostage crisis
## 3891                                                               People of the Chechen wars
## 3892                                                                  Politicians of Ichkeria
## 3893                                                              Prime Ministers of Chechnya
## 3894                                                                       Chechen guerrillas
## 3895                                                                     Chechen nationalists
## 3896                                                                         Chechen warlords
## 3897                                                    People sentenced to death in absentia
## 3898                                                                                   Lierde
## 3899                                                          Municipalities of East Flanders
## 3900                                                            East Flanders geography stubs
## 3901                                                                              1943 births
## 3902                                                                            Living people
## 3903                                                                      Welterweight boxers
## 3904                                                                   World boxing champions
## 3905                                                          People from Canastota, New York
## 3906                                                                     American male boxers
## 3907                                                                                Roeselare
## 3908                                                          Municipalities of West Flanders
## 3909                                                        Populated places in West Flanders
## 3910                                                              Populated places in Belgium
## 3911                                                          World Heritage Sites in Belgium
## 3912                                                                                   Asthma
## 3913                                                                    Drug delivery devices
## 3914                                                                        Smoking cessation
## 3915                                                                             Dosage forms
## 3916                                                                                Cognition
## 3917                                                                 Epistemology of religion
## 3918                                                                      Spiritual faculties
## 3919                                                                 Concepts in epistemology
## 3920                                                                               Assumption
## 3921                                                                                  Xianbei
## 3922                                                                      History of Mongolia
## 3923                                                                     History of Manchuria
## 3924                                                                 Ancient peoples of China
## 3925                                                                               Inner Asia
## 3926                                                                  Agglutinative languages
## 3927                                                                          Types of verses
## 3928                                                                             Poetry stubs
## 3929                                                                                  Pricing
## 3930                                                         Terminology of the British Isles
## 3931                                                      Islands of the North Atlantic Ocean
## 3932                                                                  Geographical neologisms
## 3933                                                                      Hebrew Bible people
## 3934                                                                  Biblical murder victims
## 3935                                                                         Warriors of Asia
## 3936                                                                                    Otley
## 3937                                                                          Places in Leeds
## 3938                                                           Market towns in West Yorkshire
## 3939                                                         Civil parishes in West Yorkshire
## 3940                                                                               Wharfedale
## 3941                                                                  Towns in West Yorkshire
## 3942                                                                              Neopaganism
## 3943                                                                  New religious movements
## 3944                                                                               Polytheism
## 3945                                                                       Religion in Greece
## 3946                                                                          Irish mythology
## 3947                                                                         Celtic mythology
## 3948                                                                Irish-language literature
## 3949                                               Australia One Day International cricketers
## 3950                                                                Australia Test cricketers
## 3951                                                               New South Wales cricketers
## 3952                                                                         Essex cricketers
## 3953                                                            Wisden Cricketers of the Year
## 3954                                                        World Cup cricketers of Australia
## 3955                                                 Cricketers at the 1992 Cricket World Cup
## 3956                                                 Cricketers at the 1996 Cricket World Cup
## 3957                                                 Cricketers at the 1999 Cricket World Cup
## 3958                                              Cricketers who made a century on Test debut
## 3959                                       Commonwealth Games silver medallists for Australia
## 3960                                                Cricketers at the 1998 Commonwealth Games
## 3961                                                        Members of the Order of Australia
## 3962                                                                              1965 births
## 3963                                                                            Living people
## 3964                                                               Twin people from Australia
## 3965                                                                        Twin sportspeople
## 3966                                                                    Australian cricketers
## 3967                                                                   Cricketers from Sydney
## 3968                                                           Sportsmen from New South Wales
## 3969                                                Australian Cricket Hall of Fame inductees
## 3970                                                                 Sportspeople from Sydney
## 3971                                                 Commonwealth Games medallists in cricket
## 3972                                                                 Brand name confectionery
## 3973                                             Companies based in Solano County, California
## 3974                                                                    Fairfield, California
## 3975                                             Food and drink in the San Francisco Bay Area
## 3976                                                          1869 establishments in Illinois
## 3977                                                                                    Candy
## 3978                              Manufacturing companies based in the San Francisco Bay Area
## 3979                                              Confectionery companies based in California
## 3980                                      Mental disorders due to a general medical condition
## 3981                                                                           Sexual arousal
## 3982                                                   Syndromes affecting the nervous system
## 3983                                                                                 Amygdala
## 3984                                                             Psychopathological syndromes
## 3985                                                                            Rare diseases
## 3986                                                                              1936 births
## 3987                                                                            Living people
## 3988                                              Alumni of the Royal Academy of Dramatic Art
## 3989                                                               Scottish male stage actors
## 3990                                                          Scottish male television actors
## 3991                                                                               Gay actors
## 3992                                              Officers of the Order of the British Empire
## 3993                                                                Scottish male film actors
## 3994                                                               Scottish theatre directors
## 3995                                                     Rectors of the University of Glasgow
## 3996                                                                     People from Greenock
## 3997                                                           Scottish television presenters
## 3998                                                                        LGBT broadcasters
## 3999                                                          LGBT entertainers from Scotland
## 4000                                                      LGBT rights activists from Scotland
## 4001                                                                 Labour Party (UK) people
## 4002                                                 Actors at the Royal Exchange, Manchester
## 4003                                                               British male comedy actors
## 4004                                                                              1397 births
## 4005                                                                              1479 deaths
## 4006                                                             People from Medina del Campo
## 4007                                                                      House of Trastámara
## 4008                                                                       Aragonese monarchs
## 4009                                                                      Monarchs of Majorca
## 4010                                                                       Valencian monarchs
## 4011                                                                          Kings of Sicily
## 4012                                                                        Jure uxoris kings
## 4013                                                                       Navarrese monarchs
## 4014                                                                  Roman Catholic monarchs
## 4015                                                             Knights of the Golden Fleece
## 4016                                                                      Counts of Barcelona
## 4017                                                                       Aragonese infantes
## 4018                                                                       Dukes of Montblanc
## 4019                                                                        Lords of Balaguer
## 4020                                                                          Dukes of Gandía
## 4021                                                          Burials at the Poblet Monastery
## 4022                                                          15th-century monarchs in Europe
## 4023                                                 1917 establishments in the United States
## 4024                                    Buildings and structures in Fauquier County, Virginia
## 4025                              Buildings and structures in Prince William County, Virginia
## 4026                                    Buildings and structures in Stafford County, Virginia
## 4027              Military facilities on the National Register of Historic Places in Virginia
## 4028               Historic districts on the National Register of Historic Places in Virginia
## 4029                                                          Military facilities in Virginia
## 4030                  National Register of Historic Places in Prince William County, Virginia
## 4031                                                         United States Marine Corps bases
## 4032                                               Military installations established in 1917
## 4033                                                                          Cities in Texas
## 4034                                                                    County seats in Texas
## 4035                                                     Populated places established in 1881
## 4036                                                                           Midland, Texas
## 4037                                                          Cities in Midland County, Texas
## 4038                                                           Cities in Martin County, Texas
## 4039                                                             1881 establishments in Texas
## 4040                                                                 Cities in Midland–Odessa
## 4041                                                                     Kingsport, Tennessee
## 4042                                                                      Cities in Tennessee
## 4043                                                     Cities in Sullivan County, Tennessee
## 4044                                                      Cities in Hawkins County, Tennessee
## 4045                                                   Cities in Washington County, Tennessee
## 4046                                                                           East Tennessee
## 4047                                                      Kingsport–Bristol metropolitan area
## 4048                                                     Populated places established in 1822
## 4049                                                         1822 establishments in Tennessee
## 4050                                                                        State of Franklin
## 4051                            Census-designated places in Westmoreland County, Pennsylvania
## 4052                                                             Pittsburgh metropolitan area
## 4053                                 Census-designated places in Fayette County, Pennsylvania
## 4054                                                 Census-designated places in Pennsylvania
## 4055                                               Villages in Forsyth County, North Carolina
## 4056                                                Villages in Stokes County, North Carolina
## 4057                                                               Villages in North Carolina
## 4058                                                     Populated places established in 1991
## 4059                                                    1991 establishments in North Carolina
## 4060                                         American Indian reservations in New York (state)
## 4061                                                                     Brookhaven, New York
## 4062                                                    Geography of Suffolk County, New York
## 4063                                               Native American tribes in New York (state)
## 4064                                                                                   Pequot
## 4065                                                  1866 establishments in New York (state)
## 4066                                                     Populated places established in 1866
## 4067                                                     Villages in Ontario County, New York
## 4068                                                       Villages in Yates County, New York
## 4069                                                             Villages in New York (state)
## 4070                                                      Villages in Maries County, Missouri
## 4071                                                       Villages in Osage County, Missouri
## 4072                                               Jefferson City, Missouri metropolitan area
## 4073                                                                     Villages in Missouri
## 4074                                                                                The Byrds
## 4075                                                             American country rock groups
## 4076                                                                   Asylum Records artists
## 4077                                                                 Columbia Records artists
## 4078                                                              Counterculture of the 1960s
## 4079                                                                  Elektra Records artists
## 4080                                                         Folk rock groups from California
## 4081                                                       Musical groups established in 1964
## 4082                                                    Musical groups disestablished in 1973
## 4083                                                     Musical groups reestablished in 1989
## 4084                                                    Musical groups disestablished in 1991
## 4085                                                     Musical groups reestablished in 2000
## 4086                                                    Musical groups disestablished in 2000
## 4087                                                          Musical groups from Los Angeles
## 4088                                            Psychedelic rock music groups from California
## 4089                                                     Rock and Roll Hall of Fame inductees
## 4090                                         Populated places in Clearwater County, Minnesota
## 4091                                                     Unorganized territories in Minnesota
## 4092                                                                              1971 births
## 4093                                                                            Living people
## 4094                                                                     Norwegian princesses
## 4095                                                             House of Glücksburg (Norway)
## 4096                       United Nations High Commissioner for Refugees Goodwill Ambassadors
## 4097                                                       Norwegian people of German descent
## 4098                                                       Norwegian people of Danish descent
## 4099                                                      Norwegian people of English descent
## 4100                                                      Norwegian people of Swedish descent
## 4101                                                                         People from Oslo
## 4102                                                                     Norwegian Christians
## 4103                                                    Recipients of the Order of the Falcon
## 4104                                           Knights Grand Cross of the Order of the Falcon
## 4105                                            Recipients of the Order of the Star of Jordan
## 4106                                         Grand Cordons of the Order of the Star of Jordan
## 4107                                           Recipients of the Order of the House of Orange
## 4108                                        Grand Crosses of the Order of the House of Orange
## 4109                                       Recipients of the Order of the Crown (Netherlands)
## 4110                                    Grand Crosses of the Order of the Crown (Netherlands)
## 4111                                             Recipients of the Order of Adolphe of Nassau
## 4112                                          Grand Crosses of the Order of Adolphe of Nassau
## 4113                                                  Recipients of the Order of Prince Henry
## 4114                                               Grand Crosses of the Order of Prince Henry
## 4115                                                             Order of Civil Merit members
## 4116                                                  Grand Cross of the Order of Civil Merit
## 4117                                    Commanders Grand Cross of the Order of the Polar Star
## 4118                                             Populated places in Washington County, Maine
## 4119                                                         Unorganized territories in Maine
## 4120                                                                           Cities in Iowa
## 4121                                                            Cities in Wright County, Iowa
## 4122                                                          Cities in Franklin County, Iowa
## 4123                                                     Populated places established in 1880
## 4124                                                              1880 establishments in Iowa
## 4125                                                                     Yuan dynasty Taoists
## 4126                                                                                   Qigong
## 4127                                                                     Ming dynasty Taoists
## 4128                                                                        People from Fuxin
## 4129                                                                    Writers from Liaoning
## 4130                                                                Chinese spiritual writers
## 4131                                                                     Yuan dynasty writers
## 4132                                                                     Ming dynasty writers
## 4133                                                                                 Surnames
## 4134                                                                          Jewish surnames
## 4135                                                                 German-language surnames
## 4136                                                                Yiddish-language surnames
## 4137                                                                American folk rock groups
## 4138                                                          American soft rock music groups
## 4139                                                                 British folk rock groups
## 4140                                                           British soft rock music groups
## 4141                                                                  Capitol Records artists
## 4142                                                       Musical groups established in 1970
## 4143                                                               Musical groups from London
## 4144                                                           Musical groups from California
## 4145                                                          Musical groups from Los Angeles
## 4146                                                                     Grammy Award winners
## 4147                                                                          Rock music duos
## 4148                                                                            Musical trios
## 4149                                                             Warner Bros. Records artists
## 4150                                                                      1905 British novels
## 4151                                                                    Alfred A. Knopf books
## 4152                                                                  Novels by E. M. Forster
## 4153                                                                    Novels set in Tuscany
## 4154                                                                  William Blackwood books
## 4155                                                        British novels adapted into films
## 4156                                                               Novels adapted into operas
## 4157                                                             Genes on human chromosome 11
## 4158                                                                          Animal products
## 4159                                                                    Eli Lilly and Company
## 4160                                                           Hormones of glucose metabolism
## 4161                                                                           Human hormones
## 4162                                                                Insulin receptor agonists
## 4163                                                                        Insulin therapies
## 4164                                             Insulin-like growth factor receptor agonists
## 4165                                                                      Pancreatic hormones
## 4166                                                                         Peptide hormones
## 4167                                                                     Recombinant proteins
## 4168                                                                            Tumor markers
## 4169                                           World Anti-Doping Agency prohibited substances
## 4170                                                                        Japanese clothing
## 4171                                                                    Chemical nomenclature
## 4172                                                                  Chemistry organizations
## 4173                                                   International scientific organizations
## 4174                                         Members of the International Council for Science
## 4175                                                            Organisations based in Zürich
## 4176                                                                           North Carolina
## 4177                                      Scientific organizations based in the United States
## 4178                                            Scientific organisations based in Switzerland
## 4179                                             Scientific organizations established in 1919
## 4180                                                   Standards organizations in Switzerland
## 4181                                                                              130s births
## 4182                                                                               193 deaths
## 4183                                                            2nd-century murdered monarchs
## 4184                                                                        People from Milan
## 4185                                                               2nd-century Roman emperors
## 4186                                                                  Imperial Roman praetors
## 4187                                                                   Imperial Roman consuls
## 4188                                                                  Executed Roman emperors
## 4189                                                        Roman governors of Gallia Belgica
## 4190                                                              Roman governors of Dalmatia
## 4191                                                     Roman governors of Germania Inferior
## 4192                                                   Roman governors of Bithynia and Pontus
## 4193                                                                Roman governors of Africa
## 4194                                                                   2nd-century executions
## 4195                                                      People executed by the Roman Empire
## 4196                                                                                    Didii
## 4197                                                                        2nd millennium BC
## 4198                                                                          20th century BC
## 4199                                                                                Centuries
## 4200                                                                             1380s births
## 4201                                                                              1449 deaths
## 4202                                                                      Scottish historians
## 4203                                                                     Scottish chroniclers
## 4204                                                  Canonical Augustinian abbots and priors
## 4205                                                            15th-century Scottish writers
## 4206                                                                  15th-century historians
## 4207                                                          Scottish Roman Catholic priests
## 4208                                                      15th-century Roman Catholic priests
## 4209                                                                       Scottish diplomats
## 4210                                                                          Scottish abbots
## 4211                                                     People from Haddington, East Lothian
## 4212                                                                   Historians of Scotland
## 4213                                                                         Tuareg languages
## 4214                                                                         Berber languages
## 4215                                                                     Languages of Algeria
## 4216                                                          Human name disambiguation pages
## 4217                                                                Black Flag (band) members
## 4218                                                                 Lists of members by band
## 4219                                                                          Library science
## 4220                                                                          Information Age
## 4221                                                                          Kaiji Kawaguchi
## 4222                                                                              1948 births
## 4223                                                                            Manga artists
## 4224                                                  Manga artists from Hiroshima Prefecture
## 4225                                                 Winner of Kodansha Manga Award (General)
## 4226                                                                            Living people
## 4227                                                                    Japanese artist stubs
## 4228                                                                VJs (media personalities)
## 4229                                                    International Telecommunication Union
## 4230                                                                University of Mississippi
## 4231                                             Educational institutions established in 1848
## 4232                                               Flagship universities in the United States
## 4233                                                 Universities and colleges in Mississippi
## 4234 Universities and colleges accredited by the Southern Association of Colleges and Schools
## 4235                                               Education in Lafayette County, Mississippi
## 4236                                Buildings and structures in Lafayette County, Mississippi
## 4237                                     Tourist attractions in Lafayette County, Mississippi
## 4238                                                                      Oxford, Mississippi
## 4239                                                       1848 establishments in Mississippi
## 4240                                                                              1945 births
## 4241                                                              Ivorian democracy activists
## 4242                                                        Ivorian Popular Front politicians
## 4243                                                          Ivorian prisoners and detainees
## 4244                                                                  Ivorian Roman Catholics
## 4245                                                                            Living people
## 4246                                          Members of the National Assembly of Ivory Coast
## 4247                                      People detained by the International Criminal Court
## 4248                                                                Presidents of Ivory Coast
## 4249                                                   Prisoners and detainees of Ivory Coast
## 4250                                                                   21st-century criminals
## 4251                                                                   20th-century criminals
## 4252                                                       People extradited from Ivory Coast
## 4253                                                                       People from Gagnoa
## 4254                                              Ivory Coast politicians convicted of crimes
## 4255                                                                           Ko-ryū bujutsu
## 4256                                                                              Seán Lemass
## 4257                                                                              1899 births
## 4258                                                                              1971 deaths
## 4259                                                         Burials at Deans Grange Cemetery
## 4260                                                                          Fianna Fáil TDs
## 4261                                                  Irish Republican Army (1919–22) members
## 4262                                                  Irish Republican Army (1922–69) members
## 4263                                                           Irish people of French descent
## 4264                                                                   Leaders of Fianna Fáil
## 4265                                                                            Lemass family
## 4266                                                                  Members of the 4th Dáil
## 4267                                                                  Members of the 5th Dáil
## 4268                                                                  Members of the 6th Dáil
## 4269                                                                  Members of the 7th Dáil
## 4270                                                                  Members of the 8th Dáil
## 4271                                                                  Members of the 9th Dáil
## 4272                                                                 Members of the 10th Dáil
## 4273                                                                 Members of the 11th Dáil
## 4274                                                                 Members of the 12th Dáil
## 4275                                                                 Members of the 13th Dáil
## 4276                                                                 Members of the 14th Dáil
## 4277                                                                 Members of the 15th Dáil
## 4278                                                                 Members of the 16th Dáil
## 4279                                                                 Members of the 17th Dáil
## 4280                                                                 Members of the 18th Dáil
## 4281                                                          Ministers for Justice (Ireland)
## 4282                                         People of the Irish Civil War (Anti-Treaty side)
## 4283                                                           Politicians from County Dublin
## 4284                                                                                 Tánaistí
## 4285                                                                                 Taoisigh
## 4286                                                                   The Irish Press people
## 4287                                                                                 Amygdala
## 4288                                                                          Neuropsychology
## 4289                                                                         Geometric shapes
## 4290                                                                                 Surfaces
## 4291                                                                                 Quadrics
## 4292                                                                          Plate tectonics
## 4293                                                              Products introduced in 1985
## 4294                                                                      Apple Inc. printers
## 4295                                                                           Laser printers
## 4296                                                               Snow White design language
## 4297                                                                           Women's rights
## 4298                                                                           Gender studies
## 4299                                                                               645 births
## 4300                                                                               685 deaths
## 4301                                                                    Northumbrian monarchs
## 4302                                                            Anglo-Saxons killed in battle
## 4303                                                             7th-century English monarchs
## 4304                                                                Monarchs killed in action
## 4305                                                               Royal House of Northumbria
## 4306                                                                                   Idings
## 4307                                                                  International relations
## 4308                                                                     Political neologisms
## 4309                                                                   States by power status
## 4310                                                         Procedural programming languages
## 4311                                                    Programming languages created in 1974
## 4312                                                                         Star Wars (film)
## 4313                                                                     Disambiguation pages
## 4314                                                          Place name disambiguation pages
## 4315                                                                                   Theism
## 4316                                                                      Assens Municipality
## 4317                                        Municipal seats of the Region of Southern Denmark
## 4318                                                               Municipal seats of Denmark
## 4319                                       Cities and towns in the Region of Southern Denmark
## 4320                                                                Populated places in Funen
## 4321                                           Cities and towns in the Central Denmark Region
## 4322                                                                     Randers Municipality
## 4323                                                                  Denmark geography stubs
## 4324                                                                    Theory of constraints
## 4325                                                                       Organization stubs
## 4326                                                                              1840 births
## 4327                                                                              1907 deaths
## 4328                                                                 British railway pioneers
## 4329                                                 People educated at Pate's Grammar School
## 4330                                                                 British bridge engineers
## 4331                                                                  English civil engineers
## 4332                                                             Fellows of the Royal Society
## 4333                                         Presidents of the Institution of Civil Engineers
## 4334                                  Presidents of the Smeatonian Society of Civil Engineers
## 4335                                               People associated with transport in London
## 4336                               Knights Commander of the Order of St Michael and St George
## 4337                                               Knights Commander of the Order of the Bath
## 4338                                                                        People from Frome
## 4339                                                                   People from Pangbourne
## 4340                                                Fellows of the Royal Society of Edinburgh
## 4341                                     Fellows of the American Academy of Arts and Sciences
## 4342                                                                      Commutative algebra
## 4343                                                                    Paramahansa Yogananda
## 4344                                                                              1893 births
## 4345                                                                              1952 deaths
## 4346                                                     20th-century Hindu religious leaders
## 4347                                                                    Advaitin philosophers
## 4348                                                                                 Ascetics
## 4349                                                                           Bengali Hindus
## 4350                                                                           Bengali people
## 4351                                          Burials at Forest Lawn Memorial Park (Glendale)
## 4352                                                         Contemporary Indian philosophers
## 4353                                                                   Indian autobiographers
## 4354                                                  Indian expatriates in the United States
## 4355                                                                          Indian founders
## 4356                                                                        Indian memoirists
## 4357                                                                       Indian Hindu monks
## 4358                                                                Indian Hindu missionaries
## 4359                                                           Indian Hindu religious leaders
## 4360                                                          Indian Hindu spiritual teachers
## 4361                                                                 Indian spiritual writers
## 4362                                                                             Indian yogis
## 4363                                                                     Indian yoga teachers
## 4364                                                                              Kriya yogis
## 4365                                                                            Hindu writers
## 4366                                            People associated with the Bengal Renaissance
## 4367                                                                    People from Gorakhpur
## 4368                                                                    Scholars from Kolkata
## 4369                                                 Scottish Church College, Calcutta alumni
## 4370                                          Senate of Serampore College (University) alumni
## 4371                                                                       Spiritual practice
## 4372                                                            University of Calcutta alumni
## 4373                                                 People from Twentynine Palms, California
## 4374                                                                     Writers from Kolkata
## 4375                                                             20th-century Indian scholars
## 4376                                                         20th-century Indian philosophers
## 4377                                                                             Hindu saints
## 4378                                                                              1513 births
## 4379                                                                              1589 deaths
## 4380                                                       Belgian Roman Catholic theologians
## 4381                                                     Participants in the Council of Trent
## 4382                                                                          People from Ath
## 4383                                                              University of Leuven alumni
## 4384                                                             University of Leuven faculty
## 4385                                                                           Walloon people
## 4386                                                                          Blink-182 songs
## 4387                                                                               1999 songs
## 4388                                                                             2000 singles
## 4389                                           Billboard Alternative Songs number-one singles
## 4390                                                    Music videos directed by Marcos Siega
## 4391                                                                             2010 singles
## 4392                                                                            Jedward songs
## 4393                                                             Songs written by Tom DeLonge
## 4394                                                             Songs written by Mark Hoppus
## 4395                                                                 American power pop songs
## 4396                                                                    Songs about sexuality
## 4397                                                                           Sandusky, Ohio
## 4398                                                                           Cities in Ohio
## 4399                                                              Cities in Erie County, Ohio
## 4400                                                                     County seats in Ohio
## 4401                                                     Populated places established in 1816
## 4402                                             Populated places on the Underground Railroad
## 4403                                                      Populated places on the Great Lakes
## 4404                                                                     Byzantine historians
## 4405                                                            11th-century Byzantine people
## 4406                                                                  11th-century historians
## 4407                                                                               1997 films
## 4408                                                                   English-language films
## 4409                                                            Obsessive–compulsive disorder
## 4410                                                              1990s romantic comedy films
## 4411                                                                           American films
## 4412                                                              American LGBT-related films
## 4413                                                                 1990s LGBT-related films
## 4414                                                           American romantic comedy films
## 4415                                      Best Musical or Comedy Picture Golden Globe winners
## 4416                                                              Films scored by Hans Zimmer
## 4417                                                                      Films about writers
## 4418                                                        Films directed by James L. Brooks
## 4419                           Films featuring a Best Actor Academy Award-winning performance
## 4420                         Films featuring a Best Actress Academy Award-winning performance
## 4421          Films featuring a Best Musical or Comedy Actor Golden Globe winning performance
## 4422        Films featuring a Best Musical or Comedy Actress Golden Globe winning performance
## 4423                                                        Films produced by James L. Brooks
## 4424                                                               Films set in New York City
## 4425                                                              Films shot in New York City
## 4426                                                                       Gracie Films films
## 4427                                                 Obsessive–compulsive disorder in fiction
## 4428                                                                   TriStar Pictures films
## 4429                                                           Screenplays by James L. Brooks
## 4430                                                                              1295 births
## 4431                                                                              1360 deaths
## 4432                                                                     Byzantine historians
## 4433                                                                    Byzantine astronomers
## 4434                                                                                Hesychasm
## 4435                                                            14th-century Byzantine people
## 4436                                                                  14th-century historians
## 4437                                                                      Cities in Wisconsin
## 4438                                                     Populated places established in 1868
## 4439                                                         Cities in Wood County, Wisconsin
## 4440                                                     Cities in Marathon County, Wisconsin
## 4441                                                          Micropolitan areas of Wisconsin
## 4442                                                          Place name disambiguation pages
## 4443                                               Pennsylvania township disambiguation pages
## 4444                                                          Place name disambiguation pages
## 4445                                               Pennsylvania township disambiguation pages
## 4446                                                          Place name disambiguation pages
## 4447                                               Pennsylvania township disambiguation pages
## 4448                                                          Place name disambiguation pages
## 4449                                               Pennsylvania township disambiguation pages
## 4450                                                          Place name disambiguation pages
## 4451                                               Pennsylvania township disambiguation pages
## 4452                                                          Place name disambiguation pages
## 4453                                                                        Unseen characters
## 4454                                  Fictional characters by role in the narrative structure
## 4455                                                                              Gold rushes
## 4456                                                                        History of mining
## 4457                                                                              Gold mining
## 4458                                                           1843 establishments in Denmark
## 4459                                                               Amusement parks in Denmark
## 4460                                                        Tourist attractions in Copenhagen
## 4461                                                                      Parks in Copenhagen
## 4462                                                                    Culture in Copenhagen
## 4463                                                                    History of Copenhagen
## 4464                                                                         Pleasure gardens
## 4465                                                                                Vesterbro
## 4466                                                           Amusement parks opened in 1843
## 4467                                                                     British film studios
## 4468                   Media and communications in the London Borough of Richmond upon Thames
## 4469                   Buildings and structures in the London Borough of Richmond upon Thames
## 4470                                               Buildings and structures completed in 1913
## 4471                                                                               Twickenham
## 4472                                                           1913 establishments in England
## 4473                                                          Place name disambiguation pages
## 4474                                        Census-designated places in Teton County, Wyoming
## 4475                                                      Census-designated places in Wyoming
## 4476                                                       Jackson, Wyoming micropolitan area
## 4477                                                      Towns in Sweetwater County, Wyoming
## 4478                                                                         Towns in Wyoming
## 4479                                      Census-designated places in Lincoln County, Wyoming
## 4480                                                      Census-designated places in Wyoming
## 4481                                                       Towns in Waupaca County, Wisconsin
## 4482                                                                       Towns in Wisconsin
## 4483                                                                              Amphetamine
## 4484                                                                                Attention
## 4485                                                 Attention deficit hyperactivity disorder
## 4486                                                                      Attention disorders
## 4487                                                          Childhood psychiatric disorders
## 4488                                                                   Educational psychology
## 4489                          Emotional and behavioral disorders in childhood and adolescence
## 4490                                                                    Learning disabilities
## 4491                                                                          Methylphenidate
## 4492                                                                    Psychiatric diagnosis
## 4493                                                          Towns in Sauk County, Wisconsin
## 4494                                                                       Towns in Wisconsin
## 4495                                                                              1860 births
## 4496                                                                              1929 deaths
## 4497                                                             19th-century American people
## 4498                                                             20th-century American people
## 4499                                                                       American inventors
## 4500                                                            People from Buffalo, New York
## 4501                                                          City College of New York alumni
## 4502                                Columbia School of Engineering and Applied Science alumni
## 4503                                                             Burials at Oak Hill Cemetery
## 4504                                                        American people of German descent
## 4505                                                National Inventors Hall of Fame inductees
## 4506                                                     Villages in Racine County, Wisconsin
## 4507                                                                    Villages in Wisconsin
## 4508                                                            Enclaves in the United States
## 4509                                                         Towns in Price County, Wisconsin
## 4510                                                                       Towns in Wisconsin
## 4511                                                        Towns in Monroe County, Wisconsin
## 4512                                                                       Towns in Wisconsin
## 4513                                                  Villages in Milwaukee County, Wisconsin
## 4514                                                                    Villages in Wisconsin
## 4515                                                                     Greendale, Wisconsin
## 4516                                                         Towns in Green County, Wisconsin
## 4517                                                                       Towns in Wisconsin
## 4518                                                                      Cities in Wisconsin
## 4519                                                        Cities in Grant County, Wisconsin
## 4520                                                                County seats in Wisconsin
## 4521                                                     Populated places established in 1837
## 4522                                               1837 establishments in Wisconsin Territory
## 4523                                                          Towns in Dunn County, Wisconsin
## 4524                                                                       Towns in Wisconsin
## 4525                                                          Towns in Dunn County, Wisconsin
## 4526                                                                       Towns in Wisconsin
## 4527                                                                    Villages in Wisconsin
## 4528                                                      Villages in Clark County, Wisconsin
## 4529                                                         Towns in Brown County, Wisconsin
## 4530                                                              Green Bay metropolitan area
## 4531                                                                       Towns in Wisconsin
## 4532                                                   Towns in Preston County, West Virginia
## 4533                                                                   Towns in West Virginia
## 4534                                                             Morgantown metropolitan area
## 4535                                                   Towns in Fayette County, West Virginia
## 4536                                                                   Towns in West Virginia
## 4537                                                            County seats in West Virginia
## 4538                                                              Fayetteville, West Virginia
## 4539                                                                    Arlington, Washington
## 4540                                                             Cities in Washington (state)
## 4541                                                   Cities in Snohomish County, Washington
## 4542                                                  Cities in the Seattle metropolitan area
## 4543                                                     Populated places established in 1890
## 4544                                                   1968 American television series debuts
## 4545                                                  2001 American television series endings
## 4546                                                         1960s American television series
## 4547                                                         1970s American television series
## 4548                                                         1980s American television series
## 4549                                                         1990s American television series
## 4550                                                         2000s American television series
## 4551                                                                        PBS network shows
## 4552                                            American children's fantasy television series
## 4553                                           American preschool education television series
## 4554                                                                    Culture of Pittsburgh
## 4555                                                     English-language television programs
## 4556                                                   Personal development television series
## 4557                                                    Preschool education television series
## 4558                                                                  Fictional neighborhoods
## 4559                                                                           PBS Kids shows
## 4560                                                Peabody Award-winning television programs
## 4561                        American television programs featuring anthropomorphic characters
## 4562                                                   Television programs featuring puppetry
## 4563                                   Census-designated places in Cowlitz County, Washington
## 4564                                           Census-designated places in Washington (state)
## 4565                                     Census-designated places in Pulaski County, Virginia
## 4566                                  Census-designated places in Montgomery County, Virginia
## 4567                                                     Census-designated places in Virginia
## 4568                                      Blacksburg–Christiansburg–Radford metropolitan area
## 4569                                                                   Coal towns in Virginia
## 4570                                                  Towns in Isle of Wight County, Virginia
## 4571                                                          1634 establishments in Virginia
## 4572                                                     Populated places established in 1634
## 4573                                           Populated places on the James River (Virginia)
## 4574                                     Census-designated places in Fairfax County, Virginia
## 4575                                                     Census-designated places in Virginia
## 4576                                                             Washington metropolitan area
## 4577                                                                         Towns in Vermont
## 4578                                                                         Grafton, Vermont
## 4579                                                         Towns in Windham County, Vermont
## 4580                                                         Incorporated villages in Vermont
## 4581                                                                      Bennington, Vermont
## 4582                                                   Villages in Bennington County, Vermont
## 4583                Historic districts on the National Register of Historic Places in Vermont
## 4584                                         Historic districts in Bennington County, Vermont
## 4585                                                              Cities in the Mojave Desert
## 4586                                                                           Cities in Utah
## 4587                                                     Populated places established in 1857
## 4588                                                        Cities in Washington County, Utah
## 4589                                                    1857 establishments in Utah Territory
## 4590                                                                                    Hakka
## 4591                                                                            Hakka cuisine
## 4592                                                               Regional cuisines of China
## 4593                                                             1942 establishments in Texas
## 4594                                                        Census-designated places in Texas
## 4595                                    Installations of the United States Air Force in Texas
## 4596                                      Buildings and structures in Val Verde County, Texas
## 4597                                  Airfields of the United States Army Air Forces in Texas
## 4598                                               Military installations established in 1952
## 4599                                                                           Del Rio, Texas
## 4600                                                      Towns in Throckmorton County, Texas
## 4601                                                                           Towns in Texas
## 4602                                                                    County seats in Texas
## 4603                                                            Towns in Taylor County, Texas
## 4604                                                                           Towns in Texas
## 4605                                                                Abilene metropolitan area
## 4606                                                             Former county seats in Texas
## 4607                                                              Dallas–Fort Worth metroplex
## 4608                                                         Cities in Rockwall County, Texas
## 4609                                                                          Cities in Texas
## 4610                                                                    County seats in Texas
## 4611                                                     Populated places established in 1854
## 4612                                                                        Bases (chemistry)
## 4613                                                                      Household chemicals
## 4614                                                                         Industrial gases
## 4615                                                                         Inorganic amines
## 4616                                                                       Inorganic solvents
## 4617                                                                        Nitrogen hydrides
## 4618                                                                           Nitrogen cycle
## 4619                                                                             Refrigerants
## 4620                                                                               Toxicology
## 4621                                                              Gaseous signaling molecules
## 4622                                                                       Nitrogen compounds
## 4623                                                       Cities in Palo Pinto County, Texas
## 4624                                                                          Cities in Texas
## 4625                                      Census-designated places in Jim Wells County, Texas
## 4626                                                        Census-designated places in Texas
## 4627                                                                          Cities in Texas
## 4628                                                             Cities in Jack County, Texas
## 4629                                        Census-designated places in Hidalgo County, Texas
## 4630                                                        Census-designated places in Texas
## 4631                                                         Towns in Fort Bend County, Texas
## 4632                                                                           Towns in Texas
## 4633                                                                          Greater Houston
## 4634                                                                          Cities in Texas
## 4635                                                            Cities in Duval County, Texas
## 4636                                        Census-designated places in Cameron County, Texas
## 4637                                                        Census-designated places in Texas
## 4638                                                            Cities in Brown County, Texas
## 4639                                                                          Cities in Texas
## 4640                                                     Populated places established in 1886
## 4641                                                             1886 establishments in Texas
## 4642                                         Census-designated places in Brooks County, Texas
## 4643                                                        Census-designated places in Texas
## 4644                                                         Towns in Smith County, Tennessee
## 4645                                                                       Towns in Tennessee
## 4646                                                        Towns in Putnam County, Tennessee
## 4647                                                                       Towns in Tennessee
## 4648                                                  Cookeville, Tennessee micropolitan area
## 4649                                                                       Towns in Tennessee
## 4650                                                    Towns in Lauderdale County, Tennessee
## 4651                                                      Towns in Spink County, South Dakota
## 4652                                                                    Towns in South Dakota
## 4653                                                      Universities and colleges in Lahore
## 4654                                                                        Schools in Lahore
## 4655                                                               Test preparation companies
## 4656                                                              Private schools in Pakistan
## 4657                                                        Academic institutions of Pakistan
## 4658                                             Educational institutions established in 1993
## 4659                                                                 Cities in South Carolina
## 4660                                              Cities in Darlington County, South Carolina
## 4661                                                           County seats in South Carolina
## 4662                                               Florence, South Carolina metropolitan area
## 4663                                                     Populated places established in 1736
## 4664                                                               Darlington, South Carolina
## 4665                                                 Towns in Colleton County, South Carolina
## 4666                                                                  Towns in South Carolina
## 4667                                                                 Cities in South Carolina
## 4668                                               Cities in Clarendon County, South Carolina
## 4669                                                           County seats in South Carolina
## 4670                                                     Populated places established in 1830
## 4671                                                    Boroughs in York County, Pennsylvania
## 4672                                                      1830 establishments in Pennsylvania
## 4673                                                     Populated places established in 1812
## 4674                                                    Boroughs in York County, Pennsylvania
## 4675                                                      1866 establishments in Pennsylvania
## 4676                                            Boroughs in Westmoreland County, Pennsylvania
## 4677                                                     Populated places established in 1928
## 4678                                                             Pittsburgh metropolitan area
## 4679                                                      1928 establishments in Pennsylvania
## 4680                                               Ukrainian communities in the United States
## 4681                                            Boroughs in Westmoreland County, Pennsylvania
## 4682                                                     Populated places established in 1873
## 4683                                                             Pittsburgh metropolitan area
## 4684                                                      1884 establishments in Pennsylvania
## 4685                                                                   Cities in Pennsylvania
## 4686                                                Cities in Washington County, Pennsylvania
## 4687                                                             County seats in Pennsylvania
## 4688                                                    University towns in the United States
## 4689                                                     Populated places established in 1768
## 4690                                                             Pittsburgh metropolitan area
## 4691                                                      1768 establishments in Pennsylvania
## 4692                                                                 Washington, Pennsylvania
## 4693                                              Boroughs in Washington County, Pennsylvania
## 4694                                                     Populated places established in 1894
## 4695                                                             Pittsburgh metropolitan area
## 4696                                                Populated places on the Monongahela River
## 4697                                                      1894 establishments in Pennsylvania
## 4698                                                     Populated places established in 1787
## 4699                                            Townships in Susquehanna County, Pennsylvania
## 4700                                                                Townships in Pennsylvania
## 4701                                                     Populated places established in 1800
## 4702                             Municipalities of the Anthracite Coal Region of Pennsylvania
## 4703                                         Townships in Northumberland County, Pennsylvania
## 4704                              Census-designated places in Montgomery County, Pennsylvania
## 4705                                             Townships in Montgomery County, Pennsylvania
## 4706                                                 Townships in Mercer County, Pennsylvania
## 4707                                               Townships in Lycoming County, Pennsylvania
## 4708                                                     Populated places established in 1772
## 4709                                               Townships in Lycoming County, Pennsylvania
## 4710                                                     Populated places established in 1770
## 4711                                                      1770 establishments in Pennsylvania
## 4712                                                     Populated places established in 1830
## 4713                                                 Boroughs in Luzerne County, Pennsylvania
## 4714                                                      1870 establishments in Pennsylvania
## 4715                                              Townships in Jefferson County, Pennsylvania
## 4716                                                                Townships in Pennsylvania
## 4717                                                     Populated places established in 1866
## 4718                                                 Townships in Forest County, Pennsylvania
## 4719                                                                Townships in Pennsylvania
## 4720                                                      1866 establishments in Pennsylvania
## 4721                                                                   AeroVironment aircraft
## 4722                                                                          Canard aircraft
## 4723                                                                   Human-powered aircraft
## 4724                                                           Single-engined pusher aircraft
## 4725                                            United States experimental aircraft 1970–1979
## 4726                     Individual aircraft in the collection of the Smithsonian Institution
## 4727                                                             Aircraft first flown in 1979
## 4728                                                Townships in Dauphin County, Pennsylvania
## 4729                                Census-designated places in Crawford County, Pennsylvania
## 4730                                                 Census-designated places in Pennsylvania
## 4731                                                     Populated places established in 1845
## 4732                                                Boroughs in Crawford County, Pennsylvania
## 4733                                                      1845 establishments in Pennsylvania
## 4734                                                                  Characters in the Iliad
## 4735                                                                                  Trojans
## 4736                                                     Populated places established in 1875
## 4737                                                  Boroughs in Carbon County, Pennsylvania
## 4738                                                      1875 establishments in Pennsylvania
## 4739                                                     Populated places established in 1858
## 4740                                                 Boroughs in Cambria County, Pennsylvania
## 4741                                                      1858 establishments in Pennsylvania
## 4742                                                     Populated places established in 1830
## 4743                                                  Boroughs in Butler County, Pennsylvania
## 4744                                                      1830 establishments in Pennsylvania
## 4745                                                   Boroughs in Bucks County, Pennsylvania
## 4746                                                 Home Rule Municipalities in Pennsylvania
## 4747                                                     Populated places established in 1765
## 4748                                           Populated places in Bucks County, Pennsylvania
## 4749                                                      1765 establishments in Pennsylvania
## 4750                                                     Populated places established in 1773
## 4751                                               Townships in Bradford County, Pennsylvania
## 4752                                                                Townships in Pennsylvania
## 4753                                   Census-designated places in Berks County, Pennsylvania
## 4754                                                 Census-designated places in Pennsylvania
## 4755                                                                         Cities in Oregon
## 4756                                                            Cities in Polk County, Oregon
## 4757                                                          Salem, Oregon metropolitan area
## 4758                                                            1893 establishments in Oregon
## 4759                                                 Logging communities in the United States
## 4760                                                                 Municipalities of Sweden
## 4761                                                           Municipalities of Skåne County
## 4762                                                                       Hörby Municipality
## 4763                                                                 Municipalities of Sweden
## 4764                                                           Municipalities of Skåne County
## 4765                                                                        Towns in Oklahoma
## 4766                                                        Towns in Washita County, Oklahoma
## 4767                                              German-Russian culture in the United States
## 4768                                    Census-designated places in Muskogee County, Oklahoma
## 4769                                                     Census-designated places in Oklahoma
## 4770                                                          Oklahoma City metropolitan area
## 4771                                                        Towns in Lincoln County, Oklahoma
## 4772                                                                        Towns in Oklahoma
## 4773                                                                       Cities in Oklahoma
## 4774                                                    Cities in Kingfisher County, Oklahoma
## 4775                                                                 County seats in Oklahoma
## 4776                                                     Populated places established in 1889
## 4777                                                  1889 establishments in Indian Territory
## 4778                                                       Towns in Garfield County, Oklahoma
## 4779                                                                        Towns in Oklahoma
## 4780                                                                              1876 operas
## 4781                                                                                   Operas
## 4782                                                           Eschatology in Norse mythology
## 4783                                                                  Der Ring des Nibelungen
## 4784                                                        Cities in Carter County, Oklahoma
## 4785                                                                       Cities in Oklahoma
## 4786                                                      Ardmore, Oklahoma micropolitan area
## 4787                                        Census-designated places in Trumbull County, Ohio
## 4788                                                            Cities in Ottawa County, Ohio
## 4789                                                                     County seats in Ohio
## 4790                                                      Populated places on the Great Lakes
## 4791                                                                           Cities in Ohio
## 4792                                                        Villages in Lawrence County, Ohio
## 4793                                                  Ohio populated places on the Ohio River
## 4794                                                        Villages in Highland County, Ohio
## 4795                                        Census-designated places in Hamilton County, Ohio
## 4796                                                         Census-designated places in Ohio
## 4797                                                Populated places in Hamilton County, Ohio
## 4798                                                  Former census-designated places in Ohio
## 4799                                                                     County seats in Ohio
## 4800                                                           Cities in Belmont County, Ohio
## 4801                                                                            National Road
## 4802                                                     Populated places established in 1801
## 4803                                           1801 establishments in the Northwest Territory
## 4804                                                  Cities in Williams County, North Dakota
## 4805                                                                   Cities in North Dakota
## 4806                                                     Populated places established in 1902
## 4807                                                                   Cities in North Dakota
## 4808                                                    Cities in Steele County, North Dakota
## 4809                                                             County seats in North Dakota
## 4810                                                     Populated places established in 1896
## 4811                                                  Cities in Burleigh County, North Dakota
## 4812                                                                   Cities in North Dakota
## 4813                                                     Populated places established in 1912
## 4814                                                      1912 establishments in North Dakota
## 4815                                                 Towns in Scotland County, North Carolina
## 4816                                                                  Towns in North Carolina
## 4817                               Census-designated places in Robeson County, North Carolina
## 4818                                               Census-designated places in North Carolina
## 4819                                                                                   Lumbee
## 4820                                                   Towns in Gaston County, North Carolina
## 4821                                                                  Towns in North Carolina
## 4822                                                                 Cities in North Carolina
## 4823                                                Cities in Columbus County, North Carolina
## 4824                                                           County seats in North Carolina
## 4825                                             Census-designated places in New York (state)
## 4826                                                              Hamlets in New York (state)
## 4827                                                                              Shawangunks
## 4828                                                                      Wawarsing, New York
## 4829                                      Census-designated places in Ulster County, New York
## 4830                                                       Hamlets in Ulster County, New York
## 4831                                                  1872 establishments in New York (state)
## 4832                                                     Populated places established in 1872
## 4833                                                    Villages in Tompkins County, New York
## 4834                                                             Villages in New York (state)
## 4835                                                                      Smithtown, New York
## 4836                                                             Villages in New York (state)
## 4837                                                     Villages in Suffolk County, New York
## 4838                                                                     Huntington, New York
## 4839                                             Census-designated places in New York (state)
## 4840                                                              Hamlets in New York (state)
## 4841                                     Census-designated places in Suffolk County, New York
## 4842                                                      Hamlets in Suffolk County, New York
## 4843                                                                     Brookhaven, New York
## 4844                                                             Southampton (town), New York
## 4845                                                              Hamlets in New York (state)
## 4846                                             Census-designated places in New York (state)
## 4847                                     Census-designated places in Suffolk County, New York
## 4848                                                      Hamlets in Suffolk County, New York
## 4849                                             Populated coastal places in New York (state)
## 4850                                                                     Brookhaven, New York
## 4851                                                              Hamlets in New York (state)
## 4852                                             Census-designated places in New York (state)
## 4853                                     Census-designated places in Suffolk County, New York
## 4854                                                      Hamlets in Suffolk County, New York
## 4855                                                                Towns in New York (state)
## 4856                                                   Towns in St. Lawrence County, New York
## 4857                                             Census-designated places in New York (state)
## 4858                                                              Hamlets in New York (state)
## 4859                                  Census-designated places in Rensselaer County, New York
## 4860                                                   Hamlets in Rensselaer County, New York
## 4861                                                             Villages in New York (state)
## 4862                                                  Villages in Rensselaer County, New York
## 4863                                                                      Hempstead, New York
## 4864                                             Census-designated places in New York (state)
## 4865                                                              Hamlets in New York (state)
## 4866                                      Census-designated places in Nassau County, New York
## 4867                                                       Hamlets in Nassau County, New York
## 4868                                                    Political party alliances in Malaysia
## 4869                                                    Political parties established in 1973
## 4870                                                          1973 establishments in Malaysia
## 4871                                                             Villages in New York (state)
## 4872                                                             Utica–Rome metropolitan area
## 4873                                                    Villages in Herkimer County, New York
## 4874                                                                Towns in New York (state)
## 4875                                                     Populated places established in 1827
## 4876                                                       Towns in Franklin County, New York
## 4877                                                  1827 establishments in New York (state)
## 4878                                                                Towns in New York (state)
## 4879                                                          Towns in Essex County, New York
## 4880                                             Census-designated places in New York (state)
## 4881                                                              Hamlets in New York (state)
## 4882                                                  Buffalo–Niagara Falls metropolitan area
## 4883                                        Census-designated places in Erie County, New York
## 4884                                                         Hamlets in Erie County, New York
## 4885                                                                               Guitarists
## 4886                                                                     Occupations in music
## 4887                                                                    Guilderland, New York
## 4888                                                                Towns in New York (state)
## 4889                                                         Towns in Albany County, New York
## 4890                                                   Census-designated places in New Mexico
## 4891                                  Census-designated places in Torrance County, New Mexico
## 4892                                                            Albuquerque metropolitan area
## 4893                                                    Villages in Sierra County, New Mexico
## 4894                                                                   Villages in New Mexico
## 4895                                  Census-designated places in McKinley County, New Mexico
## 4896                                                   Census-designated places in New Mexico
## 4897                                                    Populated places on the Navajo Nation
## 4898                                                                    Millville, New Jersey
## 4899                                                        1866 establishments in New Jersey
## 4900                                                  Cities in Cumberland County, New Jersey
## 4901                                                        New Jersey Urban Enterprise Zones
## 4902                                                     Populated places established in 1866
## 4903                                               Ukrainian communities in the United States
## 4904                                                                                Walsh Act
## 4905                                                               Wildwood Crest, New Jersey
## 4906                                                        1910 establishments in New Jersey
## 4907                                                  Boroughs in Cape May County, New Jersey
## 4908                                   Places in New Jersey that prohibit the sale of alcohol
## 4909                                              Jersey Shore communities in Cape May County
## 4910                                                        New Jersey Urban Enterprise Zones
## 4911                                                     Populated places established in 1910
## 4912                                                                The Wildwoods, New Jersey
## 4913                                                                                Walsh Act
## 4914                                                                      F. Scott Fitzgerald
## 4915                                                                              1896 births
## 4916                                                                              1940 deaths
## 4917                                                          20th-century American novelists
## 4918                                                     Alcohol-related deaths in California
## 4919                                                                  American male novelists
## 4920                                                         American people of Irish descent
## 4921                                                       American people of English descent
## 4922                                                   American psychological fiction writers
## 4923                                                20th-century American short story writers
## 4924                                                                      Burials in Maryland
## 4925                                                                   Irish-American history
## 4926                                                        American male short story writers
## 4927                                                             American short story writers
## 4928                                                                        Modernist writers
## 4929                                                       Writers from Saint Paul, Minnesota
## 4930                                                             People with bipolar disorder
## 4931                                                              Princeton University alumni
## 4932                                                            20th-century American writers
## 4933                                               American military personnel of World War I
## 4934                                                                 Novelists from Minnesota
## 4935                                                                   River Edge, New Jersey
## 4936                                                        1894 establishments in New Jersey
## 4937                                                    Borough form of New Jersey government
## 4938                                                    Boroughs in Bergen County, New Jersey
## 4939                                                     Populated places established in 1894
## 4940                                                 Populated places on the Hackensack River
## 4941                                                                       Bogota, New Jersey
## 4942                                                        1894 establishments in New Jersey
## 4943                                                    Borough form of New Jersey government
## 4944                                                    Boroughs in Bergen County, New Jersey
## 4945                                                     Populated places established in 1894
## 4946                                                 Populated places on the Hackensack River
## 4947                                                                  Bergenfield, New Jersey
## 4948                                                        1894 establishments in New Jersey
## 4949                                                    Borough form of New Jersey government
## 4950                                                    Boroughs in Bergen County, New Jersey
## 4951                                                     Populated places established in 1894
## 4952                                                 Towns in Strafford County, New Hampshire
## 4953                                                     Populated places established in 1766
## 4954                                                                   Towns in New Hampshire
## 4955                                                       Villages in Texas County, Missouri
## 4956                                                                     Villages in Missouri
## 4957                                                  Cities in Sunflower County, Mississippi
## 4958                                                              County seats in Mississippi
## 4959                                                        Micropolitan areas of Mississippi
## 4960                                                                    Cities in Mississippi
## 4961                                                      Villages in Thayer County, Nebraska
## 4962                                                                     Villages in Nebraska
## 4963                                                      Villages in Pawnee County, Nebraska
## 4964                                                                     Villages in Nebraska
## 4965                                                   Villages in Jefferson County, Nebraska
## 4966                                                                     Villages in Nebraska
## 4967                                                        Villages in Hall County, Nebraska
## 4968                                                                     Villages in Nebraska
## 4969                                                           Grand Island micropolitan area
## 4970                                                        Villages in Gage County, Nebraska
## 4971                                                                     Villages in Nebraska
## 4972                                      Census-designated places in Rosebud County, Montana
## 4973                                                                           Cheyenne tribe
## 4974                                                         Towns in Ravalli County, Montana
## 4975                                                         Pre-statehood history of Montana
## 4976                                                           1841 establishments in Montana
## 4977                                     Census-designated places in Missoula County, Montana
## 4978                                                      Census-designated places in Montana
## 4979                                                     Cities in St. Louis County, Missouri
## 4980                                                                       Cities in Missouri
## 4981                                                  Cities in St. Francois County, Missouri
## 4982                                                                Company towns in Missouri
## 4983                                                     Populated places established in 1910
## 4984                                                              Ashmore and Cartier Islands
## 4985                                                                Ramsar sites in Australia
## 4986                                  Important Bird Areas of Australian External Territories
## 4987                                                                 Immigration to Australia
## 4988                                                        Territorial disputes of Australia
## 4989                                                        Territorial disputes of Indonesia
## 4990                                                                       Islands of Oceania
## 4991                                                      Villages in Platte County, Missouri
## 4992                                                                     Villages in Missouri
## 4993                                                                   Redirects to Wikiquote
## 4994                                                                         Lists of phrases
## 4995                                                                    Germany-related lists
## 4996                                                          Cities in Cass County, Missouri
## 4997                                                                       Cities in Missouri
## 4998                                                         Cities in Barry County, Missouri
## 4999                                                                       Cities in Missouri
## 5000                                                                    Cities in Mississippi
## 5001                                                      Cities in Wayne County, Mississippi
## 5002                                                              County seats in Mississippi
## 5003                                                       Towns in Smith County, Mississippi
## 5004                                                                     Towns in Mississippi
## 5005                                                                    Cities in Mississippi
## 5006                                                      Cities in Scott County, Mississippi
## 5007                                                                    Cities in Mississippi
## 5008                                                    Cities in Forrest County, Mississippi
## 5009                                                  Cities in Hattiesburg metropolitan area
## 5010                                           Townships in Yellow Medicine County, Minnesota
## 5011                                                                   Townships in Minnesota
## 5012                                                   Townships in Wabasha County, Minnesota
## 5013                                                   Rochester, Minnesota metropolitan area
## 5014                                                                   Townships in Minnesota
## 5015                                                         1861 establishments in Minnesota
## 5016                                                      Townships in Todd County, Minnesota
## 5017                                                                   Townships in Minnesota
## 5018                                                 Townships in St. Louis County, Minnesota
## 5019                                                                   Townships in Minnesota
## 5020                                                                      Cities in Minnesota
## 5021                                                    Cities in Sherburne County, Minnesota
## 5022                                      Minnesota populated places on the Mississippi River
## 5023                                                                      Cities in Minnesota
## 5024                                                       Cities in Ramsey County, Minnesota
## 5025                                                      Townships in Pope County, Minnesota
## 5026                                                                   Townships in Minnesota
## 5027                                                      Townships in Polk County, Minnesota
## 5028                                                                   Townships in Minnesota
## 5029                                                        Populated places in South Holland
## 5030                                                   Former municipalities of South Holland
## 5031                                                            South Holland geography stubs
## 5032                                                        Populated places in South Holland
## 5033                                                   Former municipalities of South Holland
## 5034                                                                                Teylingen
## 5035                                                            South Holland geography stubs
## 5036                                                                      Cities in Minnesota
## 5037                                                       Cities in Meeker County, Minnesota
## 5038                                                  Townships in Mahnomen County, Minnesota
## 5039                                                                   Townships in Minnesota
## 5040                                                      Townships in Lyon County, Minnesota
## 5041                                                                   Townships in Minnesota
## 5042                                                   Townships in Kittson County, Minnesota
## 5043                                                                   Townships in Minnesota
## 5044                                                 Townships in Kandiyohi County, Minnesota
## 5045                                                                   Townships in Minnesota
## 5046                                                       Cities in Itasca County, Minnesota
## 5047                                                                      Cities in Minnesota
## 5048                                                    Townships in Itasca County, Minnesota
## 5049                                                                   Townships in Minnesota
## 5050                                                                      Cities in Minnesota
## 5051                                                   Cities in Clearwater County, Minnesota
## 5052                                                  Townships in Chippewa County, Minnesota
## 5053                                                                   Townships in Minnesota
## 5054                                                                              1762 births
## 5055                                                                              1814 deaths
## 5056                                                              18th-century German writers
## 5057                                                                18th-century philosophers
## 5058                                                              19th-century German writers
## 5059                                                         19th-century German philosophers
## 5060                                                                   Christian philosophers
## 5061                                                                 Continental philosophers
## 5062                                                                       Deaths from typhus
## 5063                                                                          German idealism
## 5064                                                                         German Lutherans
## 5065                                                                      German nationalists
## 5066                                                                      German philosophers
## 5067                                                                                Idealists
## 5068                                                     Infectious disease deaths in Germany
## 5069                                                           People from Bautzen (district)
## 5070                                                     People from the Electorate of Saxony
## 5071                                                 University of Erlangen-Nuremberg faculty
## 5072                                                               University of Jena faculty
## 5073                                                    Humboldt University of Berlin faculty
## 5074                                                                      German male writers
## 5075                                                Townships in Blue Earth County, Minnesota
## 5076                                                Mankato – North Mankato metropolitan area
## 5077                                                                   Townships in Minnesota
## 5078                                                       Cities in Becker County, Minnesota
## 5079                                                                      Cities in Minnesota
## 5080                                                    Townships in Aitkin County, Minnesota
## 5081                                                                   Townships in Minnesota
## 5082                                                       Cities in Aitkin County, Minnesota
## 5083                                                                      Cities in Minnesota
## 5084                                                    Townships in Aitkin County, Minnesota
## 5085                                                                   Townships in Minnesota
## 5086                                                  Townships in Washtenaw County, Michigan
## 5087                                                            Charter townships in Michigan
## 5088                                                       Cities in Tuscola County, Michigan
## 5089                                                                       Cities in Michigan
## 5090                                                     Populated places established in 1849
## 5091                                                          1849 establishments in Michigan
## 5092                                                  Townships in St. Clair County, Michigan
## 5093                                                                    Townships in Michigan
## 5094                                    Unincorporated communities in Oscoda County, Michigan
## 5095                                                     Census-designated places in Michigan
## 5096                                                                 County seats in Michigan
## 5097                                                   Unincorporated communities in Michigan
## 5098                                      Census-designated places in Oscoda County, Michigan
## 5099                                                     Populated places established in 1881
## 5100                                                          1881 establishments in Michigan
## 5101                                                                           Troy, Michigan
## 5102                                                       Cities in Oakland County, Michigan
## 5103                                                                       Cities in Michigan
## 5104                                                                            Metro Detroit
## 5105                                                          1955 establishments in Michigan
## 5106                                                                              Woensdrecht
## 5107                                                          Municipalities of North Brabant
## 5108                                                        Populated places in North Brabant
## 5109                                                                              Steenbergen
## 5110                                                          Municipalities of North Brabant
## 5111                                                        Populated places in North Brabant
## 5112                                                                              Halderberge
## 5113                                                          Municipalities of North Brabant
## 5114                                                            North Brabant geography stubs
## 5115                                                                           De Ronde Venen
## 5116                                                     Municipalities of Utrecht (province)
## 5117                                                       Utrecht (province) geography stubs
## 5118                                                       Former municipalities of Friesland
## 5119                                                                          Súdwest-Fryslân
## 5120                                                                Friesland geography stubs
## 5121                                                           Kollumerland en Nieuwkruisland
## 5122                                                              Municipalities of Friesland
## 5123                                                                Friesland geography stubs
## 5124                                                  Townships in Menominee County, Michigan
## 5125                                                              Marinette micropolitan area
## 5126                                                                    Townships in Michigan
## 5127                                                     Townships in Macomb County, Michigan
## 5128                                                1834 establishments in Michigan Territory
## 5129                                                                    Townships in Michigan
## 5130                                                 Townships in Livingston County, Michigan
## 5131                                                            Charter townships in Michigan
## 5132                                                          1837 establishments in Michigan
## 5133                                                     Villages in Lenawee County, Michigan
## 5134                                                                     Villages in Michigan
## 5135                                                     Townships in Lapeer County, Michigan
## 5136                                                                    Townships in Michigan
## 5137                                                                                   Silene
## 5138                                                                   Flora of North America
## 5139                                                                 Plants described in 1753
## 5140                                                      Townships in Iosco County, Michigan
## 5141                                                                    Townships in Michigan
## 5142                                    Unincorporated communities in Ingham County, Michigan
## 5143                                                     Census-designated places in Michigan
## 5144                                                 Lansing – East Lansing metropolitan area
## 5145                                                   Unincorporated communities in Michigan
## 5146                                      Census-designated places in Ingham County, Michigan
## 5147                                                                        Freedom of speech
## 5148                                                                               Censorship
## 5149                                                                    Freedom of expression
## 5150                                                                    Human rights by issue
## 5151                                                                   Lists of chess players
## 5152                                                     Townships in Branch County, Michigan
## 5153                                                                    Townships in Michigan
## 5154                                                        Townships in Bay County, Michigan
## 5155                                                            Charter townships in Michigan
## 5156                                                     Townships in Baraga County, Michigan
## 5157                                                                    Townships in Michigan
## 5158                             Census-designated places in Barnstable County, Massachusetts
## 5159                                                                   Mashpee, Massachusetts
## 5160                                                Census-designated places in Massachusetts
## 5161                                                Populated coastal places in Massachusetts
## 5162                                                                        Towns in Maryland
## 5163                                                Towns in Prince George's County, Maryland
## 5164                                           Maryland populated places on the Potomac River
## 5165                                                             Washington metropolitan area
## 5166                             Census-designated places in Prince George's County, Maryland
## 5167                                                     Census-designated places in Maryland
## 5168                                                             Washington metropolitan area
## 5169                                                     Census-designated places in Maryland
## 5170                                  Census-designated places in Montgomery County, Maryland
## 5171                                           Maryland populated places on the Potomac River
## 5172                                                   Populated places on the Chesapeake Bay
## 5173                                                                 Havre de Grace, Maryland
## 5174                                                       Cities in Harford County, Maryland
## 5175                                                Populated places on the Susquehanna River
## 5176                                         Stations along Baltimore and Ohio Railroad lines
## 5177                                                                       Cities in Maryland
## 5178                                             Populated places on the Underground Railroad
## 5179                                                          1785 establishments in Maryland
## 5180                                                     Populated coastal places in Maryland
## 5181                                   Census-designated places in Frederick County, Maryland
## 5182                                                     Census-designated places in Maryland
## 5183                                                                        Streetcar suburbs
## 5184                                   Census-designated places in Baltimore County, Maryland
## 5185                                                     Census-designated places in Maryland
## 5186                                   Census-designated places in Baltimore County, Maryland
## 5187                                                     Census-designated places in Maryland
## 5188                                Census-designated places in Anne Arundel County, Maryland
## 5189                                                     Census-designated places in Maryland
## 5190                                                        Towns in Washington County, Maine
## 5191                                                                           Towns in Maine
## 5192                                                        Populated coastal places in Maine
## 5193                                                             Towns in Waldo County, Maine
## 5194                                                                           Towns in Maine
## 5195                                                                     Plantations in Maine
## 5196                                                    Plantations in Somerset County, Maine
## 5197                                                       Towns in Piscataquis County, Maine
## 5198                                                                           Towns in Maine
## 5199                                                              Towns in Knox County, Maine
## 5200                                                                          Rockport, Maine
## 5201                                                        Populated coastal places in Maine
## 5202                                                        Towns in Cumberland County, Maine
## 5203                                                        Portland metropolitan area, Maine
## 5204                                                                           Raymond, Maine
## 5205                                                                           Towns in Maine
## 5206                                                         Towns in Aroostook County, Maine
## 5207                                                                           Towns in Maine
## 5208                                                   Plantations in Aroostook County, Maine
## 5209                                                                     Plantations in Maine
## 5210                                                                    Maine geography stubs
## 5211                                                                   Morgan City, Louisiana
## 5212                                                                      Cities in Louisiana
## 5213                                                     Cities in St. Mary Parish, Louisiana
## 5214                                                     Populated places established in 1860
## 5215                                                         1860 establishments in Louisiana
## 5216                                Census-designated places in St. Bernard Parish, Louisiana
## 5217                                                    Census-designated places in Louisiana
## 5218                                Census-designated places in New Orleans metropolitan area
## 5219                                      Louisiana populated places on the Mississippi River
## 5220                                            Villages in Jefferson Davis Parish, Louisiana
## 5221                                                                    Villages in Louisiana
## 5222                                                     Towns in Iberville Parish, Louisiana
## 5223                                                                       Towns in Louisiana
## 5224                                                            Baton Rouge metropolitan area
## 5225                                                    Census-designated places in Louisiana
## 5226                                 Census-designated places in Assumption Parish, Louisiana
## 5227                                                                       Cities in Kentucky
## 5228                                                       Cities in Fleming County, Kentucky
## 5229                                       Census-designated places in Boone County, Kentucky
## 5230                                                     Census-designated places in Kentucky
## 5231                                                                 County seats in Kentucky
## 5232                                     Communications in the Federated States of Micronesia
## 5233                                                            Telecommunications by country
## 5234                                                                      Internet by country
## 5235                                                            Telecommunications in Oceania
## 5236                                                     Federated States of Micronesia stubs
## 5237                                                                         Cities in Kansas
## 5238                                                            Cities in Rice County, Kansas
## 5239                                                           Cities in Osage County, Kansas
## 5240                                                                         Cities in Kansas
## 5241                                                                 Topeka metropolitan area
## 5242                                                                         Cities in Kansas
## 5243                                                             Cities in Elk County, Kansas
## 5244                                                                         Cities in Kansas
## 5245                                                        Cities in Comanche County, Kansas
## 5246                                                                         Cities in Kansas
## 5247                                                          Cities in Butler County, Kansas
## 5248                                                                Wichita metropolitan area
## 5249                                                            Cities in Shelby County, Iowa
## 5250                                                                           Cities in Iowa
## 5251                                                                           Cities in Iowa
## 5252                                                          Cities in Ringgold County, Iowa
## 5253                                                                           Cities in Iowa
## 5254                                                           Cities in Madison County, Iowa
## 5255                                                             Des Moines metropolitan area
## 5256                                                              Cities in Linn County, Iowa
## 5257                                                                           Cities in Iowa
## 5258                                                           Cedar Rapids metropolitan area
## 5259                                                                           Cities in Iowa
## 5260                                                           Cities in Clinton County, Iowa
## 5261                                                           Cities in Jackson County, Iowa
## 5262                                                                     County seats in Iowa
## 5263                                                     Populated places established in 1838
## 5264                                                                          Maquoketa, Iowa
## 5265                                                    1838 establishments in Iowa Territory
## 5266                                                                     Disambiguation pages
## 5267                                                        1960 American television episodes
## 5268                                              The Twilight Zone (1959 TV series) episodes
## 5269                                                     Personifications of death in fiction
## 5270                                                                   Hitchhiking in fiction
## 5271                                               Television episodes written by Rod Serling
## 5272                                                               Political history of China
## 5273                                                                           Heads of state
## 5274                                                                         Chinese emperors
## 5275                                                             Chinese government officials
## 5276                                                   Pharaohs of the Third Dynasty of Egypt
## 5277                                                                                   Djoser
## 5278                                                                    1st-century BC births
## 5279                                                                 1st-century Christianity
## 5280                                                                       1st-century deaths
## 5281                                                     Jews and Judaism in the Roman Empire
## 5282                                                                         Ethiopian saints
## 5283                                                                        Jesus and history
## 5284                                                          People in the canonical gospels
## 5285                                                                 Roman governors of Judea
## 5286                                                       People from the Province of Teramo
## 5287                                                           Cities in Clayton County, Iowa
## 5288                                                                           Cities in Iowa
## 5289                                                              1872 establishments in Iowa
## 5290                                                Australian Broadcasting Corporation shows
## 5291                                                 Australian satirical television programs
## 5292                                                Australian mockumentary television series
## 5293                                                                            News parodies
## 5294                                                 1994 Australian television series debuts
## 5295                                                1997 Australian television series endings
## 5296                                                       1990s Australian television series
## 5297                                                                  Television news sitcoms
## 5298                                                            Australian television sitcoms
## 5299                                                     English-language television programs
## 5300                                                        Television shows set in Melbourne
## 5301                                                                         Towns in Indiana
## 5302                                                      Towns in Washington County, Indiana
## 5303                                                             Louisville metropolitan area
## 5304                                                     Populated places established in 1849
## 5305                                                           1849 establishments in Indiana
## 5306                                                          Towns in Tipton County, Indiana
## 5307                                                                         Towns in Indiana
## 5308                                                                 Kokomo metropolitan area
## 5309                                               Populated places in Tipton County, Indiana
## 5310                                                                      Valparaiso, Indiana
## 5311                                                         Cities in Porter County, Indiana
## 5312                                                                Chicago metropolitan area
## 5313                                                                  County seats in Indiana
## 5314                                                                        Cities in Indiana
## 5315                                                     Populated places established in 1836
## 5316                                                                        Northwest Indiana
## 5317                                                          Towns in Monroe County, Indiana
## 5318                                                                         Towns in Indiana
## 5319                                                   Bloomington, Indiana metropolitan area
## 5320                                                                        Cities in Indiana
## 5321                                                           Cities in Lake County, Indiana
## 5322                                                                        Northwest Indiana
## 5323                                                                        Cities in Indiana
## 5324                                                          Cities in Grant County, Indiana
## 5325                                                 1813 establishments in Indiana Territory
## 5326                                                          Towns in Gibson County, Indiana
## 5327                                                                         Towns in Indiana
## 5328                                                             Evansville metropolitan area
## 5329                                                      Communities of Southwestern Indiana
## 5330                                                     Populated places established in 1813
## 5331                                                         Towns in Carroll County, Indiana
## 5332                                                           1872 establishments in Indiana
## 5333                                                    Villages in Sangamon County, Illinois
## 5334                                                                     Villages in Illinois
## 5335                                                 Springfield, Illinois, metropolitan area
## 5336                                                        Villages in Pike County, Illinois
## 5337                                                                     Villages in Illinois
## 5338                                                    Villages in Moultrie County, Illinois
## 5339                                                                     Villages in Illinois
## 5340                                                     Populated places established in 1877
## 5341                                                  Villages in Montgomery County, Illinois
## 5342                                                                     Villages in Illinois
## 5343                                            Ottawa–Peru, IL Micropolitan Statistical Area
## 5344                                                     Villages in LaSalle County, Illinois
## 5345                                                          1873 establishments in Illinois
## 5346                                                                     Villages in Illinois
## 5347                                            Ottawa–Peru, IL Micropolitan Statistical Area
## 5348                                                                    Cedar Point, Illinois
## 5349                                                     Villages in LaSalle County, Illinois
## 5350                                                    Villages in Kankakee County, Illinois
## 5351                                                                     Villages in Illinois
## 5352                                                   Villages in Henderson County, Illinois
## 5353                                                                     Villages in Illinois
## 5354                                                       Burlington, Iowa micropolitan area
## 5355                                       Illinois populated places on the Mississippi River
## 5356                                                                             Inosilicates
## 5357                                                                           Pyroxene group
## 5358                                                                     Villages in Illinois
## 5359                                                        Villages in Cook County, Illinois
## 5360                                                                Chicago metropolitan area
## 5361                                                     Populated places established in 1914
## 5362                                                          1914 establishments in Illinois
## 5363                                                                     Villages in Illinois
## 5364                                                        Villages in Cook County, Illinois
## 5365                                                                Chicago metropolitan area
## 5366                                                     Populated places established in 1959
## 5367                                             Populated places on the Underground Railroad
## 5368                                                          1959 establishments in Illinois
## 5369                                                                         Harvey, Illinois
## 5370                                                                       Cities in Illinois
## 5371                                                          1891 establishments in Illinois
## 5372                                                          Cities in Cook County, Illinois
## 5373                                                     Populated places established in 1891
## 5374                                                                             Finger Lakes
## 5375                                                                    New York (state) wine
## 5376                                                              Regions of New York (state)
## 5377                                                          Glaciology of the United States
## 5378                                                                         Upstate New York
## 5379                                                                Lakes of New York (state)
## 5380                                                                              Lake groups
## 5381                                                        Villages in Cass County, Illinois
## 5382                                                                     Villages in Illinois
## 5383                                                                          Cities in Idaho
## 5384                                                            Cities in Teton County, Idaho
## 5385                                                                    County seats in Idaho
## 5386                                                       Jackson, Wyoming micropolitan area
## 5387                                                     Populated places established in 1888
## 5388                                                   1888 establishments in Idaho Territory
## 5389                                                           Cities in Georgia (U.S. state)
## 5390                                                         Cities in Turner County, Georgia
## 5391                                                           Cities in Georgia (U.S. state)
## 5392                                                       Cities in Gwinnett County, Georgia
## 5393                                                           Cities in Georgia (U.S. state)
## 5394                                                         Cities in Fannin County, Georgia
## 5395                                                           Cities in Georgia (U.S. state)
## 5396                                                         Cities in Coweta County, Georgia
## 5397                                                     County seats in Georgia (U.S. state)
## 5398                                              1828 establishments in Georgia (U.S. state)
## 5399                                                                         English atheists
## 5400                                                                      English astronomers
## 5401                                                          English science fiction writers
## 5402                                                                             Cosmologists
## 5403                                                                               Panspermia
## 5404                                                    Alumni of Emmanuel College, Cambridge
## 5405                                                  Fellows of St John's College, Cambridge
## 5406                                                             Fellows of the Royal Society
## 5407                                                                         Knights Bachelor
## 5408                                                                        English agnostics
## 5409                                                                 Kalinga Prize recipients
## 5410                                                                      People from Bingley
## 5411                                                                              1915 births
## 5412                                                                              2001 deaths
## 5413                                                                      Royal Medal winners
## 5414                           Recipients of the Gold Medal of the Royal Astronomical Society
## 5415                                                People educated at Bingley Grammar School
## 5416                                             Presidents of the Royal Astronomical Society
## 5417                                                           20th-century British novelists
## 5418                                      Census-designated places in Clayton County, Georgia
## 5419                                         Census-designated places in Georgia (U.S. state)
## 5420                                                        Cities in Wakulla County, Florida
## 5421                                                            Tallahassee metropolitan area
## 5422                                                     Populated places established in 1894
## 5423                                                                        Cities in Florida
## 5424                                                                  County seats in Florida
## 5425                                                       Cities in Suwannee County, Florida
## 5426                                                                        Cities in Florida
## 5427                                    Census-designated places in St. Johns County, Florida
## 5428                                                     Beaches of St. Johns County, Florida
## 5429                               Census-designated places in Jacksonville metropolitan area
## 5430                                                      Census-designated places in Florida
## 5431                                Populated coastal places in Florida on the Atlantic Ocean
## 5432                                                                       Beaches of Florida
## 5433                                         Census-designated places in Polk County, Florida
## 5434                                                      Census-designated places in Florida
## 5435                                                         Cities in Monroe County, Florida
## 5436                                                                        Cities in Florida
## 5437                                Populated coastal places in Florida on the Atlantic Ocean
## 5438                                                        Beaches of Monroe County, Florida
## 5439                                                                       Beaches of Florida
## 5440                                                     Cities in Miami-Dade County, Florida
## 5441                                                                        Cities in Florida
## 5442                                                        Cities in Miami metropolitan area
## 5443                                          Census-designated places in Lee County, Florida
## 5444                                                      Census-designated places in Florida
## 5445                                 Populated places on the Intracoastal Waterway in Florida
## 5446                                                        Pine Island (Lee County, Florida)
## 5447                                          Census-designated places in Lee County, Florida
## 5448                                                      Census-designated places in Florida
## 5449                                                     Populated places on Charlotte Harbor
## 5450                                                           Towns in Kent County, Delaware
## 5451                                                                        Towns in Delaware
## 5452                                                       Towns in Gunnison County, Colorado
## 5453                                                                        Towns in Colorado
## 5454                                                                     Colorado Mining Boom
## 5455                                                                                   Months
## 5456                                                                                 February
## 5457                                     Census-designated places in Alamosa County, Colorado
## 5458                                                     Census-designated places in Colorado
## 5459                                                                     Woodland, California
## 5460                                                        Cities in Yolo County, California
## 5461                                                               County seats in California
## 5462                                                   Cities in Sacramento metropolitan area
## 5463                                                                        Sacramento Valley
## 5464                                                     Populated places established in 1871
## 5465                                                        1871 establishments in California
## 5466                                              Incorporated cities and towns in California
## 5467                                Census-designated places in Santa Cruz County, California
## 5468                                                   Census-designated places in California
## 5469                               Census-designated places in San Joaquin County, California
## 5470                                                   Census-designated places in California
## 5471                                 Census-designated places in Riverside County, California
## 5472                                                   Census-designated places in California
## 5473                                                               Cathedral City, California
## 5474                                                   Cities in Riverside County, California
## 5475                                                                         Coachella Valley
## 5476                                              Incorporated cities and towns in California
## 5477                                                  Populated places in the Colorado Desert
## 5478                                                     Populated places established in 1925
## 5479                                    Census-designated places in Plumas County, California
## 5480                                                   Census-designated places in California
## 5481                                                                             Antisemitism
## 5482                                                                           Discrimination
## 5483                                                                  Jewish political status
## 5484                                                                               Prejudices
## 5485                                                                                   Racism
## 5486                                                                              Orientalism
## 5487                                                            Judaism-related controversies
## 5488                                                                  Mill Valley, California
## 5489                                                       Cities in Marin County, California
## 5490                                                     Cities in the San Francisco Bay Area
## 5491                                              Incorporated cities and towns in California
## 5492                                                                          Mount Tamalpais
## 5493                                                        1900 establishments in California
## 5494                                                     Populated places established in 1900
## 5495                                                   Populated coastal places in California
## 5496                                      Census-designated places in Lake County, California
## 5497                                                   Census-designated places in California
## 5498                                      Census-designated places in Lake County, California
## 5499                                                   Census-designated places in California
## 5500                                                         Towns in Nevada County, Arkansas
## 5501                                                                        Towns in Arkansas
## 5502                                                                   Hope micropolitan area
## 5503                                                          Politics of Antigua and Barbuda
## 5504                                                                       Cities in Arkansas
## 5505                                                      Cities in Crawford County, Arkansas
## 5506                                                             Fort Smith metropolitan area
## 5507                                                                       Cities in Arkansas
## 5508                                                     Populated places established in 1873
## 5509                                                        Cities in Benton County, Arkansas
## 5510                                                                 County seats in Arkansas
## 5511                                                                       Northwest Arkansas
## 5512                                                                    Bentonville, Arkansas
## 5513                                         Census-designated places in Pima County, Arizona
## 5514                                                   Populated places in the Sonoran Desert
## 5515                                                      Census-designated places in Arizona
## 5516                                                                       Informal fallacies
## 5517                                                                             Lexicography
## 5518                                                       Census-designated places in Alaska
## 5519                                  Census-designated places in Unorganized Borough, Alaska
## 5520                           Census-designated places in Valdez–Cordova Census Area, Alaska
## 5521                                                       Populated coastal places in Alaska
## 5522                                                                               Bering Sea
## 5523                                                                         Cities in Alaska
## 5524                                                     Cities in Bethel Census Area, Alaska
## 5525                                                       Populated coastal places in Alaska
## 5526                                                                       Heraldic tinctures
## 5527                                                                            Shades of red
## 5528                                                                               True seals
## 5529                                                                                Pinnipeds
## 5530                                                               Langhian first appearances
## 5531                                                         Extant Miocene first appearances
## 5532                                                                        Cities in Alabama
## 5533                                                         Cities in Etowah County, Alabama
## 5534                                                     Populated places established in 1870
## 5535                                                                            U.S. Route 11
## 5536                                                          Towns in DeKalb County, Alabama
## 5537                                                                         Towns in Alabama
## 5538                                                           Cities in Dale County, Alabama
## 5539                                                                        Cities in Alabama
## 5540                                                           1965 establishments in Alabama
## 5541                                                           Towns in Coosa County, Alabama
## 5542                                                                         Towns in Alabama
## 5543                                                                  County seats in Alabama
## 5544                                                     Populated places established in 1832
## 5545                                                         Alexander City micropolitan area
## 5546                                                          Towns in Clarke County, Alabama
## 5547                                                                         Towns in Alabama
## 5548                                                                               Historians
## 5549                                                          Lists of scholars and academics
## 5550                                                                      Lists of historians
## 5551                                                                              1938 births
## 5552                                                                            Living people
## 5553                                                                  American film directors
## 5554                                                         American people of Irish descent
## 5555                                                                    American film editors
## 5556                                                                 American Roman Catholics
## 5557                                                                Fordham University alumni
## 5558                                                    People educated at Ampleforth College
## 5559                                                        Film directors from New York City
## 5560                                                              United States Army soldiers
## 5561                                                                         IUCN Category II
## 5562                                                   National parks of Far North Queensland
## 5563                                                          Queensland protected area stubs
## 5564                                                            Scouting in the United States
## 5565                                                   Youth organizations based in Tennessee
## 5566                                                  Southern Region (Boy Scouts of America)
## 5567                                                              1st-century Christian texts
## 5568                                                                      Apocryphal epistles
## 5569                                                                    Pauline-related books
## 5570                                                                    Christian terminology
## 5571                                                                     Lost religious texts
## 5572                                                      Youth organizations based in Hawaii
## 5573                                                            Scouting in the United States
## 5574                                                   Western Region (Boy Scouts of America)
## 5575                                                                                Broadland
## 5576                                                             Heritage railways in Norfolk
## 5577                                                          15 in gauge railways in England
## 5578                                                 Miniature railways in the United Kingdom
## 5579                                                                            North Norfolk
## 5580                                                                   Rail trails in England
## 5581                                                                   Chattanooga, Tennessee
## 5582                                                                      Cities in Tennessee
## 5583                                            History of voting rights in the United States
## 5584                                              Cities in the Chattanooga metropolitan area
## 5585                                                     Cities in Hamilton County, Tennessee
## 5586                                                                County seats in Tennessee
## 5587                                                     Populated places established in 1816
## 5588                                                                            U.S. Route 11
## 5589                                                  Populated places on the Tennessee River
## 5590                                               Chattanooga metropolitan area county seats
## 5591                                                         1816 establishments in Tennessee
## 5592                                                               Railway towns in Tennessee
## 5593                                                                               Royal Navy
## 5594                                                                    History of navigation
## 5595                                                     1714 establishments in Great Britain
## 5596                                                                   1828 disestablishments
## 5597                                                                              1880 births
## 5598                                                                              1962 deaths
## 5599                                                          19th-century monarchs in Europe
## 5600                                         Burials in the Royal Crypt at Nieuwe Kerk, Delft
## 5601                                                                           Dutch monarchs
## 5602                                               Dutch members of the Dutch Reformed Church
## 5603                                                  Extra Ladies of the Order of the Garter
## 5604                                                    Heirs presumptive to the Dutch throne
## 5605                                                                   House of Orange-Nassau
## 5606                                     Knights Grand Cross of the Military Order of William
## 5607                                         Ladies of the Royal Order of Victoria and Albert
## 5608                                            Members of the Council of State (Netherlands)
## 5609                                                                      Modern child rulers
## 5610                                                                   Monarchs who abdicated
## 5611                                                                    People from The Hague
## 5612                                                                      Protestant monarchs
## 5613                                                              Princesses of Orange-Nassau
## 5614                                                                           Queens regnant
## 5615                                       Recipients of the House Order of the Wendish Crown
## 5616                                                           World War II political leaders
## 5617                                                    Grand Crosses of the Order of Carol I
## 5618                                                  Dames of the Order of Queen Maria Luisa
## 5619                                                                19th-century women rulers
## 5620                                                                       20th-century women
## 5621                                                            Wilhelmina of the Netherlands
## 5622                                                                         IUCN Category II
## 5623                                                      National parks of Western Australia
## 5624                                                      Protected areas established in 1979
## 5625                                                                     Goldfields-Esperance
## 5626                                                         1979 establishments in Australia
## 5627                                                        Western Australia geography stubs
## 5628                                                                         European anthems
## 5629                                                                           Romanian songs
## 5630                                                              National symbols of Romania
## 5631                                                                               1848 songs
## 5632                                                                      Romanian Revolution
## 5633                                                                         National anthems
## 5634                                                                               1976 films
## 5635                                                                   English-language films
## 5636                                                              American biographical films
## 5637                                                                           American films
## 5638                                                       Biographical films about musicians
## 5639                                                         Films scored by Leonard Rosenman
## 5640                                                                    Films about composers
## 5641                                                               Films based on biographies
## 5642                                                              Films directed by Hal Ashby
## 5643                                                                   Films set in the 1930s
## 5644                    Films whose cinematographer won the Best Cinematography Academy Award
## 5645                                                                   Great Depression films
## 5646                                     Films that won the Best Original Score Academy Award
## 5647                                                                     Rail transport films
## 5648                                                                        1970s road movies
## 5649                                                                     American road movies
## 5650                                                                     United Artists films
## 5651                                                                            Woody Guthrie
## 5652                                                                         IUCN Category II
## 5653                                                               National parks of Tasmania
## 5654                                                         Important Bird Areas of Tasmania
## 5655                                                         1989 establishments in Australia
## 5656                                                                 Tasmania geography stubs
## 5657                                                                         IUCN Category Ib
## 5658                                                        National parks of New South Wales
## 5659                                                                      Northern Tablelands
## 5660                                                               Forests of New South Wales
## 5661                                                      Protected areas established in 1937
## 5662                                                        Gondwana Rainforests of Australia
## 5663                                                         1937 establishments in Australia
## 5664                                                  Important Bird Areas of New South Wales
## 5665                                                                         IUCN Category II
## 5666                                                        National parks of New South Wales
## 5667                                                      Protected areas established in 1999
## 5668                                                        Gondwana Rainforests of Australia
## 5669                                                         1999 establishments in Australia
## 5670                                                  Important Bird Areas of New South Wales
## 5671                                                                          Northern Rivers
## 5672                                                     New South Wales protected area stubs
## 5673                                                                         IUCN Category II
## 5674                                                        National parks of New South Wales
## 5675                                                      Protected areas established in 1997
## 5676                                                         1997 establishments in Australia
## 5677                                                     New South Wales protected area stubs
## 5678                                                                         IUCN Category II
## 5679                                                        National parks of New South Wales
## 5680                                                      Protected areas established in 1999
## 5681                                                         1999 establishments in Australia
## 5682                                                                         Days of the year
## 5683                                                                                    April
## 5684                                                                         IUCN Category II
## 5685                                                        National parks of New South Wales
## 5686                                                          Central Coast (New South Wales)
## 5687                                                      Protected areas established in 1967
## 5688                                                         1967 establishments in Australia
## 5689                                                                         IUCN Category II
## 5690                                                        National parks of New South Wales
## 5691                                                      Protected areas established in 1995
## 5692                                                         1995 establishments in Australia
## 5693                                                     New South Wales protected area stubs
## 5694                                                                              1674 births
## 5695                                                                              1741 deaths
## 5696                                                                 English agriculturalists
## 5697                                                                        English inventors
## 5698                                                      People of the Industrial Revolution
## 5699                                                          People from Basildon, Berkshire
## 5700                                                         People from Bradfield, Berkshire
## 5701                                                                   People from Hungerford
## 5702                                                      Alumni of St John's College, Oxford
## 5703                                                                    Members of Gray's Inn
## 5704                                                                Acknowledgements of death
## 5705                                                                     Inscriptions by type
## 5706                                             United States Department of Defense doctrine
## 5707                                                                        Control theorists
## 5708                                                              Lists of people by activity
## 5709                                                                        Electronic design
## 5710                                                                          Microtechnology
## 5711                                                                         System on a chip
## 5712                                                                         Forms of Parvati
## 5713                                                                          Hindu goddesses
## 5714                                                                         Mother goddesses
## 5715                                                                                 Shaktism
## 5716                                                                            War goddesses
## 5717                                                                        Consorts of Shiva
articles.with.categories <- as.integer(levels(unique(categories$article_id)))

These are not going to be very helpful. Wikipedia category hierarchy is complex and circular and it is not easy to find root categories. We need to pull all article categories and then we can pull all articles in particular high ranking categories like living people vs not living people, technology vs history etc.

Article Tags

tags <- as.data.frame(do.call(rbind,strsplit(readLines("all_oldenough_indicators.txt"), "\x1e",fixed=T)), stringsAsFactors = FALSE)
tags$V2 <- as.factor(tags$V2)
wikinames <- levels(tags$V2)
replacement.names <- c("Featured Article", "Good Article", "Journal", "Help Link", "Partially Protected - Autoreview", "Partially Protected - Default", "Spoken")
library(plyr)
## -------------------------------------------------------------------------
## You have loaded plyr after dplyr - this is likely to cause problems.
## If you need functions from both plyr and dplyr, please load plyr first, then dplyr:
## library(plyr); library(dplyr)
## -------------------------------------------------------------------------
## 
## Attaching package: 'plyr'
## The following objects are masked from 'package:dplyr':
## 
##     arrange, count, desc, failwith, id, mutate, rename, summarise,
##     summarize
tags$V2 <- mapvalues(tags$V2, from = wikinames, to = replacement.names)
names(tags) <- c("article_id", "Indicator")
tags$article_id <- as.integer(tags$article_id)
arrange(tags, article_id)
##      article_id                        Indicator
## 1            10                           Spoken
## 2            12                     Good Article
## 3            25                 Featured Article
## 4            25    Partially Protected - Default
## 5           241    Partially Protected - Default
## 6           242                     Good Article
## 7           242    Partially Protected - Default
## 8           255                     Good Article
## 9           255                           Spoken
## 10          256                     Good Article
## 11          256    Partially Protected - Default
## 12          276                     Good Article
## 13          276                           Spoken
## 14          278                     Good Article
## 15          278    Partially Protected - Default
## 16          279    Partially Protected - Default
## 17          290    Partially Protected - Default
## 18          291    Partially Protected - Default
## 19          293    Partially Protected - Default
## 20          304    Partially Protected - Default
## 21          307                     Good Article
## 22          307    Partially Protected - Default
## 23          308                     Good Article
## 24          308    Partially Protected - Default
## 25          334    Partially Protected - Default
## 26          339                     Good Article
## 27          339                           Spoken
## 28          358    Partially Protected - Default
## 29          579    Partially Protected - Default
## 30          594    Partially Protected - Default
## 31          617                     Good Article
## 32          617    Partially Protected - Default
## 33          620    Partially Protected - Default
## 34          621                 Featured Article
## 35          622                     Good Article
## 36          622    Partially Protected - Default
## 37          624    Partially Protected - Default
## 38          627 Partially Protected - Autoreview
## 39          654                           Spoken
## 40          656    Partially Protected - Default
## 41          662                     Good Article
## 42          662    Partially Protected - Default
## 43          663                 Featured Article
## 44          664    Partially Protected - Default
## 45          666                     Good Article
## 46          670    Partially Protected - Default
## 47          674                     Good Article
## 48          689    Partially Protected - Default
## 49          691    Partially Protected - Default
## 50          735                     Good Article
## 51          735    Partially Protected - Default
## 52          736                     Good Article
## 53          736    Partially Protected - Default
## 54          737    Partially Protected - Default
## 55          738    Partially Protected - Default
## 56          740                     Good Article
## 57          740    Partially Protected - Default
## 58          746                     Good Article
## 59          746                           Spoken
## 60          751                 Featured Article
## 61          752    Partially Protected - Default
## 62          765    Partially Protected - Default
## 63          768    Partially Protected - Default
## 64          771    Partially Protected - Default
## 65          783                     Good Article
## 66          783    Partially Protected - Default
## 67          785                     Good Article
## 68          798                 Featured Article
## 69          800    Partially Protected - Default
## 70          808                     Good Article
## 71          809    Partially Protected - Default
## 72          822    Partially Protected - Default
## 73          841    Partially Protected - Default
## 74          848    Partially Protected - Default
## 75          851    Partially Protected - Default
## 76          851                           Spoken
## 77          852    Partially Protected - Default
## 78          855 Partially Protected - Autoreview
## 79          856    Partially Protected - Default
## 80          863    Partially Protected - Default
## 81          864    Partially Protected - Default
## 82          872                     Good Article
## 83          874                 Featured Article
## 84          874    Partially Protected - Default
## 85          890    Partially Protected - Default
## 86          894                     Good Article
## 87          896                     Good Article
## 88          898                     Good Article
## 89          899                     Good Article
## 90          900                     Good Article
## 91          901                 Featured Article
## 92          902                 Featured Article
## 93          902    Partially Protected - Default
## 94          904    Partially Protected - Default
## 95          918    Partially Protected - Default
## 96          919    Partially Protected - Default
## 97          929    Partially Protected - Default
## 98          954                 Featured Article
## 99          973    Partially Protected - Default
## 100        1008 Partially Protected - Autoreview
## 101        1009 Partially Protected - Autoreview
## 102        1010 Partially Protected - Autoreview
## 103        1011 Partially Protected - Autoreview
## 104        1012 Partially Protected - Autoreview
## 105        1013 Partially Protected - Autoreview
## 106        1014    Partially Protected - Default
## 107        1019 Partially Protected - Autoreview
## 108        1023    Partially Protected - Default
## 109        1026    Partially Protected - Default
## 110        1027 Partially Protected - Autoreview
## 111        1038                     Good Article
## 112        1038    Partially Protected - Default
## 113        1055    Partially Protected - Default
## 114        1078    Partially Protected - Default
## 115        1129 Partially Protected - Autoreview
## 116        1151    Partially Protected - Default
## 117        1154 Partially Protected - Autoreview
## 118        1164 Partially Protected - Autoreview
## 119        1174                     Good Article
## 120        1174    Partially Protected - Default
## 121        1175 Partially Protected - Autoreview
## 122        1177                     Good Article
## 123        1179                           Spoken
## 124        1182                     Good Article
## 125        1182 Partially Protected - Autoreview
## 126        1201                     Good Article
## 127        1207                     Good Article
## 128        1208                     Good Article
## 129        1238    Partially Protected - Default
## 130        1238                           Spoken
## 131        1239    Partially Protected - Default
## 132        1254 Partially Protected - Autoreview
## 133        1259 Partially Protected - Autoreview
## 134        1261 Partially Protected - Autoreview
## 135        1273                 Featured Article
## 136        1273    Partially Protected - Default
## 137        1276                 Featured Article
## 138        1276    Partially Protected - Default
## 139        1286                 Featured Article
## 140        1298    Partially Protected - Default
## 141        1332 Partially Protected - Autoreview
## 142        1333 Partially Protected - Autoreview
## 143        1334 Partially Protected - Autoreview
## 144        1338                           Spoken
## 145        1339                           Spoken
## 146        1340                           Spoken
## 147        1341                           Spoken
## 148        1346                 Featured Article
## 149        1347                 Featured Article
## 150        1348    Partially Protected - Default
## 151        1366    Partially Protected - Default
## 152        1367                 Featured Article
## 153        1372    Partially Protected - Default
## 154        1394                     Good Article
## 155        1395                 Featured Article
## 156        1397    Partially Protected - Default
## 157        1399                     Good Article
## 158        1407    Partially Protected - Default
## 159        1410    Partially Protected - Default
## 160        1416 Partially Protected - Autoreview
## 161        1417 Partially Protected - Autoreview
## 162        1436    Partially Protected - Default
## 163        1442 Partially Protected - Autoreview
## 164        1448 Partially Protected - Autoreview
## 165        1461                     Good Article
## 166        1482                     Good Article
## 167        1490 Partially Protected - Autoreview
## 168        1491 Partially Protected - Autoreview
## 169        1494                 Featured Article
## 170        1496 Partially Protected - Autoreview
## 171        1497 Partially Protected - Autoreview
## 172        1499 Partially Protected - Autoreview
## 173        1519 Partially Protected - Autoreview
## 174        1525                     Good Article
## 175        1537    Partially Protected - Default
## 176        1541 Partially Protected - Autoreview
## 177        1556                     Good Article
## 178        1560    Partially Protected - Default
## 179        1561                 Featured Article
## 180        1575                 Featured Article
## 181        1583                 Featured Article
## 182        1623                 Featured Article
## 183        1623    Partially Protected - Default
## 184        1624                 Featured Article
## 185        1624 Partially Protected - Autoreview
## 186        1628 Partially Protected - Autoreview
## 187        1629 Partially Protected - Autoreview
## 188        1639 Partially Protected - Autoreview
## 189        1682                 Featured Article
## 190        1710 Partially Protected - Autoreview
## 191        1711 Partially Protected - Autoreview
## 192        1755                     Good Article
## 193        1766                 Featured Article
## 194        1766                           Spoken
## 195        1770    Partially Protected - Default
## 196        1771                     Good Article
## 197        1777 Partially Protected - Autoreview
## 198        1781 Partially Protected - Autoreview
## 199        1787 Partially Protected - Autoreview
## 200        1793 Partially Protected - Autoreview
## 201        1794 Partially Protected - Autoreview
## 202        1800                     Good Article
## 203        1806    Partially Protected - Default
## 204        1814 Partially Protected - Autoreview
## 205        1822    Partially Protected - Default
## 206        1826 Partially Protected - Autoreview
## 207        1827 Partially Protected - Autoreview
## 208        1828    Partially Protected - Default
## 209        1844                 Featured Article
## 210        1844    Partially Protected - Default
## 211        1844                           Spoken
## 212        1845 Partially Protected - Autoreview
## 213        1862 Partially Protected - Autoreview
## 214        1885    Partially Protected - Default
## 215        1902                 Featured Article
## 216        1921    Partially Protected - Default
## 217        1923 Partially Protected - Autoreview
## 218        1926                 Featured Article
## 219        1930    Partially Protected - Default
## 220        1933                 Featured Article
## 221        1938 Partially Protected - Autoreview
## 222        1950                     Good Article
## 223        1965                     Good Article
## 224        1970                     Good Article
## 225        1971                     Good Article
## 226        1974 Partially Protected - Autoreview
## 227        1990 Partially Protected - Autoreview
## 228        2003                     Good Article
## 229        2006                     Good Article
## 230        2006    Partially Protected - Default
## 231        2041 Partially Protected - Autoreview
## 232        2051                     Good Article
## 233        2062    Partially Protected - Default
## 234        2065                     Good Article
## 235        2067                 Featured Article
## 236        2067    Partially Protected - Default
## 237        2073                 Featured Article
## 238        2073    Partially Protected - Default
## 239        2074                 Featured Article
## 240        2074    Partially Protected - Default
## 241        2103    Partially Protected - Default
## 242        2110                 Featured Article
## 243        2122                     Good Article
## 244        2129    Partially Protected - Default
## 245        2144                 Featured Article
## 246        2144    Partially Protected - Default
## 247        2154    Partially Protected - Default
## 248        2162    Partially Protected - Default
## 249        2166    Partially Protected - Default
## 250        2174                 Featured Article
## 251        2174    Partially Protected - Default
## 252        2174                           Spoken
## 253        2176    Partially Protected - Default
## 254        2178    Partially Protected - Default
## 255        2179    Partially Protected - Default
## 256        2187    Partially Protected - Default
## 257        2192 Partially Protected - Autoreview
## 258        2194 Partially Protected - Autoreview
## 259        2195 Partially Protected - Autoreview
## 260        2196 Partially Protected - Autoreview
## 261        2201                     Good Article
## 262        2215                     Good Article
## 263        2216    Partially Protected - Default
## 264        2224 Partially Protected - Autoreview
## 265        2233                 Featured Article
## 266        2234    Partially Protected - Default
## 267        2261                 Featured Article
## 268        2273    Partially Protected - Default
## 269        2279 Partially Protected - Autoreview
## 270        2296                     Good Article
## 271        2308                     Good Article
## 272        2315 Partially Protected - Autoreview
## 273        2320                           Spoken
## 274        2321    Partially Protected - Default
## 275        2326 Partially Protected - Autoreview
## 276        2335    Partially Protected - Default
## 277        2358    Partially Protected - Default
## 278        2362                     Good Article
## 279        2369    Partially Protected - Default
## 280        2395 Partially Protected - Autoreview
## 281        2397 Partially Protected - Autoreview
## 282        2417    Partially Protected - Default
## 283        2418 Partially Protected - Autoreview
## 284        2441    Partially Protected - Default
## 285        2447                 Featured Article
## 286        2447                           Spoken
## 287        2460    Partially Protected - Default
## 288        2482    Partially Protected - Default
## 289        2483 Partially Protected - Autoreview
## 290        2486                           Spoken
## 291        2500    Partially Protected - Default
## 292        2504                 Featured Article
## 293        2504    Partially Protected - Default
## 294        2520                     Good Article
## 295        2537                 Featured Article
## 296        2547                     Good Article
## 297        2564 Partially Protected - Autoreview
## 298        2577                     Good Article
## 299        2594                 Featured Article
## 300        2594    Partially Protected - Default
## 301        2722    Partially Protected - Default
## 302        2733 Partially Protected - Autoreview
## 303        2734 Partially Protected - Autoreview
## 304        2735 Partially Protected - Autoreview
## 305        2745    Partially Protected - Default
## 306        2784                     Good Article
## 307        2834                 Featured Article
## 308        2847    Partially Protected - Default
## 309        2861 Partially Protected - Autoreview
## 310        2864                     Good Article
## 311        2872                     Good Article
## 312        2877                 Featured Article
## 313        2890                 Featured Article
## 314        2905    Partially Protected - Default
## 315        2912                     Good Article
## 316        2927    Partially Protected - Default
## 317        2944    Partially Protected - Default
## 318        2965                     Good Article
## 319        2965    Partially Protected - Default
## 320        2995                 Featured Article
## 321        3027    Partially Protected - Default
## 322        3057    Partially Protected - Default
## 323        3062    Partially Protected - Default
## 324        3066    Partially Protected - Default
## 325        3078                     Good Article
## 326        3090    Partially Protected - Default
## 327        3092                     Good Article
## 328        3138                     Good Article
## 329        3201    Partially Protected - Default
## 330        3212    Partially Protected - Default
## 331        3248                 Featured Article
## 332        3252    Partially Protected - Default
## 333        3263    Partially Protected - Default
## 334        3277                 Featured Article
## 335        3280                     Good Article
## 336        3280    Partially Protected - Default
## 337        3284                     Good Article
## 338        3284    Partially Protected - Default
## 339        3298    Partially Protected - Default
## 340        3300    Partially Protected - Default
## 341        3317                     Good Article
## 342        3323    Partially Protected - Default
## 343        3333                     Good Article
## 344        3342                 Featured Article
## 345        3342    Partially Protected - Default
## 346        3342                           Spoken
## 347        3343    Partially Protected - Default
## 348        3352    Partially Protected - Default
## 349        3355                     Good Article
## 350        3356                     Good Article
## 351        3356    Partially Protected - Default
## 352        3356                           Spoken
## 353        3363                     Good Article
## 354        3363    Partially Protected - Default
## 355        3366    Partially Protected - Default
## 356        3370                     Good Article
## 357        3378                     Good Article
## 358        3382    Partially Protected - Default
## 359        3383    Partially Protected - Default
## 360        3390    Partially Protected - Default
## 361        3395    Partially Protected - Default
## 362        3410                 Featured Article
## 363        3410    Partially Protected - Default
## 364        3410                           Spoken
## 365        3411                     Good Article
## 366        3415                     Good Article
## 367        3415    Partially Protected - Default
## 368        3416                     Good Article
## 369        3424                           Spoken
## 370        3454    Partially Protected - Default
## 371        3457                 Featured Article
## 372        3457 Partially Protected - Autoreview
## 373        3463    Partially Protected - Default
## 374        3466    Partially Protected - Default
## 375        3484                     Good Article
## 376        3549    Partially Protected - Default
## 377        3551    Partially Protected - Default
## 378        3587    Partially Protected - Default
## 379        3622    Partially Protected - Default
## 380        3623    Partially Protected - Default
## 381        3624    Partially Protected - Default
## 382        3625    Partially Protected - Default
## 383        3626    Partially Protected - Default
## 384        3627    Partially Protected - Default
## 385        3628    Partially Protected - Default
## 386        3640    Partially Protected - Default
## 387        3641    Partially Protected - Default
## 388        3642    Partially Protected - Default
## 389        3643    Partially Protected - Default
## 390        3644    Partially Protected - Default
## 391        3645    Partially Protected - Default
## 392        3646    Partially Protected - Default
## 393        3647    Partially Protected - Default
## 394        3717                     Good Article
## 395        3722    Partially Protected - Default
## 396        3736    Partially Protected - Default
## 397        3746                 Featured Article
## 398        3747                     Good Article
## 399        3747    Partially Protected - Default
## 400        3755                     Good Article
## 401        3755    Partially Protected - Default
## 402        3756                     Good Article
## 403        3757                     Good Article
## 404        3758                     Good Article
## 405        3778    Partially Protected - Default
## 406        3781                     Good Article
## 407        3781    Partially Protected - Default
## 408        3793                 Featured Article
## 409        3793 Partially Protected - Autoreview
## 410        3830                 Featured Article
## 411        3833    Partially Protected - Default
## 412        3850                 Featured Article
## 413        3850    Partially Protected - Default
## 414        3858                 Featured Article
## 415        3859                 Featured Article
## 416        3875                 Featured Article
## 417        3921    Partially Protected - Default
## 418        3928    Partially Protected - Default
## 419        3933                           Spoken
## 420        3935    Partially Protected - Default
## 421        3947                     Good Article
## 422        3956    Partially Protected - Default
## 423        3969                 Featured Article
## 424        3969    Partially Protected - Default
## 425        3970                     Good Article
## 426        3970    Partially Protected - Default
## 427        3973    Partially Protected - Default
## 428        3973                           Spoken
## 429        3986    Partially Protected - Default
## 430        3986                           Spoken
## 431        3996    Partially Protected - Default
## 432        3997    Partially Protected - Default
## 433        4014    Partially Protected - Default
## 434        4035    Partially Protected - Default
## 435        4035                           Spoken
## 436        4041                     Good Article
## 437        4049                 Featured Article
## 438        4050                 Featured Article
## 439        4054                 Featured Article
## 440        4055                     Good Article
## 441        4057                     Good Article
## 442        4068    Partially Protected - Default
## 443        4113                     Good Article
## 444        4116                 Featured Article
## 445        4116    Partially Protected - Default
## 446        4116                           Spoken
## 447        4146    Partially Protected - Default
## 448        4165                 Featured Article
## 449        4173                 Featured Article
## 450        4173    Partially Protected - Default
## 451        4183                     Good Article
## 452        4194                     Good Article
## 453        4196                 Featured Article
## 454        4214                           Spoken
## 455        4230    Partially Protected - Default
## 456        4246    Partially Protected - Default
## 457        4248    Partially Protected - Default
## 458        4251                 Featured Article
## 459        4252                 Featured Article
## 460        4266                     Good Article
## 461        4284    Partially Protected - Default
## 462        4294    Partially Protected - Default
## 463        4312                     Good Article
## 464        4312    Partially Protected - Default
## 465        4314                     Good Article
## 466        4314    Partially Protected - Default
## 467        4329                           Spoken
## 468        4335    Partially Protected - Default
## 469        4339    Partially Protected - Default
## 470        4348                           Spoken
## 471        4356                     Good Article
## 472        4367 Partially Protected - Autoreview
## 473        4368                 Featured Article
## 474        4368    Partially Protected - Default
## 475        4375                     Good Article
## 476        4375    Partially Protected - Default
## 477        4399    Partially Protected - Default
## 478        4400                     Good Article
## 479        4400    Partially Protected - Default
## 480        4401                 Featured Article
## 481        4401    Partially Protected - Default
## 482        4431    Partially Protected - Default
## 483        4443    Partially Protected - Default
## 484        4463                     Good Article
## 485        4487    Partially Protected - Default
## 486        4489    Partially Protected - Default
## 487        4497    Partially Protected - Default
## 488        4501    Partially Protected - Default
## 489        4523    Partially Protected - Default
## 490        4526    Partially Protected - Default
## 491        4527    Partially Protected - Default
## 492        4531    Partially Protected - Default
## 493        4543    Partially Protected - Default
## 494        4545                           Spoken
## 495        4550                     Good Article
## 496        4572                 Featured Article
## 497        4572    Partially Protected - Default
## 498        4606                 Featured Article
## 499        4614                 Featured Article
## 500        4614    Partially Protected - Default
## 501        4632                 Featured Article
## 502        4650                     Good Article
## 503        4650    Partially Protected - Default
## 504        4654                     Good Article
## 505        4654    Partially Protected - Default
## 506        4673    Partially Protected - Default
## 507        4681 Partially Protected - Autoreview
## 508        4703                 Featured Article
## 509        4703    Partially Protected - Default
## 510        4703                           Spoken
## 511        4721                 Featured Article
## 512        4721    Partially Protected - Default
## 513        4721                           Spoken
## 514        4726                     Good Article
## 515        4726    Partially Protected - Default
## 516        4728                     Good Article
## 517        4729                     Good Article
## 518        4730                     Good Article
## 519        4745    Partially Protected - Default
## 520        4773                 Featured Article
## 521        4781                     Good Article
## 522        4802    Partially Protected - Default
## 523        4806                     Good Article
## 524        4806 Partially Protected - Autoreview
## 525        4820                 Featured Article
## 526        4849                     Good Article
## 527        4849    Partially Protected - Default
## 528        4854    Partially Protected - Default
## 529        4886                     Good Article
## 530        4887                     Good Article
## 531        4891 Partially Protected - Autoreview
## 532        4892                     Good Article
## 533        4915                     Good Article
## 534        4917                     Good Article
## 535        4924    Partially Protected - Default
## 536        4925                 Featured Article
## 537        4925    Partially Protected - Default
## 538        4925                           Spoken
## 539        4952                     Good Article
## 540        4996                 Featured Article
## 541        5012                 Featured Article
## 542        5018    Partially Protected - Default
## 543        5052    Partially Protected - Default
## 544        5054    Partially Protected - Default
## 545        5056    Partially Protected - Default
## 546        5060    Partially Protected - Default
## 547        5061    Partially Protected - Default
## 548        5062    Partially Protected - Default
## 549        5063    Partially Protected - Default
## 550        5064    Partially Protected - Default
## 551        5065    Partially Protected - Default
## 552        5066                     Good Article
## 553        5067    Partially Protected - Default
## 554        5068    Partially Protected - Default
## 555        5069    Partially Protected - Default
## 556        5070    Partially Protected - Default
## 557        5071    Partially Protected - Default
## 558        5073    Partially Protected - Default
## 559        5074    Partially Protected - Default
## 560        5075    Partially Protected - Default
## 561        5076    Partially Protected - Default
## 562        5077    Partially Protected - Default
## 563        5078    Partially Protected - Default
## 564        5079    Partially Protected - Default
## 565        5080    Partially Protected - Default
## 566        5081    Partially Protected - Default
## 567        5082    Partially Protected - Default
## 568        5088    Partially Protected - Default
## 569        5093                     Good Article
## 570        5093    Partially Protected - Default
## 571        5093                           Spoken
## 572        5110                     Good Article
## 573        5112                 Featured Article
## 574        5112    Partially Protected - Default
## 575        5115                     Good Article
## 576        5129                     Good Article
## 577        5130    Partially Protected - Default
## 578        5132 Partially Protected - Autoreview
## 579        5133 Partially Protected - Autoreview
## 580        5134                 Featured Article
## 581        5134    Partially Protected - Default
## 582        5134                           Spoken
## 583        5141                     Good Article
## 584        5142                 Featured Article
## 585        5142    Partially Protected - Default
## 586        5166                     Good Article
## 587        5180    Partially Protected - Default
## 588        5181    Partially Protected - Default
## 589        5182    Partially Protected - Default
## 590        5184    Partially Protected - Default
## 591        5186    Partially Protected - Default
## 592        5188    Partially Protected - Default
## 593        5208    Partially Protected - Default
## 594        5210    Partially Protected - Default
## 595        5210                           Spoken
## 596        5211    Partially Protected - Default
## 597        5216                     Good Article
## 598        5218                           Spoken
## 599        5222    Partially Protected - Default
## 600        5224                     Good Article
## 601        5233                     Good Article
## 602        5233    Partially Protected - Default
## 603        5236    Partially Protected - Default
## 604        5238    Partially Protected - Default
## 605        5253    Partially Protected - Default
## 606        5278                           Spoken
## 607        5299                     Good Article
## 608        5299    Partially Protected - Default
## 609        5303    Partially Protected - Default
## 610        5309    Partially Protected - Default
## 611        5314 Partially Protected - Autoreview
## 612        5321    Partially Protected - Default
## 613        5326    Partially Protected - Default
## 614        5341    Partially Protected - Default
## 615        5346    Partially Protected - Default
## 616        5369                     Good Article
## 617        5374                     Good Article
## 618        5374    Partially Protected - Default
## 619        5376                           Spoken
## 620        5382    Partially Protected - Default
## 621        5387                     Good Article
## 622        5397    Partially Protected - Default
## 623        5400    Partially Protected - Default
## 624        5405                     Good Article
## 625        5405    Partially Protected - Default
## 626        5407    Partially Protected - Default
## 627        5408                 Featured Article
## 628        5416 Partially Protected - Autoreview
## 629        5418 Partially Protected - Autoreview
## 630        5419    Partially Protected - Default
## 631        5447                 Featured Article
## 632        5488                 Featured Article
## 633        5489    Partially Protected - Default
## 634        5520    Partially Protected - Default
## 635        5521    Partially Protected - Default
## 636        5522    Partially Protected - Default
## 637        5524    Partially Protected - Default
## 638        5525    Partially Protected - Default
## 639        5526    Partially Protected - Default
## 640        5527    Partially Protected - Default
## 641        5528    Partially Protected - Default
## 642        5530    Partially Protected - Default
## 643        5551    Partially Protected - Default
## 644        5573                     Good Article
## 645        5573    Partially Protected - Default
## 646        5575                     Good Article
## 647        5576                     Good Article
## 648        5577                     Good Article
## 649        5593    Partially Protected - Default
## 650        5604    Partially Protected - Default
## 651        5620    Partially Protected - Default
## 652        5635    Partially Protected - Default
## 653        5641                           Spoken
## 654        5645                     Good Article
## 655        5648    Partially Protected - Default
## 656        5650                     Good Article
## 657        5650 Partially Protected - Autoreview
## 658        5654                 Featured Article
## 659        5655                 Featured Article
## 660        5655    Partially Protected - Default
## 661        5658    Partially Protected - Default
## 662        5659    Partially Protected - Default
## 663        5664                     Good Article
## 664        5667                     Good Article
## 665        5667    Partially Protected - Default
## 666        5668                     Good Article
## 667        5668    Partially Protected - Default
## 668        5669                     Good Article
## 669        5672                     Good Article
## 670        5675                     Good Article
## 671        5676                 Featured Article
## 672        5677                     Good Article
## 673        5703                           Spoken
## 674        5731 Partially Protected - Autoreview
## 675        5738                     Good Article
## 676        5753    Partially Protected - Default
## 677        5760    Partially Protected - Default
## 678        5764                 Featured Article
## 679        5764    Partially Protected - Default
## 680        5780                 Featured Article
## 681        5780 Partially Protected - Autoreview
## 682        5785    Partially Protected - Default
## 683        5788                 Featured Article
## 684        5802                           Spoken
## 685        5813    Partially Protected - Default
## 686        5813                           Spoken
## 687        5820    Partially Protected - Default
## 688        5823    Partially Protected - Default
## 689        5866                     Good Article
## 690        5870                     Good Article
## 691        5879                 Featured Article
## 692        5879                           Spoken
## 693        5884    Partially Protected - Default
## 694        5902    Partially Protected - Default
## 695        5906 Partially Protected - Autoreview
## 696        5910    Partially Protected - Default
## 697        5921    Partially Protected - Default
## 698        5930 Partially Protected - Autoreview
## 699        5932 Partially Protected - Autoreview
## 700        5935 Partially Protected - Autoreview
## 701        5935    Partially Protected - Default
## 702        5935                           Spoken
## 703        5951                 Featured Article
## 704        5953    Partially Protected - Default
## 705        5960                     Good Article
## 706        5962                     Good Article
## 707        5962 Partially Protected - Autoreview
## 708        5985    Partially Protected - Default
## 709        5987    Partially Protected - Default
## 710        5995    Partially Protected - Default
## 711        5999                     Good Article
## 712        5999 Partially Protected - Autoreview
## 713        6015    Partially Protected - Default
## 714        6059    Partially Protected - Default
## 715        6059                           Spoken
## 716        6077    Partially Protected - Default
## 717        6077                           Spoken
## 718        6087    Partially Protected - Default
## 719        6089    Partially Protected - Default
## 720        6095    Partially Protected - Default
## 721        6112    Partially Protected - Default
## 722        6115                           Spoken
## 723        6125 Partially Protected - Autoreview
## 724        6195                 Featured Article
## 725        6207    Partially Protected - Default
## 726        6219                 Featured Article
## 727        6220    Partially Protected - Default
## 728        6223                     Good Article
## 729        6226                 Featured Article
## 730        6235                 Featured Article
## 731        6235    Partially Protected - Default
## 732        6237    Partially Protected - Default
## 733        6246    Partially Protected - Default
## 734        6299    Partially Protected - Default
## 735        6310                     Good Article
## 736        6311                           Spoken
## 737        6343                     Good Article
## 738        6348                     Good Article
## 739        6354                           Spoken
## 740        6365                           Spoken
## 741        6366                 Featured Article
## 742        6367                 Featured Article
## 743        6420                 Featured Article
## 744        6424                 Featured Article
## 745        6427                     Good Article
## 746        6432                 Featured Article
## 747        6433                     Good Article
## 748        6446                     Good Article
## 749        6449    Partially Protected - Default
## 750        6464    Partially Protected - Default
## 751        6466    Partially Protected - Default
## 752        6517 Partially Protected - Autoreview
## 753        6520                     Good Article
## 754        6520 Partially Protected - Autoreview
## 755        6524                     Good Article
## 756        6546    Partially Protected - Default
## 757        6548    Partially Protected - Default
## 758        6576    Partially Protected - Default
## 759        6598 Partially Protected - Autoreview
## 760        6610                 Featured Article
## 761        6611    Partially Protected - Default
## 762        6614                 Featured Article
## 763        6621                     Good Article
## 764        6629                 Featured Article
## 765        6641                 Featured Article
## 766        6641                           Spoken
## 767        6644    Partially Protected - Default
## 768        6654    Partially Protected - Default
## 769        6666                     Good Article
## 770        6678                     Good Article
## 771        6678    Partially Protected - Default
## 772        6678                           Spoken
## 773        6685    Partially Protected - Default
## 774        6690    Partially Protected - Default
## 775        6699    Partially Protected - Default
## 776        6710                     Good Article
## 777        6719                     Good Article
## 778        6721                     Good Article
## 779        6725                 Featured Article
## 780        6736                     Good Article
## 781        6742 Partially Protected - Autoreview
## 782        6749    Partially Protected - Default
## 783        6751                 Featured Article
## 784        6771                           Spoken
## 785        6776                     Good Article
## 786        6778                 Featured Article
## 787        6780    Partially Protected - Default
## 788        6781                     Good Article
## 789        6788                     Good Article
## 790        6794                 Featured Article
## 791        6794                           Spoken
## 792        6799                     Good Article
## 793        6822    Partially Protected - Default
## 794        6849                     Good Article
## 795        6851                           Spoken
## 796        6852                     Good Article
## 797        6868    Partially Protected - Default
## 798        6875                     Good Article
## 799        6880 Partially Protected - Autoreview
## 800        6882    Partially Protected - Default
## 801        6884                     Good Article
## 802        6884    Partially Protected - Default
## 803        6886                           Spoken
## 804        6972    Partially Protected - Default
## 805        6984    Partially Protected - Default
## 806        6993                           Spoken
## 807        7012                 Featured Article
## 808        7037    Partially Protected - Default
## 809        7044                     Good Article
## 810        7045                     Good Article
## 811        7053                 Featured Article
## 812        7063    Partially Protected - Default
## 813        7085    Partially Protected - Default
## 814        7089    Partially Protected - Default
## 815        7165    Partially Protected - Default
## 816        7175                     Good Article
## 817        7218    Partially Protected - Default
## 818        7227                 Featured Article
## 819        7235                 Featured Article
## 820        7236                     Good Article
## 821        7239                 Featured Article
## 822        7256    Partially Protected - Default
## 823        7283                           Spoken
## 824        7342                     Good Article
## 825        7388    Partially Protected - Default
## 826        7389    Partially Protected - Default
## 827        7426                 Featured Article
## 828        7426    Partially Protected - Default
## 829        7431 Partially Protected - Autoreview
## 830        7463    Partially Protected - Default
## 831        7473                 Featured Article
## 832        7473    Partially Protected - Default
## 833        7473                           Spoken
## 834        7476    Partially Protected - Default
## 835        7505    Partially Protected - Default
## 836        7566                 Featured Article
## 837        7569    Partially Protected - Default
## 838        7591    Partially Protected - Default
## 839        7593    Partially Protected - Default
## 840        7632                     Good Article
## 841        7652                 Featured Article
## 842        7701    Partially Protected - Default
## 843        7708                 Featured Article
## 844        7712                     Good Article
## 845        7738    Partially Protected - Default
## 846        7819                     Good Article
## 847        7819    Partially Protected - Default
## 848        7840                 Featured Article
## 849        7853                     Good Article
## 850        7858    Partially Protected - Default
## 851        7867    Partially Protected - Default
## 852        7883                     Good Article
## 853        7885    Partially Protected - Default
## 854        7893    Partially Protected - Default
## 855        7921                     Good Article
## 856        7933                     Good Article
## 857        7940                 Featured Article
## 858        7940                           Spoken
## 859        7950                           Spoken
## 860        7955                 Featured Article
## 861        7955    Partially Protected - Default
## 862        7955                           Spoken
## 863        7959 Partially Protected - Autoreview
## 864        7973                     Good Article
## 865        8029                 Featured Article
## 866        8060    Partially Protected - Default
## 867        8072 Partially Protected - Autoreview
## 868        8081                     Good Article
## 869        8082                 Featured Article
## 870        8082    Partially Protected - Default
## 871        8083                     Good Article
## 872        8083    Partially Protected - Default
## 873        8090                     Good Article
## 874        8102                     Good Article
## 875        8121    Partially Protected - Default
## 876        8123    Partially Protected - Default
## 877        8137 Partially Protected - Autoreview
## 878        8144 Partially Protected - Autoreview
## 879        8145 Partially Protected - Autoreview
## 880        8194 Partially Protected - Autoreview
## 881        8196    Partially Protected - Default
## 882        8196                           Spoken
## 883        8198 Partially Protected - Autoreview
## 884        8204 Partially Protected - Autoreview
## 885        8209    Partially Protected - Default
## 886        8209                           Spoken
## 887        8218                           Spoken
## 888        8219 Partially Protected - Autoreview
## 889        8221    Partially Protected - Default
## 890        8222                     Good Article
## 891        8241                     Good Article
## 892        8242                     Good Article
## 893        8253                     Good Article
## 894        8270 Partially Protected - Autoreview
## 895        8288                 Featured Article
## 896        8288    Partially Protected - Default
## 897        8288                           Spoken
## 898        8303                     Good Article
## 899        8303    Partially Protected - Default
## 900        8305                     Good Article
## 901        8307                     Good Article
## 902        8311                 Featured Article
## 903        8311    Partially Protected - Default
## 904        8311                           Spoken
## 905        8322 Partially Protected - Autoreview
## 906        8327                     Good Article
## 907        8334 Partially Protected - Autoreview
## 908        8352 Partially Protected - Autoreview
## 909        8353 Partially Protected - Autoreview
## 910        8354 Partially Protected - Autoreview
## 911        8355 Partially Protected - Autoreview
## 912        8356 Partially Protected - Autoreview
## 913        8357 Partially Protected - Autoreview
## 914        8359 Partially Protected - Autoreview
## 915        8360 Partially Protected - Autoreview
## 916        8364                     Good Article
## 917        8389                 Featured Article
## 918        8389    Partially Protected - Default
## 919        8389                           Spoken
## 920        8396 Partially Protected - Autoreview
## 921        8418                 Featured Article
## 922        8420                 Featured Article
## 923        8420    Partially Protected - Default
## 924        8429    Partially Protected - Default
## 925        8452 Partially Protected - Autoreview
## 926        8463                     Good Article
## 927        8484                     Good Article
## 928        8485 Partially Protected - Autoreview
## 929        8520                 Featured Article
## 930        8522                     Good Article
## 931        8530    Partially Protected - Default
## 932        8531    Partially Protected - Default
## 933        8543                 Featured Article
## 934        8543    Partially Protected - Default
## 935        8551    Partially Protected - Default
## 936        8556    Partially Protected - Default
## 937        8577    Partially Protected - Default
## 938        8580                 Featured Article
## 939        8586                     Good Article
## 940        8586                           Spoken
## 941        8589 Partially Protected - Autoreview
## 942        8592                 Featured Article
## 943        8599                     Good Article
## 944        8618    Partially Protected - Default
## 945        8633 Partially Protected - Autoreview
## 946        8642                     Good Article
## 947        8677 Partially Protected - Autoreview
## 948        8699                     Good Article
## 949        8714 Partially Protected - Autoreview
## 950        8715                 Featured Article
## 951        8728 Partially Protected - Autoreview
## 952        8781                     Good Article
## 953        8783                     Good Article
## 954        8786                 Featured Article
## 955        8799                 Featured Article
## 956        8799                           Spoken
## 957        8827                           Spoken
## 958        8832    Partially Protected - Default
## 959        8835    Partially Protected - Default
## 960        8838                     Good Article
## 961        8848 Partially Protected - Autoreview
## 962        8849 Partially Protected - Autoreview
## 963        8850 Partially Protected - Autoreview
## 964        8851 Partially Protected - Autoreview
## 965        8852 Partially Protected - Autoreview
## 966        8855    Partially Protected - Default
## 967        8893 Partially Protected - Autoreview
## 968        8958                     Good Article
## 969        9029    Partially Protected - Default
## 970        9047    Partially Protected - Default
## 971        9055    Partially Protected - Default
## 972        9061    Partially Protected - Default
## 973        9092    Partially Protected - Default
## 974        9105 Partially Protected - Autoreview
## 975        9139                     Good Article
## 976        9139    Partially Protected - Default
## 977        9146    Partially Protected - Default
## 978        9152    Partially Protected - Default
## 979        9166    Partially Protected - Default
## 980        9175                           Spoken
## 981        9181    Partially Protected - Default
## 982        9185                 Featured Article
## 983        9185    Partially Protected - Default
## 984        9191                 Featured Article
## 985        9191    Partially Protected - Default
## 986        9192                 Featured Article
## 987        9192    Partially Protected - Default
## 988        9200                 Featured Article
## 989        9200    Partially Protected - Default
## 990        9201                 Featured Article
## 991        9201    Partially Protected - Default
## 992        9203                 Featured Article
## 993        9203    Partially Protected - Default
## 994        9205                 Featured Article
## 995        9205    Partially Protected - Default
## 996        9213                 Featured Article
## 997        9213    Partially Protected - Default
## 998        9215                 Featured Article
## 999        9215    Partially Protected - Default
## 1000       9215                           Spoken
## 1001       9221    Partially Protected - Default
## 1002       9223    Partially Protected - Default
## 1003       9228                 Featured Article
## 1004       9228    Partially Protected - Default
## 1005       9228                           Spoken
## 1006       9232    Partially Protected - Default
## 1007       9236                 Featured Article
## 1008       9236    Partially Protected - Default
## 1009       9236                           Spoken
## 1010       9239    Partially Protected - Default
## 1011       9248                           Spoken
## 1012       9253    Partially Protected - Default
## 1013       9257                 Featured Article
## 1014       9262                     Good Article
## 1015       9264                     Good Article
## 1016       9279                 Featured Article
## 1017       9279    Partially Protected - Default
## 1018       9288                 Featured Article
## 1019       9288    Partially Protected - Default
## 1020       9294                     Good Article
## 1021       9316                     Good Article
## 1022       9316    Partially Protected - Default
## 1023       9317    Partially Protected - Default
## 1024       9322    Partially Protected - Default
## 1025       9323    Partially Protected - Default
## 1026       9325    Partially Protected - Default
## 1027       9330    Partially Protected - Default
## 1028       9331    Partially Protected - Default
## 1029       9333                     Good Article
## 1030       9334    Partially Protected - Default
## 1031       9354 Partially Protected - Autoreview
## 1032       9356    Partially Protected - Default
## 1033       9428                 Featured Article
## 1034       9428    Partially Protected - Default
## 1035       9430                 Featured Article
## 1036       9430    Partially Protected - Default
## 1037       9431                 Featured Article
## 1038       9431    Partially Protected - Default
## 1039       9437                 Featured Article
## 1040       9437    Partially Protected - Default
## 1041       9438                 Featured Article
## 1042       9438    Partially Protected - Default
## 1043       9439                 Featured Article
## 1044       9439    Partially Protected - Default
## 1045       9440                 Featured Article
## 1046       9440    Partially Protected - Default
## 1047       9441                     Good Article
## 1048       9442                 Featured Article
## 1049       9442    Partially Protected - Default
## 1050       9443                 Featured Article
## 1051       9443    Partially Protected - Default
## 1052       9444                 Featured Article
## 1053       9444    Partially Protected - Default
## 1054       9467    Partially Protected - Default
## 1055       9467                           Spoken
## 1056       9472                     Good Article
## 1057       9476                 Featured Article
## 1058       9477                     Good Article
## 1059       9479                     Good Article
## 1060       9508 Partially Protected - Autoreview
## 1061       9508    Partially Protected - Default
## 1062       9516 Partially Protected - Autoreview
## 1063       9548                 Featured Article
## 1064       9548    Partially Protected - Default
## 1065       9548                           Spoken
## 1066       9549                 Featured Article
## 1067       9549    Partially Protected - Default
## 1068       9549                           Spoken
## 1069       9550                     Good Article
## 1070       9550    Partially Protected - Default
## 1071       9572                     Good Article
## 1072       9576                           Spoken
## 1073       9577                     Good Article
## 1074       9578                           Spoken
## 1075       9581                 Featured Article
## 1076       9582                     Good Article
## 1077       9587    Partially Protected - Default
## 1078       9597                     Good Article
## 1079       9603    Partially Protected - Default
## 1080       9628                     Good Article
## 1081       9630                     Good Article
## 1082       9633                     Good Article
## 1083       9649    Partially Protected - Default
## 1084       9696    Partially Protected - Default
## 1085       9732    Partially Protected - Default
## 1086       9736                     Good Article
## 1087       9736    Partially Protected - Default
## 1088       9764                 Featured Article
## 1089       9764    Partially Protected - Default
## 1090       9770    Partially Protected - Default
## 1091       9833                           Spoken
## 1092       9835                     Good Article
## 1093       9845                           Spoken
## 1094       9888                     Good Article
## 1095       9896                     Good Article
## 1096       9896    Partially Protected - Default
## 1097       9927                     Good Article
## 1098       9941                 Featured Article
## 1099       9942    Partially Protected - Default
## 1100       9974                 Featured Article
## 1101       9995 Partially Protected - Autoreview
## 1102      10024    Partially Protected - Default
## 1103      10025                     Good Article
## 1104      10025    Partially Protected - Default
## 1105      10027                     Good Article
## 1106      10049    Partially Protected - Default
## 1107      10085                 Featured Article
## 1108      10093                     Good Article
## 1109      10101                     Good Article
## 1110      10106    Partially Protected - Default
## 1111      10115    Partially Protected - Default
## 1112      10128                 Featured Article
## 1113      10128    Partially Protected - Default
## 1114      10128                           Spoken
## 1115      10134    Partially Protected - Default
## 1116      10137    Partially Protected - Default
## 1117      10156                 Featured Article
## 1118      10156    Partially Protected - Default
## 1119      10156                           Spoken
## 1120      10233    Partially Protected - Default
## 1121      10243    Partially Protected - Default
## 1122      10245                 Featured Article
## 1123      10258                 Featured Article
## 1124      10264                 Featured Article
## 1125      10287    Partially Protected - Default
## 1126      10293                     Good Article
## 1127      10374    Partially Protected - Default
## 1128      10377                 Featured Article
## 1129      10384                     Good Article
## 1130      10511                     Good Article
## 1131      10532    Partially Protected - Default
## 1132      10534    Partially Protected - Default
## 1133      10537    Partially Protected - Default
## 1134      10545    Partially Protected - Default
## 1135      10551                           Spoken
## 1136      10553    Partially Protected - Default
## 1137      10568                 Featured Article
## 1138      10568    Partially Protected - Default
## 1139      10568                           Spoken
## 1140      10590                 Featured Article
## 1141      10590    Partially Protected - Default
## 1142      10590                           Spoken
## 1143      10603                     Good Article
## 1144      10617                           Spoken
## 1145      10619    Partially Protected - Default
## 1146      10627    Partially Protected - Default
## 1147      10635    Partially Protected - Default
## 1148      10642                     Good Article
## 1149      10646    Partially Protected - Default
## 1150      10672                 Featured Article
## 1151      10686                 Featured Article
## 1152      10697                 Featured Article
## 1153      10697    Partially Protected - Default
## 1154      10707 Partially Protected - Autoreview
## 1155      10802                 Featured Article
## 1156      10819 Partially Protected - Autoreview
## 1157      10821                 Featured Article
## 1158      10822                     Good Article
## 1159      10823                 Featured Article
## 1160      10823    Partially Protected - Default
## 1161      10831 Partially Protected - Autoreview
## 1162      10834    Partially Protected - Default
## 1163      10843    Partially Protected - Default
## 1164      10846 Partially Protected - Autoreview
## 1165      10858                 Featured Article
## 1166      10882 Partially Protected - Autoreview
## 1167      10885                     Good Article
## 1168      10885    Partially Protected - Default
## 1169      10893    Partially Protected - Default
## 1170      10901                     Good Article
## 1171      10902                     Good Article
## 1172      10902    Partially Protected - Default
## 1173      10927    Partially Protected - Default
## 1174      10927                           Spoken
## 1175      10930 Partially Protected - Autoreview
## 1176      10933                           Spoken
## 1177      10934                           Spoken
## 1178      10936 Partially Protected - Autoreview
## 1179      10937 Partially Protected - Autoreview
## 1180      10958    Partially Protected - Default
## 1181      10972                     Good Article
## 1182      10974                 Featured Article
## 1183      10979                     Good Article
## 1184      10979    Partially Protected - Default
## 1185      10979                           Spoken
## 1186      10991 Partially Protected - Autoreview
## 1187      11002                     Good Article
## 1188      11006 Partially Protected - Autoreview
## 1189      11007 Partially Protected - Autoreview
## 1190      11008 Partially Protected - Autoreview
## 1191      11009 Partially Protected - Autoreview
## 1192      11010 Partially Protected - Autoreview
## 1193      11020 Partially Protected - Autoreview
## 1194      11021 Partially Protected - Autoreview
## 1195      11025 Partially Protected - Autoreview
## 1196      11033    Partially Protected - Default
## 1197      11042    Partially Protected - Default
## 1198      11054    Partially Protected - Default
## 1199      11059    Partially Protected - Default
## 1200      11062    Partially Protected - Default
## 1201      11063 Partially Protected - Autoreview
## 1202      11104    Partially Protected - Default
## 1203      11119 Partially Protected - Autoreview
## 1204      11121    Partially Protected - Default
## 1205      11127    Partially Protected - Default
## 1206      11141 Partially Protected - Autoreview
## 1207      11145    Partially Protected - Default
## 1208      11154    Partially Protected - Default
## 1209      11156 Partially Protected - Autoreview
## 1210      11158 Partially Protected - Autoreview
## 1211      11164 Partially Protected - Autoreview
## 1212      11166                     Good Article
## 1213      11166    Partially Protected - Default
## 1214      11170 Partially Protected - Autoreview
## 1215      11181                     Good Article
## 1216      11184 Partially Protected - Autoreview
## 1217      11185                     Good Article
## 1218      11185    Partially Protected - Default
## 1219      11188    Partially Protected - Default
## 1220      11225 Partially Protected - Autoreview
## 1221      11227                     Good Article
## 1222      11227    Partially Protected - Default
## 1223      11232                     Good Article
## 1224      11236    Partially Protected - Default
## 1225      11240    Partially Protected - Default
## 1226      11242                 Featured Article
## 1227      11250                 Featured Article
## 1228      11250                           Spoken
## 1229      11258    Partially Protected - Default
## 1230      11260    Partially Protected - Default
## 1231      11282                           Spoken
## 1232      11291    Partially Protected - Default
## 1233      11299    Partially Protected - Default
## 1234      11310 Partially Protected - Autoreview
## 1235      11311 Partially Protected - Autoreview
## 1236      11315                     Good Article
## 1237      11315    Partially Protected - Default
## 1238      11322 Partially Protected - Autoreview
## 1239      11323 Partially Protected - Autoreview
## 1240      11359 Partially Protected - Autoreview
## 1241      11360 Partially Protected - Autoreview
## 1242      11361 Partially Protected - Autoreview
## 1243      11362 Partially Protected - Autoreview
## 1244      11363 Partially Protected - Autoreview
## 1245      11370                 Featured Article
## 1246      11370    Partially Protected - Default
## 1247      11386    Partially Protected - Default
## 1248      11404    Partially Protected - Default
## 1249      11408                 Featured Article
## 1250      11408    Partially Protected - Default
## 1251      11422    Partially Protected - Default
## 1252      11447    Partially Protected - Default
## 1253      11482    Partially Protected - Default
## 1254      11492    Partially Protected - Default
## 1255      11504    Partially Protected - Default
## 1256      11508    Partially Protected - Default
## 1257      11562    Partially Protected - Default
## 1258      11579    Partially Protected - Default
## 1259      11579                           Spoken
## 1260      11593    Partially Protected - Default
## 1261      11595    Partially Protected - Default
## 1262      11642                     Good Article
## 1263      11660                     Good Article
## 1264      11686    Partially Protected - Default
## 1265      11696    Partially Protected - Default
## 1266      11759                 Featured Article
## 1267      11772                 Featured Article
## 1268      11820                 Featured Article
## 1269      11833                 Featured Article
## 1270      11833    Partially Protected - Default
## 1271      11833                           Spoken
## 1272      11840                 Featured Article
## 1273      11840    Partially Protected - Default
## 1274      11840                           Spoken
## 1275      11842                     Good Article
## 1276      11842    Partially Protected - Default
## 1277      11842                           Spoken
## 1278      11846    Partially Protected - Default
## 1279      11847                 Featured Article
## 1280      11847    Partially Protected - Default
## 1281      11847                           Spoken
## 1282      11857    Partially Protected - Default
## 1283      11858    Partially Protected - Default
## 1284      11867                 Featured Article
## 1285      11867    Partially Protected - Default
## 1286      11867                           Spoken
## 1287      11878    Partially Protected - Default
## 1288      11902 Partially Protected - Autoreview
## 1289      11906                 Featured Article
## 1290      11906    Partially Protected - Default
## 1291      11942                     Good Article
## 1292      11952 Partially Protected - Autoreview
## 1293      11955    Partially Protected - Default
## 1294      11955                           Spoken
## 1295      11968                     Good Article
## 1296      11968    Partially Protected - Default
## 1297      11968                           Spoken
## 1298      11973    Partially Protected - Default
## 1299      11978                     Good Article
## 1300      11978    Partially Protected - Default
## 1301      11978                           Spoken
## 1302      11985    Partially Protected - Default
## 1303      11986    Partially Protected - Default
## 1304      12024                 Featured Article
## 1305      12047    Partially Protected - Default
## 1306      12049    Partially Protected - Default
## 1307      12051    Partially Protected - Default
## 1308      12052    Partially Protected - Default
## 1309      12053    Partially Protected - Default
## 1310      12054    Partially Protected - Default
## 1311      12055    Partially Protected - Default
## 1312      12056    Partially Protected - Default
## 1313      12103    Partially Protected - Default
## 1314      12108    Partially Protected - Default
## 1315      12118 Partially Protected - Autoreview
## 1316      12210    Partially Protected - Default
## 1317      12215                 Featured Article
## 1318      12216                 Featured Article
## 1319      12224    Partially Protected - Default
## 1320      12231 Partially Protected - Autoreview
## 1321      12241                     Good Article
## 1322      12242                 Featured Article
## 1323      12255    Partially Protected - Default
## 1324      12257    Partially Protected - Default
## 1325      12266                 Featured Article
## 1326      12273    Partially Protected - Default
## 1327      12274    Partially Protected - Default
## 1328      12277                     Good Article
## 1329      12286                     Good Article
## 1330      12301                     Good Article
## 1331      12336    Partially Protected - Default
## 1332      12339    Partially Protected - Default
## 1333      12361 Partially Protected - Autoreview
## 1334      12370    Partially Protected - Default
## 1335      12383                     Good Article
## 1336      12383 Partially Protected - Autoreview
## 1337      12384                 Featured Article
## 1338      12384    Partially Protected - Default
## 1339      12385                     Good Article
## 1340      12386    Partially Protected - Default
## 1341      12394 Partially Protected - Autoreview
## 1342      12395    Partially Protected - Default
## 1343      12431 Partially Protected - Autoreview
## 1344      12436    Partially Protected - Default
## 1345      12446    Partially Protected - Default
## 1346      12454                 Featured Article
## 1347      12457                     Good Article
## 1348      12460                     Good Article
## 1349      12460    Partially Protected - Default
## 1350      12463 Partially Protected - Autoreview
## 1351      12465                     Good Article
## 1352      12478                     Good Article
## 1353      12493                     Good Article
## 1354      12495                 Featured Article
## 1355      12495    Partially Protected - Default
## 1356      12505                     Good Article
## 1357      12514    Partially Protected - Default
## 1358      12520 Partially Protected - Autoreview
## 1359      12530    Partially Protected - Default
## 1360      12546    Partially Protected - Default
## 1361      12551    Partially Protected - Default
## 1362      12552                 Featured Article
## 1363      12558                 Featured Article
## 1364      12558    Partially Protected - Default
## 1365      12562    Partially Protected - Default
## 1366      12566                           Spoken
## 1367      12572                 Featured Article
## 1368      12581    Partially Protected - Default
## 1369      12655                 Featured Article
## 1370      12655    Partially Protected - Default
## 1371      12656                           Spoken
## 1372      12663    Partially Protected - Default
## 1373      12688 Partially Protected - Autoreview
## 1374      12707                 Featured Article
## 1375      12707    Partially Protected - Default
## 1376      12713    Partially Protected - Default
## 1377      12717                 Featured Article
## 1378      12717    Partially Protected - Default
## 1379      12728                     Good Article
## 1380      12731                 Featured Article
## 1381      12787 Partially Protected - Autoreview
## 1382      12804    Partially Protected - Default
## 1383      12840    Partially Protected - Default
## 1384      12842    Partially Protected - Default
## 1385      12848                     Good Article
## 1386      12855                 Featured Article
## 1387      12866                 Featured Article
## 1388      12915                     Good Article
## 1389      12958                     Good Article
## 1390      12959                           Spoken
## 1391      12997    Partially Protected - Default
## 1392      12999                           Spoken
## 1393      13021                     Good Article
## 1394      13022    Partially Protected - Default
## 1395      13024                     Good Article
## 1396      13030    Partially Protected - Default
## 1397      13034                     Good Article
## 1398      13076                     Good Article
## 1399      13076    Partially Protected - Default
## 1400      13089                     Good Article
## 1401      13095    Partially Protected - Default
## 1402      13120                     Good Article
## 1403      13131                     Good Article
## 1404      13137                     Good Article
## 1405      13148                     Good Article
## 1406      13156                 Featured Article
## 1407      13159                 Featured Article
## 1408      13177    Partially Protected - Default
## 1409      13179    Partially Protected - Default
## 1410      13181    Partially Protected - Default
## 1411      13187    Partially Protected - Default
## 1412      13191    Partially Protected - Default
## 1413      13192    Partially Protected - Default
## 1414      13208 Partially Protected - Autoreview
## 1415      13219                     Good Article
## 1416      13225    Partially Protected - Default
## 1417      13237                     Good Article
## 1418      13255                 Featured Article
## 1419      13255    Partially Protected - Default
## 1420      13255                           Spoken
## 1421      13256                 Featured Article
## 1422      13256    Partially Protected - Default
## 1423      13256                           Spoken
## 1424      13265    Partially Protected - Default
## 1425      13269    Partially Protected - Default
## 1426      13270    Partially Protected - Default
## 1427      13312                     Good Article
## 1428      13342 Partially Protected - Autoreview
## 1429      13343 Partially Protected - Autoreview
## 1430      13344 Partially Protected - Autoreview
## 1431      13351 Partially Protected - Autoreview
## 1432      13353 Partially Protected - Autoreview
## 1433      13354 Partially Protected - Autoreview
## 1434      13355 Partially Protected - Autoreview
## 1435      13356 Partially Protected - Autoreview
## 1436      13357 Partially Protected - Autoreview
## 1437      13359 Partially Protected - Autoreview
## 1438      13361 Partially Protected - Autoreview
## 1439      13362 Partially Protected - Autoreview
## 1440      13363 Partially Protected - Autoreview
## 1441      13364 Partially Protected - Autoreview
## 1442      13366 Partially Protected - Autoreview
## 1443      13371    Partially Protected - Default
## 1444      13394    Partially Protected - Default
## 1445      13404                     Good Article
## 1446      13404    Partially Protected - Default
## 1447      13433                     Good Article
## 1448      13436                     Good Article
## 1449      13436    Partially Protected - Default
## 1450      13443 Partially Protected - Autoreview
## 1451      13466                     Good Article
## 1452      13472    Partially Protected - Default
## 1453      13478    Partially Protected - Default
## 1454      13484 Partially Protected - Autoreview
## 1455      13486                 Featured Article
## 1456      13487                     Good Article
## 1457      13502                           Spoken
## 1458      13503                           Spoken
## 1459      13504                           Spoken
## 1460      13519    Partially Protected - Default
## 1461      13533    Partially Protected - Default
## 1462      13543    Partially Protected - Default
## 1463      13554                 Featured Article
## 1464      13554                           Spoken
## 1465      13555 Partially Protected - Autoreview
## 1466      13602                 Featured Article
## 1467      13625                 Featured Article
## 1468      13632    Partially Protected - Default
## 1469      13632                           Spoken
## 1470      13633 Partially Protected - Autoreview
## 1471      13645                     Good Article
## 1472      13645    Partially Protected - Default
## 1473      13653                     Good Article
## 1474      13666                     Good Article
## 1475      13682 Partially Protected - Autoreview
## 1476      13692    Partially Protected - Default
## 1477      13717                     Good Article
## 1478      13729    Partially Protected - Default
## 1479      13738    Partially Protected - Default
## 1480      13738                           Spoken
## 1481      13743 Partially Protected - Autoreview
## 1482      13764                     Good Article
## 1483      13768                 Featured Article
## 1484      13770    Partially Protected - Default
## 1485      13781    Partially Protected - Default
## 1486      13782    Partially Protected - Default
## 1487      13808    Partially Protected - Default
## 1488      13808                           Spoken
## 1489      13815    Partially Protected - Default
## 1490      13820                     Good Article
## 1491      13825                     Good Article
## 1492      13825    Partially Protected - Default
## 1493      13831    Partially Protected - Default
## 1494      13841                     Good Article
## 1495      13851    Partially Protected - Default
## 1496      13855    Partially Protected - Default
## 1497      13869                 Featured Article
## 1498      13872                 Featured Article
## 1499      13913    Partially Protected - Default
## 1500      13919                     Good Article
## 1501      13919    Partially Protected - Default
## 1502      13956                     Good Article
## 1503      13959    Partially Protected - Default
## 1504      13964                           Spoken
## 1505      13981    Partially Protected - Default
## 1506      13982                     Good Article
## 1507      13982 Partially Protected - Autoreview
## 1508      14013    Partially Protected - Default
## 1509      14018                           Spoken
## 1510      14034    Partially Protected - Default
## 1511      14059                           Spoken
## 1512      14092    Partially Protected - Default
## 1513      14115                           Spoken
## 1514      14119                     Good Article
## 1515      14131    Partially Protected - Default
## 1516      14135                           Spoken
## 1517      14155                     Good Article
## 1518      14170                     Good Article
## 1519      14170    Partially Protected - Default
## 1520      14179                 Featured Article
## 1521      14183    Partially Protected - Default
## 1522      14186    Partially Protected - Default
## 1523      14187                     Good Article
## 1524      14187    Partially Protected - Default
## 1525      14222    Partially Protected - Default
## 1526      14222                           Spoken
## 1527      14227                 Featured Article
## 1528      14229    Partially Protected - Default
## 1529      14230                 Featured Article
## 1530      14230    Partially Protected - Default
## 1531      14254    Partially Protected - Default
## 1532      14280                     Good Article
## 1533      14288                 Featured Article
## 1534      14299    Partially Protected - Default
## 1535      14300    Partially Protected - Default
## 1536      14308                 Featured Article
## 1537      14308 Partially Protected - Autoreview
## 1538      14314                     Good Article
## 1539      14317                     Good Article
## 1540      14331                     Good Article
## 1541      14337 Partially Protected - Autoreview
## 1542      14345    Partially Protected - Default
## 1543      14345                           Spoken
## 1544      14355    Partially Protected - Default
## 1545      14358                     Good Article
## 1546      14363    Partially Protected - Default
## 1547      14376    Partially Protected - Default
## 1548      14388 Partially Protected - Autoreview
## 1549      14410 Partially Protected - Autoreview
## 1550      14422                 Featured Article
## 1551      14422    Partially Protected - Default
## 1552      14457 Partially Protected - Autoreview
## 1553      14457                           Spoken
## 1554      14458                     Good Article
## 1555      14474                     Good Article
## 1556      14478    Partially Protected - Default
## 1557      14514    Partially Protected - Default
## 1558      14531 Partially Protected - Autoreview
## 1559      14533                 Featured Article
## 1560      14533    Partially Protected - Default
## 1561      14539    Partially Protected - Default
## 1562      14554 Partially Protected - Autoreview
## 1563      14560    Partially Protected - Default
## 1564      14579    Partially Protected - Default
## 1565      14594    Partially Protected - Default
## 1566      14605    Partially Protected - Default
## 1567      14627                     Good Article
## 1568      14627    Partially Protected - Default
## 1569      14627                           Spoken
## 1570      14631    Partially Protected - Default
## 1571      14653    Partially Protected - Default
## 1572      14675                 Featured Article
## 1573      14686    Partially Protected - Default
## 1574      14686                           Spoken
## 1575      14687    Partially Protected - Default
## 1576      14693    Partially Protected - Default
## 1577      14696    Partially Protected - Default
## 1578      14726    Partially Protected - Default
## 1579      14734                     Good Article
## 1580      14734    Partially Protected - Default
## 1581      14745    Partially Protected - Default
## 1582      14749                     Good Article
## 1583      14750                     Good Article
## 1584      14750 Partially Protected - Autoreview
## 1585      14752                 Featured Article
## 1586      14761                     Good Article
## 1587      14783    Partially Protected - Default
## 1588      14787                     Good Article
## 1589      14810    Partially Protected - Default
## 1590      14850 Partially Protected - Autoreview
## 1591      14870                     Good Article
## 1592      14914    Partially Protected - Default
## 1593      14919    Partially Protected - Default
## 1594      14921    Partially Protected - Default
## 1595      14929    Partially Protected - Default
## 1596      14931                           Spoken
## 1597      14932                           Spoken
## 1598      14958                 Featured Article
## 1599      14958 Partially Protected - Autoreview
## 1600      14975    Partially Protected - Default
## 1601      15003    Partially Protected - Default
## 1602      15004    Partially Protected - Default
## 1603      15022    Partially Protected - Default
## 1604      15033    Partially Protected - Default
## 1605      15043    Partially Protected - Default
## 1606      15044    Partially Protected - Default
## 1607      15049    Partially Protected - Default
## 1608      15051    Partially Protected - Default
## 1609      15095    Partially Protected - Default
## 1610      15116    Partially Protected - Default
## 1611      15123    Partially Protected - Default
## 1612      15155                 Featured Article
## 1613      15192                     Good Article
## 1614      15215    Partially Protected - Default
## 1615      15223    Partially Protected - Default
## 1616      15242                           Spoken
## 1617      15252                     Good Article
## 1618      15295                 Featured Article
## 1619      15295    Partially Protected - Default
## 1620      15307    Partially Protected - Default
## 1621      15308                     Good Article
## 1622      15311                 Featured Article
## 1623      15311    Partially Protected - Default
## 1624      15361    Partially Protected - Default
## 1625      15368                           Spoken
## 1626      15406    Partially Protected - Default
## 1627      15432    Partially Protected - Default
## 1628      15441                     Good Article
## 1629      15442                 Featured Article
## 1630      15454                     Good Article
## 1631      15533    Partially Protected - Default
## 1632      15546    Partially Protected - Default
## 1633      15554                 Featured Article
## 1634      15554    Partially Protected - Default
## 1635      15572    Partially Protected - Default
## 1636      15573                 Featured Article
## 1637      15573    Partially Protected - Default
## 1638      15600                 Featured Article
## 1639      15603    Partially Protected - Default
## 1640      15604                     Good Article
## 1641      15604    Partially Protected - Default
## 1642      15606    Partially Protected - Default
## 1643      15614    Partially Protected - Default
## 1644      15622    Partially Protected - Default
## 1645      15624    Partially Protected - Default
## 1646      15630    Partially Protected - Default
## 1647      15641    Partially Protected - Default
## 1648      15651    Partially Protected - Default
## 1649      15654 Partially Protected - Autoreview
## 1650      15655                           Spoken
## 1651      15658    Partially Protected - Default
## 1652      15660    Partially Protected - Default
## 1653      15660                           Spoken
## 1654      15668    Partially Protected - Default
## 1655      15715                           Spoken
## 1656      15736                 Featured Article
## 1657      15736 Partially Protected - Autoreview
## 1658      15745    Partially Protected - Default
## 1659      15755                     Good Article
## 1660      15764                     Good Article
## 1661      15777                     Good Article
## 1662      15777    Partially Protected - Default
## 1663      15782                     Good Article
## 1664      15782    Partially Protected - Default
## 1665      15787 Partially Protected - Autoreview
## 1666      15788 Partially Protected - Autoreview
## 1667      15789 Partially Protected - Autoreview
## 1668      15790 Partially Protected - Autoreview
## 1669      15791 Partially Protected - Autoreview
## 1670      15792 Partially Protected - Autoreview
## 1671      15793 Partially Protected - Autoreview
## 1672      15794 Partially Protected - Autoreview
## 1673      15795 Partially Protected - Autoreview
## 1674      15796 Partially Protected - Autoreview
## 1675      15797 Partially Protected - Autoreview
## 1676      15798 Partially Protected - Autoreview
## 1677      15799 Partially Protected - Autoreview
## 1678      15800 Partially Protected - Autoreview
## 1679      15801 Partially Protected - Autoreview
## 1680      15802 Partially Protected - Autoreview
## 1681      15803 Partially Protected - Autoreview
## 1682      15804 Partially Protected - Autoreview
## 1683      15805 Partially Protected - Autoreview
## 1684      15806 Partially Protected - Autoreview
## 1685      15809 Partially Protected - Autoreview
## 1686      15812 Partially Protected - Autoreview
## 1687      15813 Partially Protected - Autoreview
## 1688      15814 Partially Protected - Autoreview
## 1689      15815 Partially Protected - Autoreview
## 1690      15816 Partially Protected - Autoreview
## 1691      15817 Partially Protected - Autoreview
## 1692      15818 Partially Protected - Autoreview
## 1693      15819 Partially Protected - Autoreview
## 1694      15820 Partially Protected - Autoreview
## 1695      15823    Partially Protected - Default
## 1696      15825    Partially Protected - Default
## 1697      15831 Partially Protected - Autoreview
## 1698      15840    Partially Protected - Default
## 1699      15842 Partially Protected - Autoreview
## 1700      15843 Partially Protected - Autoreview
## 1701      15844 Partially Protected - Autoreview
## 1702      15845 Partially Protected - Autoreview
## 1703      15846 Partially Protected - Autoreview
## 1704      15847 Partially Protected - Autoreview
## 1705      15848 Partially Protected - Autoreview
## 1706      15849 Partially Protected - Autoreview
## 1707      15852                 Featured Article
## 1708      15852    Partially Protected - Default
## 1709      15854 Partially Protected - Autoreview
## 1710      15855 Partially Protected - Autoreview
## 1711      15856 Partially Protected - Autoreview
## 1712      15857 Partially Protected - Autoreview
## 1713      15858    Partially Protected - Default
## 1714      15860    Partially Protected - Default
## 1715      15861 Partially Protected - Autoreview
## 1716      15862 Partially Protected - Autoreview
## 1717      15863 Partially Protected - Autoreview
## 1718      15864 Partially Protected - Autoreview
## 1719      15865 Partially Protected - Autoreview
## 1720      15866 Partially Protected - Autoreview
## 1721      15872                 Featured Article
## 1722      15872    Partially Protected - Default
## 1723      15872                           Spoken
## 1724      15873 Partially Protected - Autoreview
## 1725      15874 Partially Protected - Autoreview
## 1726      15878 Partially Protected - Autoreview
## 1727      15881    Partially Protected - Default
## 1728      15883 Partially Protected - Autoreview
## 1729      15885    Partially Protected - Default
## 1730      15888 Partially Protected - Autoreview
## 1731      15892 Partially Protected - Autoreview
## 1732      15909    Partially Protected - Default
## 1733      15911 Partially Protected - Autoreview
## 1734      15912                 Featured Article
## 1735      15912    Partially Protected - Default
## 1736      15915                 Featured Article
## 1737      15919                     Good Article
## 1738      15919    Partially Protected - Default
## 1739      15920 Partially Protected - Autoreview
## 1740      15922 Partially Protected - Autoreview
## 1741      15924    Partially Protected - Default
## 1742      15924                           Spoken
## 1743      15930                 Featured Article
## 1744      15930    Partially Protected - Default
## 1745      15935 Partially Protected - Autoreview
## 1746      15936 Partially Protected - Autoreview
## 1747      15940 Partially Protected - Autoreview
## 1748      15941 Partially Protected - Autoreview
## 1749      15942                     Good Article
## 1750      15942    Partially Protected - Default
## 1751      15944    Partially Protected - Default
## 1752      15947 Partially Protected - Autoreview
## 1753      15950    Partially Protected - Default
## 1754      15950                           Spoken
## 1755      15954 Partially Protected - Autoreview
## 1756      15957                 Featured Article
## 1757      15957    Partially Protected - Default
## 1758      15968 Partially Protected - Autoreview
## 1759      15971 Partially Protected - Autoreview
## 1760      15980                 Featured Article
## 1761      15982 Partially Protected - Autoreview
## 1762      15986 Partially Protected - Autoreview
## 1763      15987 Partially Protected - Autoreview
## 1764      15988 Partially Protected - Autoreview
## 1765      15990 Partially Protected - Autoreview
## 1766      15992    Partially Protected - Default
## 1767      15996 Partially Protected - Autoreview
## 1768      16009 Partially Protected - Autoreview
## 1769      16011 Partially Protected - Autoreview
## 1770      16018 Partially Protected - Autoreview
## 1771      16022 Partially Protected - Autoreview
## 1772      16025 Partially Protected - Autoreview
## 1773      16026                 Featured Article
## 1774      16026    Partially Protected - Default
## 1775      16027                 Featured Article
## 1776      16027    Partially Protected - Default
## 1777      16040 Partially Protected - Autoreview
## 1778      16043    Partially Protected - Default
## 1779      16046                     Good Article
## 1780      16055    Partially Protected - Default
## 1781      16074                     Good Article
## 1782      16075 Partially Protected - Autoreview
## 1783      16076 Partially Protected - Autoreview
## 1784      16088 Partially Protected - Autoreview
## 1785      16089 Partially Protected - Autoreview
## 1786      16090 Partially Protected - Autoreview
## 1787      16091 Partially Protected - Autoreview
## 1788      16095                 Featured Article
## 1789      16095    Partially Protected - Default
## 1790      16099    Partially Protected - Default
## 1791      16106 Partially Protected - Autoreview
## 1792      16112 Partially Protected - Autoreview
## 1793      16118    Partially Protected - Default
## 1794      16134                 Featured Article
## 1795      16137                 Featured Article
## 1796      16142    Partially Protected - Default
## 1797      16143    Partially Protected - Default
## 1798      16143                           Spoken
## 1799      16175    Partially Protected - Default
## 1800      16179 Partially Protected - Autoreview
## 1801      16181 Partially Protected - Autoreview
## 1802      16191 Partially Protected - Autoreview
## 1803      16192 Partially Protected - Autoreview
## 1804      16193                 Featured Article
## 1805      16193    Partially Protected - Default
## 1806      16200                     Good Article
## 1807      16202 Partially Protected - Autoreview
## 1808      16203    Partially Protected - Default
## 1809      16208                 Featured Article
## 1810      16209                     Good Article
## 1811      16217                 Featured Article
## 1812      16217    Partially Protected - Default
## 1813      16217                           Spoken
## 1814      16224                     Good Article
## 1815      16228                     Good Article
## 1816      16228                           Spoken
## 1817      16237    Partially Protected - Default
## 1818      16240                     Good Article
## 1819      16243    Partially Protected - Default
## 1820      16252    Partially Protected - Default
## 1821      16267    Partially Protected - Default
## 1822      16289 Partially Protected - Autoreview
## 1823      16308 Partially Protected - Autoreview
## 1824      16321                     Good Article
## 1825      16324                     Good Article
## 1826      16324    Partially Protected - Default
## 1827      16326                     Good Article
## 1828      16329                     Good Article
## 1829      16382    Partially Protected - Default
## 1830      16383                     Good Article
## 1831      16408    Partially Protected - Default
## 1832      16415                     Good Article
## 1833      16415    Partially Protected - Default
## 1834      16419    Partially Protected - Default
## 1835      16425                 Featured Article
## 1836      16432                     Good Article
## 1837      16433    Partially Protected - Default
## 1838      16437                 Featured Article
## 1839      16457    Partially Protected - Default
## 1840      16472                     Good Article
## 1841      16494    Partially Protected - Default
## 1842      16506 Partially Protected - Autoreview
## 1843      16509                 Featured Article
## 1844      16509    Partially Protected - Default
## 1845      16550                 Featured Article
## 1846      16553 Partially Protected - Autoreview
## 1847      16578                 Featured Article
## 1848      16579                 Featured Article
## 1849      16590                     Good Article
## 1850      16593    Partially Protected - Default
## 1851      16596    Partially Protected - Default
## 1852      16597                     Good Article
## 1853      16597    Partially Protected - Default
## 1854      16599    Partially Protected - Default
## 1855      16603    Partially Protected - Default
## 1856      16604    Partially Protected - Default
## 1857      16606                     Good Article
## 1858      16607                     Good Article
## 1859      16619                     Good Article
## 1860      16642    Partially Protected - Default
## 1861      16707    Partially Protected - Default
## 1862      16716 Partially Protected - Autoreview
## 1863      16724    Partially Protected - Default
## 1864      16743                     Good Article
## 1865      16746 Partially Protected - Autoreview
## 1866      16747 Partially Protected - Autoreview
## 1867      16749    Partially Protected - Default
## 1868      16757    Partially Protected - Default
## 1869      16759    Partially Protected - Default
## 1870      16760    Partially Protected - Default
## 1871      16768    Partially Protected - Default
## 1872      16772    Partially Protected - Default
## 1873      16774                           Spoken
## 1874      16778    Partially Protected - Default
## 1875      16779    Partially Protected - Default
## 1876      16796                 Featured Article
## 1877      16797    Partially Protected - Default
## 1878      16808                 Featured Article
## 1879      16808    Partially Protected - Default
## 1880      16810    Partially Protected - Default
## 1881      16812                 Featured Article
## 1882      16815                     Good Article
## 1883      16827    Partially Protected - Default
## 1884      16837                 Featured Article
## 1885      16838                 Featured Article
## 1886      16846 Partially Protected - Autoreview
## 1887      16854                     Good Article
## 1888      16857 Partially Protected - Autoreview
## 1889      16858                     Good Article
## 1890      16861                 Featured Article
## 1891      16864    Partially Protected - Default
## 1892      16869                 Featured Article
## 1893      16870    Partially Protected - Default
## 1894      16873                           Spoken
## 1895      16880                 Featured Article
## 1896      16880 Partially Protected - Autoreview
## 1897      16881                     Good Article
## 1898      16892                     Good Article
## 1899      16894                 Featured Article
## 1900      16894    Partially Protected - Default
## 1901      16897 Partially Protected - Autoreview
## 1902      16899    Partially Protected - Default
## 1903      16923    Partially Protected - Default
## 1904      16959                     Good Article
## 1905      16962                     Good Article
## 1906      16991                     Good Article
## 1907      17011                 Featured Article
## 1908      17011    Partially Protected - Default
## 1909      17029 Partially Protected - Autoreview
## 1910      17064    Partially Protected - Default
## 1911      17068    Partially Protected - Default
## 1912      17076                     Good Article
## 1913      17123    Partially Protected - Default
## 1914      17127                           Spoken
## 1915      17143                 Featured Article
## 1916      17143    Partially Protected - Default
## 1917      17221                 Featured Article
## 1918      17268                     Good Article
## 1919      17275                           Spoken
## 1920      17276    Partially Protected - Default
## 1921      17303                     Good Article
## 1922      17317                     Good Article
## 1923      17318                     Good Article
## 1924      17318    Partially Protected - Default
## 1925      17327    Partially Protected - Default
## 1926      17359    Partially Protected - Default
## 1927      17360                 Featured Article
## 1928      17360    Partially Protected - Default
## 1929      17362    Partially Protected - Default
## 1930      17365    Partially Protected - Default
## 1931      17391    Partially Protected - Default
## 1932      17443                 Featured Article
## 1933      17450                 Featured Article
## 1934      17479    Partially Protected - Default
## 1935      17491    Partially Protected - Default
## 1936      17496                 Featured Article
## 1937      17496    Partially Protected - Default
## 1938      17508    Partially Protected - Default
## 1939      17514    Partially Protected - Default
## 1940      17519                           Spoken
## 1941      17524                     Good Article
## 1942      17524    Partially Protected - Default
## 1943      17524                           Spoken
## 1944      17527                           Spoken
## 1945      17528                     Good Article
## 1946      17537    Partially Protected - Default
## 1947      17546                     Good Article
## 1948      17547    Partially Protected - Default
## 1949      17556    Partially Protected - Default
## 1950      17560                     Good Article
## 1951      17561                     Good Article
## 1952      17562                     Good Article
## 1953      17613    Partially Protected - Default
## 1954      17614    Partially Protected - Default
## 1955      17615    Partially Protected - Default
## 1956      17628    Partially Protected - Default
## 1957      17652    Partially Protected - Default
## 1958      17653                     Good Article
## 1959      17670                     Good Article
## 1960      17675    Partially Protected - Default
## 1961      17727 Partially Protected - Autoreview
## 1962      17729                     Good Article
## 1963      17729    Partially Protected - Default
## 1964      17729                           Spoken
## 1965      17730    Partially Protected - Default
## 1966      17740    Partially Protected - Default
## 1967      17744                     Good Article
## 1968      17745                     Good Article
## 1969      17746                     Good Article
## 1970      17747                 Featured Article
## 1971      17759                           Spoken
## 1972      17771    Partially Protected - Default
## 1973      17772                           Spoken
## 1974      17846                     Good Article
## 1975      17846    Partially Protected - Default
## 1976      17847                     Good Article
## 1977      17847    Partially Protected - Default
## 1978      17860                 Featured Article
## 1979      17862                 Featured Article
## 1980      17862    Partially Protected - Default
## 1981      17867                     Good Article
## 1982      17867    Partially Protected - Default
## 1983      17877    Partially Protected - Default
## 1984      17885    Partially Protected - Default
## 1985      17902                 Featured Article
## 1986      17902    Partially Protected - Default
## 1987      17909                     Good Article
## 1988      17909 Partially Protected - Autoreview
## 1989      17914    Partially Protected - Default
## 1990      17926                 Featured Article
## 1991      17939    Partially Protected - Default
## 1992      17940                     Good Article
## 1993      17960    Partially Protected - Default
## 1994      17973                     Good Article
## 1995      18013    Partially Protected - Default
## 1996      18053                 Featured Article
## 1997      18071    Partially Protected - Default
## 1998      18079                     Good Article
## 1999      18079    Partially Protected - Default
## 2000      18081    Partially Protected - Default
## 2001      18110    Partially Protected - Default
## 2002      18119                 Featured Article
## 2003      18119    Partially Protected - Default
## 2004      18138    Partially Protected - Default
## 2005      18213    Partially Protected - Default
## 2006      18225    Partially Protected - Default
## 2007      18242                 Featured Article
## 2008      18271    Partially Protected - Default
## 2009      18275    Partially Protected - Default
## 2010      18296                     Good Article
## 2011      18298    Partially Protected - Default
## 2012      18318                     Good Article
## 2013      18329                     Good Article
## 2014      18353                     Good Article
## 2015      18356                 Featured Article
## 2016      18362    Partially Protected - Default
## 2017      18362                           Spoken
## 2018      18367                 Featured Article
## 2019      18367                           Spoken
## 2020      18370    Partially Protected - Default
## 2021      18393    Partially Protected - Default
## 2022      18413                     Good Article
## 2023      18413    Partially Protected - Default
## 2024      18450                 Featured Article
## 2025      18481                           Spoken
## 2026      18511 Partially Protected - Autoreview
## 2027      18514                     Good Article
## 2028      18514    Partially Protected - Default
## 2029      18553 Partially Protected - Autoreview
## 2030      18557                 Featured Article
## 2031      18562    Partially Protected - Default
## 2032      18597                     Good Article
## 2033      18628                     Good Article
## 2034      18646                     Good Article
## 2035      18646    Partially Protected - Default
## 2036      18664                 Featured Article
## 2037      18664    Partially Protected - Default
## 2038      18666    Partially Protected - Default
## 2039      18685    Partially Protected - Default
## 2040      18696                     Good Article
## 2041      18724    Partially Protected - Default
## 2042      18739                 Featured Article
## 2043      18739                           Spoken
## 2044      18740    Partially Protected - Default
## 2045      18743    Partially Protected - Default
## 2046      18745                 Featured Article
## 2047      18746    Partially Protected - Default
## 2048      18755                 Featured Article
## 2049      18756                 Featured Article
## 2050      18757                 Featured Article
## 2051      18758                 Featured Article
## 2052      18760 Partially Protected - Autoreview
## 2053      18765                 Featured Article
## 2054      18787                 Featured Article
## 2055      18787    Partially Protected - Default
## 2056      18790    Partially Protected - Default
## 2057      18805                     Good Article
## 2058      18807 Partially Protected - Autoreview
## 2059      18808    Partially Protected - Default
## 2060      18809                     Good Article
## 2061      18830                     Good Article
## 2062      18830    Partially Protected - Default
## 2063      18831    Partially Protected - Default
## 2064      18836                 Featured Article
## 2065      18838                     Good Article
## 2066      18839    Partially Protected - Default
## 2067      18841                     Good Article
## 2068      18841    Partially Protected - Default
## 2069      18845    Partially Protected - Default
## 2070      18859    Partially Protected - Default
## 2071      18860                 Featured Article
## 2072      18863                 Featured Article
## 2073      18876                     Good Article
## 2074      18879                     Good Article
## 2075      18890    Partially Protected - Default
## 2076      18894                     Good Article
## 2077      18894 Partially Protected - Autoreview
## 2078      18899                     Good Article
## 2079      18902    Partially Protected - Default
## 2080      18909    Partially Protected - Default
## 2081      18910                           Spoken
## 2082      18925                     Good Article
## 2083      18925 Partially Protected - Autoreview
## 2084      18926                 Featured Article
## 2085      18934                     Good Article
## 2086      18934    Partially Protected - Default
## 2087      18935    Partially Protected - Default
## 2088      18940    Partially Protected - Default
## 2089      18957 Partially Protected - Autoreview
## 2090      18964                 Featured Article
## 2091      18964    Partially Protected - Default
## 2092      18976 Partially Protected - Autoreview
## 2093      18984    Partially Protected - Default
## 2094      18985    Partially Protected - Default
## 2095      18987 Partially Protected - Autoreview
## 2096      18988                     Good Article
## 2097      18995 Partially Protected - Autoreview
## 2098      19001    Partially Protected - Default
## 2099      19009                           Spoken
## 2100      19014    Partially Protected - Default
## 2101      19015    Partially Protected - Default
## 2102      19016    Partially Protected - Default
## 2103      19019    Partially Protected - Default
## 2104      19031    Partially Protected - Default
## 2105      19037    Partially Protected - Default
## 2106      19042    Partially Protected - Default
## 2107      19051                     Good Article
## 2108      19052                     Good Article
## 2109      19053    Partially Protected - Default
## 2110      19054    Partially Protected - Default
## 2111      19057                           Spoken
## 2112      19058                           Spoken
## 2113      19061                     Good Article
## 2114      19078    Partially Protected - Default
## 2115      19088                     Good Article
## 2116      19115 Partially Protected - Autoreview
## 2117      19168    Partially Protected - Default
## 2118      19189                     Good Article
## 2119      19189    Partially Protected - Default
## 2120      19191    Partially Protected - Default
## 2121      19271    Partially Protected - Default
## 2122      19291    Partially Protected - Default
## 2123      19311    Partially Protected - Default
## 2124      19312    Partially Protected - Default
## 2125      19315    Partially Protected - Default
## 2126      19317                 Featured Article
## 2127      19317    Partially Protected - Default
## 2128      19318                 Featured Article
## 2129      19318    Partially Protected - Default
## 2130      19323    Partially Protected - Default
## 2131      19323                           Spoken
## 2132      19331                 Featured Article
## 2133      19331    Partially Protected - Default
## 2134      19334                     Good Article
## 2135      19334    Partially Protected - Default
## 2136      19346 Partially Protected - Autoreview
## 2137      19347 Partially Protected - Autoreview
## 2138      19348 Partially Protected - Autoreview
## 2139      19349 Partially Protected - Autoreview
## 2140      19350 Partially Protected - Autoreview
## 2141      19351 Partially Protected - Autoreview
## 2142      19352 Partially Protected - Autoreview
## 2143      19353 Partially Protected - Autoreview
## 2144      19354 Partially Protected - Autoreview
## 2145      19355 Partially Protected - Autoreview
## 2146      19356    Partially Protected - Default
## 2147      19356                           Spoken
## 2148      19357    Partially Protected - Default
## 2149      19362                 Featured Article
## 2150      19367    Partially Protected - Default
## 2151      19370    Partially Protected - Default
## 2152      19379                     Good Article
## 2153      19379    Partially Protected - Default
## 2154      19389 Partially Protected - Autoreview
## 2155      19447                 Featured Article
## 2156      19448                     Good Article
## 2157      19452 Partially Protected - Autoreview
## 2158      19455                     Good Article
## 2159      19457    Partially Protected - Default
## 2160      19459 Partially Protected - Autoreview
## 2161      19497 Partially Protected - Autoreview
## 2162      19499                 Featured Article
## 2163      19499    Partially Protected - Default
## 2164      19514 Partially Protected - Autoreview
## 2165      19516 Partially Protected - Autoreview
## 2166      19524 Partially Protected - Autoreview
## 2167      19527    Partially Protected - Default
## 2168      19530 Partially Protected - Autoreview
## 2169      19531                           Spoken
## 2170      19532                     Good Article
## 2171      19540                     Good Article
## 2172      19540    Partially Protected - Default
## 2173      19541    Partially Protected - Default
## 2174      19555 Partially Protected - Autoreview
## 2175      19568    Partially Protected - Default
## 2176      19571    Partially Protected - Default
## 2177      19577    Partially Protected - Default
## 2178      19582 Partially Protected - Autoreview
## 2179      19588                     Good Article
## 2180      19588    Partially Protected - Default
## 2181      19590                 Featured Article
## 2182      19590    Partially Protected - Default
## 2183      19591                     Good Article
## 2184      19592    Partially Protected - Default
## 2185      19597                     Good Article
## 2186      19603                 Featured Article
## 2187      19603    Partially Protected - Default
## 2188      19605                 Featured Article
## 2189      19617 Partially Protected - Autoreview
## 2190      19624 Partially Protected - Autoreview
## 2191      19629 Partially Protected - Autoreview
## 2192      19631 Partially Protected - Autoreview
## 2193      19632 Partially Protected - Autoreview
## 2194      19633 Partially Protected - Autoreview
## 2195      19635 Partially Protected - Autoreview
## 2196      19640                     Good Article
## 2197      19641    Partially Protected - Default
## 2198      19643    Partially Protected - Default
## 2199      19648 Partially Protected - Autoreview
## 2200      19653 Partially Protected - Autoreview
## 2201      19654 Partially Protected - Autoreview
## 2202      19655 Partially Protected - Autoreview
## 2203      19659 Partially Protected - Autoreview
## 2204      19660 Partially Protected - Autoreview
## 2205      19668                 Featured Article
## 2206      19672 Partially Protected - Autoreview
## 2207      19674 Partially Protected - Autoreview
## 2208      19675 Partially Protected - Autoreview
## 2209      19676 Partially Protected - Autoreview
## 2210      19677 Partially Protected - Autoreview
## 2211      19679                 Featured Article
## 2212      19684 Partially Protected - Autoreview
## 2213      19694                 Featured Article
## 2214      19694    Partially Protected - Default
## 2215      19694                           Spoken
## 2216      19714    Partially Protected - Default
## 2217      19727    Partially Protected - Default
## 2218      19728    Partially Protected - Default
## 2219      19741    Partially Protected - Default
## 2220      19741                           Spoken
## 2221      19766                           Spoken
## 2222      19773 Partially Protected - Autoreview
## 2223      19808                 Featured Article
## 2224      19818 Partially Protected - Autoreview
## 2225      19831                     Good Article
## 2226      19831    Partially Protected - Default
## 2227      19834                 Featured Article
## 2228      19834    Partially Protected - Default
## 2229      19834                           Spoken
## 2230      19849 Partially Protected - Autoreview
## 2231      19851 Partially Protected - Autoreview
## 2232      19852 Partially Protected - Autoreview
## 2233      19857                     Good Article
## 2234      19859 Partially Protected - Autoreview
## 2235      19865 Partially Protected - Autoreview
## 2236      19886                 Featured Article
## 2237      19915    Partially Protected - Default
## 2238      19916                     Good Article
## 2239      19924                 Featured Article
## 2240      19948    Partially Protected - Default
## 2241      19961                 Featured Article
## 2242      19961    Partially Protected - Default
## 2243      19977 Partially Protected - Autoreview
## 2244      19978 Partially Protected - Autoreview
## 2245      19985                     Good Article
## 2246      20020    Partially Protected - Default
## 2247      20034    Partially Protected - Default
## 2248      20053 Partially Protected - Autoreview
## 2249      20054 Partially Protected - Autoreview
## 2250      20057                 Featured Article
## 2251      20057                           Spoken
## 2252      20069                 Featured Article
## 2253      20076                     Good Article
## 2254      20076    Partially Protected - Default
## 2255      20097    Partially Protected - Default
## 2256      20101    Partially Protected - Default
## 2257      20119    Partially Protected - Default
## 2258      20121                     Good Article
## 2259      20121    Partially Protected - Default
## 2260      20127                     Good Article
## 2261      20127    Partially Protected - Default
## 2262      20127                           Spoken
## 2263      20134    Partially Protected - Default
## 2264      20162    Partially Protected - Default
## 2265      20189    Partially Protected - Default
## 2266      20196 Partially Protected - Autoreview
## 2267      20197 Partially Protected - Autoreview
## 2268      20199 Partially Protected - Autoreview
## 2269      20204    Partially Protected - Default
## 2270      20206                 Featured Article
## 2271      20206                           Spoken
## 2272      20208                 Featured Article
## 2273      20209 Partially Protected - Autoreview
## 2274      20210 Partially Protected - Autoreview
## 2275      20211 Partially Protected - Autoreview
## 2276      20217                     Good Article
## 2277      20223 Partially Protected - Autoreview
## 2278      20264    Partially Protected - Default
## 2279      20268    Partially Protected - Default
## 2280      20273 Partially Protected - Autoreview
## 2281      20277    Partially Protected - Default
## 2282      20288 Partially Protected - Autoreview
## 2283      20288    Partially Protected - Default
## 2284      20312                     Good Article
## 2285      20314 Partially Protected - Autoreview
## 2286      20315 Partially Protected - Autoreview
## 2287      20316 Partially Protected - Autoreview
## 2288      20329 Partially Protected - Autoreview
## 2289      20347    Partially Protected - Default
## 2290      20369 Partially Protected - Autoreview
## 2291      20374                 Featured Article
## 2292      20374    Partially Protected - Default
## 2293      20377                     Good Article
## 2294      20396                     Good Article
## 2295      20406                 Featured Article
## 2296      20408                     Good Article
## 2297      20408    Partially Protected - Default
## 2298      20423                     Good Article
## 2299      20423    Partially Protected - Default
## 2300      20427 Partially Protected - Autoreview
## 2301      20446                           Spoken
## 2302      20455                 Featured Article
## 2303      20455    Partially Protected - Default
## 2304      20455                           Spoken
## 2305      20501    Partially Protected - Default
## 2306      20513                     Good Article
## 2307      20528    Partially Protected - Default
## 2308      20548 Partially Protected - Autoreview
## 2309      20572    Partially Protected - Default
## 2310      20584    Partially Protected - Default
## 2311      20585 Partially Protected - Autoreview
## 2312      20586 Partially Protected - Autoreview
## 2313      20587 Partially Protected - Autoreview
## 2314      20603                 Featured Article
## 2315      20604                     Good Article
## 2316      20618                     Good Article
## 2317      20629 Partially Protected - Autoreview
## 2318      20633                     Good Article
## 2319      20638    Partially Protected - Default
## 2320      20640    Partially Protected - Default
## 2321      20653                 Featured Article
## 2322      20669 Partially Protected - Autoreview
## 2323      20677                     Good Article
## 2324      20677    Partially Protected - Default
## 2325      20687    Partially Protected - Default
## 2326      20700 Partially Protected - Autoreview
## 2327      20709                 Featured Article
## 2328      20713                     Good Article
## 2329      20713 Partially Protected - Autoreview
## 2330      20715    Partially Protected - Default
## 2331      20716                 Featured Article
## 2332      20752    Partially Protected - Default
## 2333      20753                 Featured Article
## 2334      20767    Partially Protected - Default
## 2335      20786                 Featured Article
## 2336      20796                 Featured Article
## 2337      20796    Partially Protected - Default
## 2338      20813 Partially Protected - Autoreview
## 2339      20838                     Good Article
## 2340      20838    Partially Protected - Default
## 2341      20859    Partially Protected - Default
## 2342      20860                     Good Article
## 2343      20888                 Featured Article
## 2344      20891                     Good Article
## 2345      20892                     Good Article
## 2346      20897                     Good Article
## 2347      20905 Partially Protected - Autoreview
## 2348      20952                     Good Article
## 2349      20952    Partially Protected - Default
## 2350      20958                     Good Article
## 2351      20958    Partially Protected - Default
## 2352      20989    Partially Protected - Default
## 2353      21019    Partially Protected - Default
## 2354      21034                     Good Article
## 2355      21035                     Good Article
## 2356      21041    Partially Protected - Default
## 2357      21082                     Good Article
## 2358      21082    Partially Protected - Default
## 2359      21085    Partially Protected - Default
## 2360      21092    Partially Protected - Default
## 2361      21093                     Good Article
## 2362      21093    Partially Protected - Default
## 2363      21093                           Spoken
## 2364      21094                     Good Article
## 2365      21094                           Spoken
## 2366      21095                           Spoken
## 2367      21111    Partially Protected - Default
## 2368      21114    Partially Protected - Default
## 2369      21130                     Good Article
## 2370      21130    Partially Protected - Default
## 2371      21133                     Good Article
## 2372      21133    Partially Protected - Default
## 2373      21139    Partially Protected - Default
## 2374      21140                 Featured Article
## 2375      21142    Partially Protected - Default
## 2376      21147                     Good Article
## 2377      21149    Partially Protected - Default
## 2378      21164    Partially Protected - Default
## 2379      21175                     Good Article
## 2380      21175    Partially Protected - Default
## 2381      21180    Partially Protected - Default
## 2382      21181                 Featured Article
## 2383      21197    Partially Protected - Default
## 2384      21201                     Good Article
## 2385      21201    Partially Protected - Default
## 2386      21201                           Spoken
## 2387      21210                 Featured Article
## 2388      21210    Partially Protected - Default
## 2389      21211                     Good Article
## 2390      21211    Partially Protected - Default
## 2391      21212                     Good Article
## 2392      21212    Partially Protected - Default
## 2393      21218                 Featured Article
## 2394      21231                 Featured Article
## 2395      21231 Partially Protected - Autoreview
## 2396      21241    Partially Protected - Default
## 2397      21247                     Good Article
## 2398      21247    Partially Protected - Default
## 2399      21250                     Good Article
## 2400      21250    Partially Protected - Default
## 2401      21251                     Good Article
## 2402      21251    Partially Protected - Default
## 2403      21255    Partially Protected - Default
## 2404      21265    Partially Protected - Default
## 2405      21273                     Good Article
## 2406      21274                     Good Article
## 2407      21275                 Featured Article
## 2408      21277                     Good Article
## 2409      21278                     Good Article
## 2410      21290    Partially Protected - Default
## 2411      21292                           Spoken
## 2412      21302                 Featured Article
## 2413      21354                     Good Article
## 2414      21362 Partially Protected - Autoreview
## 2415      21373    Partially Protected - Default
## 2416      21383    Partially Protected - Default
## 2417      21437 Partially Protected - Autoreview
## 2418      21442    Partially Protected - Default
## 2419      21446 Partially Protected - Autoreview
## 2420      21447 Partially Protected - Autoreview
## 2421      21448 Partially Protected - Autoreview
## 2422      21451                     Good Article
## 2423      21451                           Spoken
## 2424      21452 Partially Protected - Autoreview
## 2425      21453                 Featured Article
## 2426      21460 Partially Protected - Autoreview
## 2427      21461 Partially Protected - Autoreview
## 2428      21470                 Featured Article
## 2429      21473                     Good Article
## 2430      21473    Partially Protected - Default
## 2431      21488    Partially Protected - Default
## 2432      21522 Partially Protected - Autoreview
## 2433      21526 Partially Protected - Autoreview
## 2434      21565 Partially Protected - Autoreview
## 2435      21566    Partially Protected - Default
## 2436      21574 Partially Protected - Autoreview
## 2437      21575 Partially Protected - Autoreview
## 2438      21576 Partially Protected - Autoreview
## 2439      21577 Partially Protected - Autoreview
## 2440      21578 Partially Protected - Autoreview
## 2441      21579 Partially Protected - Autoreview
## 2442      21580 Partially Protected - Autoreview
## 2443      21581 Partially Protected - Autoreview
## 2444      21584                     Good Article
## 2445      21592                     Good Article
## 2446      21592    Partially Protected - Default
## 2447      21593    Partially Protected - Default
## 2448      21594                     Good Article
## 2449      21615                 Featured Article
## 2450      21619    Partially Protected - Default
## 2451      21626                     Good Article
## 2452      21631 Partially Protected - Autoreview
## 2453      21632    Partially Protected - Default
## 2454      21648    Partially Protected - Default
## 2455      21667 Partially Protected - Autoreview
## 2456      21690    Partially Protected - Default
## 2457      21694                 Featured Article
## 2458      21694                           Spoken
## 2459      21702    Partially Protected - Default
## 2460      21711                     Good Article
## 2461      21719                     Good Article
## 2462      21719    Partially Protected - Default
## 2463      21721                     Good Article
## 2464      21726 Partially Protected - Autoreview
## 2465      21728    Partially Protected - Default
## 2466      21736    Partially Protected - Default
## 2467      21742                     Good Article
## 2468      21751    Partially Protected - Default
## 2469      21757    Partially Protected - Default
## 2470      21758 Partially Protected - Autoreview
## 2471      21759 Partially Protected - Autoreview
## 2472      21760 Partially Protected - Autoreview
## 2473      21761 Partially Protected - Autoreview
## 2474      21762 Partially Protected - Autoreview
## 2475      21763 Partially Protected - Autoreview
## 2476      21764 Partially Protected - Autoreview
## 2477      21785    Partially Protected - Default
## 2478      21785                           Spoken
## 2479      21798 Partially Protected - Autoreview
## 2480      21805 Partially Protected - Autoreview
## 2481      21806 Partially Protected - Autoreview
## 2482      21830                     Good Article
## 2483      21838    Partially Protected - Default
## 2484      21937                     Good Article
## 2485      21944    Partially Protected - Default
## 2486      21945 Partially Protected - Autoreview
## 2487      21973    Partially Protected - Default
## 2488      21973                           Spoken
## 2489      22003                     Good Article
## 2490      22050    Partially Protected - Default
## 2491      22055    Partially Protected - Default
## 2492      22093    Partially Protected - Default
## 2493      22142 Partially Protected - Autoreview
## 2494      22194    Partially Protected - Default
## 2495      22199    Partially Protected - Default
## 2496      22202    Partially Protected - Default
## 2497      22208    Partially Protected - Default
## 2498      22278                           Spoken
## 2499      22303                 Featured Article
## 2500      22303    Partially Protected - Default
## 2501      22303                           Spoken
## 2502      22304                     Good Article
## 2503      22333 Partially Protected - Autoreview
## 2504      22340 Partially Protected - Autoreview
## 2505      22341 Partially Protected - Autoreview
## 2506      22345 Partially Protected - Autoreview
## 2507      22347 Partially Protected - Autoreview
## 2508      22349    Partially Protected - Default
## 2509      22359                 Featured Article
## 2510      22366 Partially Protected - Autoreview
## 2511      22367 Partially Protected - Autoreview
## 2512      22385                 Featured Article
## 2513      22385                           Spoken
## 2514      22392                 Featured Article
## 2515      22392                           Spoken
## 2516      22403 Partially Protected - Autoreview
## 2517      22421    Partially Protected - Default
## 2518      22426    Partially Protected - Default
## 2519      22432                     Good Article
## 2520      22432    Partially Protected - Default
## 2521      22433                     Good Article
## 2522      22433    Partially Protected - Default
## 2523      22434 Partially Protected - Autoreview
## 2524      22435 Partially Protected - Autoreview
## 2525      22436 Partially Protected - Autoreview
## 2526      22437 Partially Protected - Autoreview
## 2527      22440 Partially Protected - Autoreview
## 2528      22442 Partially Protected - Autoreview
## 2529      22446 Partially Protected - Autoreview
## 2530      22454 Partially Protected - Autoreview
## 2531      22462    Partially Protected - Default
## 2532      22467                 Featured Article
## 2533      22468    Partially Protected - Default
## 2534      22489                 Featured Article
## 2535      22491                 Featured Article
## 2536      22498 Partially Protected - Autoreview
## 2537      22504                     Good Article
## 2538      22504    Partially Protected - Default
## 2539      22512                     Good Article
## 2540      22517                     Good Article
## 2541      22521    Partially Protected - Default
## 2542      22525 Partially Protected - Autoreview
## 2543      22527 Partially Protected - Autoreview
## 2544      22529    Partially Protected - Default
## 2545      22530 Partially Protected - Autoreview
## 2546      22536 Partially Protected - Autoreview
## 2547      22537 Partially Protected - Autoreview
## 2548      22542 Partially Protected - Autoreview
## 2549      22543 Partially Protected - Autoreview
## 2550      22544    Partially Protected - Default
## 2551      22545 Partially Protected - Autoreview
## 2552      22546    Partially Protected - Default
## 2553      22549 Partially Protected - Autoreview
## 2554      22554 Partially Protected - Autoreview
## 2555      22555 Partially Protected - Autoreview
## 2556      22556 Partially Protected - Autoreview
## 2557      22568 Partially Protected - Autoreview
## 2558      22570 Partially Protected - Autoreview
## 2559      22571 Partially Protected - Autoreview
## 2560      22572 Partially Protected - Autoreview
## 2561      22576                 Featured Article
## 2562      22576    Partially Protected - Default
## 2563      22588    Partially Protected - Default
## 2564      22614                     Good Article
## 2565      22618                     Good Article
## 2566      22618                           Spoken
## 2567      22626                     Good Article
## 2568      22645                     Good Article
## 2569      22669                           Spoken
## 2570      22676    Partially Protected - Default
## 2571      22698                           Spoken
## 2572      22702                     Good Article
## 2573      22705                     Good Article
## 2574      22709                     Good Article
## 2575      22721    Partially Protected - Default
## 2576      22722                     Good Article
## 2577      22736                 Featured Article
## 2578      22740                     Good Article
## 2579      22742    Partially Protected - Default
## 2580      22770 Partially Protected - Autoreview
## 2581      22773                 Featured Article
## 2582      22780                 Featured Article
## 2583      22780    Partially Protected - Default
## 2584      22790                 Featured Article
## 2585      22835    Partially Protected - Default
## 2586      22837    Partially Protected - Default
## 2587      22846 Partially Protected - Autoreview
## 2588      22857    Partially Protected - Default
## 2589      22876    Partially Protected - Default
## 2590      22879                 Featured Article
## 2591      22885                 Featured Article
## 2592      22885 Partially Protected - Autoreview
## 2593      22885                           Spoken
## 2594      22900 Partially Protected - Autoreview
## 2595      22911    Partially Protected - Default
## 2596      22915                 Featured Article
## 2597      22918    Partially Protected - Default
## 2598      22921    Partially Protected - Default
## 2599      22926                 Featured Article
## 2600      22926 Partially Protected - Autoreview
## 2601      22926                           Spoken
## 2602      22935                 Featured Article
## 2603      22935    Partially Protected - Default
## 2604      22936    Partially Protected - Default
## 2605      22939    Partially Protected - Default
## 2606      22947    Partially Protected - Default
## 2607      22948    Partially Protected - Default
## 2608      22954    Partially Protected - Default
## 2609      22973    Partially Protected - Default
## 2610      22984                 Featured Article
## 2611      22989                     Good Article
## 2612      22989 Partially Protected - Autoreview
## 2613      22995                     Good Article
## 2614      23006                     Good Article
## 2615      23007                     Good Article
## 2616      23015 Partially Protected - Autoreview
## 2617      23034    Partially Protected - Default
## 2618      23037                 Featured Article
## 2619      23038    Partially Protected - Default
## 2620      23041    Partially Protected - Default
## 2621      23048                     Good Article
## 2622      23052                 Featured Article
## 2623      23053                 Featured Article
## 2624      23053    Partially Protected - Default
## 2625      23055                     Good Article
## 2626      23056    Partially Protected - Default
## 2627      23059    Partially Protected - Default
## 2628      23063                 Featured Article
## 2629      23077    Partially Protected - Default
## 2630      23084                     Good Article
## 2631      23197                     Good Article
## 2632      23211                     Good Article
## 2633      23211    Partially Protected - Default
## 2634      23221    Partially Protected - Default
## 2635      23232                 Featured Article
## 2636      23235    Partially Protected - Default
## 2637      23267    Partially Protected - Default
## 2638      23275                     Good Article
## 2639      23275    Partially Protected - Default
## 2640      23295    Partially Protected - Default
## 2641      23298    Partially Protected - Default
## 2642      23301                           Spoken
## 2643      23315    Partially Protected - Default
## 2644      23318    Partially Protected - Default
## 2645      23319                     Good Article
## 2646      23321                     Good Article
## 2647      23322                     Good Article
## 2648      23324                     Good Article
## 2649      23325                     Good Article
## 2650      23332 Partially Protected - Autoreview
## 2651      23338    Partially Protected - Default
## 2652      23339    Partially Protected - Default
## 2653      23342    Partially Protected - Default
## 2654      23347                     Good Article
## 2655      23369 Partially Protected - Autoreview
## 2656      23440                     Good Article
## 2657      23440    Partially Protected - Default
## 2658      23468    Partially Protected - Default
## 2659      23499    Partially Protected - Default
## 2660      23501    Partially Protected - Default
## 2661      23508                     Good Article
## 2662      23509                     Good Article
## 2663      23535                 Featured Article
## 2664      23549                     Good Article
## 2665      23563    Partially Protected - Default
## 2666      23592    Partially Protected - Default
## 2667      23601                 Featured Article
## 2668      23601    Partially Protected - Default
## 2669      23604    Partially Protected - Default
## 2670      23627    Partially Protected - Default
## 2671      23634                     Good Article
## 2672      23634    Partially Protected - Default
## 2673      23666                     Good Article
## 2674      23666    Partially Protected - Default
## 2675      23697                 Featured Article
## 2676      23718                 Featured Article
## 2677      23719                 Featured Article
## 2678      23726                 Featured Article
## 2679      23736                 Featured Article
## 2680      23736 Partially Protected - Autoreview
## 2681      23736                           Spoken
## 2682      23745    Partially Protected - Default
## 2683      23749                 Featured Article
## 2684      23749    Partially Protected - Default
## 2685      23761                           Spoken
## 2686      23805    Partially Protected - Default
## 2687      23821                     Good Article
## 2688      23840                 Featured Article
## 2689      23842                 Featured Article
## 2690      23862                     Good Article
## 2691      23878    Partially Protected - Default
## 2692      23880                     Good Article
## 2693      23906                           Spoken
## 2694      23915    Partially Protected - Default
## 2695      23916                     Good Article
## 2696      23916    Partially Protected - Default
## 2697      23924                 Featured Article
## 2698      23939                     Good Article
## 2699      23943    Partially Protected - Default
## 2700      23945    Partially Protected - Default
## 2701      23960                     Good Article
## 2702      23979 Partially Protected - Autoreview
## 2703      23984                 Featured Article
## 2704      23995    Partially Protected - Default
## 2705      24022    Partially Protected - Default
## 2706      24081    Partially Protected - Default
## 2707      24093    Partially Protected - Default
## 2708      24095    Partially Protected - Default
## 2709      24110 Partially Protected - Autoreview
## 2710      24113    Partially Protected - Default
## 2711      24115 Partially Protected - Autoreview
## 2712      24121    Partially Protected - Default
## 2713      24131                     Good Article
## 2714      24131                           Spoken
## 2715      24135 Partially Protected - Autoreview
## 2716      24140    Partially Protected - Default
## 2717      24141                           Spoken
## 2718      24151                     Good Article
## 2719      24176    Partially Protected - Default
## 2720      24207                     Good Article
## 2721      24226                     Good Article
## 2722      24230                           Spoken
## 2723      24260 Partially Protected - Autoreview
## 2724      24278 Partially Protected - Autoreview
## 2725      24299    Partially Protected - Default
## 2726      24304    Partially Protected - Default
## 2727      24318    Partially Protected - Default
## 2728      24324    Partially Protected - Default
## 2729      24348 Partially Protected - Autoreview
## 2730      24361    Partially Protected - Default
## 2731      24365    Partially Protected - Default
## 2732      24390                           Spoken
## 2733      24408                     Good Article
## 2734      24408    Partially Protected - Default
## 2735      24417    Partially Protected - Default
## 2736      24427                           Spoken
## 2737      24447    Partially Protected - Default
## 2738      24451                 Featured Article
## 2739      24451                           Spoken
## 2740      24501                     Good Article
## 2741      24503                 Featured Article
## 2742      24507                           Spoken
## 2743      24508    Partially Protected - Default
## 2744      24518                 Featured Article
## 2745      24523    Partially Protected - Default
## 2746      24530    Partially Protected - Default
## 2747      24534    Partially Protected - Default
## 2748      24544    Partially Protected - Default
## 2749      24573    Partially Protected - Default
## 2750      24579                     Good Article
## 2751      24592                     Good Article
## 2752      24600                     Good Article
## 2753      24603                 Featured Article
## 2754      24607    Partially Protected - Default
## 2755      24639                 Featured Article
## 2756      24657    Partially Protected - Default
## 2757      24711    Partially Protected - Default
## 2758      24742    Partially Protected - Default
## 2759      24761    Partially Protected - Default
## 2760      24768    Partially Protected - Default
## 2761      24802    Partially Protected - Default
## 2762      24824                     Good Article
## 2763      24872    Partially Protected - Default
## 2764      24898    Partially Protected - Default
## 2765      24944    Partially Protected - Default
## 2766      24947                     Good Article
## 2767      24951    Partially Protected - Default
## 2768      24953                     Good Article
## 2769      24980                     Good Article
## 2770      25062    Partially Protected - Default
## 2771      25071                     Good Article
## 2772      25107                 Featured Article
## 2773      25107    Partially Protected - Default
## 2774      25123                     Good Article
## 2775      25142    Partially Protected - Default
## 2776      25146                     Good Article
## 2777      25161                     Good Article
## 2778      25172 Partially Protected - Autoreview
## 2779      25178 Partially Protected - Autoreview
## 2780      25179                 Featured Article
## 2781      25180 Partially Protected - Autoreview
## 2782      25202 Partially Protected - Autoreview
## 2783      25229                 Featured Article
## 2784      25233    Partially Protected - Default
## 2785      25268                     Good Article
## 2786      25269    Partially Protected - Default
## 2787      25309                 Featured Article
## 2788      25309    Partially Protected - Default
## 2789      25309                           Spoken
## 2790      25315                           Spoken
## 2791      25341    Partially Protected - Default
## 2792      25355    Partially Protected - Default
## 2793      25391    Partially Protected - Default
## 2794      25402    Partially Protected - Default
## 2795      25404                 Featured Article
## 2796      25404    Partially Protected - Default
## 2797      25404                           Spoken
## 2798      25405                     Good Article
## 2799      25406                 Featured Article
## 2800      25406    Partially Protected - Default
## 2801      25407    Partially Protected - Default
## 2802      25409 Partially Protected - Autoreview
## 2803      25410    Partially Protected - Default
## 2804      25414    Partially Protected - Default
## 2805      25421    Partially Protected - Default
## 2806      25427    Partially Protected - Default
## 2807      25428    Partially Protected - Default
## 2808      25432                           Spoken
## 2809      25433                 Featured Article
## 2810      25433    Partially Protected - Default
## 2811      25433                           Spoken
## 2812      25445    Partially Protected - Default
## 2813      25449                 Featured Article
## 2814      25452                 Featured Article
## 2815      25466    Partially Protected - Default
## 2816      25471                     Good Article
## 2817      25473                 Featured Article
## 2818      25473    Partially Protected - Default
## 2819      25491                     Good Article
## 2820      25507                     Good Article
## 2821      25507    Partially Protected - Default
## 2822      25522    Partially Protected - Default
## 2823      25523                 Featured Article
## 2824      25532                     Good Article
## 2825      25532    Partially Protected - Default
## 2826      25536 Partially Protected - Autoreview
## 2827      25599                     Good Article
## 2828      25600                     Good Article
## 2829      25601                     Good Article
## 2830      25603                     Good Article
## 2831      25604                     Good Article
## 2832      25613    Partially Protected - Default
## 2833      25614    Partially Protected - Default
## 2834      25615    Partially Protected - Default
## 2835      25624                     Good Article
## 2836      25645                 Featured Article
## 2837      25655    Partially Protected - Default
## 2838      25656    Partially Protected - Default
## 2839      25657    Partially Protected - Default
## 2840      25662                 Featured Article
## 2841      25671    Partially Protected - Default
## 2842      25683    Partially Protected - Default
## 2843      25705    Partially Protected - Default
## 2844      25721                     Good Article
## 2845      25731                     Good Article
## 2846      25734    Partially Protected - Default
## 2847      25740    Partially Protected - Default
## 2848      25741    Partially Protected - Default
## 2849      25758                     Good Article
## 2850      25760    Partially Protected - Default
## 2851      25762    Partially Protected - Default
## 2852      25781    Partially Protected - Default
## 2853      25784    Partially Protected - Default
## 2854      25789                     Good Article
## 2855      25794    Partially Protected - Default
## 2856      25798                           Spoken
## 2857      25805                     Good Article
## 2858      25816                     Good Article
## 2859      25821                 Featured Article
## 2860      25821    Partially Protected - Default
## 2861      25822    Partially Protected - Default
## 2862      25825    Partially Protected - Default
## 2863      25829                     Good Article
## 2864      25832                 Featured Article
## 2865      25832    Partially Protected - Default
## 2866      25856    Partially Protected - Default
## 2867      25867                     Good Article
## 2868      25867 Partially Protected - Autoreview
## 2869      25914                     Good Article
## 2870      25915                     Good Article
## 2871      25927                     Good Article
## 2872      25948 Partially Protected - Autoreview
## 2873      25951    Partially Protected - Default
## 2874      25964    Partially Protected - Default
## 2875      25971    Partially Protected - Default
## 2876      25984                           Spoken
## 2877      25990    Partially Protected - Default
## 2878      25996    Partially Protected - Default
## 2879      26001    Partially Protected - Default
## 2880      26003    Partially Protected - Default
## 2881      26005                 Featured Article
## 2882      26032    Partially Protected - Default
## 2883      26044                     Good Article
## 2884      26055                 Featured Article
## 2885      26115                 Featured Article
## 2886      26115    Partially Protected - Default
## 2887      26118    Partially Protected - Default
## 2888      26152 Partially Protected - Autoreview
## 2889      26159    Partially Protected - Default
## 2890      26171    Partially Protected - Default
## 2891      26197                 Featured Article
## 2892      26225                     Good Article
## 2893      26262                 Featured Article
## 2894      26284                     Good Article
## 2895      26293                 Featured Article
## 2896      26293    Partially Protected - Default
## 2897      26293                           Spoken
## 2898      26301    Partially Protected - Default
## 2899      26310    Partially Protected - Default
## 2900      26349    Partially Protected - Default
## 2901      26368    Partially Protected - Default
## 2902      26371                     Good Article
## 2903      26393    Partially Protected - Default
## 2904      26413                     Good Article
## 2905      26413    Partially Protected - Default
## 2906      26428                 Featured Article
## 2907      26441                     Good Article
## 2908      26441    Partially Protected - Default
## 2909      26458    Partially Protected - Default
## 2910      26458                           Spoken
## 2911      26471    Partially Protected - Default
## 2912      26477    Partially Protected - Default
## 2913      26494    Partially Protected - Default
## 2914      26532                 Featured Article
## 2915      26533    Partially Protected - Default
## 2916      26536    Partially Protected - Default
## 2917      26537    Partially Protected - Default
## 2918      26552                           Spoken
## 2919      26567    Partially Protected - Default
## 2920      26573    Partially Protected - Default
## 2921      26589 Partially Protected - Autoreview
## 2922      26593    Partially Protected - Default
## 2923      26607    Partially Protected - Default
## 2924      26616    Partially Protected - Default
## 2925      26618                 Featured Article
## 2926      26620                     Good Article
## 2927      26620    Partially Protected - Default
## 2928      26623    Partially Protected - Default
## 2929      26624    Partially Protected - Default
## 2930      26629    Partially Protected - Default
## 2931      26664    Partially Protected - Default
## 2932      26665    Partially Protected - Default
## 2933      26667    Partially Protected - Default
## 2934      26678    Partially Protected - Default
## 2935      26683                     Good Article
## 2936      26683    Partially Protected - Default
## 2937      26684    Partially Protected - Default
## 2938      26689                 Featured Article
## 2939      26700    Partially Protected - Default
## 2940      26709    Partially Protected - Default
## 2941      26715                     Good Article
## 2942      26740    Partially Protected - Default
## 2943      26743    Partially Protected - Default
## 2944      26746                     Good Article
## 2945      26747    Partially Protected - Default
## 2946      26748                     Good Article
## 2947      26748    Partially Protected - Default
## 2948      26750    Partially Protected - Default
## 2949      26751                 Featured Article
## 2950      26751    Partially Protected - Default
## 2951      26753    Partially Protected - Default
## 2952      26753                           Spoken
## 2953      26754 Partially Protected - Autoreview
## 2954      26757    Partially Protected - Default
## 2955      26764                     Good Article
## 2956      26768                     Good Article
## 2957      26779    Partially Protected - Default
## 2958      26786                           Spoken
## 2959      26790                     Good Article
## 2960      26795    Partially Protected - Default
## 2961      26796                     Good Article
## 2962      26796    Partially Protected - Default
## 2963      26796                           Spoken
## 2964      26801    Partially Protected - Default
## 2965      26805    Partially Protected - Default
## 2966      26808                 Featured Article
## 2967      26808    Partially Protected - Default
## 2968      26809                 Featured Article
## 2969      26817                     Good Article
## 2970      26823                     Good Article
## 2971      26826                     Good Article
## 2972      26830 Partially Protected - Autoreview
## 2973      26833    Partially Protected - Default
## 2974      26838    Partially Protected - Default
## 2975      26859    Partially Protected - Default
## 2976      26865                 Featured Article
## 2977      26870                 Featured Article
## 2978      26870    Partially Protected - Default
## 2979      26870                           Spoken
## 2980      26880                     Good Article
## 2981      26903                 Featured Article
## 2982      26903    Partially Protected - Default
## 2983      26905                           Spoken
## 2984      26909    Partially Protected - Default
## 2985      26933    Partially Protected - Default
## 2986      26940    Partially Protected - Default
## 2987      26941    Partially Protected - Default
## 2988      26954    Partially Protected - Default
## 2989      26958 Partially Protected - Autoreview
## 2990      26960 Partially Protected - Autoreview
## 2991      26961 Partially Protected - Autoreview
## 2992      26963                           Spoken
## 2993      26977 Partially Protected - Autoreview
## 2994      26983    Partially Protected - Default
## 2995      26984                     Good Article
## 2996      26989 Partially Protected - Autoreview
## 2997      26994                     Good Article
## 2998      26994    Partially Protected - Default
## 2999      27003    Partially Protected - Default
## 3000      27007    Partially Protected - Default
## 3001      27019    Partially Protected - Default
## 3002      27028    Partially Protected - Default
## 3003      27032                           Spoken
## 3004      27040                     Good Article
## 3005      27041                     Good Article
## 3006      27058                     Good Article
## 3007      27058    Partially Protected - Default
## 3008      27074                     Good Article
## 3009      27085                     Good Article
## 3010      27091                     Good Article
## 3011      27097                 Featured Article
## 3012      27098                 Featured Article
## 3013      27098                           Spoken
## 3014      27114                     Good Article
## 3015      27114    Partially Protected - Default
## 3016      27116                     Good Article
## 3017      27117                     Good Article
## 3018      27118                     Good Article
## 3019      27119                     Good Article
## 3020      27119                           Spoken
## 3021      27121                     Good Article
## 3022      27159    Partially Protected - Default
## 3023      27164    Partially Protected - Default
## 3024      27170    Partially Protected - Default
## 3025      27173    Partially Protected - Default
## 3026      27177                     Good Article
## 3027      27177    Partially Protected - Default
## 3028      27178    Partially Protected - Default
## 3029      27269                           Spoken
## 3030      27318    Partially Protected - Default
## 3031      27358    Partially Protected - Default
## 3032      27421    Partially Protected - Default
## 3033      27441                     Good Article
## 3034      27529    Partially Protected - Default
## 3035      27530 Partially Protected - Autoreview
## 3036      27531 Partially Protected - Autoreview
## 3037      27532 Partially Protected - Autoreview
## 3038      27533 Partially Protected - Autoreview
## 3039      27546    Partially Protected - Default
## 3040      27614                     Good Article
## 3041      27633    Partially Protected - Default
## 3042      27650 Partially Protected - Autoreview
## 3043      27651 Partially Protected - Autoreview
## 3044      27658                           Spoken
## 3045      27667    Partially Protected - Default
## 3046      27680                 Featured Article
## 3047      27681                     Good Article
## 3048      27694                     Good Article
## 3049      27694    Partially Protected - Default
## 3050      27698 Partially Protected - Autoreview
## 3051      27706    Partially Protected - Default
## 3052      27710                     Good Article
## 3053      27710    Partially Protected - Default
## 3054      27710                           Spoken
## 3055      27712                     Good Article
## 3056      27712 Partially Protected - Autoreview
## 3057      27717 Partially Protected - Autoreview
## 3058      27725 Partially Protected - Autoreview
## 3059      27730    Partially Protected - Default
## 3060      27743                     Good Article
## 3061      27743    Partially Protected - Default
## 3062      27760                     Good Article
## 3063      27765 Partially Protected - Autoreview
## 3064      27766                     Good Article
## 3065      27784                     Good Article
## 3066      27790                 Featured Article
## 3067      27790    Partially Protected - Default
## 3068      27790                           Spoken
## 3069      27801                     Good Article
## 3070      27809                           Spoken
## 3071      27834    Partially Protected - Default
## 3072      27843 Partially Protected - Autoreview
## 3073      27847                           Spoken
## 3074      27856                           Spoken
## 3075      27861                           Spoken
## 3076      27862 Partially Protected - Autoreview
## 3077      27862                           Spoken
## 3078      27863 Partially Protected - Autoreview
## 3079      27875                     Good Article
## 3080      27881                     Good Article
## 3081      27889 Partially Protected - Autoreview
## 3082      27916                     Good Article
## 3083      27918                 Featured Article
## 3084      27934 Partially Protected - Autoreview
## 3085      27935 Partially Protected - Autoreview
## 3086      27936                     Good Article
## 3087      27936    Partially Protected - Default
## 3088      27947 Partially Protected - Autoreview
## 3089      27948 Partially Protected - Autoreview
## 3090      27949 Partially Protected - Autoreview
## 3091      27952    Partially Protected - Default
## 3092      27952                           Spoken
## 3093      27954    Partially Protected - Default
## 3094      27977                     Good Article
## 3095      27977    Partially Protected - Default
## 3096      27982                     Good Article
## 3097      27989 Partially Protected - Autoreview
## 3098      27990 Partially Protected - Autoreview
## 3099      27992    Partially Protected - Default
## 3100      27993 Partially Protected - Autoreview
## 3101      28002    Partially Protected - Default
## 3102      28017                 Featured Article
## 3103      28020 Partially Protected - Autoreview
## 3104      28021 Partially Protected - Autoreview
## 3105      28022    Partially Protected - Default
## 3106      28027    Partially Protected - Default
## 3107      28029                 Featured Article
## 3108      28029    Partially Protected - Default
## 3109      28030 Partially Protected - Autoreview
## 3110      28043    Partially Protected - Default
## 3111      28056    Partially Protected - Default
## 3112      28071 Partially Protected - Autoreview
## 3113      28144                     Good Article
## 3114      28145 Partially Protected - Autoreview
## 3115      28146 Partially Protected - Autoreview
## 3116      28147 Partially Protected - Autoreview
## 3117      28148 Partially Protected - Autoreview
## 3118      28149                 Featured Article
## 3119      28176    Partially Protected - Default
## 3120      28178 Partially Protected - Autoreview
## 3121      28191                     Good Article
## 3122      28191    Partially Protected - Default
## 3123      28202 Partially Protected - Autoreview
## 3124      28203 Partially Protected - Autoreview
## 3125      28204 Partially Protected - Autoreview
## 3126      28228    Partially Protected - Default
## 3127      28258                     Good Article
## 3128      28264                 Featured Article
## 3129      28264                           Spoken
## 3130      28265    Partially Protected - Default
## 3131      28269                     Good Article
## 3132      28293    Partially Protected - Default
## 3133      28305    Partially Protected - Default
## 3134      28317 Partially Protected - Autoreview
## 3135      28320                 Featured Article
## 3136      28320    Partially Protected - Default
## 3137      28334    Partially Protected - Default
## 3138      28335                     Good Article
## 3139      28341                     Good Article
## 3140      28381    Partially Protected - Default
## 3141      28394                           Spoken
## 3142      28405                     Good Article
## 3143      28407                     Good Article
## 3144      28412 Partially Protected - Autoreview
## 3145      28426                 Featured Article
## 3146      28478 Partially Protected - Autoreview
## 3147      28480    Partially Protected - Default
## 3148      28488 Partially Protected - Autoreview
## 3149      28492    Partially Protected - Default
## 3150      28504                     Good Article
## 3151      28504    Partially Protected - Default
## 3152      28544 Partially Protected - Autoreview
## 3153      28580                 Featured Article
## 3154      28606    Partially Protected - Default
## 3155      28617                 Featured Article
## 3156      28617    Partially Protected - Default
## 3157      28629                     Good Article
## 3158      28672                     Good Article
## 3159      28678                     Good Article
## 3160      28699                     Good Article
## 3161      28711    Partially Protected - Default
## 3162      28715 Partially Protected - Autoreview
## 3163      28729    Partially Protected - Default
## 3164      28736                 Featured Article
## 3165      28736    Partially Protected - Default
## 3166      28817 Partially Protected - Autoreview
## 3167      28825                           Spoken
## 3168      28829                     Good Article
## 3169      28833                 Featured Article
## 3170      28849                     Good Article
## 3171      28849    Partially Protected - Default
## 3172      28852                     Good Article
## 3173      28852    Partially Protected - Default
## 3174      28867                     Good Article
## 3175      28870                 Featured Article
## 3176      28876                 Featured Article
## 3177      28916                     Good Article
## 3178      28953                 Featured Article
## 3179      28972    Partially Protected - Default
## 3180      28984    Partially Protected - Default
## 3181      28989    Partially Protected - Default
## 3182      29007    Partially Protected - Default
## 3183      29025                 Featured Article
## 3184      29027                     Good Article
## 3185      29028                 Featured Article
## 3186      29032                 Featured Article
## 3187      29033                     Good Article
## 3188      29035                 Featured Article
## 3189      29036                     Good Article
## 3190      29036    Partially Protected - Default
## 3191      29037                     Good Article
## 3192      29056    Partially Protected - Default
## 3193      29080                     Good Article
## 3194      29148 Partially Protected - Autoreview
## 3195      29155 Partially Protected - Autoreview
## 3196      29161    Partially Protected - Default
## 3197      29162                     Good Article
## 3198      29178    Partially Protected - Default
## 3199      29180                 Featured Article
## 3200      29182                     Good Article
## 3201      29192                           Spoken
## 3202      29205                           Spoken
## 3203      29219    Partially Protected - Default
## 3204      29260    Partially Protected - Default
## 3205      29265    Partially Protected - Default
## 3206      29287    Partially Protected - Default
## 3207      29314                     Good Article
## 3208      29328    Partially Protected - Default
## 3209      29334                     Good Article
## 3210      29353                     Good Article
## 3211      29363    Partially Protected - Default
## 3212      29370    Partially Protected - Default
## 3213      29383                 Featured Article
## 3214      29397    Partially Protected - Default
## 3215      29402 Partially Protected - Autoreview
## 3216      29438    Partially Protected - Default
## 3217      29455 Partially Protected - Autoreview
## 3218      29479    Partially Protected - Default
## 3219      29490    Partially Protected - Default
## 3220      29500                     Good Article
## 3221      29594                 Featured Article
## 3222      29618                     Good Article
## 3223      29657                     Good Article
## 3224      29674    Partially Protected - Default
## 3225      29675    Partially Protected - Default
## 3226      29686    Partially Protected - Default
## 3227      29687    Partially Protected - Default
## 3228      29687                           Spoken
## 3229      29708                 Featured Article
## 3230      29708    Partially Protected - Default
## 3231      29708                           Spoken
## 3232      29716                     Good Article
## 3233      29718                     Good Article
## 3234      29720                 Featured Article
## 3235      29731                 Featured Article
## 3236      29732                 Featured Article
## 3237      29733                 Featured Article
## 3238      29734                 Featured Article
## 3239      29735                 Featured Article
## 3240      29736                 Featured Article
## 3241      29737                 Featured Article
## 3242      29738                 Featured Article
## 3243      29739                 Featured Article
## 3244      29740                 Featured Article
## 3245      29741                 Featured Article
## 3246      29742                 Featured Article
## 3247      29743                 Featured Article
## 3248      29744                 Featured Article
## 3249      29745                 Featured Article
## 3250      29746                 Featured Article
## 3251      29747                 Featured Article
## 3252      29749    Partially Protected - Default
## 3253      29749                           Spoken
## 3254      29763                 Featured Article
## 3255      29763    Partially Protected - Default
## 3256      29769                     Good Article
## 3257      29769    Partially Protected - Default
## 3258      29773    Partially Protected - Default
## 3259      29778    Partially Protected - Default
## 3260      29781                     Good Article
## 3261      29781    Partially Protected - Default
## 3262      29782                     Good Article
## 3263      29784                 Featured Article
## 3264      29784    Partially Protected - Default
## 3265      29800                 Featured Article
## 3266      29800    Partially Protected - Default
## 3267      29800                           Spoken
## 3268      29810                     Good Article
## 3269      29810    Partially Protected - Default
## 3270      29812                 Featured Article
## 3271      29812    Partially Protected - Default
## 3272      29812                           Spoken
## 3273      29816    Partially Protected - Default
## 3274      29831    Partially Protected - Default
## 3275      29833 Partially Protected - Autoreview
## 3276      29838                 Featured Article
## 3277      29838    Partially Protected - Default
## 3278      29838                           Spoken
## 3279      29848                     Good Article
## 3280      29919                 Featured Article
## 3281      29919    Partially Protected - Default
## 3282      29922    Partially Protected - Default
## 3283      29922                           Spoken
## 3284      29927                 Featured Article
## 3285      29932                 Featured Article
## 3286      29946    Partially Protected - Default
## 3287      29957    Partially Protected - Default
## 3288      29970                           Spoken
## 3289      29977 Partially Protected - Autoreview
## 3290      29977    Partially Protected - Default
## 3291      29977                           Spoken
## 3292      29984                     Good Article
## 3293      29985    Partially Protected - Default
## 3294      29992    Partially Protected - Default
## 3295      29994                           Spoken
## 3296      29995                           Spoken
## 3297      29996                           Spoken
## 3298      29997                           Spoken
## 3299      30001    Partially Protected - Default
## 3300      30003    Partially Protected - Default
## 3301      30006    Partially Protected - Default
## 3302      30012    Partially Protected - Default
## 3303      30020                     Good Article
## 3304      30027    Partially Protected - Default
## 3305      30029                     Good Article
## 3306      30030    Partially Protected - Default
## 3307      30034    Partially Protected - Default
## 3308      30035    Partially Protected - Default
## 3309      30040                 Featured Article
## 3310      30040    Partially Protected - Default
## 3311      30040                           Spoken
## 3312      30041                 Featured Article
## 3313      30043                     Good Article
## 3314      30044                 Featured Article
## 3315      30046                     Good Article
## 3316      30047                     Good Article
## 3317      30048                     Good Article
## 3318      30049                     Good Article
## 3319      30058    Partially Protected - Default
## 3320      30071    Partially Protected - Default
## 3321      30075                     Good Article
## 3322      30075    Partially Protected - Default
## 3323      30078                     Good Article
## 3324      30100                     Good Article
## 3325      30102                     Good Article
## 3326      30105                 Featured Article
## 3327      30105    Partially Protected - Default
## 3328      30128    Partially Protected - Default
## 3329      30133 Partially Protected - Autoreview
## 3330      30258                     Good Article
## 3331      30292                     Good Article
## 3332      30299                           Spoken
## 3333      30304                     Good Article
## 3334      30309                     Good Article
## 3335      30320                 Featured Article
## 3336      30327                     Good Article
## 3337      30342                           Spoken
## 3338      30356                     Good Article
## 3339      30365                     Good Article
## 3340      30388                 Featured Article
## 3341      30394    Partially Protected - Default
## 3342      30395    Partially Protected - Default
## 3343      30423                     Good Article
## 3344      30437    Partially Protected - Default
## 3345      30448                     Good Article
## 3346      30457    Partially Protected - Default
## 3347      30463                     Good Article
## 3348      30463 Partially Protected - Autoreview
## 3349      30467                 Featured Article
## 3350      30467    Partially Protected - Default
## 3351      30470                     Good Article
## 3352      30474                     Good Article
## 3353      30474    Partially Protected - Default
## 3354      30483                           Spoken
## 3355      30502                 Featured Article
## 3356      30535    Partially Protected - Default
## 3357      30536                     Good Article
## 3358      30539                     Good Article
## 3359      30539    Partially Protected - Default
## 3360      30574                     Good Article
## 3361      30575                     Good Article
## 3362      30589    Partially Protected - Default
## 3363      30592                     Good Article
## 3364      30598 Partially Protected - Autoreview
## 3365      30625                 Featured Article
## 3366      30635    Partially Protected - Default
## 3367      30636 Partially Protected - Autoreview
## 3368      30653                     Good Article
## 3369      30653    Partially Protected - Default
## 3370      30654    Partially Protected - Default
## 3371      30659                 Featured Article
## 3372      30660                 Featured Article
## 3373      30662                 Featured Article
## 3374      30664                 Featured Article
## 3375      30670 Partially Protected - Autoreview
## 3376      30677    Partially Protected - Default
## 3377      30680    Partially Protected - Default
## 3378      30684    Partially Protected - Default
## 3379      30702                           Spoken
## 3380      30718    Partially Protected - Default
## 3381      30731                     Good Article
## 3382      30737                     Good Article
## 3383      30786                     Good Article
## 3384      30795    Partially Protected - Default
## 3385      30809                     Good Article
## 3386      30810                     Good Article
## 3387      30850                 Featured Article
## 3388      30890    Partially Protected - Default
## 3389      30903                           Spoken
## 3390      30950    Partially Protected - Default
## 3391      30964                     Good Article
## 3392      30972                 Featured Article
## 3393      30978                 Featured Article
## 3394      30978    Partially Protected - Default
## 3395      31015    Partially Protected - Default
## 3396      31022    Partially Protected - Default
## 3397      31033 Partially Protected - Autoreview
## 3398      31056                     Good Article
## 3399      31067                     Good Article
## 3400      31069                     Good Article
## 3401      31075    Partially Protected - Default
## 3402      31117                     Good Article
## 3403      31161    Partially Protected - Default
## 3404      31164                     Good Article
## 3405      31164    Partially Protected - Default
## 3406      31165                 Featured Article
## 3407      31173                           Spoken
## 3408      31217 Partially Protected - Autoreview
## 3409      31246                           Spoken
## 3410      31275                 Featured Article
## 3411      31307                 Featured Article
## 3412      31326 Partially Protected - Autoreview
## 3413      31338                 Featured Article
## 3414      31338                           Spoken
## 3415      31341    Partially Protected - Default
## 3416      31353                           Spoken
## 3417      31362                 Featured Article
## 3418      31392                 Featured Article
## 3419      31392 Partially Protected - Autoreview
## 3420      31392                           Spoken
## 3421      31401    Partially Protected - Default
## 3422      31401                           Spoken
## 3423      31426    Partially Protected - Default
## 3424      31453    Partially Protected - Default
## 3425      31460    Partially Protected - Default
## 3426      31463                 Featured Article
## 3427      31463                           Spoken
## 3428      31509    Partially Protected - Default
## 3429      31516    Partially Protected - Default
## 3430      31519    Partially Protected - Default
## 3431      31522    Partially Protected - Default
## 3432      31534                 Featured Article
## 3433      31534    Partially Protected - Default
## 3434      31577                           Spoken
## 3435      31584    Partially Protected - Default
## 3436      31586    Partially Protected - Default
## 3437      31630                     Good Article
## 3438      31630    Partially Protected - Default
## 3439      31638    Partially Protected - Default
## 3440      31644    Partially Protected - Default
## 3441      31645    Partially Protected - Default
## 3442      31653                     Good Article
## 3443      31653    Partially Protected - Default
## 3444      31653                           Spoken
## 3445      31654                     Good Article
## 3446      31656                     Good Article
## 3447      31658 Partially Protected - Autoreview
## 3448      31665                     Good Article
## 3449      31665    Partially Protected - Default
## 3450      31666                     Good Article
## 3451      31666    Partially Protected - Default
## 3452      31667                     Good Article
## 3453      31668    Partially Protected - Default
## 3454      31669                     Good Article
## 3455      31670    Partially Protected - Default
## 3456      31685                     Good Article
## 3457      31685    Partially Protected - Default
## 3458      31694    Partially Protected - Default
## 3459      31700                           Spoken
## 3460      31704    Partially Protected - Default
## 3461      31717    Partially Protected - Default
## 3462      31737                           Spoken
## 3463      31740                 Featured Article
## 3464      31743                 Featured Article
## 3465      31743    Partially Protected - Default
## 3466      31750 Partially Protected - Autoreview
## 3467      31752                 Featured Article
## 3468      31752    Partially Protected - Default
## 3469      31753                 Featured Article
## 3470      31753    Partially Protected - Default
## 3471      31754                 Featured Article
## 3472      31754    Partially Protected - Default
## 3473      31755    Partially Protected - Default
## 3474      31756                           Spoken
## 3475      31769                     Good Article
## 3476      31769    Partially Protected - Default
## 3477      31773                 Featured Article
## 3478      31780    Partially Protected - Default
## 3479      31785                     Good Article
## 3480      31786                     Good Article
## 3481      31787                     Good Article
## 3482      31788                     Good Article
## 3483      31789                     Good Article
## 3484      31790                     Good Article
## 3485      31797                     Good Article
## 3486      31804                 Featured Article
## 3487      31814    Partially Protected - Default
## 3488      31873                     Good Article
## 3489      31873    Partially Protected - Default
## 3490      31874                     Good Article
## 3491      31874    Partially Protected - Default
## 3492      31874                           Spoken
## 3493      31876                 Featured Article
## 3494      31880                     Good Article
## 3495      31880    Partially Protected - Default
## 3496      31880                           Spoken
## 3497      31881    Partially Protected - Default
## 3498      31885    Partially Protected - Default
## 3499      31899    Partially Protected - Default
## 3500      31900    Partially Protected - Default
## 3501      31909                           Spoken
## 3502      31923                     Good Article
## 3503      31969                 Featured Article
## 3504      31971 Partially Protected - Autoreview
## 3505      31972 Partially Protected - Autoreview
## 3506      31978                 Featured Article
## 3507      32017                     Good Article
## 3508      32017    Partially Protected - Default
## 3509      32018                     Good Article
## 3510      32018    Partially Protected - Default
## 3511      32026 Partially Protected - Autoreview
## 3512      32032    Partially Protected - Default
## 3513      32070    Partially Protected - Default
## 3514      32071    Partially Protected - Default
## 3515      32101                 Featured Article
## 3516      32105                     Good Article
## 3517      32105    Partially Protected - Default
## 3518      32113    Partially Protected - Default
## 3519      32127                     Good Article
## 3520      32146                     Good Article
## 3521      32148                 Featured Article
## 3522      32148    Partially Protected - Default
## 3523      32148                           Spoken
## 3524      32161                     Good Article
## 3525      32161    Partially Protected - Default
## 3526      32173                 Featured Article
## 3527      32191    Partially Protected - Default
## 3528      32197                     Good Article
## 3529      32236                     Good Article
## 3530      32240    Partially Protected - Default
## 3531      32252                     Good Article
## 3532      32270    Partially Protected - Default
## 3533      32293                           Spoken
## 3534      32298                 Featured Article
## 3535      32307    Partially Protected - Default
## 3536      32347    Partially Protected - Default
## 3537      32350                     Good Article
## 3538      32362                 Featured Article
## 3539      32362    Partially Protected - Default
## 3540      32370                     Good Article
## 3541      32380                     Good Article
## 3542      32390    Partially Protected - Default
## 3543      32398                     Good Article
## 3544      32401    Partially Protected - Default
## 3545      32427    Partially Protected - Default
## 3546      32429                 Featured Article
## 3547      32431                     Good Article
## 3548      32432                 Featured Article
## 3549      32432    Partially Protected - Default
## 3550      32439                 Featured Article
## 3551      32439                           Spoken
## 3552      32441    Partially Protected - Default
## 3553      32462 Partially Protected - Autoreview
## 3554      32476    Partially Protected - Default
## 3555      32481                     Good Article
## 3556      32481    Partially Protected - Default
## 3557      32482                     Good Article
## 3558      32482    Partially Protected - Default
## 3559      32507                     Good Article
## 3560      32509                     Good Article
## 3561      32512                     Good Article
## 3562      32529                 Featured Article
## 3563      32529    Partially Protected - Default
## 3564      32534                     Good Article
## 3565      32538 Partially Protected - Autoreview
## 3566      32558    Partially Protected - Default
## 3567      32565    Partially Protected - Default
## 3568      32571    Partially Protected - Default
## 3569      32591    Partially Protected - Default
## 3570      32603                 Featured Article
## 3571      32603    Partially Protected - Default
## 3572      32610    Partially Protected - Default
## 3573      32611    Partially Protected - Default
## 3574      32612 Partially Protected - Autoreview
## 3575      32653    Partially Protected - Default
## 3576      32676    Partially Protected - Default
## 3577      32683                     Good Article
## 3578      32692                     Good Article
## 3579      32693                           Spoken
## 3580      32710                     Good Article
## 3581      32710    Partially Protected - Default
## 3582      32712                 Featured Article
## 3583      32727    Partially Protected - Default
## 3584      32729                           Spoken
## 3585      32745                 Featured Article
## 3586      32745    Partially Protected - Default
## 3587      32754    Partially Protected - Default
## 3588      32767                 Featured Article
## 3589      32781                     Good Article
## 3590      32788                 Featured Article
## 3591      32789    Partially Protected - Default
## 3592      32798    Partially Protected - Default
## 3593      32814                     Good Article
## 3594      32814    Partially Protected - Default
## 3595      32817    Partially Protected - Default
## 3596      32840    Partially Protected - Default
## 3597      32851    Partially Protected - Default
## 3598      32851                           Spoken
## 3599      32860    Partially Protected - Default
## 3600      32860                           Spoken
## 3601      32864    Partially Protected - Default
## 3602      32866    Partially Protected - Default
## 3603      32871    Partially Protected - Default
## 3604      32871                           Spoken
## 3605      32872                     Good Article
## 3606      32872    Partially Protected - Default
## 3607      32877    Partially Protected - Default
## 3608      32881 Partially Protected - Autoreview
## 3609      32883                 Featured Article
## 3610      32883    Partially Protected - Default
## 3611      32883                           Spoken
## 3612      32897                 Featured Article
## 3613      32897    Partially Protected - Default
## 3614      32897                           Spoken
## 3615      32901    Partially Protected - Default
## 3616      32908    Partially Protected - Default
## 3617      32917                 Featured Article
## 3618      32917    Partially Protected - Default
## 3619      32919    Partially Protected - Default
## 3620      32927                     Good Article
## 3621      32927    Partially Protected - Default
## 3622      32928                     Good Article
## 3623      32928    Partially Protected - Default
## 3624      32928                           Spoken
## 3625      32936                     Good Article
## 3626      32937                     Good Article
## 3627      33057    Partially Protected - Default
## 3628      33060                 Featured Article
## 3629      33061                 Featured Article
## 3630      33095    Partially Protected - Default
## 3631      33096                     Good Article
## 3632      33096    Partially Protected - Default
## 3633      33102                     Good Article
## 3634      33119                 Featured Article
## 3635      33121                     Good Article
## 3636      33126 Partially Protected - Autoreview
## 3637      33135    Partially Protected - Default
## 3638      33137                           Spoken
## 3639      33158    Partially Protected - Default
## 3640      33163    Partially Protected - Default
## 3641      33171                     Good Article
## 3642      33175 Partially Protected - Autoreview
## 3643      33180    Partially Protected - Default
## 3644      33183    Partially Protected - Default
## 3645      33209    Partially Protected - Default
## 3646      33210    Partially Protected - Default
## 3647      33211    Partially Protected - Default
## 3648      33213    Partially Protected - Default
## 3649      33215    Partially Protected - Default
## 3650      33216    Partially Protected - Default
## 3651      33217    Partially Protected - Default
## 3652      33218    Partially Protected - Default
## 3653      33220    Partially Protected - Default
## 3654      33265    Partially Protected - Default
## 3655      33265                           Spoken
## 3656      33270                     Good Article
## 3657      33276                     Good Article
## 3658      33277                     Good Article
## 3659      33299                 Featured Article
## 3660      33299 Partially Protected - Autoreview
## 3661      33306    Partially Protected - Default
## 3662      33422                 Featured Article
## 3663      33422    Partially Protected - Default
## 3664      33430                 Featured Article
## 3665      33440                     Good Article
## 3666      33440    Partially Protected - Default
## 3667      33441                     Good Article
## 3668      33441    Partially Protected - Default
## 3669      33442                     Good Article
## 3670      33442    Partially Protected - Default
## 3671      33443                     Good Article
## 3672      33443    Partially Protected - Default
## 3673      33501                 Featured Article
## 3674      33512    Partially Protected - Default
## 3675      33512                           Spoken
## 3676      33520                 Featured Article
## 3677      33521                 Featured Article
## 3678      33522                 Featured Article
## 3679      33523    Partially Protected - Default
## 3680      33545                           Spoken
## 3681      33550    Partially Protected - Default
## 3682      33589 Partially Protected - Autoreview
## 3683      33611    Partially Protected - Default
## 3684      33612                           Spoken
## 3685      33621                     Good Article
## 3686      33629                     Good Article
## 3687      33645    Partially Protected - Default
## 3688      33649                 Featured Article
## 3689      33649 Partially Protected - Autoreview
## 3690      33665                 Featured Article
## 3691      33673    Partially Protected - Default
## 3692      33682    Partially Protected - Default
## 3693      33682                           Spoken
## 3694      33684                 Featured Article
## 3695      33702                     Good Article
## 3696      33702    Partially Protected - Default
## 3697      33703    Partially Protected - Default
## 3698      33709                     Good Article
## 3699      33726                     Good Article
## 3700      33727    Partially Protected - Default
## 3701      33777                     Good Article
## 3702      33777    Partially Protected - Default
## 3703      33779    Partially Protected - Default
## 3704      33802    Partially Protected - Default
## 3705      33805                     Good Article
## 3706      33807    Partially Protected - Default
## 3707      33816                 Featured Article
## 3708      33816                           Spoken
## 3709      33832    Partially Protected - Default
## 3710      33862                     Good Article
## 3711      33870                     Good Article
## 3712      33870    Partially Protected - Default
## 3713      33910                     Good Article
## 3714      33917                 Featured Article
## 3715      33917    Partially Protected - Default
## 3716      33917                           Spoken
## 3717      33918                           Spoken
## 3718      33921                     Good Article
## 3719      33922                     Good Article
## 3720      33924                 Featured Article
## 3721      33925 Partially Protected - Autoreview
## 3722      33941    Partially Protected - Default
## 3723      33949                     Good Article
## 3724      33956                     Good Article
## 3725      33978                     Good Article
## 3726      33978    Partially Protected - Default
## 3727      33982    Partially Protected - Default
## 3728      34033                     Good Article
## 3729      34035    Partially Protected - Default
## 3730      34040    Partially Protected - Default
## 3731      34052    Partially Protected - Default
## 3732      34059    Partially Protected - Default
## 3733      34069                     Good Article
## 3734      34071    Partially Protected - Default
## 3735      34078                     Good Article
## 3736      34085 Partially Protected - Autoreview
## 3737      34090    Partially Protected - Default
## 3738      34115    Partially Protected - Default
## 3739      34117    Partially Protected - Default
## 3740      34134                 Featured Article
## 3741      34135                 Featured Article
## 3742      34139                 Featured Article
## 3743      34151                     Good Article
## 3744      34168                     Good Article
## 3745      34196    Partially Protected - Default
## 3746      34199    Partially Protected - Default
## 3747      34226    Partially Protected - Default
## 3748      34240                     Good Article
## 3749      34243    Partially Protected - Default
## 3750      34244    Partially Protected - Default
## 3751      34258                     Good Article
## 3752      34258    Partially Protected - Default
## 3753      34268    Partially Protected - Default
## 3754      34276    Partially Protected - Default
## 3755      34289                 Featured Article
## 3756      34289    Partially Protected - Default
## 3757      34340                 Featured Article
## 3758      34350                     Good Article
## 3759      34351                     Good Article
## 3760      34361                     Good Article
## 3761      34364    Partially Protected - Default
## 3762      34369    Partially Protected - Default
## 3763      34385    Partially Protected - Default
## 3764      34397    Partially Protected - Default
## 3765      34398    Partially Protected - Default
## 3766      34418    Partially Protected - Default
## 3767      34420                 Featured Article
## 3768      34420                           Spoken
## 3769      34422                     Good Article
## 3770      34460    Partially Protected - Default
## 3771      34467                     Good Article
## 3772      34475                     Good Article
## 3773      34484    Partially Protected - Default
## 3774      34509    Partially Protected - Default
## 3775      34513    Partially Protected - Default
## 3776      34533    Partially Protected - Default
## 3777      34542                 Featured Article
## 3778      34615    Partially Protected - Default
## 3779      34681    Partially Protected - Default
## 3780      34813    Partially Protected - Default
## 3781      34836    Partially Protected - Default
## 3782      35507    Partially Protected - Default
## 3783      35825    Partially Protected - Default
## 3784      35983    Partially Protected - Default
## 3785      36119                     Good Article
## 3786      36188                     Good Article
## 3787      36197    Partially Protected - Default
## 3788      36225    Partially Protected - Default
## 3789      36336    Partially Protected - Default
## 3790      36487    Partially Protected - Default
## 3791      36517                     Good Article
## 3792      36517    Partially Protected - Default
## 3793      36592                     Good Article
## 3794      36595                     Good Article
## 3795      36623                           Spoken
## 3796      36649                 Featured Article
## 3797      36649    Partially Protected - Default
## 3798      36741                 Featured Article
## 3799      36753                 Featured Article
## 3800      36753    Partially Protected - Default
## 3801      36754                     Good Article
## 3802      36755                     Good Article
## 3803      36771                     Good Article
## 3804      36773    Partially Protected - Default
## 3805      36806    Partially Protected - Default
## 3806      36808                     Good Article
## 3807      36808    Partially Protected - Default
## 3808      36812                 Featured Article
## 3809      36854                     Good Article
## 3810      36863                     Good Article
## 3811      36869    Partially Protected - Default
## 3812      36885                     Good Article
## 3813      36896                 Featured Article
## 3814      36896    Partially Protected - Default
## 3815      36917                 Featured Article
## 3816      36922    Partially Protected - Default
## 3817      36969    Partially Protected - Default
## 3818      36979    Partially Protected - Default
## 3819      36984    Partially Protected - Default
## 3820      37010                     Good Article
## 3821      37021                     Good Article
## 3822      37048    Partially Protected - Default
## 3823      37048                           Spoken
## 3824      37080                           Spoken
## 3825      37120    Partially Protected - Default
## 3826      37143                     Good Article
## 3827      37149                     Good Article
## 3828      37161    Partially Protected - Default
## 3829      37168    Partially Protected - Default
## 3830      37208    Partially Protected - Default
## 3831      37213 Partially Protected - Autoreview
## 3832      37242    Partially Protected - Default
## 3833      37243                 Featured Article
## 3834      37243    Partially Protected - Default
## 3835      37252                 Featured Article
## 3836      37256    Partially Protected - Default
## 3837      37261    Partially Protected - Default
## 3838      37279    Partially Protected - Default
## 3839      37306    Partially Protected - Default
## 3840      37307 Partially Protected - Autoreview
## 3841      37313    Partially Protected - Default
## 3842      37332                 Featured Article
## 3843      37334                 Featured Article
## 3844      37351    Partially Protected - Default
## 3845      37354    Partially Protected - Default
## 3846      37383                 Featured Article
## 3847      37383    Partially Protected - Default
## 3848      37383                           Spoken
## 3849      37384                     Good Article
## 3850      37384    Partially Protected - Default
## 3851      37394                 Featured Article
## 3852      37394    Partially Protected - Default
## 3853      37398    Partially Protected - Default
## 3854      37402    Partially Protected - Default
## 3855      37404                     Good Article
## 3856      37404    Partially Protected - Default
## 3857      37412    Partially Protected - Default
## 3858      37412                           Spoken
## 3859      37506    Partially Protected - Default
## 3860      37521                 Featured Article
## 3861      37522                 Featured Article
## 3862      37528                 Featured Article
## 3863      37529                     Good Article
## 3864      37530                 Featured Article
## 3865      37530    Partially Protected - Default
## 3866      37534                 Featured Article
## 3867      37556                 Featured Article
## 3868      37556    Partially Protected - Default
## 3869      37556                           Spoken
## 3870      37561    Partially Protected - Default
## 3871      37563    Partially Protected - Default
## 3872      37574                     Good Article
## 3873      37589                 Featured Article
## 3874      37589                           Spoken
## 3875      37591                     Good Article
## 3876      37599                     Good Article
## 3877      37602    Partially Protected - Default
## 3878      37613 Partially Protected - Autoreview
## 3879      37614    Partially Protected - Default
## 3880      37618    Partially Protected - Default
## 3881      37650    Partially Protected - Default
## 3882      37654    Partially Protected - Default
## 3883      37674    Partially Protected - Default
## 3884      37676                     Good Article
## 3885      37731 Partially Protected - Autoreview
## 3886      37746                     Good Article
## 3887      37751    Partially Protected - Default
## 3888      37753    Partially Protected - Default
## 3889      37754    Partially Protected - Default
## 3890      37756                     Good Article
## 3891      37756 Partially Protected - Autoreview
## 3892      37762                     Good Article
## 3893      37764                 Featured Article
## 3894      37764    Partially Protected - Default
## 3895      37765 Partially Protected - Autoreview
## 3896      37766 Partially Protected - Autoreview
## 3897      37780    Partially Protected - Default
## 3898      37782                 Featured Article
## 3899      37789    Partially Protected - Default
## 3900      37882    Partially Protected - Default
## 3901      37885                 Featured Article
## 3902      37914                 Featured Article
## 3903      37942    Partially Protected - Default
## 3904      37966    Partially Protected - Default
## 3905      37973                     Good Article
## 3906      37986    Partially Protected - Default
## 3907      37993    Partially Protected - Default
## 3908      38011    Partially Protected - Default
## 3909      38020                     Good Article
## 3910      38041 Partially Protected - Autoreview
## 3911      38074                     Good Article
## 3912      38085                     Good Article
## 3913      38103    Partially Protected - Default
## 3914      38104                     Good Article
## 3915      38117    Partially Protected - Default
## 3916      38134 Partially Protected - Autoreview
## 3917      38137                 Featured Article
## 3918      38203    Partially Protected - Default
## 3919      38214                           Spoken
## 3920      38215    Partially Protected - Default
## 3921      38218                     Good Article
## 3922      38235                     Good Article
## 3923      38245                 Featured Article
## 3924      38252                 Featured Article
## 3925      38252    Partially Protected - Default
## 3926      38258                     Good Article
## 3927      38301                     Good Article
## 3928      38301    Partially Protected - Default
## 3929      38310    Partially Protected - Default
## 3930      38314    Partially Protected - Default
## 3931      38327    Partially Protected - Default
## 3932      38334                 Featured Article
## 3933      38367                     Good Article
## 3934      38367    Partially Protected - Default
## 3935      38373 Partially Protected - Autoreview
## 3936      38375                     Good Article
## 3937      38407 Partially Protected - Autoreview
## 3938      38459    Partially Protected - Default
## 3939      38468                 Featured Article
## 3940      38469                 Featured Article
## 3941      38469    Partially Protected - Default
## 3942      38498                 Featured Article
## 3943      38498    Partially Protected - Default
## 3944      38577    Partially Protected - Default
## 3945      38602    Partially Protected - Default
## 3946      38602                           Spoken
## 3947      38711                 Featured Article
## 3948      38714    Partially Protected - Default
## 3949      38725                 Featured Article
## 3950      38740                     Good Article
## 3951      38740    Partially Protected - Default
## 3952      38776                     Good Article
## 3953      38929    Partially Protected - Default
## 3954      38930                 Featured Article
## 3955      38930    Partially Protected - Default
## 3956      38932    Partially Protected - Default
## 3957      38940    Partially Protected - Default
## 3958      38965                     Good Article
## 3959      39001                 Featured Article
## 3960      39010    Partially Protected - Default
## 3961      39017    Partially Protected - Default
## 3962      39020    Partially Protected - Default
## 3963      39027    Partially Protected - Default
## 3964      39032                 Featured Article
## 3965      39034                 Featured Article
## 3966      39034    Partially Protected - Default
## 3967      39034                           Spoken
## 3968      39038                 Featured Article
## 3969      39040                     Good Article
## 3970      39062    Partially Protected - Default
## 3971      39075                 Featured Article
## 3972      39086                     Good Article
## 3973      39149    Partially Protected - Default
## 3974      39187    Partially Protected - Default
## 3975      39204                     Good Article
## 3976      39206 Partially Protected - Autoreview
## 3977      39237    Partially Protected - Default
## 3978      39283                     Good Article
## 3979      39288 Partially Protected - Autoreview
## 3980      39311                     Good Article
## 3981      39330    Partially Protected - Default
## 3982      39356                     Good Article
## 3983      39356    Partially Protected - Default
## 3984      39375    Partially Protected - Default
## 3985      39424    Partially Protected - Default
## 3986      39445 Partially Protected - Autoreview
## 3987      39570 Partially Protected - Autoreview
## 3988      39606                     Good Article
## 3989      39613 Partially Protected - Autoreview
## 3990      39616                     Good Article
## 3991      39660    Partially Protected - Default
## 3992      39669                          Journal
## 3993      39669                 Featured Article
## 3994      39669    Partially Protected - Default
## 3995      39671                          Journal
## 3996      39671                 Featured Article
## 3997      39671    Partially Protected - Default
## 3998      39693                           Spoken
## 3999      39696    Partially Protected - Default
## 4000      39740                     Good Article
## 4001      39748    Partially Protected - Default
## 4002      39753                     Good Article
## 4003      39784 Partially Protected - Autoreview
## 4004      39848    Partially Protected - Default
## 4005      39942    Partially Protected - Default
## 4006      39988    Partially Protected - Default
## 4007      40114                     Good Article
## 4008      40148 Partially Protected - Autoreview
## 4009      40163                     Good Article
## 4010      40176                 Featured Article
## 4011      40176    Partially Protected - Default
## 4012      40203                 Featured Article
## 4013      40203                           Spoken
## 4014      40222                     Good Article
## 4015      40222                           Spoken
## 4016      40225                 Featured Article
## 4017      40233                     Good Article
## 4018      40316    Partially Protected - Default
## 4019      40321                     Good Article
## 4020      40353                     Good Article
## 4021      40396                 Featured Article
## 4022      40398    Partially Protected - Default
## 4023      40398                           Spoken
## 4024      40400                 Featured Article
## 4025      40400 Partially Protected - Autoreview
## 4026      40410                     Good Article
## 4027      40415                 Featured Article
## 4028      40448    Partially Protected - Default
## 4029      40469                     Good Article
## 4030      40484    Partially Protected - Default
## 4031      40504                 Featured Article
## 4032      40525                 Featured Article
## 4033      40549                 Featured Article
## 4034      40549    Partially Protected - Default
## 4035      40597                     Good Article
## 4036      40597    Partially Protected - Default
## 4037      40606                 Featured Article
## 4038      40673                 Featured Article
## 4039      40673                           Spoken
## 4040      40709                           Spoken
## 4041      40740                           Spoken
## 4042      40855    Partially Protected - Default
## 4043      41047                     Good Article
## 4044      41208    Partially Protected - Default
## 4045      41244                     Good Article
## 4046      41515    Partially Protected - Default
## 4047      41523                 Featured Article
## 4048      41523    Partially Protected - Default
## 4049      41528                     Good Article
## 4050      41531                     Good Article
## 4051      41535                 Featured Article
## 4052      41536    Partially Protected - Default
## 4053      41545                     Good Article
## 4054      41656                           Spoken
## 4055      41835    Partially Protected - Default
## 4056      41906                     Good Article
## 4057      41906 Partially Protected - Autoreview
## 4058      41925                     Good Article
## 4059      41925                           Spoken
## 4060      42001    Partially Protected - Default
## 4061      42010    Partially Protected - Default
## 4062      42012                 Featured Article
## 4063      42012    Partially Protected - Default
## 4064      42029                 Featured Article
## 4065      42029    Partially Protected - Default
## 4066      42044                     Good Article
## 4067      42044    Partially Protected - Default
## 4068      42050                     Good Article
## 4069      42050    Partially Protected - Default
## 4070      42056                     Good Article
## 4071      42056    Partially Protected - Default
## 4072      42068                     Good Article
## 4073      42068    Partially Protected - Default
## 4074      42074                     Good Article
## 4075      42090                 Featured Article
## 4076      42132    Partially Protected - Default
## 4077      42143                     Good Article
## 4078      42143    Partially Protected - Default
## 4079      42154                     Good Article
## 4080      42154 Partially Protected - Autoreview
## 4081      42173                 Featured Article
## 4082      42173    Partially Protected - Default
## 4083      42173                           Spoken
## 4084      42179    Partially Protected - Default
## 4085      42195                     Good Article
## 4086      42252    Partially Protected - Default
## 4087      42257    Partially Protected - Default
## 4088      42277    Partially Protected - Default
## 4089      42278 Partially Protected - Autoreview
## 4090      42357    Partially Protected - Default
## 4091      42368                 Featured Article
## 4092      42402 Partially Protected - Autoreview
## 4093      42424                     Good Article
## 4094      42424    Partially Protected - Default
## 4095      42533    Partially Protected - Default
## 4096      42558                 Featured Article
## 4097      42559    Partially Protected - Default
## 4098      42576                     Good Article
## 4099      42576 Partially Protected - Autoreview
## 4100      42586                 Featured Article
## 4101      42624                     Good Article
## 4102      42632                     Good Article
## 4103      42634                 Featured Article
## 4104      42635    Partially Protected - Default
## 4105      42660                 Featured Article
## 4106      42664                     Good Article
## 4107      42665                     Good Article
## 4108      42666                     Good Article
## 4109      42667                     Good Article
## 4110      42668                     Good Article
## 4111      42716 Partially Protected - Autoreview
## 4112      42758                 Featured Article
## 4113      42765    Partially Protected - Default
## 4114      42821                           Spoken
## 4115      42868 Partially Protected - Autoreview
## 4116      42966                     Good Article
## 4117      42978    Partially Protected - Default
## 4118      42993                     Good Article
## 4119      43007                     Good Article
## 4120      43034                 Featured Article
## 4121      43069 Partially Protected - Autoreview
## 4122      43070 Partially Protected - Autoreview
## 4123      43097    Partially Protected - Default
## 4124      43109                     Good Article
## 4125      43126                 Featured Article
## 4126      43127                 Featured Article
## 4127      43137                     Good Article
## 4128      43137    Partially Protected - Default
## 4129      43142                     Good Article
## 4130      43145                     Good Article
## 4131      43154 Partially Protected - Autoreview
## 4132      43174                     Good Article
## 4133      43200                     Good Article
## 4134      43202                     Good Article
## 4135      43212                     Good Article
## 4136      43223    Partially Protected - Default
## 4137      43236    Partially Protected - Default
## 4138      43245                           Spoken
## 4139      43262                     Good Article
## 4140      43269                           Spoken
## 4141      43271                 Featured Article
## 4142      43273 Partially Protected - Autoreview
## 4143      43291                 Featured Article
## 4144      43291    Partially Protected - Default
## 4145      43292                     Good Article
## 4146      43337                 Featured Article
## 4147      43351                 Featured Article
## 4148      43356                     Good Article
## 4149      43356    Partially Protected - Default
## 4150      43373                     Good Article
## 4151      43373 Partially Protected - Autoreview
## 4152      43382                 Featured Article
## 4153      43384                     Good Article
## 4154      43395                     Good Article
## 4155      43405                 Featured Article
## 4156      43421 Partially Protected - Autoreview
## 4157      43449                 Featured Article
## 4158      43449    Partially Protected - Default
## 4159      43455                 Featured Article
## 4160      43460                 Featured Article
## 4161      43460                           Spoken
## 4162      43461 Partially Protected - Autoreview
## 4163      43513                     Good Article
## 4164      43534    Partially Protected - Default
## 4165      43551    Partially Protected - Default
## 4166      43566    Partially Protected - Default
## 4167      43568    Partially Protected - Default
## 4168      43600    Partially Protected - Default
## 4169      43617                     Good Article
## 4170      43617    Partially Protected - Default
## 4171      43618    Partially Protected - Default
## 4172      43619                     Good Article
## 4173      43619    Partially Protected - Default
## 4174      43621                     Good Article
## 4175      43621    Partially Protected - Default
## 4176      43667                 Featured Article
## 4177      43675                 Featured Article
## 4178      43715                 Featured Article
## 4179      43715    Partially Protected - Default
## 4180      43717                           Spoken
## 4181      43718                           Spoken
## 4182      43721                     Good Article
## 4183      43782                     Good Article
## 4184      43805                     Good Article
## 4185      43854    Partially Protected - Default
## 4186      43866                           Spoken
## 4187      43923                     Good Article
## 4188      43937 Partially Protected - Autoreview
## 4189      43951                     Good Article
## 4190      43957    Partially Protected - Default
## 4191      43975                           Spoken
## 4192      43980                     Good Article
## 4193      43983    Partially Protected - Default
## 4194      43997 Partially Protected - Autoreview
## 4195      43998    Partially Protected - Default
## 4196      44014    Partially Protected - Default
## 4197      44059    Partially Protected - Default
## 4198      44070                     Good Article
## 4199      44122                 Featured Article
## 4200      44132    Partially Protected - Default
## 4201      44154                 Featured Article
## 4202      44203                 Featured Article
## 4203      44205    Partially Protected - Default
## 4204      44219    Partially Protected - Default
## 4205      44220    Partially Protected - Default
## 4206      44276    Partially Protected - Default
## 4207      44331    Partially Protected - Default
## 4208      44333    Partially Protected - Default
## 4209      44334    Partially Protected - Default
## 4210      44336    Partially Protected - Default
## 4211      44340                     Good Article
## 4212      44354                     Good Article
## 4213      44356    Partially Protected - Default
## 4214      44359                 Featured Article
## 4215      44371                 Featured Article
## 4216      44412    Partially Protected - Default
## 4217      44424    Partially Protected - Default
## 4218      44437                     Good Article
## 4219      44439                           Spoken
## 4220      44456    Partially Protected - Default
## 4221      44469                 Featured Article
## 4222      44469    Partially Protected - Default
## 4223      44474                 Featured Article
## 4224      44474    Partially Protected - Default
## 4225      44474                           Spoken
## 4226      44475                 Featured Article
## 4227      44475    Partially Protected - Default
## 4228      44492                 Featured Article
## 4229      44519                 Featured Article
## 4230      44525    Partially Protected - Default
## 4231      44568    Partially Protected - Default
## 4232      44613                 Featured Article
## 4233      44654                     Good Article
## 4234      44667                 Featured Article
## 4235      44667    Partially Protected - Default
## 4236      44737    Partially Protected - Default
## 4237      44740    Partially Protected - Default
## 4238      44744    Partially Protected - Default
## 4239      44755                 Featured Article
## 4240      44756                 Featured Article
## 4241      44785    Partially Protected - Default
## 4242      44833                 Featured Article
## 4243      44848                 Featured Article
## 4244      44849                 Featured Article
## 4245      44849    Partially Protected - Default
## 4246      44883                 Featured Article
## 4247      44905                     Good Article
## 4248      44905    Partially Protected - Default
## 4249      44953    Partially Protected - Default
## 4250      44990                 Featured Article
## 4251      45007                     Good Article
## 4252      45010                 Featured Article
## 4253      45010                           Spoken
## 4254      45054    Partially Protected - Default
## 4255      45080    Partially Protected - Default
## 4256      45097    Partially Protected - Default
## 4257      45100 Partially Protected - Autoreview
## 4258      45106    Partially Protected - Default
## 4259      45214                           Spoken
## 4260      45221    Partially Protected - Default
## 4261      45222                     Good Article
## 4262      45246                     Good Article
## 4263      45263    Partially Protected - Default
## 4264      45269                 Featured Article
## 4265      45280                 Featured Article
## 4266      45286    Partially Protected - Default
## 4267      45287    Partially Protected - Default
## 4268      45288                     Good Article
## 4269      45288    Partially Protected - Default
## 4270      45311    Partially Protected - Default
## 4271      45315                           Spoken
## 4272      45322    Partially Protected - Default
## 4273      45324    Partially Protected - Default
## 4274      45388                 Featured Article
## 4275      45397    Partially Protected - Default
## 4276      45416                     Good Article
## 4277      45470                     Good Article
## 4278      45474                 Featured Article
## 4279      45475 Partially Protected - Autoreview
## 4280      45497                     Good Article
## 4281      45559                 Featured Article
## 4282      45561                 Featured Article
## 4283      45609                     Good Article
## 4284      45609    Partially Protected - Default
## 4285      45639 Partially Protected - Autoreview
## 4286      45660                     Good Article
## 4287      45660    Partially Protected - Default
## 4288      45712 Partially Protected - Autoreview
## 4289      45724                 Featured Article
## 4290      45724    Partially Protected - Default
## 4291      45726                 Featured Article
## 4292      45728    Partially Protected - Default
## 4293      45777                     Good Article
## 4294      45782                     Good Article
## 4295      45810                     Good Article
## 4296      45838    Partially Protected - Default
## 4297      45845                           Spoken
## 4298      45851                 Featured Article
## 4299      45915                     Good Article
## 4300      45924    Partially Protected - Default
## 4301      45929                 Featured Article
## 4302      45943    Partially Protected - Default
## 4303      45943                           Spoken
## 4304      45956    Partially Protected - Default
## 4305      45956                           Spoken
## 4306      45964                     Good Article
## 4307      45964    Partially Protected - Default
## 4308      45967    Partially Protected - Default
## 4309      45968 Partially Protected - Autoreview
## 4310      45969                     Good Article
## 4311      45979    Partially Protected - Default
## 4312      45985 Partially Protected - Autoreview
## 4313      45990                           Spoken
## 4314      46025                           Spoken
## 4315      46037                     Good Article
## 4316      46037    Partially Protected - Default
## 4317      46047                           Spoken
## 4318      46083                 Featured Article
## 4319      46131                     Good Article
## 4320      46159                     Good Article
## 4321      46183    Partially Protected - Default
## 4322      46216    Partially Protected - Default
## 4323      46230 Partially Protected - Autoreview
## 4324      46234    Partially Protected - Default
## 4325      46252    Partially Protected - Default
## 4326      46332    Partially Protected - Default
## 4327      46343                 Featured Article
## 4328      46373                     Good Article
## 4329      46377                 Featured Article
## 4330      46384                 Featured Article
## 4331      46389                 Featured Article
## 4332      46396    Partially Protected - Default
## 4333      46398                           Spoken
## 4334      46415    Partially Protected - Default
## 4335      46417                     Good Article
## 4336      46417    Partially Protected - Default
## 4337      46420                 Featured Article
## 4338      46420    Partially Protected - Default
## 4339      46433    Partially Protected - Default
## 4340      46493                     Good Article
## 4341      46516    Partially Protected - Default
## 4342      46531                 Featured Article
## 4343      46542 Partially Protected - Autoreview
## 4344      46586    Partially Protected - Default
## 4345      46590    Partially Protected - Default
## 4346      46591                 Featured Article
## 4347      46605                 Featured Article
## 4348      46634                 Featured Article
## 4349      46634    Partially Protected - Default
## 4350      46634                           Spoken
## 4351      46663                     Good Article
## 4352      46684                 Featured Article
## 4353      46684                           Spoken
## 4354      46688                 Featured Article
## 4355      46690                 Featured Article
## 4356      46690    Partially Protected - Default
## 4357      46690                           Spoken
## 4358      46710                 Featured Article
## 4359      46720                 Featured Article
## 4360      46720    Partially Protected - Default
## 4361      46721                 Featured Article
## 4362      46721                           Spoken
## 4363      46744                 Featured Article
## 4364      46744    Partially Protected - Default
## 4365      46755                 Featured Article
## 4366      46755                           Spoken
## 4367      46792                 Featured Article
## 4368      46793                 Featured Article
## 4369      46817                     Good Article
## 4370      46817    Partially Protected - Default
## 4371      46823                 Featured Article
## 4372      46823    Partially Protected - Default
## 4373      46823                           Spoken
## 4374      46833                     Good Article
## 4375      46847    Partially Protected - Default
## 4376      46852                 Featured Article
## 4377      46854                 Featured Article
## 4378      46865                 Featured Article
## 4379      46866                 Featured Article
## 4380      46867                 Featured Article
## 4381      46888                     Good Article
## 4382      46888    Partially Protected - Default
## 4383      46888                           Spoken
## 4384      46889    Partially Protected - Default
## 4385      46916    Partially Protected - Default
## 4386      46928                     Good Article
## 4387      46945    Partially Protected - Default
## 4388      46946    Partially Protected - Default
## 4389      46947    Partially Protected - Default
## 4390      46961    Partially Protected - Default
## 4391      46989    Partially Protected - Default
## 4392      46990    Partially Protected - Default
## 4393      46991                 Featured Article
## 4394      47037                 Featured Article
## 4395      47055                 Featured Article
## 4396      47061                 Featured Article
## 4397      47063                 Featured Article
## 4398      47074    Partially Protected - Default
## 4399      47077                 Featured Article
## 4400      47078                 Featured Article
## 4401      47079                 Featured Article
## 4402      47080                 Featured Article
## 4403      47096 Partially Protected - Autoreview
## 4404      47118                     Good Article
## 4405      47125    Partially Protected - Default
## 4406      47139    Partially Protected - Default
## 4407      47200                     Good Article
## 4408      47214                 Featured Article
## 4409      47232                     Good Article
## 4410      47241                 Featured Article
## 4411      47241    Partially Protected - Default
## 4412      47241                           Spoken
## 4413      47242                     Good Article
## 4414      47244                 Featured Article
## 4415      47244    Partially Protected - Default
## 4416      47245                 Featured Article
## 4417      47245    Partially Protected - Default
## 4418      47247                 Featured Article
## 4419      47247    Partially Protected - Default
## 4420      47247                           Spoken
## 4421      47248                 Featured Article
## 4422      47248    Partially Protected - Default
## 4423      47250                 Featured Article
## 4424      47250    Partially Protected - Default
## 4425      47252                 Featured Article
## 4426      47252    Partially Protected - Default
## 4427      47262                     Good Article
## 4428      47263                 Featured Article
## 4429      47264                 Featured Article
## 4430      47264                           Spoken
## 4431      47270                     Good Article
## 4432      47271                     Good Article
## 4433      47271    Partially Protected - Default
## 4434      47349                 Featured Article
## 4435      47349 Partially Protected - Autoreview
## 4436      47374    Partially Protected - Default
## 4437      47382                     Good Article
## 4438      47387                 Featured Article
## 4439      47397                 Featured Article
## 4440      47402                 Featured Article
## 4441      47402                           Spoken
## 4442      47427                           Spoken
## 4443      47468    Partially Protected - Default
## 4444      47483    Partially Protected - Default
## 4445      47498    Partially Protected - Default
## 4446      47498                           Spoken
## 4447      47510                 Featured Article
## 4448      47512    Partially Protected - Default
## 4449      47512                           Spoken
## 4450      47515 Partially Protected - Autoreview
## 4451      47532                     Good Article
## 4452      47533                     Good Article
## 4453      47541    Partially Protected - Default
## 4454      47548                 Featured Article
## 4455      47548                           Spoken
## 4456      47549    Partially Protected - Default
## 4457      47549                           Spoken
## 4458      47551    Partially Protected - Default
## 4459      47551                           Spoken
## 4460      47553    Partially Protected - Default
## 4461      47553                           Spoken
## 4462      47555    Partially Protected - Default
## 4463      47555                           Spoken
## 4464      47558    Partially Protected - Default
## 4465      47585 Partially Protected - Autoreview
## 4466      47628    Partially Protected - Default
## 4467      47666                 Featured Article
## 4468      47700                     Good Article
## 4469      47710    Partially Protected - Default
## 4470      47717                     Good Article
## 4471      47717 Partially Protected - Autoreview
## 4472      47720                     Good Article
## 4473      47723    Partially Protected - Default
## 4474      47737    Partially Protected - Default
## 4475      47782                     Good Article
## 4476      47785                     Good Article
## 4477      47801                 Featured Article
## 4478      47878                 Featured Article
## 4479      47879                 Featured Article
## 4480      47880                     Good Article
## 4481      47911                     Good Article
## 4482      47921                           Spoken
## 4483      47923                 Featured Article
## 4484      47923    Partially Protected - Default
## 4485      47923                           Spoken
## 4486      47941    Partially Protected - Default
## 4487      47968                     Good Article
## 4488      47974                 Featured Article
## 4489      48029                     Good Article
## 4490      48064                 Featured Article
## 4491      48068                 Featured Article
## 4492      48083                 Featured Article
## 4493      48097    Partially Protected - Default
## 4494      48133    Partially Protected - Default
## 4495      48139    Partially Protected - Default
## 4496      48146    Partially Protected - Default
## 4497      48146                           Spoken
## 4498      48175                 Featured Article
## 4499      48175    Partially Protected - Default
## 4500      48188    Partially Protected - Default
## 4501      48212    Partially Protected - Default
## 4502      48227    Partially Protected - Default
## 4503      48251    Partially Protected - Default
## 4504      48274                     Good Article
## 4505      48276    Partially Protected - Default
## 4506      48302    Partially Protected - Default
## 4507      48337    Partially Protected - Default
## 4508      48338                     Good Article
## 4509      48338    Partially Protected - Default
## 4510      48360                     Good Article
## 4511      48362                 Featured Article
## 4512      48405                 Featured Article
## 4513      48405                           Spoken
## 4514      48419                 Featured Article
## 4515      48449                     Good Article
## 4516      48517    Partially Protected - Default
## 4517      48539                     Good Article
## 4518      48544                 Featured Article
## 4519      48548                     Good Article
## 4520      48569    Partially Protected - Default
## 4521      48570                 Featured Article
## 4522      48571                 Featured Article
## 4523      48594                 Featured Article
## 4524      48596                 Featured Article
## 4525      48596    Partially Protected - Default
## 4526      48630    Partially Protected - Default
## 4527      48644                 Featured Article
## 4528      48646                 Featured Article
## 4529      48648                     Good Article
## 4530      48649                     Good Article
## 4531      48664                 Featured Article
## 4532      48664                           Spoken
## 4533      48669    Partially Protected - Default
## 4534      48677    Partially Protected - Default
## 4535      48696                     Good Article
## 4536      48711 Partially Protected - Autoreview
## 4537      48743    Partially Protected - Default
## 4538      48755 Partially Protected - Autoreview
## 4539      48765                           Spoken
## 4540      48766                           Spoken
## 4541      48767 Partially Protected - Autoreview
## 4542      48768    Partially Protected - Default
## 4543      48784                 Featured Article
## 4544      48784    Partially Protected - Default
## 4545      48803                 Featured Article
## 4546      48821 Partially Protected - Autoreview
## 4547      48829    Partially Protected - Default
## 4548      48830 Partially Protected - Autoreview
## 4549      48832 Partially Protected - Autoreview
## 4550      48833                           Spoken
## 4551      48874    Partially Protected - Default
## 4552      48877 Partially Protected - Autoreview
## 4553      48907                     Good Article
## 4554      48907    Partially Protected - Default
## 4555      48918                 Featured Article
## 4556      48918                           Spoken
## 4557      48927                 Featured Article
## 4558      48933    Partially Protected - Default
## 4559      48951                 Featured Article
## 4560      48952    Partially Protected - Default
## 4561      48973    Partially Protected - Default
## 4562      49005    Partially Protected - Default
## 4563      49080    Partially Protected - Default
## 4564      49090    Partially Protected - Default
## 4565      49105    Partially Protected - Default
## 4566      49116    Partially Protected - Default
## 4567      49121                     Good Article
## 4568      49123                 Featured Article
## 4569      49186                           Spoken
## 4570      49241                 Featured Article
## 4571      49256    Partially Protected - Default
## 4572      49309                           Spoken
## 4573      49348                     Good Article
## 4574      49348    Partially Protected - Default
## 4575      49397                     Good Article
## 4576      49448    Partially Protected - Default
## 4577      49471                 Featured Article
## 4578      49471    Partially Protected - Default
## 4579      49517                     Good Article
## 4580      49522    Partially Protected - Default
## 4581      49557                 Featured Article
## 4582      49588                     Good Article
## 4583      49593    Partially Protected - Default
## 4584      49603    Partially Protected - Default
## 4585      49644                     Good Article
## 4586      49676                     Good Article
## 4587      49708    Partially Protected - Default
## 4588      49720    Partially Protected - Default
## 4589      49728                 Featured Article
## 4590      49733 Partially Protected - Autoreview
## 4591      49739 Partially Protected - Autoreview
## 4592      49749    Partially Protected - Default
## 4593      49766                           Spoken
## 4594      49799                           Spoken
## 4595      49860                           Spoken
## 4596      49907                     Good Article
## 4597      49908    Partially Protected - Default
## 4598      49966                     Good Article
## 4599      49976                           Spoken
## 4600      50047    Partially Protected - Default
## 4601      50072                 Featured Article
## 4602      50128                 Featured Article
## 4603      50128    Partially Protected - Default
## 4604      50128                           Spoken
## 4605      50151                     Good Article
## 4606      50167    Partially Protected - Default
## 4607      50185    Partially Protected - Default
## 4608      50192                 Featured Article
## 4609      50192    Partially Protected - Default
## 4610      50196                     Good Article
## 4611      50203 Partially Protected - Autoreview
## 4612      50214                 Featured Article
## 4613      50226                 Featured Article
## 4614      50236                 Featured Article
## 4615      50237    Partially Protected - Default
## 4616      50239                     Good Article
## 4617      50277                     Good Article
## 4618      50279                 Featured Article
## 4619      50306    Partially Protected - Default
## 4620      50307                     Good Article
## 4621      50327                     Good Article
## 4622      50361                 Featured Article
## 4623      50361                           Spoken
## 4624      50372    Partially Protected - Default
## 4625      50397                          Journal
## 4626      50397                 Featured Article
## 4627      50408 Partially Protected - Autoreview
## 4628      50430    Partially Protected - Default
## 4629      50449                           Spoken
## 4630      50450    Partially Protected - Default
## 4631      50478                     Good Article
## 4632      50482    Partially Protected - Default
## 4633      50484 Partially Protected - Autoreview
## 4634      50510                           Spoken
## 4635      50534                 Featured Article
## 4636      50538                     Good Article
## 4637      50585    Partially Protected - Default
## 4638      50588                     Good Article
## 4639      50603                 Featured Article
## 4640      50603    Partially Protected - Default
## 4641      50650                     Good Article
## 4642      50655 Partially Protected - Autoreview
## 4643      50693                 Featured Article
## 4644      50715    Partially Protected - Default
## 4645      50744                     Good Article
## 4646      50744    Partially Protected - Default
## 4647      50755                 Featured Article
## 4648      50768    Partially Protected - Default
## 4649      50778    Partially Protected - Default
## 4650      50789                     Good Article
## 4651      50792                     Good Article
## 4652      50793                     Good Article
## 4653      50793                           Spoken
## 4654      50794                     Good Article
## 4655      50795                     Good Article
## 4656      50838                 Featured Article
## 4657      50841                           Spoken
## 4658      50884                     Good Article
## 4659      50886                 Featured Article
## 4660      50887                 Featured Article
## 4661      50908                     Good Article
## 4662      50928    Partially Protected - Default
## 4663      50929    Partially Protected - Default
## 4664      50953    Partially Protected - Default
## 4665      50957                     Good Article
## 4666      50957                           Spoken
## 4667      50986    Partially Protected - Default
## 4668      50989    Partially Protected - Default
## 4669      50997    Partially Protected - Default
## 4670      51023                           Spoken
## 4671      51039                     Good Article
## 4672      51054    Partially Protected - Default
## 4673      51073                           Spoken
## 4674      51106                 Featured Article
## 4675      51116                 Featured Article
## 4676      51116    Partially Protected - Default
## 4677      51116                           Spoken
## 4678      51123                           Spoken
## 4679      51128                     Good Article
## 4680      51138                           Spoken
## 4681      51142 Partially Protected - Autoreview
## 4682      51154                     Good Article
## 4683      51155    Partially Protected - Default
## 4684      51170                     Good Article
## 4685      51174    Partially Protected - Default
## 4686      51202    Partially Protected - Default
## 4687      51218    Partially Protected - Default
## 4688      51258                     Good Article
## 4689      51275                 Featured Article
## 4690      51289    Partially Protected - Default
## 4691      51290    Partially Protected - Default
## 4692      51291    Partially Protected - Default
## 4693      51292    Partially Protected - Default
## 4694      51299    Partially Protected - Default
## 4695      51302    Partially Protected - Default
## 4696      51322                 Featured Article
## 4697      51326                           Spoken
## 4698      51387    Partially Protected - Default
## 4699      51425    Partially Protected - Default
## 4700      51450                     Good Article
## 4701      51450    Partially Protected - Default
## 4702      51451                     Good Article
## 4703      51451    Partially Protected - Default
## 4704      51475    Partially Protected - Default
## 4705      51482 Partially Protected - Autoreview
## 4706      51498                 Featured Article
## 4707      51503                     Good Article
## 4708      51510    Partially Protected - Default
## 4709      51518 Partially Protected - Autoreview
## 4710      51525    Partially Protected - Default
## 4711      51580                 Featured Article
## 4712      51580    Partially Protected - Default
## 4713      51584                     Good Article
## 4714      51586                     Good Article
## 4715      51588                     Good Article
## 4716      51592                     Good Article
## 4717      51655                     Good Article
## 4718      51679                     Good Article
## 4719      51681    Partially Protected - Default
## 4720      51713                 Featured Article
## 4721      51713    Partially Protected - Default
## 4722      51723                           Spoken
## 4723      51763                 Featured Article
## 4724      51825                     Good Article
## 4725      51827                     Good Article
## 4726      51827    Partially Protected - Default
## 4727      51876                     Good Article
## 4728      51879                     Good Article
## 4729      51884    Partially Protected - Default
## 4730      51888                     Good Article
## 4731      51928    Partially Protected - Default
## 4732      51935                 Featured Article
## 4733      51961                     Good Article
## 4734      51974    Partially Protected - Default
## 4735      51979    Partially Protected - Default
## 4736      51980    Partially Protected - Default
## 4737      51983                 Featured Article
## 4738      51983    Partially Protected - Default
## 4739      51987                     Good Article
## 4740      51988    Partially Protected - Default
## 4741      52029 Partially Protected - Autoreview
## 4742      52038                     Good Article
## 4743      52062    Partially Protected - Default
## 4744      52102                 Featured Article
## 4745      52106                     Good Article
## 4746      52110                 Featured Article
## 4747      52135                     Good Article
## 4748      52135    Partially Protected - Default
## 4749      52240    Partially Protected - Default
## 4750      52259                     Good Article
## 4751      52263 Partially Protected - Autoreview
## 4752      52268    Partially Protected - Default
## 4753      52271    Partially Protected - Default
## 4754      52293    Partially Protected - Default
## 4755      52303    Partially Protected - Default
## 4756      52305    Partially Protected - Default
## 4757      52371                     Good Article
## 4758      52371    Partially Protected - Default
## 4759      52382    Partially Protected - Default
## 4760      52389                     Good Article
## 4761      52487    Partially Protected - Default
## 4762      52488    Partially Protected - Default
## 4763      52496                           Spoken
## 4764      52497                     Good Article
## 4765      52497                           Spoken
## 4766      52498    Partially Protected - Default
## 4767      52500                           Spoken
## 4768      52501    Partially Protected - Default
## 4769      52501                           Spoken
## 4770      52546                     Good Article
## 4771      52546    Partially Protected - Default
## 4772      52547                     Good Article
## 4773      52556    Partially Protected - Default
## 4774      52633    Partially Protected - Default
## 4775      52655                 Featured Article
## 4776      52657                     Good Article
## 4777      52657    Partially Protected - Default
## 4778      52680                     Good Article
## 4779      52681                     Good Article
## 4780      52705                     Good Article
## 4781      52705    Partially Protected - Default
## 4782      52707                 Featured Article
## 4783      52707    Partially Protected - Default
## 4784      52711                     Good Article
## 4785      52711    Partially Protected - Default
## 4786      52712                     Good Article
## 4787      52712    Partially Protected - Default
## 4788      52713                           Spoken
## 4789      52720                 Featured Article
## 4790      52726                     Good Article
## 4791      52726    Partially Protected - Default
## 4792      52739    Partially Protected - Default
## 4793      52750                     Good Article
## 4794      52753                     Good Article
## 4795      52754                     Good Article
## 4796      52755                 Featured Article
## 4797      52755                           Spoken
## 4798      52756                 Featured Article
## 4799      52757                 Featured Article
## 4800      52758                 Featured Article
## 4801      52759                 Featured Article
## 4802      52760                 Featured Article
## 4803      52761                     Good Article
## 4804      52762                     Good Article
## 4805      52763                     Good Article
## 4806      52764                     Good Article
## 4807      52765                 Featured Article
## 4808      52767                     Good Article
## 4809      52780                 Featured Article
## 4810      52780                           Spoken
## 4811      52816                     Good Article
## 4812      52819    Partially Protected - Default
## 4813      52824 Partially Protected - Autoreview
## 4814      52837    Partially Protected - Default
## 4815      52837                           Spoken
## 4816      52840                 Featured Article
## 4817      52842    Partially Protected - Default
## 4818      52851                 Featured Article
## 4819      52857    Partially Protected - Default
## 4820      52876    Partially Protected - Default
## 4821      52887                 Featured Article
## 4822      52942                     Good Article
## 4823      52949    Partially Protected - Default
## 4824      52982                     Good Article
## 4825      53007                 Featured Article
## 4826      53012                     Good Article
## 4827      53029                     Good Article
## 4828      53029    Partially Protected - Default
## 4829      53085                     Good Article
## 4830      53085    Partially Protected - Default
## 4831      53094 Partially Protected - Autoreview
## 4832      53131    Partially Protected - Default
## 4833      53183                     Good Article
## 4834      53198    Partially Protected - Default
## 4835      53234    Partially Protected - Default
## 4836      53253    Partially Protected - Default
## 4837      53273                 Featured Article
## 4838      53307                     Good Article
## 4839      53343                           Spoken
## 4840      53348                     Good Article
## 4841      53395    Partially Protected - Default
## 4842      53422                 Featured Article
## 4843      53429                     Good Article
## 4844      53484                     Good Article
## 4845      53484    Partially Protected - Default
## 4846      53510                     Good Article
## 4847      53511                     Good Article
## 4848      53560                     Good Article
## 4849      53602 Partially Protected - Autoreview
## 4850      53620    Partially Protected - Default
## 4851      53693                 Featured Article
## 4852      53712                           Spoken
## 4853      53736    Partially Protected - Default
## 4854      53739                     Good Article
## 4855      53755                     Good Article
## 4856      53772                 Featured Article
## 4857      53772    Partially Protected - Default
## 4858      53787                 Featured Article
## 4859      53840                     Good Article
## 4860      53842    Partially Protected - Default
## 4861      53846    Partially Protected - Default
## 4862      53861    Partially Protected - Default
## 4863      53864                           Spoken
## 4864      53865                     Good Article
## 4865      53867                           Spoken
## 4866      53869                 Featured Article
## 4867      53878                 Featured Article
## 4868      53901                 Featured Article
## 4869      53948                          Journal
## 4870      53948                 Featured Article
## 4871      53950    Partially Protected - Default
## 4872      53951    Partially Protected - Default
## 4873      53964    Partially Protected - Default
## 4874      54037    Partially Protected - Default
## 4875      54119    Partially Protected - Default
## 4876      54130    Partially Protected - Default
## 4877      54166                     Good Article
## 4878      54173    Partially Protected - Default
## 4879      54183                     Good Article
## 4880      54183    Partially Protected - Default
## 4881      54211                 Featured Article
## 4882      54306    Partially Protected - Default
## 4883      54317    Partially Protected - Default
## 4884      54361 Partially Protected - Autoreview
## 4885      54403                           Spoken
## 4886      54410                 Featured Article
## 4887      54410                           Spoken
## 4888      54425    Partially Protected - Default
## 4889      54436                           Spoken
## 4890      54467    Partially Protected - Default
## 4891      54474                           Spoken
## 4892      54539    Partially Protected - Default
## 4893      54540    Partially Protected - Default
## 4894      54592                     Good Article
## 4895      54769                     Good Article
## 4896      54808                     Good Article
## 4897      54832                 Featured Article
## 4898      54864 Partially Protected - Autoreview
## 4899      54916                     Good Article
## 4900      54916    Partially Protected - Default
## 4901      54929    Partially Protected - Default
## 4902      54931                     Good Article
## 4903      54932                     Good Article
## 4904      54933                     Good Article
## 4905      54938 Partially Protected - Autoreview
## 4906      54956    Partially Protected - Default
## 4907      54969    Partially Protected - Default
## 4908      55014                     Good Article
## 4909      55016                     Good Article
## 4910      55021                 Featured Article
## 4911      55029    Partially Protected - Default
## 4912      55035                 Featured Article
## 4913      55066    Partially Protected - Default
## 4914      55070    Partially Protected - Default
## 4915      55071    Partially Protected - Default
## 4916      55088                 Featured Article
## 4917      55092    Partially Protected - Default
## 4918      55115                 Featured Article
## 4919      55130                     Good Article
## 4920      55148    Partially Protected - Default
## 4921      55188                 Featured Article
## 4922      55212    Partially Protected - Default
## 4923      55231                     Good Article
## 4924      55271    Partially Protected - Default
## 4925      55386    Partially Protected - Default
## 4926      55387                     Good Article
## 4927      55387    Partially Protected - Default
## 4928      55434                     Good Article
## 4929      55436    Partially Protected - Default
## 4930      55438 Partially Protected - Autoreview
## 4931      55447                     Good Article
## 4932      55490    Partially Protected - Default
## 4933      55523    Partially Protected - Default
## 4934      55526    Partially Protected - Default
## 4935      55530    Partially Protected - Default
## 4936      55531                           Spoken
## 4937      55532                           Spoken
## 4938      55539                           Spoken
## 4939      55542                           Spoken
## 4940      55544    Partially Protected - Default
## 4941      55584                     Good Article
## 4942      55584    Partially Protected - Default
## 4943      55586                     Good Article
## 4944      55601                     Good Article
## 4945      55606                     Good Article
## 4946      55720                     Good Article
## 4947      55720    Partially Protected - Default
## 4948      55764    Partially Protected - Default
## 4949      55791                 Featured Article
## 4950      55904                 Featured Article
## 4951      55927 Partially Protected - Autoreview
## 4952      55942                     Good Article
## 4953      55980    Partially Protected - Default
## 4954      56011    Partially Protected - Default
## 4955      56032    Partially Protected - Default
## 4956      56084    Partially Protected - Default
## 4957      56106                     Good Article
## 4958      56145    Partially Protected - Default
## 4959      56206 Partially Protected - Autoreview
## 4960      56215    Partially Protected - Default
## 4961      56217    Partially Protected - Default
## 4962      56220    Partially Protected - Default
## 4963      56259                     Good Article
## 4964      56274                     Good Article
## 4965      56274    Partially Protected - Default
## 4966      56285                           Spoken
## 4967      56315 Partially Protected - Autoreview
## 4968      56344    Partially Protected - Default
## 4969      56347    Partially Protected - Default
## 4970      56359                     Good Article
## 4971      56434                           Spoken
## 4972      56435                     Good Article
## 4973      56435    Partially Protected - Default
## 4974      56472    Partially Protected - Default
## 4975      56474                     Good Article
## 4976      56483                 Featured Article
## 4977      56483    Partially Protected - Default
## 4978      56516                     Good Article
## 4979      56516    Partially Protected - Default
## 4980      56526                     Good Article
## 4981      56568                     Good Article
## 4982      56597                     Good Article
## 4983      56617                     Good Article
## 4984      56656                 Featured Article
## 4985      56695    Partially Protected - Default
## 4986      56705    Partially Protected - Default
## 4987      56884 Partially Protected - Autoreview
## 4988      56887    Partially Protected - Default
## 4989      56890    Partially Protected - Default
## 4990      56944                           Spoken
## 4991      56978                 Featured Article
## 4992      56999    Partially Protected - Default
## 4993      57008                     Good Article
## 4994      57011 Partially Protected - Autoreview
## 4995      57079                 Featured Article
## 4996      57079    Partially Protected - Default
## 4997      57101                 Featured Article
## 4998      57172                 Featured Article
## 4999      57187                     Good Article
## 5000      57330    Partially Protected - Default
## 5001      57414                     Good Article
## 5002      57445    Partially Protected - Default
## 5003      57447 Partially Protected - Autoreview
## 5004      57454    Partially Protected - Default
## 5005      57546                     Good Article
## 5006      57554                     Good Article
## 5007      57568                     Good Article
## 5008      57570    Partially Protected - Default
## 5009      57585                 Featured Article
## 5010      57609    Partially Protected - Default
## 5011      57621                     Good Article
## 5012      57630    Partially Protected - Default
## 5013      57677                     Good Article
## 5014      57744    Partially Protected - Default
## 5015      57799                 Featured Article
## 5016      57802                     Good Article
## 5017      57802    Partially Protected - Default
## 5018      57809                     Good Article
## 5019      57811                     Good Article
## 5020      57812                     Good Article
## 5021      57872    Partially Protected - Default
## 5022      57875    Partially Protected - Default
## 5023      57898                     Good Article
## 5024      57909                     Good Article
## 5025      57985                 Featured Article
## 5026      57998 Partially Protected - Autoreview
## 5027      58017    Partially Protected - Default
## 5028      58039                     Good Article
## 5029      58054                 Featured Article
## 5030      58099                     Good Article
## 5031      58223    Partially Protected - Default
## 5032      58263                 Featured Article
## 5033      58265                     Good Article
## 5034      58273                 Featured Article
## 5035      58280                 Featured Article
## 5036      58281                 Featured Article
## 5037      58288                     Good Article
## 5038      58288    Partially Protected - Default
## 5039      58296                 Featured Article
## 5040      58296    Partially Protected - Default
## 5041      58296                           Spoken
## 5042      58303                 Featured Article
## 5043      58304                 Featured Article
## 5044      58305                 Featured Article
## 5045      58312                 Featured Article
## 5046      58314                 Featured Article
## 5047      58324    Partially Protected - Default
## 5048      58376                 Featured Article
## 5049      58392                 Featured Article
## 5050      58392    Partially Protected - Default
## 5051      58408                     Good Article
## 5052      58408    Partially Protected - Default
## 5053      58410                     Good Article
## 5054      58410    Partially Protected - Default
## 5055      58479    Partially Protected - Default
## 5056      58480                     Good Article
## 5057      58501                     Good Article
## 5058      58501    Partially Protected - Default
## 5059      58522                 Featured Article
## 5060      58543                     Good Article
## 5061      58547                 Featured Article
## 5062      58568    Partially Protected - Default
## 5063      58592    Partially Protected - Default
## 5064      58682                     Good Article
## 5065      58682    Partially Protected - Default
## 5066      58688    Partially Protected - Default
## 5067      58702                     Good Article
## 5068      58732                     Good Article
## 5069      58749    Partially Protected - Default
## 5070      58761                           Spoken
## 5071      58796                     Good Article
## 5072      58819    Partially Protected - Default
## 5073      58863 Partially Protected - Autoreview
## 5074      58865                     Good Article
## 5075      58901                     Good Article
## 5076      58911    Partially Protected - Default
## 5077      58925    Partially Protected - Default
## 5078      58927                     Good Article
## 5079      58927    Partially Protected - Default
## 5080      58972 Partially Protected - Autoreview
## 5081      59122    Partially Protected - Default
## 5082      59160                 Featured Article
## 5083      59201    Partially Protected - Default
## 5084      59218                     Good Article
## 5085      59218    Partially Protected - Default
## 5086      59385                 Featured Article
## 5087      59449                           Spoken
## 5088      59493    Partially Protected - Default
## 5089      59575                     Good Article
## 5090      59610    Partially Protected - Default
## 5091      59617                     Good Article
## 5092      59627    Partially Protected - Default
## 5093      59687    Partially Protected - Default
## 5094      59707                 Featured Article
## 5095      59749    Partially Protected - Default
## 5096      59766 Partially Protected - Autoreview
## 5097      59856                           Spoken
## 5098      59887                 Featured Article
## 5099      59887    Partially Protected - Default
## 5100      59892                 Featured Article
## 5101      59892    Partially Protected - Default
## 5102      59976                     Good Article
## 5103      59993                 Featured Article
## 5104      60004                 Featured Article
## 5105      60004    Partially Protected - Default
## 5106      60026                 Featured Article
## 5107      60033                 Featured Article
## 5108      60070                 Featured Article
## 5109      60070    Partially Protected - Default
## 5110      60088                     Good Article
## 5111      60098    Partially Protected - Default
## 5112      60098                           Spoken
## 5113      60112                 Featured Article
## 5114      60117                     Good Article
## 5115      60120                 Featured Article
## 5116      60136                           Spoken
## 5117      60138                     Good Article
## 5118      60148 Partially Protected - Autoreview
## 5119      60154                     Good Article
## 5120      60204                     Good Article
## 5121      60205                     Good Article
## 5122      60206                     Good Article
## 5123      60244                     Good Article
## 5124      60255                     Good Article
## 5125      60257                     Good Article
## 5126      60261                 Featured Article
## 5127      60277                     Good Article
## 5128      60290    Partially Protected - Default
## 5129      60300                     Good Article
## 5130      60301                     Good Article
## 5131      60302                     Good Article
## 5132      60303                     Good Article
## 5133      60305                     Good Article
## 5134      60306                     Good Article
## 5135      60307                     Good Article
## 5136      60309                     Good Article
## 5137      60340                     Good Article
## 5138      60369 Partially Protected - Autoreview
## 5139      60411                 Featured Article
## 5140      60538                     Good Article
## 5141      60540                 Featured Article
## 5142      60557                 Featured Article
## 5143      60559                 Featured Article
## 5144      60610    Partially Protected - Default
## 5145      60633    Partially Protected - Default
## 5146      60641    Partially Protected - Default
## 5147      60734                 Featured Article
## 5148      60746    Partially Protected - Default
## 5149      60786 Partially Protected - Autoreview
## 5150      60800    Partially Protected - Default
## 5151      60827                     Good Article
## 5152      60827    Partially Protected - Default
## 5153      60833                     Good Article
## 5154      60844                 Featured Article
## 5155      60844    Partially Protected - Default
## 5156      60857    Partially Protected - Default
## 5157      60862                 Featured Article
## 5158      60904                     Good Article
## 5159      60904 Partially Protected - Autoreview
## 5160      60921    Partially Protected - Default
## 5161      60921                           Spoken
## 5162      60925                           Spoken
## 5163      60930                           Spoken
## 5164      60946                        Help Link
## 5165      60988                     Good Article
## 5166      60991                     Good Article
## 5167      61002                     Good Article
## 5168      61009                     Good Article
## 5169      61020 Partially Protected - Autoreview
## 5170      61024    Partially Protected - Default
## 5171      61040    Partially Protected - Default
## 5172      61046                     Good Article
## 5173      61048                     Good Article
## 5174      61075                 Featured Article
## 5175      61091                     Good Article
## 5176      61162    Partially Protected - Default
## 5177      61166                     Good Article
## 5178      61188                 Featured Article
## 5179      61230    Partially Protected - Default
## 5180      61258                 Featured Article
## 5181      61322                 Featured Article
## 5182      61334                 Featured Article
## 5183      61338                     Good Article
## 5184      61363                 Featured Article
## 5185      61404    Partially Protected - Default
## 5186      61409 Partially Protected - Autoreview
## 5187      61410                     Good Article
## 5188      61484                     Good Article
## 5189      61489    Partially Protected - Default
## 5190      61501                     Good Article
## 5191      61502    Partially Protected - Default
## 5192      61609    Partially Protected - Default
## 5193      61667    Partially Protected - Default
## 5194      61731    Partially Protected - Default
## 5195      61827                 Featured Article
## 5196      61866                     Good Article
## 5197      61928    Partially Protected - Default
## 5198      61933 Partially Protected - Autoreview
## 5199      61955                 Featured Article
## 5200      61957                 Featured Article
## 5201      61958                 Featured Article
## 5202      61963 Partially Protected - Autoreview
## 5203      61963                           Spoken
## 5204      61992                 Featured Article
## 5205      61993                     Good Article
## 5206      62009                 Featured Article
## 5207      62014                 Featured Article
## 5208      62014    Partially Protected - Default
## 5209      62027    Partially Protected - Default
## 5210      62028    Partially Protected - Default
## 5211      62067                 Featured Article
## 5212      62093    Partially Protected - Default
## 5213      62107                     Good Article
## 5214      62108                     Good Article
## 5215      62114                     Good Article
## 5216      62120    Partially Protected - Default
## 5217      62198                     Good Article
## 5218      62200                 Featured Article
## 5219      62237 Partially Protected - Autoreview
## 5220      62251                     Good Article
## 5221      62350                 Featured Article
## 5222      62391                 Featured Article
## 5223      62395                 Featured Article
## 5224      62400                 Featured Article
## 5225      62419    Partially Protected - Default
## 5226      62424    Partially Protected - Default
## 5227      62446                     Good Article
## 5228      62477    Partially Protected - Default
## 5229      62480                 Featured Article
## 5230      62513    Partially Protected - Default
## 5231      62516                 Featured Article
## 5232      62519                 Featured Article
## 5233      62577                 Featured Article
## 5234      62577    Partially Protected - Default
## 5235      62600                 Featured Article
## 5236      62600    Partially Protected - Default
## 5237      62600                           Spoken
## 5238      62666                     Good Article
## 5239      62676    Partially Protected - Default
## 5240      62682                     Good Article
## 5241      62682    Partially Protected - Default
## 5242      62696                 Featured Article
## 5243      62696    Partially Protected - Default
## 5244      62704                 Featured Article
## 5245      62740                     Good Article
## 5246      62794                     Good Article
## 5247      62794    Partially Protected - Default
## 5248      62858                           Spoken
## 5249      62896                     Good Article
## 5250      62928                 Featured Article
## 5251      62928                           Spoken
## 5252      63092                           Spoken
## 5253      63105                     Good Article
## 5254      63107                     Good Article
## 5255      63123    Partially Protected - Default
## 5256      63132    Partially Protected - Default
## 5257      63171    Partially Protected - Default
## 5258      63173                     Good Article
## 5259      63229                 Featured Article
## 5260      63321    Partially Protected - Default
## 5261      63335                     Good Article
## 5262      63342                 Featured Article
## 5263      63355                     Good Article
## 5264      63376                 Featured Article
## 5265      63390                     Good Article
## 5266      63394    Partially Protected - Default
## 5267      63403    Partially Protected - Default
## 5268      63415                     Good Article
## 5269      63416    Partially Protected - Default
## 5270      63520                     Good Article
## 5271      63520    Partially Protected - Default
## 5272      63522                     Good Article
## 5273      63526                 Featured Article
## 5274      63610 Partially Protected - Autoreview
## 5275      63611 Partially Protected - Autoreview
## 5276      63615                           Spoken
## 5277      63663                     Good Article
## 5278      63727                 Featured Article
## 5279      63747    Partially Protected - Default
## 5280      63900                     Good Article
## 5281      63900    Partially Protected - Default
## 5282      63923    Partially Protected - Default
## 5283      63946                     Good Article
## 5284      63971    Partially Protected - Default
## 5285      64004                     Good Article
## 5286      64055    Partially Protected - Default
## 5287      64065                     Good Article
## 5288      64072                 Featured Article
## 5289      64077    Partially Protected - Default
## 5290      64182    Partially Protected - Default
## 5291      64211                     Good Article
## 5292      64222                     Good Article
## 5293      64231    Partially Protected - Default
## 5294      64252    Partially Protected - Default
## 5295      64276                     Good Article
## 5296      64277                     Good Article
## 5297      64279                     Good Article
## 5298      64284                     Good Article
## 5299      64285                     Good Article
## 5300      64300                 Featured Article
## 5301      64300    Partially Protected - Default
## 5302      64379                     Good Article
## 5303      64437                 Featured Article
## 5304      64598                 Featured Article
## 5305      64646    Partially Protected - Default
## 5306      64695                     Good Article
## 5307      64704                     Good Article
## 5308      64727                     Good Article
## 5309      64730                     Good Article
## 5310      64775                     Good Article
## 5311      64851                     Good Article
## 5312      64852                     Good Article
## 5313      64878    Partially Protected - Default
## 5314      64890                     Good Article
## 5315      64906                 Featured Article
## 5316      64906                           Spoken
## 5317      64910                 Featured Article
## 5318      64944                     Good Article
## 5319      64976                     Good Article
## 5320      64985    Partially Protected - Default
## 5321      65009                     Good Article
## 5322      65093    Partially Protected - Default
## 5323      65094    Partially Protected - Default
## 5324      65119                     Good Article
## 5325      65174                 Featured Article
## 5326      65179                           Spoken
## 5327      65189                 Featured Article
## 5328      65189                           Spoken
## 5329      65192                     Good Article
## 5330      65192 Partially Protected - Autoreview
## 5331      65220    Partially Protected - Default
## 5332      65307    Partially Protected - Default
## 5333      65341                 Featured Article
## 5334      65341    Partially Protected - Default
## 5335      65414                     Good Article
## 5336      65426    Partially Protected - Default
## 5337      65443    Partially Protected - Default
## 5338      65450                 Featured Article
## 5339      65453                     Good Article
## 5340      65538    Partially Protected - Default
## 5341      65567                 Featured Article
## 5342      65568                 Featured Article
## 5343      65570                 Featured Article
## 5344      65621    Partially Protected - Default
## 5345      65626                 Featured Article
## 5346      65626                           Spoken
## 5347      65636    Partially Protected - Default
## 5348      65637                     Good Article
## 5349      65651                     Good Article
## 5350      65651 Partially Protected - Autoreview
## 5351      65656    Partially Protected - Default
## 5352      65673    Partially Protected - Default
## 5353      65683 Partially Protected - Autoreview
## 5354      65712                     Good Article
## 5355      65713    Partially Protected - Default
## 5356      65719    Partially Protected - Default
## 5357      65724    Partially Protected - Default
## 5358      65735                     Good Article
## 5359      65755    Partially Protected - Default
## 5360      65756    Partially Protected - Default
## 5361      65758                           Spoken
## 5362      65759                     Good Article
## 5363      65759    Partially Protected - Default
## 5364      65767    Partially Protected - Default
## 5365      65777    Partially Protected - Default
## 5366      65786    Partially Protected - Default
## 5367      65790    Partially Protected - Default
## 5368      65834                     Good Article
## 5369      65845                     Good Article
## 5370      65873 Partially Protected - Autoreview
## 5371      65880                           Spoken
## 5372      66015    Partially Protected - Default
## 5373      66054                     Good Article
## 5374      66057                     Good Article
## 5375      66068    Partially Protected - Default
## 5376      66164    Partially Protected - Default
## 5377      66171    Partially Protected - Default
## 5378      66174                 Featured Article
## 5379      66186                     Good Article
## 5380      66230 Partially Protected - Autoreview
## 5381      66231                     Good Article
## 5382      66240                     Good Article
## 5383      66283                           Spoken
## 5384      66299                     Good Article
## 5385      66331                 Featured Article
## 5386      66364                     Good Article
## 5387      66364    Partially Protected - Default
## 5388      66364                           Spoken
## 5389      66365    Partially Protected - Default
## 5390      66402                     Good Article
## 5391      66402    Partially Protected - Default
## 5392      66458                 Featured Article
## 5393      66458    Partially Protected - Default
## 5394      66495                     Good Article
## 5395      66556    Partially Protected - Default
## 5396      66569                     Good Article
## 5397      66607    Partially Protected - Default
## 5398      66626                     Good Article
## 5399      66626    Partially Protected - Default
## 5400      66645    Partially Protected - Default
## 5401      66723    Partially Protected - Default
## 5402      66743                 Featured Article
## 5403      66781                 Featured Article
## 5404      66781                           Spoken
## 5405      66786    Partially Protected - Default
## 5406      66856                           Spoken
## 5407      66870                     Good Article
## 5408      66906                     Good Article
## 5409      66935    Partially Protected - Default
## 5410      66936                     Good Article
## 5411      66936    Partially Protected - Default
## 5412      66937    Partially Protected - Default
## 5413      66951                 Featured Article
## 5414      66956 Partially Protected - Autoreview
## 5415      66964    Partially Protected - Default
## 5416      66968                 Featured Article
## 5417      66971                     Good Article
## 5418      66988    Partially Protected - Default
## 5419      66999                     Good Article
## 5420      67028    Partially Protected - Default
## 5421      67072                 Featured Article
## 5422      67073                     Good Article
## 5423      67119                     Good Article
## 5424      67129    Partially Protected - Default
## 5425      67142    Partially Protected - Default
## 5426      67147    Partially Protected - Default
## 5427      67158    Partially Protected - Default
## 5428      67173    Partially Protected - Default
## 5429      67193    Partially Protected - Default
## 5430      67234                     Good Article
## 5431      67255    Partially Protected - Default
## 5432      67317                     Good Article
## 5433      67340                     Good Article
## 5434      67397    Partially Protected - Default
## 5435      67404    Partially Protected - Default
## 5436      67425                     Good Article
## 5437      67425    Partially Protected - Default
## 5438      67451    Partially Protected - Default
## 5439      67461                     Good Article
## 5440      67490                     Good Article
## 5441      67491                     Good Article
## 5442      67492                     Good Article
## 5443      67514                     Good Article
## 5444      67516                 Featured Article
## 5445      67520                 Featured Article
## 5446      67537                     Good Article
## 5447      67538                 Featured Article
## 5448      67554                     Good Article
## 5449      67586                           Spoken
## 5450      67611                 Featured Article
## 5451      67717                     Good Article
## 5452      67765    Partially Protected - Default
## 5453      67788    Partially Protected - Default
## 5454      67898                     Good Article
## 5455      67955                 Featured Article
## 5456      67958                     Good Article
## 5457      67972    Partially Protected - Default
## 5458      68027                 Featured Article
## 5459      68059                     Good Article
## 5460      68064                     Good Article
## 5461      68065                 Featured Article
## 5462      68124                     Good Article
## 5463      68187                 Featured Article
## 5464      68187    Partially Protected - Default
## 5465      68198    Partially Protected - Default
## 5466      68253    Partially Protected - Default
## 5467      68286    Partially Protected - Default
## 5468      68319    Partially Protected - Default
## 5469      68378    Partially Protected - Default
## 5470      68485                     Good Article
## 5471      68493    Partially Protected - Default
## 5472      68493                           Spoken
## 5473      68510                           Spoken
## 5474      68685                 Featured Article
## 5475      68756                     Good Article
## 5476      68769                     Good Article
## 5477      68771                     Good Article
## 5478      68819    Partially Protected - Default
## 5479      68832                 Featured Article
## 5480      68872                 Featured Article
## 5481      68904                     Good Article
## 5482      68925                     Good Article
## 5483      68950    Partially Protected - Default
## 5484      69060    Partially Protected - Default
## 5485      69123                     Good Article
## 5486      69136                     Good Article
## 5487      69145                 Featured Article
## 5488      69165                     Good Article
## 5489      69179                     Good Article
## 5490      69179                           Spoken
## 5491      69259                     Good Article
## 5492      69323    Partially Protected - Default
## 5493      69371                     Good Article
## 5494      69388                     Good Article
## 5495      69406                 Featured Article
## 5496      69427                     Good Article
## 5497      69477    Partially Protected - Default
## 5498      69528                     Good Article
## 5499      69578                     Good Article
## 5500      69581                     Good Article
## 5501      69583                     Good Article
## 5502      69587                     Good Article
## 5503      69599                     Good Article
## 5504      69661    Partially Protected - Default
## 5505      69680    Partially Protected - Default
## 5506      69708    Partially Protected - Default
## 5507      69713    Partially Protected - Default
## 5508      69733                     Good Article
## 5509      69755                     Good Article
## 5510      69785                 Featured Article
## 5511      69789 Partially Protected - Autoreview
## 5512      69795                     Good Article
## 5513      69795    Partially Protected - Default
## 5514      69830                     Good Article
## 5515      69853                           Spoken
## 5516      69861 Partially Protected - Autoreview
## 5517      69880                     Good Article
## 5518      69880    Partially Protected - Default
## 5519      69894                     Good Article
## 5520      69894    Partially Protected - Default
## 5521      69982    Partially Protected - Default
## 5522      70001                           Spoken
## 5523      70013 Partially Protected - Autoreview
## 5524      70023                 Featured Article
## 5525      70024                     Good Article
## 5526      70048    Partially Protected - Default
## 5527      70068                     Good Article
## 5528      70091                     Good Article
## 5529      70101    Partially Protected - Default
## 5530      70135                     Good Article
## 5531      70155                     Good Article
## 5532      70155    Partially Protected - Default
## 5533      70157 Partially Protected - Autoreview
## 5534      70219                     Good Article
## 5535      70287    Partially Protected - Default
## 5536      70293    Partially Protected - Default
## 5537      70316                 Featured Article
## 5538      70318                 Featured Article
## 5539      70352                 Featured Article
## 5540      70387                 Featured Article
## 5541      70423    Partially Protected - Default
## 5542      70435                 Featured Article
## 5543      70435                           Spoken
## 5544      70453                 Featured Article
## 5545      70547 Partially Protected - Autoreview
## 5546      70548    Partially Protected - Default
## 5547      70560                     Good Article
## 5548      70578    Partially Protected - Default
## 5549      70581                     Good Article
## 5550      70602    Partially Protected - Default
## 5551      70615                 Featured Article
## 5552      70725                     Good Article
## 5553      70725    Partially Protected - Default
## 5554      70776                 Featured Article
## 5555      70798                     Good Article
## 5556      70807                     Good Article
## 5557      70842                     Good Article
## 5558      70842 Partially Protected - Autoreview
## 5559      70852    Partially Protected - Default
## 5560      70873    Partially Protected - Default
## 5561      70889    Partially Protected - Default
## 5562      70938 Partially Protected - Autoreview
## 5563      70948                     Good Article
## 5564      70970                     Good Article
## 5565      70983                     Good Article
## 5566      70983    Partially Protected - Default
## 5567      71015                     Good Article
## 5568      71130    Partially Protected - Default
## 5569      71305                     Good Article
## 5570      71376 Partially Protected - Autoreview
## 5571      71421                     Good Article
## 5572      71488    Partially Protected - Default
## 5573      71490                     Good Article
## 5574      71491                     Good Article
## 5575      71491    Partially Protected - Default
## 5576      71491                           Spoken
## 5577      71574                 Featured Article
## 5578      71712    Partially Protected - Default
## 5579      71717    Partially Protected - Default
## 5580      71735                     Good Article
## 5581      71792                 Featured Article
## 5582      71802                     Good Article
## 5583      71802    Partially Protected - Default
## 5584      71870    Partially Protected - Default
## 5585      71897    Partially Protected - Default
## 5586      71966                 Featured Article
## 5587      71979 Partially Protected - Autoreview
## 5588      71989                 Featured Article
## 5589      71989    Partially Protected - Default
## 5590      72016                     Good Article
## 5591      72038    Partially Protected - Default
## 5592      72096                 Featured Article
## 5593      72197    Partially Protected - Default
## 5594      72201 Partially Protected - Autoreview
## 5595      72211    Partially Protected - Default
## 5596      72249                           Spoken
## 5597      72336    Partially Protected - Default
## 5598      72359    Partially Protected - Default
## 5599      72495                     Good Article
## 5600      72539                 Featured Article
## 5601      72579                     Good Article
## 5602      72585    Partially Protected - Default
## 5603      72671    Partially Protected - Default
## 5604      72742                     Good Article
## 5605      72758                           Spoken
## 5606      72778    Partially Protected - Default
## 5607      72779    Partially Protected - Default
## 5608      72787 Partially Protected - Autoreview
## 5609      72790 Partially Protected - Autoreview
## 5610      72791    Partially Protected - Default
## 5611      72793    Partially Protected - Default
## 5612      72794    Partially Protected - Default
## 5613      72795 Partially Protected - Autoreview
## 5614      72798    Partially Protected - Default
## 5615      72807                 Featured Article
## 5616      72850    Partially Protected - Default
## 5617      72855    Partially Protected - Default
## 5618      72868    Partially Protected - Default
## 5619      72878    Partially Protected - Default
## 5620      72879                 Featured Article
## 5621      72885                     Good Article
## 5622      72891    Partially Protected - Default
## 5623      72892    Partially Protected - Default
## 5624      72893                     Good Article
## 5625      72893    Partially Protected - Default
## 5626      72897                     Good Article
## 5627      72934    Partially Protected - Default
## 5628      72937    Partially Protected - Default
## 5629      72982                     Good Article
## 5630      73032    Partially Protected - Default
## 5631      73061                     Good Article
## 5632      73068                     Good Article
## 5633      73080    Partially Protected - Default
## 5634      73087                 Featured Article
## 5635      73126 Partially Protected - Autoreview
## 5636      73133    Partially Protected - Default
## 5637      73165    Partially Protected - Default
## 5638      73170                     Good Article
## 5639      73218                 Featured Article
## 5640      73231                     Good Article
## 5641      73259                 Featured Article
## 5642      73331                 Featured Article
## 5643      73331    Partially Protected - Default
## 5644      73370                 Featured Article
## 5645      73375                 Featured Article
## 5646      73376                     Good Article
## 5647      73401                     Good Article
## 5648      73408                 Featured Article
## 5649      73408    Partially Protected - Default
## 5650      73408                           Spoken
## 5651      73441                 Featured Article
## 5652      73460                     Good Article
## 5653      73460    Partially Protected - Default
## 5654      73499                     Good Article
## 5655      73513    Partially Protected - Default
## 5656      73572                     Good Article
## 5657      73572    Partially Protected - Default
## 5658      73575                 Featured Article
## 5659      73594                     Good Article
## 5660      73670                     Good Article
## 5661      73682                     Good Article
## 5662      73834    Partially Protected - Default
## 5663      73842                 Featured Article
## 5664      73892    Partially Protected - Default
## 5665      73903    Partially Protected - Default
## 5666      73930                 Featured Article
## 5667      73953                     Good Article
## 5668      73995    Partially Protected - Default
## 5669      73999    Partially Protected - Default
## 5670      74006    Partially Protected - Default
## 5671      74037 Partially Protected - Autoreview
## 5672      74098                 Featured Article
## 5673      74098                           Spoken
## 5674      74204                     Good Article
## 5675      74209    Partially Protected - Default
## 5676      74215                     Good Article
## 5677      74217                           Spoken
## 5678      74240                     Good Article
## 5679      74286                     Good Article
## 5680      74331                     Good Article
## 5681      74337                 Featured Article
## 5682      74341                     Good Article
## 5683      74455                     Good Article
## 5684      74530    Partially Protected - Default
## 5685      74532 Partially Protected - Autoreview
## 5686      74555                     Good Article
## 5687      74555    Partially Protected - Default
## 5688      74570 Partially Protected - Autoreview
## 5689      74573    Partially Protected - Default
## 5690      74575                 Featured Article
## 5691      74575    Partially Protected - Default
## 5692      74581    Partially Protected - Default
## 5693      74607    Partially Protected - Default
## 5694      74641                           Spoken
## 5695      74653    Partially Protected - Default
## 5696      74654                     Good Article
## 5697      74664    Partially Protected - Default
## 5698      74681    Partially Protected - Default
## 5699      74803    Partially Protected - Default
## 5700      74830                 Featured Article
## 5701      74844                           Spoken
## 5702      74892                     Good Article
## 5703      74983                     Good Article
## 5704      74997                     Good Article
## 5705      75065    Partially Protected - Default
## 5706      75073                     Good Article
## 5707      75087                     Good Article
## 5708      75088                 Featured Article
## 5709      75124                 Featured Article
## 5710      75141                     Good Article
## 5711      75159                     Good Article
## 5712      75208                     Good Article
## 5713      75212    Partially Protected - Default
## 5714      75225                     Good Article
## 5715      75233                 Featured Article
## 5716      75261                     Good Article
## 5717      75309    Partially Protected - Default
## 5718      75350                     Good Article
## 5719      75392                 Featured Article
## 5720      75412                 Featured Article
## 5721      75555                     Good Article
## 5722      75595    Partially Protected - Default
## 5723      75619                     Good Article
## 5724      75717                     Good Article
## 5725      75796    Partially Protected - Default
## 5726      75827    Partially Protected - Default
## 5727      75829                     Good Article
## 5728      75847                 Featured Article
## 5729      75891                           Spoken
## 5730      75944                     Good Article
## 5731      75944 Partially Protected - Autoreview
## 5732      75982    Partially Protected - Default
## 5733      76010 Partially Protected - Autoreview
## 5734      76011 Partially Protected - Autoreview
## 5735      76018                     Good Article
## 5736      76018    Partially Protected - Default
## 5737      76033                     Good Article
## 5738      76143    Partially Protected - Default
## 5739      76153                     Good Article
## 5740      76250                 Featured Article
## 5741      76361                     Good Article
## 5742      76361    Partially Protected - Default
## 5743      76370                 Featured Article
## 5744      76371                     Good Article
## 5745      76511                     Good Article
## 5746      76528                     Good Article
## 5747      76585                     Good Article
## 5748      76592                     Good Article
## 5749      76592    Partially Protected - Default
## 5750      76610                     Good Article
## 5751      76630                     Good Article
## 5752      76636 Partially Protected - Autoreview
## 5753      76639    Partially Protected - Default
## 5754      76723    Partially Protected - Default
## 5755      76747                 Featured Article
## 5756      76747    Partially Protected - Default
## 5757      76772    Partially Protected - Default
## 5758      76793                     Good Article
## 5759      76811                 Featured Article
## 5760      76885                           Spoken
## 5761      76894                 Featured Article
## 5762      76894    Partially Protected - Default
## 5763      76934 Partially Protected - Autoreview
## 5764      76972    Partially Protected - Default
## 5765      77127                     Good Article
## 5766      77179                     Good Article
## 5767      77208                     Good Article
## 5768      77262                     Good Article
## 5769      77270                 Featured Article
## 5770      77305                     Good Article
## 5771      77323    Partially Protected - Default
## 5772      77404                 Featured Article
## 5773      77408                 Featured Article
## 5774      77432                     Good Article
## 5775      77463                     Good Article
## 5776      77473                     Good Article
## 5777      77474                     Good Article
## 5778      77495    Partially Protected - Default
## 5779      77523    Partially Protected - Default
## 5780      77533                     Good Article
## 5781      77540    Partially Protected - Default
## 5782      77548    Partially Protected - Default
## 5783      77549 Partially Protected - Autoreview
## 5784      77550    Partially Protected - Default
## 5785      77553    Partially Protected - Default
## 5786      77607    Partially Protected - Default
## 5787      77612    Partially Protected - Default
## 5788      77697 Partially Protected - Autoreview
## 5789      77701                     Good Article
## 5790      77745                     Good Article
## 5791      77770    Partially Protected - Default
## 5792      77778    Partially Protected - Default
## 5793      77799                     Good Article
## 5794      77807    Partially Protected - Default
## 5795      77808    Partially Protected - Default
## 5796      77858                     Good Article
## 5797      77858                           Spoken
## 5798      77880 Partially Protected - Autoreview
## 5799      77894    Partially Protected - Default
## 5800      77929    Partially Protected - Default
## 5801      78016                 Featured Article
## 5802      78056    Partially Protected - Default
## 5803      78062                     Good Article
## 5804      78085                     Good Article
## 5805      78103                     Good Article
## 5806      78114    Partially Protected - Default
## 5807      78114                           Spoken
## 5808      78145                     Good Article
## 5809      78160                 Featured Article
## 5810      78160    Partially Protected - Default
## 5811      78160                           Spoken
## 5812      78242                     Good Article
## 5813      78249                 Featured Article
## 5814      78255 Partially Protected - Autoreview
## 5815      78262                     Good Article
## 5816      78377                     Good Article
## 5817      78385                     Good Article
## 5818      78468    Partially Protected - Default
## 5819      78566                     Good Article
## 5820      78568                     Good Article
## 5821      78598                 Featured Article
## 5822      78689    Partially Protected - Default
## 5823      78750                 Featured Article
## 5824      78750                           Spoken
## 5825      78781 Partially Protected - Autoreview
## 5826      78786                 Featured Article
## 5827      78799    Partially Protected - Default
## 5828      78817    Partially Protected - Default
## 5829      78828    Partially Protected - Default
## 5830      78834                           Spoken
## 5831      78843 Partially Protected - Autoreview
## 5832      78855 Partially Protected - Autoreview
## 5833      78865 Partially Protected - Autoreview
## 5834      78879                           Spoken
## 5835      78882    Partially Protected - Default
## 5836      78917                 Featured Article
## 5837      78917    Partially Protected - Default
## 5838      78917                           Spoken
## 5839      78940                 Featured Article
## 5840      78967    Partially Protected - Default
## 5841      78969                     Good Article
## 5842      79026                     Good Article
## 5843      79189    Partially Protected - Default
## 5844      79206    Partially Protected - Default
## 5845      79280                     Good Article
## 5846      79289 Partially Protected - Autoreview
## 5847      79336 Partially Protected - Autoreview
## 5848      79409 Partially Protected - Autoreview
## 5849      79448                 Featured Article
## 5850      79484                     Good Article
## 5851      79484    Partially Protected - Default
## 5852      79491                 Featured Article
## 5853      79578                     Good Article
## 5854      79587                           Spoken
## 5855      79655                 Featured Article
## 5856      79677                     Good Article
## 5857      79681                 Featured Article
## 5858      79761                 Featured Article
## 5859      79761    Partially Protected - Default
## 5860      79784 Partially Protected - Autoreview
## 5861      79819                 Featured Article
## 5862      79871    Partially Protected - Default
## 5863      79967                     Good Article
## 5864      79982    Partially Protected - Default
## 5865      80027                     Good Article
## 5866      80042                 Featured Article
## 5867      80051                     Good Article
## 5868      80058                     Good Article
## 5869      80073                 Featured Article
## 5870      80103                     Good Article
## 5871      80130                     Good Article
## 5872      80197    Partially Protected - Default
## 5873      80222                           Spoken
## 5874      80236                           Spoken
## 5875      80269                     Good Article
## 5876      80322                           Spoken
## 5877      80399                     Good Article
## 5878      80405    Partially Protected - Default
## 5879      80521                 Featured Article
## 5880      80521                           Spoken
## 5881      80523                           Spoken
## 5882      80608                     Good Article
## 5883      80646                 Featured Article
## 5884      80666                     Good Article
## 5885      80696                     Good Article
## 5886      80696 Partially Protected - Autoreview
## 5887      80740    Partially Protected - Default
## 5888      80756    Partially Protected - Default
## 5889      80777    Partially Protected - Default
## 5890      80802                     Good Article
## 5891      80807                     Good Article
## 5892      80830    Partially Protected - Default
## 5893      80845                     Good Article
## 5894      80866    Partially Protected - Default
## 5895      80867                     Good Article
## 5896      80876    Partially Protected - Default
## 5897      80880                 Featured Article
## 5898      80884    Partially Protected - Default
## 5899      80888                 Featured Article
## 5900      80900                 Featured Article
## 5901      80903    Partially Protected - Default
## 5902      81065                 Featured Article
## 5903      81065                           Spoken
## 5904      81083    Partially Protected - Default
## 5905      81083                           Spoken
## 5906      81107                     Good Article
## 5907      81111                     Good Article
## 5908      81114                 Featured Article
## 5909      81118                     Good Article
## 5910      81134    Partially Protected - Default
## 5911      81141                     Good Article
## 5912      81198    Partially Protected - Default
## 5913      81222    Partially Protected - Default
## 5914      81274                 Featured Article
## 5915      81326                     Good Article
## 5916      81327                     Good Article
## 5917      81345    Partially Protected - Default
## 5918      81361    Partially Protected - Default
## 5919      81435    Partially Protected - Default
## 5920      81454                 Featured Article
## 5921      81455                 Featured Article
## 5922      81473                 Featured Article
## 5923      81480                 Featured Article
## 5924      81503                     Good Article
## 5925      81517                     Good Article
## 5926      81565                     Good Article
## 5927      81576    Partially Protected - Default
## 5928      81655                 Featured Article
## 5929      81657                 Featured Article
## 5930      81716                     Good Article
## 5931      81740                 Featured Article
## 5932      81740 Partially Protected - Autoreview
## 5933      81868                     Good Article
## 5934      81887                 Featured Article
## 5935      82058                     Good Article
## 5936      82061                     Good Article
## 5937      82082                     Good Article
## 5938      82082    Partially Protected - Default
## 5939      82157                 Featured Article
## 5940      82159                 Featured Article
## 5941      82188                 Featured Article
## 5942      82190                 Featured Article
## 5943      82208                     Good Article
## 5944      82254                     Good Article
## 5945      82254    Partially Protected - Default
## 5946      82394 Partially Protected - Autoreview
## 5947      82425    Partially Protected - Default
## 5948      82430    Partially Protected - Default
## 5949      82471    Partially Protected - Default
## 5950      82489                 Featured Article
## 5951      82536    Partially Protected - Default
## 5952      82556    Partially Protected - Default
## 5953      82730    Partially Protected - Default
## 5954      82804                     Good Article
## 5955      82957                     Good Article
## 5956      82974    Partially Protected - Default
## 5957      82976                     Good Article
## 5958      82976    Partially Protected - Default
## 5959      83096                     Good Article
## 5960      83098                     Good Article
## 5961      83102    Partially Protected - Default
## 5962      83108    Partially Protected - Default
## 5963      83416    Partially Protected - Default
## 5964      83427    Partially Protected - Default
## 5965      83430    Partially Protected - Default
## 5966      83432    Partially Protected - Default
## 5967      83440                           Spoken
## 5968      83442    Partially Protected - Default
## 5969      83477                           Spoken
## 5970      83486                 Featured Article
## 5971      83505    Partially Protected - Default
## 5972      83513    Partially Protected - Default
## 5973      83527    Partially Protected - Default
## 5974      83531    Partially Protected - Default
## 5975      83535    Partially Protected - Default
## 5976      83541    Partially Protected - Default
## 5977      83554                     Good Article
## 5978      83562                     Good Article
## 5979      83564                     Good Article
## 5980      83573                     Good Article
## 5981      83608                     Good Article
## 5982      83621                     Good Article
## 5983      83674    Partially Protected - Default
## 5984      83688                     Good Article
## 5985      83688    Partially Protected - Default
## 5986      83739                     Good Article
## 5987      83742    Partially Protected - Default
## 5988      83859    Partially Protected - Default
## 5989      84137                 Featured Article
## 5990      84142                     Good Article
## 5991      84154                     Good Article
## 5992      84195                     Good Article
## 5993      84237                           Spoken
## 5994      84252    Partially Protected - Default
## 5995      84273                 Featured Article
## 5996      84336    Partially Protected - Default
## 5997      84381                     Good Article
## 5998      84508                     Good Article
## 5999      84518    Partially Protected - Default
## 6000      84521                           Spoken
## 6001      84530                     Good Article
## 6002      84537    Partially Protected - Default
## 6003      84561    Partially Protected - Default
## 6004      84624                           Spoken
## 6005      84625                 Featured Article
## 6006      84636                 Featured Article
## 6007      84656                     Good Article
## 6008      84777    Partially Protected - Default
## 6009      84798                           Spoken
## 6010      84806                 Featured Article
## 6011      84814    Partially Protected - Default
## 6012      84849                     Good Article
## 6013      84849    Partially Protected - Default
## 6014      84922    Partially Protected - Default
## 6015      84963                           Spoken
## 6016      85099                     Good Article
## 6017      85234    Partially Protected - Default
## 6018      85279 Partially Protected - Autoreview
## 6019      85338 Partially Protected - Autoreview
## 6020      85425                 Featured Article
## 6021      85435                     Good Article
## 6022      85468                     Good Article
## 6023      85533    Partially Protected - Default
## 6024      85573    Partially Protected - Default
## 6025      85659                     Good Article
## 6026      85768                     Good Article
## 6027      85822                 Featured Article
## 6028      85865    Partially Protected - Default
## 6029      86026                 Featured Article
## 6030      86048                     Good Article
## 6031      86061                 Featured Article
## 6032      86165                     Good Article
## 6033      86186                     Good Article
## 6034      86346                     Good Article
## 6035      86348    Partially Protected - Default
## 6036      86378                     Good Article
## 6037      86380                     Good Article
## 6038      86383                     Good Article
## 6039      86384                     Good Article
## 6040      86402                 Featured Article
## 6041      86461                     Good Article
## 6042      86546                     Good Article
## 6043      86632                     Good Article
## 6044      86665    Partially Protected - Default
## 6045      86700                 Featured Article
## 6046      86700    Partially Protected - Default
## 6047      86700                           Spoken
## 6048      86774                 Featured Article
## 6049      86776                     Good Article
## 6050      86776                           Spoken
## 6051      86868                           Spoken
## 6052      86913                     Good Article
## 6053      86944    Partially Protected - Default
## 6054      86967    Partially Protected - Default
## 6055      86967                           Spoken
## 6056      87003                     Good Article
## 6057      87009                     Good Article
## 6058      87011                     Good Article
## 6059      87021                 Featured Article
## 6060      87021    Partially Protected - Default
## 6061      87059    Partially Protected - Default
## 6062      87106                     Good Article
## 6063      87107                     Good Article
## 6064      87108                     Good Article
## 6065      87114                 Featured Article
## 6066      87116                     Good Article
## 6067      87120                     Good Article
## 6068      87122                     Good Article
## 6069      87123                 Featured Article
## 6070      87195 Partially Protected - Autoreview
## 6071      87328 Partially Protected - Autoreview
## 6072      87345                     Good Article
## 6073      87354                     Good Article
## 6074      87355                     Good Article
## 6075      87356                     Good Article
## 6076      87401                 Featured Article
## 6077      87401    Partially Protected - Default
## 6078      87401                           Spoken
## 6079      87420                     Good Article
## 6080      87439    Partially Protected - Default
## 6081      87474 Partially Protected - Autoreview
## 6082      87488    Partially Protected - Default
## 6083      87542                     Good Article
## 6084      87576    Partially Protected - Default
## 6085      87577                     Good Article
## 6086      87585                     Good Article
## 6087      87585 Partially Protected - Autoreview
## 6088      87610                 Featured Article
## 6089      87610                           Spoken
## 6090      87677    Partially Protected - Default
## 6091      87679                     Good Article
## 6092      87771                     Good Article
## 6093      87773                     Good Article
## 6094      87794    Partially Protected - Default
## 6095      87826    Partially Protected - Default
## 6096      87829    Partially Protected - Default
## 6097      87892                     Good Article
## 6098      87896                     Good Article
## 6099      87897                     Good Article
## 6100      87921                 Featured Article
## 6101      87924                     Good Article
## 6102      87925                     Good Article
## 6103      87949 Partially Protected - Autoreview
## 6104      87959 Partially Protected - Autoreview
## 6105      87964                 Featured Article
## 6106      88003                 Featured Article
## 6107      88016                     Good Article
## 6108      88017                     Good Article
## 6109      88022                     Good Article
## 6110      88039                     Good Article
## 6111      88211    Partially Protected - Default
## 6112      88263                     Good Article
## 6113      88295    Partially Protected - Default
## 6114      88298    Partially Protected - Default
## 6115      88303                     Good Article
## 6116      88309                     Good Article
## 6117      88311                     Good Article
## 6118      88313                     Good Article
## 6119      88314    Partially Protected - Default
## 6120      88326                     Good Article
## 6121      88333                     Good Article
## 6122      88373                 Featured Article
## 6123      88377                 Featured Article
## 6124      88383                 Featured Article
## 6125      88397                     Good Article
## 6126      88398                     Good Article
## 6127      88407                     Good Article
## 6128      88410                     Good Article
## 6129      88418                     Good Article
## 6130      88419                     Good Article
## 6131      88427                     Good Article
## 6132      88428                     Good Article
## 6133      88431                     Good Article
## 6134      88435                     Good Article
## 6135      88436                     Good Article
## 6136      88440                 Featured Article
## 6137      88448                 Featured Article
## 6138      88464                     Good Article
## 6139      88472                     Good Article
## 6140      88477                     Good Article
## 6141      88487                     Good Article
## 6142      88492                 Featured Article
## 6143      88493    Partially Protected - Default
## 6144      88522                     Good Article
## 6145      88528                     Good Article
## 6146      88533    Partially Protected - Default
## 6147      88602    Partially Protected - Default
## 6148      88609                 Featured Article
## 6149      88615    Partially Protected - Default
## 6150      88618    Partially Protected - Default
## 6151      88626    Partially Protected - Default
## 6152      88630    Partially Protected - Default
## 6153      88632    Partially Protected - Default
## 6154      88678                     Good Article
## 6155      88678    Partially Protected - Default
## 6156      88720                     Good Article
## 6157      88724                     Good Article
## 6158      88731    Partially Protected - Default
## 6159      88750                     Good Article
## 6160      88750    Partially Protected - Default
## 6161      88764                     Good Article
## 6162      88765                     Good Article
## 6163      88766                     Good Article
## 6164      88767                     Good Article
## 6165      88791                           Spoken
## 6166      88821                     Good Article
## 6167      88833                     Good Article
## 6168      88859                     Good Article
## 6169      88882                     Good Article
## 6170      88883                     Good Article
## 6171      88885                     Good Article
## 6172      88885                           Spoken
## 6173      88894                     Good Article
## 6174      88901                     Good Article
## 6175      88923    Partially Protected - Default
## 6176      89019                     Good Article
## 6177      89050                     Good Article
## 6178      89059                 Featured Article
## 6179      89074                 Featured Article
## 6180      89110                     Good Article
## 6181      89130                     Good Article
## 6182      89141                 Featured Article
## 6183      89160                     Good Article
## 6184      89260                 Featured Article
## 6185      89260    Partially Protected - Default
## 6186      89265    Partially Protected - Default
## 6187      89337                     Good Article
## 6188      89359    Partially Protected - Default
## 6189      89393    Partially Protected - Default
## 6190      89442                     Good Article
## 6191      89443    Partially Protected - Default
## 6192      89473                     Good Article
## 6193      89488                     Good Article
## 6194      89510                     Good Article
## 6195      89530                 Featured Article
## 6196      89530    Partially Protected - Default
## 6197      89535                           Spoken
## 6198      89537                     Good Article
## 6199      89580                     Good Article
## 6200      89588                 Featured Article
## 6201      89629                     Good Article
## 6202      89656    Partially Protected - Default
## 6203      89678 Partially Protected - Autoreview
## 6204      89760    Partially Protected - Default
## 6205      89775    Partially Protected - Default
## 6206      89792                           Spoken
## 6207      89847    Partially Protected - Default
## 6208      89988                 Featured Article
## 6209      89988    Partially Protected - Default
## 6210      90046    Partially Protected - Default
## 6211      90095                     Good Article
## 6212      90143                     Good Article
## 6213      90267    Partially Protected - Default
## 6214      90422 Partially Protected - Autoreview
## 6215      90444                           Spoken
## 6216      90451    Partially Protected - Default
## 6217      90456                     Good Article
## 6218      90625                     Good Article
## 6219      90664 Partially Protected - Autoreview
## 6220      90785    Partially Protected - Default
## 6221      90796    Partially Protected - Default
## 6222      91128                     Good Article
## 6223      91155    Partially Protected - Default
## 6224      91155                           Spoken
## 6225      91171                 Featured Article
## 6226      91199                     Good Article
## 6227      91225                     Good Article
## 6228      91239                     Good Article
## 6229      91277                     Good Article
## 6230      91438    Partially Protected - Default
## 6231      91583 Partially Protected - Autoreview
## 6232      91655    Partially Protected - Default
## 6233      91853                 Featured Article
## 6234      91950                     Good Article
## 6235      92134                     Good Article
## 6236      92202    Partially Protected - Default
## 6237      92202                           Spoken
## 6238      92204    Partially Protected - Default
## 6239      92204                           Spoken
## 6240      92221                 Featured Article
## 6241      92324                     Good Article
## 6242      92353                     Good Article
## 6243      92377    Partially Protected - Default
## 6244      92384    Partially Protected - Default
## 6245      92385                 Featured Article
## 6246      92440 Partially Protected - Autoreview
## 6247      92600                     Good Article
## 6248      92689                     Good Article
## 6249      92690                 Featured Article
## 6250      92690    Partially Protected - Default
## 6251      92693                     Good Article
## 6252      92693    Partially Protected - Default
## 6253      92731    Partially Protected - Default
## 6254      93014                     Good Article
## 6255      93145                 Featured Article
## 6256      93149    Partially Protected - Default
## 6257      93361    Partially Protected - Default
## 6258      93423                 Featured Article
## 6259      93450 Partially Protected - Autoreview
## 6260      93489    Partially Protected - Default
## 6261      93560                 Featured Article
## 6262      93740                     Good Article
## 6263      93759                           Spoken
## 6264      93791                     Good Article
## 6265      93791    Partially Protected - Default
## 6266      93830                     Good Article
## 6267      93888    Partially Protected - Default
## 6268      93931                     Good Article
## 6269      93947                     Good Article
## 6270      93961                     Good Article
## 6271      93965                     Good Article
## 6272      93977                     Good Article
## 6273      93996 Partially Protected - Autoreview
## 6274      94087    Partially Protected - Default
## 6275      94111    Partially Protected - Default
## 6276      94120                     Good Article
## 6277      94167                     Good Article
## 6278      94264                     Good Article
## 6279      94268                     Good Article
## 6280      94286                     Good Article
## 6281      94289    Partially Protected - Default
## 6282      94338                     Good Article
## 6283      94339                 Featured Article
## 6284      94342                     Good Article
## 6285      94860    Partially Protected - Default
## 6286      94882                     Good Article
## 6287      95225                     Good Article
## 6288      95374                     Good Article
## 6289      95405                     Good Article
## 6290      95419                 Featured Article
## 6291      95419                           Spoken
## 6292      95618    Partially Protected - Default
## 6293      96057                 Featured Article
## 6294      96117                     Good Article
## 6295      96144                     Good Article
## 6296      96149                     Good Article
## 6297      96149    Partially Protected - Default
## 6298      96495 Partially Protected - Autoreview
## 6299      96652    Partially Protected - Default
## 6300      96665    Partially Protected - Default
## 6301      96875                     Good Article
## 6302      96933    Partially Protected - Default
## 6303      96934    Partially Protected - Default
## 6304      96936    Partially Protected - Default
## 6305      96939    Partially Protected - Default
## 6306      96940    Partially Protected - Default
## 6307      96941    Partially Protected - Default
## 6308      96942    Partially Protected - Default
## 6309      96943    Partially Protected - Default
## 6310      96944    Partially Protected - Default
## 6311      97001                     Good Article
## 6312      97027                     Good Article
## 6313      97045    Partially Protected - Default
## 6314      97054    Partially Protected - Default
## 6315      97066                 Featured Article
## 6316      97066                           Spoken
## 6317      97100    Partially Protected - Default
## 6318      97101    Partially Protected - Default
## 6319      97152                     Good Article
## 6320      97204 Partially Protected - Autoreview
## 6321      97235    Partially Protected - Default
## 6322      97236    Partially Protected - Default
## 6323      97267    Partially Protected - Default
## 6324      97268    Partially Protected - Default
## 6325      97292    Partially Protected - Default
## 6326      97309    Partially Protected - Default
## 6327      97310    Partially Protected - Default
## 6328      97311    Partially Protected - Default
## 6329      97395    Partially Protected - Default
## 6330      97396    Partially Protected - Default
## 6331      97398    Partially Protected - Default
## 6332      97399    Partially Protected - Default
## 6333      97404                     Good Article
## 6334      97404    Partially Protected - Default
## 6335      97477                           Spoken
## 6336      97589                     Good Article
## 6337      97684    Partially Protected - Default
## 6338      97738                     Good Article
## 6339      97752                     Good Article
## 6340      97764                     Good Article
## 6341      97767                 Featured Article
## 6342      97771    Partially Protected - Default
## 6343      97774                 Featured Article
## 6344      97780                     Good Article
## 6345      97803 Partially Protected - Autoreview
## 6346      97809 Partially Protected - Autoreview
## 6347      97817                 Featured Article
## 6348      97905                     Good Article
## 6349      98012                     Good Article
## 6350      98152                     Good Article
## 6351      98272    Partially Protected - Default
## 6352      98276    Partially Protected - Default
## 6353      98279                     Good Article
## 6354      98289    Partially Protected - Default
## 6355      98294    Partially Protected - Default
## 6356      98295    Partially Protected - Default
## 6357      98296    Partially Protected - Default
## 6358      98298    Partially Protected - Default
## 6359      98299    Partially Protected - Default
## 6360      98300    Partially Protected - Default
## 6361      98301                     Good Article
## 6362      98301    Partially Protected - Default
## 6363      98317    Partially Protected - Default
## 6364      98351    Partially Protected - Default
## 6365      98356    Partially Protected - Default
## 6366      98358                     Good Article
## 6367      98361                     Good Article
## 6368      98365                     Good Article
## 6369      98368                     Good Article
## 6370      98401    Partially Protected - Default
## 6371      98402    Partially Protected - Default
## 6372      98403    Partially Protected - Default
## 6373      98404    Partially Protected - Default
## 6374      98406    Partially Protected - Default
## 6375      98439 Partially Protected - Autoreview
## 6376      98474                 Featured Article
## 6377      98616                     Good Article
## 6378      98648                     Good Article
## 6379      98649                     Good Article
## 6380      98651                     Good Article
## 6381      98656                     Good Article
## 6382      98671                     Good Article
## 6383      98770                     Good Article
## 6384      98777                 Featured Article
## 6385      98896                     Good Article
## 6386      98927                 Featured Article
## 6387      98933 Partially Protected - Autoreview
## 6388      98958                     Good Article
## 6389      99063                 Featured Article
## 6390      99063    Partially Protected - Default
## 6391      99216    Partially Protected - Default
## 6392      99216                           Spoken
## 6393      99228                     Good Article
## 6394      99326                     Good Article
## 6395      99372    Partially Protected - Default
## 6396      99441    Partially Protected - Default
## 6397      99441                           Spoken
## 6398      99491                     Good Article
## 6399      99519                     Good Article
## 6400      99526                     Good Article
## 6401      99528                     Good Article
## 6402      99530                     Good Article
## 6403      99536                     Good Article
## 6404      99598    Partially Protected - Default
## 6405      99823                     Good Article
## 6406      99842                     Good Article
## 6407      99850                     Good Article
## 6408      99856                     Good Article
## 6409     100055                 Featured Article
## 6410     100061                     Good Article
## 6411     100062                 Featured Article
## 6412     100062    Partially Protected - Default
## 6413     100123                     Good Article
## 6414     100127    Partially Protected - Default
## 6415     100152                 Featured Article
## 6416     100156                     Good Article
## 6417     100194                     Good Article
## 6418     100196    Partially Protected - Default
## 6419     100216    Partially Protected - Default
## 6420     100219    Partially Protected - Default
## 6421     100225                           Spoken
## 6422     100232    Partially Protected - Default
## 6423     100254    Partially Protected - Default
## 6424     100315    Partially Protected - Default
## 6425     100320                 Featured Article
## 6426     100323                     Good Article
## 6427     100325                     Good Article
## 6428     100340                 Featured Article
## 6429     100365    Partially Protected - Default
## 6430     100384    Partially Protected - Default
## 6431     100390                     Good Article
## 6432     100413                     Good Article
## 6433     100422                 Featured Article
## 6434     100506                     Good Article
## 6435     100511                     Good Article
## 6436     100512                     Good Article
## 6437     100534                     Good Article
## 6438     100556                     Good Article
## 6439     100557                     Good Article
## 6440     100559                     Good Article
## 6441     100561                     Good Article
## 6442     100561 Partially Protected - Autoreview
## 6443     100627    Partially Protected - Default
## 6444     100640                           Spoken
## 6445     100677    Partially Protected - Default
## 6446     100692 Partially Protected - Autoreview
## 6447     100696                     Good Article
## 6448     100708                     Good Article
## 6449     100714                     Good Article
## 6450     100720                     Good Article
## 6451     100730                 Featured Article
## 6452     100798                 Featured Article
## 6453     100798                           Spoken
## 6454     100832                     Good Article
## 6455     100840                 Featured Article
## 6456     100843                     Good Article
## 6457     101141                     Good Article
## 6458     101186                 Featured Article
## 6459     101186    Partially Protected - Default
## 6460     101201                     Good Article
## 6461     101202                     Good Article
## 6462     101357                     Good Article
## 6463     101363                     Good Article
## 6464     101364                     Good Article
## 6465     101368                     Good Article
## 6466     101370                     Good Article
## 6467     101372                     Good Article
## 6468     101375                     Good Article
## 6469     101561    Partially Protected - Default
## 6470     101636                     Good Article
## 6471     101636    Partially Protected - Default
## 6472     101679    Partially Protected - Default
## 6473     101681                 Featured Article
## 6474     101699                     Good Article
## 6475     101730    Partially Protected - Default
## 6476     101878                     Good Article
## 6477     101878    Partially Protected - Default
## 6478     101925                     Good Article
## 6479     101925    Partially Protected - Default
## 6480     101942    Partially Protected - Default
## 6481     101965                     Good Article
## 6482     101967                     Good Article
## 6483     101970    Partially Protected - Default
## 6484     101986    Partially Protected - Default
## 6485     102096    Partially Protected - Default
## 6486     102100                     Good Article
## 6487     102193                     Good Article
## 6488     102210    Partially Protected - Default
## 6489     102282                     Good Article
## 6490     102287                 Featured Article
## 6491     102287    Partially Protected - Default
## 6492     102342    Partially Protected - Default
## 6493     102400 Partially Protected - Autoreview
## 6494     102480    Partially Protected - Default
## 6495     102485 Partially Protected - Autoreview
## 6496     102493                     Good Article
## 6497     102518                 Featured Article
## 6498     102569                     Good Article
## 6499     102569    Partially Protected - Default
## 6500     102685                     Good Article
## 6501     102690    Partially Protected - Default
## 6502     102699    Partially Protected - Default
## 6503     102699                           Spoken
## 6504     102724    Partially Protected - Default
## 6505     102745    Partially Protected - Default
## 6506     102769                 Featured Article
## 6507     102810                     Good Article
## 6508     102858    Partially Protected - Default
## 6509     102871    Partially Protected - Default
## 6510     102881    Partially Protected - Default
## 6511     102915                 Featured Article
## 6512     102952                 Featured Article
## 6513     102994 Partially Protected - Autoreview
## 6514     103051                           Spoken
## 6515     103063    Partially Protected - Default
## 6516     103123    Partially Protected - Default
## 6517     103174                 Featured Article
## 6518     103246                 Featured Article
## 6519     103246                           Spoken
## 6520     103362    Partially Protected - Default
## 6521     103930    Partially Protected - Default
## 6522     103973 Partially Protected - Autoreview
## 6523     103977 Partially Protected - Autoreview
## 6524     103990                 Featured Article
## 6525     104108                     Good Article
## 6526     104168                 Featured Article
## 6527     104444    Partially Protected - Default
## 6528     104447                     Good Article
## 6529     104492    Partially Protected - Default
## 6530     104649    Partially Protected - Default
## 6531     104743                           Spoken
## 6532     104774                     Good Article
## 6533     104774    Partially Protected - Default
## 6534     104774                           Spoken
## 6535     104817    Partially Protected - Default
## 6536     104825    Partially Protected - Default
## 6537     104834                     Good Article
## 6538     104834    Partially Protected - Default
## 6539     104876                     Good Article
## 6540     104876    Partially Protected - Default
## 6541     104890    Partially Protected - Default
## 6542     104912                 Featured Article
## 6543     104912    Partially Protected - Default
## 6544     104940    Partially Protected - Default
## 6545     104943                     Good Article
## 6546     104977                 Featured Article
## 6547     104985    Partially Protected - Default
## 6548     104990                     Good Article
## 6549     104991    Partially Protected - Default
## 6550     105022                     Good Article
## 6551     105060                     Good Article
## 6552     105074    Partially Protected - Default
## 6553     105219    Partially Protected - Default
## 6554     105391                 Featured Article
## 6555     105407 Partially Protected - Autoreview
## 6556     105816 Partially Protected - Autoreview
## 6557     105883                           Spoken
## 6558     105922    Partially Protected - Default
## 6559     105979    Partially Protected - Default
## 6560     106004                           Spoken
## 6561     106031                     Good Article
## 6562     106098    Partially Protected - Default
## 6563     106128                     Good Article
## 6564     106128    Partially Protected - Default
## 6565     106128                           Spoken
## 6566     106130                 Featured Article
## 6567     106132                           Spoken
## 6568     106190    Partially Protected - Default
## 6569     106200    Partially Protected - Default
## 6570     106205    Partially Protected - Default
## 6571     106207    Partially Protected - Default
## 6572     106218                          Journal
## 6573     106285                     Good Article
## 6574     106289                     Good Article
## 6575     106370                           Spoken
## 6576     106454    Partially Protected - Default
## 6577     106788                 Featured Article
## 6578     107813                     Good Article
## 6579     107881                     Good Article
## 6580     107982                     Good Article
## 6581     108038                     Good Article
## 6582     108122                     Good Article
## 6583     108218                     Good Article
## 6584     108257                     Good Article
## 6585     108294                     Good Article
## 6586     108648                           Spoken
## 6587     108956                 Featured Article
## 6588     108956    Partially Protected - Default
## 6589     109021                     Good Article
## 6590     109028                     Good Article
## 6591     109179    Partially Protected - Default
## 6592     109466                     Good Article
## 6593     110137                     Good Article
## 6594     110369 Partially Protected - Autoreview
## 6595     110379    Partially Protected - Default
## 6596     110819    Partially Protected - Default
## 6597     111476                     Good Article
## 6598     111862                     Good Article
## 6599     112274    Partially Protected - Default
## 6600     112577    Partially Protected - Default
## 6601     112607                     Good Article
## 6602     113064                 Featured Article
## 6603     113064                           Spoken
## 6604     113070    Partially Protected - Default
## 6605     113139                     Good Article
## 6606     113150                     Good Article
## 6607     113157                     Good Article
## 6608     113158                 Featured Article
## 6609     113159                     Good Article
## 6610     113167    Partially Protected - Default
## 6611     113180    Partially Protected - Default
## 6612     113250                     Good Article
## 6613     113302                     Good Article
## 6614     113318                           Spoken
## 6615     113328                     Good Article
## 6616     113443                     Good Article
## 6617     113445                 Featured Article
## 6618     113453    Partially Protected - Default
## 6619     113475    Partially Protected - Default
## 6620     113525    Partially Protected - Default
## 6621     113549                     Good Article
## 6622     113555                 Featured Article
## 6623     113619                 Featured Article
## 6624     113654                     Good Article
## 6625     113661                     Good Article
## 6626     113663                 Featured Article
## 6627     113663    Partially Protected - Default
## 6628     113674                 Featured Article
## 6629     113700                     Good Article
## 6630     113727                 Featured Article
## 6631     113728                     Good Article
## 6632     113728    Partially Protected - Default
## 6633     113746    Partially Protected - Default
## 6634     113933 Partially Protected - Autoreview
## 6635     114127    Partially Protected - Default
## 6636     114136                     Good Article
## 6637     115276 Partially Protected - Autoreview
## 6638     115894                     Good Article
## 6639     116177 Partially Protected - Autoreview
## 6640     118372                 Featured Article
## 6641     118763                     Good Article
## 6642     119231                           Spoken
## 6643     119499                           Spoken
## 6644     119954                     Good Article
## 6645     121462                     Good Article
## 6646     121607    Partially Protected - Default
## 6647     122284    Partially Protected - Default
## 6648     122386    Partially Protected - Default
## 6649     122972 Partially Protected - Autoreview
## 6650     123325    Partially Protected - Default
## 6651     123433                     Good Article
## 6652     123512                           Spoken
## 6653     123548                     Good Article
## 6654     123590    Partially Protected - Default
## 6655     123638    Partially Protected - Default
## 6656     123761                 Featured Article
## 6657     123881 Partially Protected - Autoreview
## 6658     124008    Partially Protected - Default
## 6659     124008                           Spoken
## 6660     124011                     Good Article
## 6661     124024                     Good Article
## 6662     124450                     Good Article
## 6663     124802                     Good Article
## 6664     124881                     Good Article
## 6665     124902    Partially Protected - Default
## 6666     125011                     Good Article
## 6667     125137                     Good Article
## 6668     125195    Partially Protected - Default
## 6669     125195                           Spoken
## 6670     125209                           Spoken
## 6671     125248    Partially Protected - Default
## 6672     125258    Partially Protected - Default
## 6673     125293                     Good Article
## 6674     125293    Partially Protected - Default
## 6675     125311                     Good Article
## 6676     125561                     Good Article
## 6677     125563                     Good Article
## 6678     125573                     Good Article
## 6679     125745                     Good Article
## 6680     125819                 Featured Article
## 6681     125944                     Good Article
## 6682     126271                     Good Article
## 6683     126813                     Good Article
## 6684     126860                     Good Article
## 6685     126860    Partially Protected - Default
## 6686     127254                     Good Article
## 6687     127480                     Good Article
## 6688     127545                 Featured Article
## 6689     127575    Partially Protected - Default
## 6690     127590    Partially Protected - Default
## 6691     127725                           Spoken
## 6692     127860                     Good Article
## 6693     128157    Partially Protected - Default
## 6694     128158                 Featured Article
## 6695     128345                     Good Article
## 6696     128362                 Featured Article
## 6697     128362                           Spoken
## 6698     128549                 Featured Article
## 6699     128770                     Good Article
## 6700     128925 Partially Protected - Autoreview
## 6701     128987                           Spoken
## 6702     129011 Partially Protected - Autoreview
## 6703     129154 Partially Protected - Autoreview
## 6704     129194                     Good Article
## 6705     129211                     Good Article
## 6706     129213                     Good Article
## 6707     129220                     Good Article
## 6708     129317 Partially Protected - Autoreview
## 6709     129410                     Good Article
## 6710     129608 Partially Protected - Autoreview
## 6711     130118                     Good Article
## 6712     130131                     Good Article
## 6713     130781                     Good Article
## 6714     130825                     Good Article
## 6715     130842                     Good Article
## 6716     130842    Partially Protected - Default
## 6717     130853 Partially Protected - Autoreview
## 6718     131007                 Featured Article
## 6719     132071                 Featured Article
## 6720     132354    Partially Protected - Default
## 6721     132472    Partially Protected - Default
## 6722     132482                 Featured Article
## 6723     132576                     Good Article
## 6724     132809                     Good Article
## 6725     132858                 Featured Article
## 6726     133142    Partially Protected - Default
## 6727     133202    Partially Protected - Default
## 6728     133245                     Good Article
## 6729     133247                     Good Article
## 6730     133249    Partially Protected - Default
## 6731     133392                     Good Article
## 6732     133462                     Good Article
## 6733     133874                     Good Article
## 6734     134258    Partially Protected - Default
## 6735     134404                     Good Article
## 6736     134463    Partially Protected - Default
## 6737     134497    Partially Protected - Default
## 6738     135338    Partially Protected - Default
## 6739     135760                     Good Article
## 6740     135916                     Good Article
## 6741     135997                     Good Article
## 6742     136116    Partially Protected - Default
## 6743     136513                     Good Article
## 6744     136630    Partially Protected - Default
## 6745     137007                 Featured Article
## 6746     137069                     Good Article
## 6747     137115    Partially Protected - Default
## 6748     137471    Partially Protected - Default
## 6749     137473                 Featured Article
## 6750     137612                 Featured Article
## 6751     137612                           Spoken
## 6752     137839                     Good Article
## 6753     137869    Partially Protected - Default
## 6754     137896    Partially Protected - Default
## 6755     137986    Partially Protected - Default
## 6756     138106                     Good Article
## 6757     138192                 Featured Article
## 6758     138219                     Good Article
## 6759     138268                     Good Article
## 6760     139221    Partially Protected - Default
## 6761     140255    Partially Protected - Default
## 6762     140332                 Featured Article
## 6763     140367                 Featured Article
## 6764     140376    Partially Protected - Default
## 6765     140387    Partially Protected - Default
## 6766     140389    Partially Protected - Default
## 6767     140422                 Featured Article
## 6768     140446    Partially Protected - Default
## 6769     140469                     Good Article
## 6770     140526                     Good Article
## 6771     140558    Partially Protected - Default
## 6772     140639                 Featured Article
## 6773     140642    Partially Protected - Default
## 6774     140662                     Good Article
## 6775     140758                           Spoken
## 6776     140795                 Featured Article
## 6777     140807                     Good Article
## 6778     140827                     Good Article
## 6779     140968                          Journal
## 6780     140968                 Featured Article
## 6781     140995                 Featured Article
## 6782     141338                     Good Article
## 6783     141738                 Featured Article
## 6784     141871                 Featured Article
## 6785     141896    Partially Protected - Default
## 6786     141915                           Spoken
## 6787     141922 Partially Protected - Autoreview
## 6788     141983    Partially Protected - Default
## 6789     142022                     Good Article
## 6790     142049                     Good Article
## 6791     142056                     Good Article
## 6792     142056    Partially Protected - Default
## 6793     142123 Partially Protected - Autoreview
## 6794     142142    Partially Protected - Default
## 6795     142220 Partially Protected - Autoreview
## 6796     142224                     Good Article
## 6797     142226    Partially Protected - Default
## 6798     142292                 Featured Article
## 6799     142395    Partially Protected - Default
## 6800     142426                 Featured Article
## 6801     142431                     Good Article
## 6802     142436 Partially Protected - Autoreview
## 6803     142450                     Good Article
## 6804     142465                     Good Article
## 6805     142482                     Good Article
## 6806     142489                     Good Article
## 6807     142499                 Featured Article
## 6808     142499    Partially Protected - Default
## 6809     142500                 Featured Article
## 6810     142500    Partially Protected - Default
## 6811     142502                 Featured Article
## 6812     142502    Partially Protected - Default
## 6813     142504                 Featured Article
## 6814     142504    Partially Protected - Default
## 6815     142510                 Featured Article
## 6816     142510    Partially Protected - Default
## 6817     142515    Partially Protected - Default
## 6818     142528                     Good Article
## 6819     142528    Partially Protected - Default
## 6820     142537                     Good Article
## 6821     142601                     Good Article
## 6822     142668                     Good Article
## 6823     142678                     Good Article
## 6824     142678    Partially Protected - Default
## 6825     142716    Partially Protected - Default
## 6826     142721    Partially Protected - Default
## 6827     142788    Partially Protected - Default
## 6828     142805    Partially Protected - Default
## 6829     142807                     Good Article
## 6830     142854                     Good Article
## 6831     142867    Partially Protected - Default
## 6832     142962                 Featured Article
## 6833     143033 Partially Protected - Autoreview
## 6834     143038    Partially Protected - Default
## 6835     143041    Partially Protected - Default
## 6836     143044    Partially Protected - Default
## 6837     143047    Partially Protected - Default
## 6838     143130    Partially Protected - Default
## 6839     143149    Partially Protected - Default
## 6840     143163                     Good Article
## 6841     143174                     Good Article
## 6842     143182    Partially Protected - Default
## 6843     143260    Partially Protected - Default
## 6844     143261                     Good Article
## 6845     143263                     Good Article
## 6846     143266                     Good Article
## 6847     143273                     Good Article
## 6848     143294                     Good Article
## 6849     143298                 Featured Article
## 6850     143341    Partially Protected - Default
## 6851     143363    Partially Protected - Default
## 6852     143377                     Good Article
## 6853     143377    Partially Protected - Default
## 6854     143416                     Good Article
## 6855     143416    Partially Protected - Default
## 6856     143425                     Good Article
## 6857     143425    Partially Protected - Default
## 6858     143541                     Good Article
## 6859     143541    Partially Protected - Default
## 6860     143559                           Spoken
## 6861     143562                 Featured Article
## 6862     143579                     Good Article
## 6863     143809                 Featured Article
## 6864     143824                 Featured Article
## 6865     143847                     Good Article
## 6866     143940                     Good Article
## 6867     144004                     Good Article
## 6868     144010    Partially Protected - Default
## 6869     144059    Partially Protected - Default
## 6870     144149    Partially Protected - Default
## 6871     144155                 Featured Article
## 6872     144171    Partially Protected - Default
## 6873     144175                     Good Article
## 6874     144175    Partially Protected - Default
## 6875     144231                     Good Article
## 6876     144364                     Good Article
## 6877     144439                     Good Article
## 6878     144452                     Good Article
## 6879     144500                     Good Article
## 6880     144500                           Spoken
## 6881     144508                 Featured Article
## 6882     144524                 Featured Article
## 6883     144604                     Good Article
## 6884     144638    Partially Protected - Default
## 6885     144684                     Good Article
## 6886     144721                     Good Article
## 6887     144759                 Featured Article
## 6888     144764                           Spoken
## 6889     144810                 Featured Article
## 6890     144848    Partially Protected - Default
## 6891     144870                     Good Article
## 6892     144911                           Spoken
## 6893     144936    Partially Protected - Default
## 6894     144954                 Featured Article
## 6895     144982    Partially Protected - Default
## 6896     144983                     Good Article
## 6897     145009                     Good Article
## 6898     145056                     Good Article
## 6899     145092    Partially Protected - Default
## 6900     145162                 Featured Article
## 6901     145162                           Spoken
## 6902     145233                           Spoken
## 6903     145249    Partially Protected - Default
## 6904     145267    Partially Protected - Default
## 6905     145295                 Featured Article
## 6906     145315                 Featured Article
## 6907     145321                 Featured Article
## 6908     145326                 Featured Article
## 6909     145359                 Featured Article
## 6910     145419    Partially Protected - Default
## 6911     145422                     Good Article
## 6912     145422    Partially Protected - Default
## 6913     145439    Partially Protected - Default
## 6914     145450                 Featured Article
## 6915     145492                 Featured Article
## 6916     145532                     Good Article
## 6917     145542                     Good Article
## 6918     145569                     Good Article
## 6919     145700    Partially Protected - Default
## 6920     145716    Partially Protected - Default
## 6921     145744                     Good Article
## 6922     145783    Partially Protected - Default
## 6923     145790 Partially Protected - Autoreview
## 6924     145817                 Featured Article
## 6925     145830                     Good Article
## 6926     145855                 Featured Article
## 6927     145871                     Good Article
## 6928     145875                 Featured Article
## 6929     145955                     Good Article
## 6930     145975                 Featured Article
## 6931     146010    Partially Protected - Default
## 6932     146068    Partially Protected - Default
## 6933     146077                     Good Article
## 6934     146151                     Good Article
## 6935     146167    Partially Protected - Default
## 6936     146168    Partially Protected - Default
## 6937     146195                     Good Article
## 6938     146223    Partially Protected - Default
## 6939     146236                     Good Article
## 6940     146237                     Good Article
## 6941     146239                           Spoken
## 6942     146270 Partially Protected - Autoreview
## 6943     146299 Partially Protected - Autoreview
## 6944     146317                     Good Article
## 6945     146356 Partially Protected - Autoreview
## 6946     146396                     Good Article
## 6947     146416                     Good Article
## 6948     146444                     Good Article
## 6949     146563                     Good Article
## 6950     146595                 Featured Article
## 6951     146651    Partially Protected - Default
## 6952     146653                 Featured Article
## 6953     146653    Partially Protected - Default
## 6954     146654    Partially Protected - Default
## 6955     146660                     Good Article
## 6956     146702    Partially Protected - Default
## 6957     146738 Partially Protected - Autoreview
## 6958     146803                     Good Article
## 6959     146803 Partially Protected - Autoreview
## 6960     146805    Partially Protected - Default
## 6961     146879    Partially Protected - Default
## 6962     146919                     Good Article
## 6963     146929                     Good Article
## 6964     146935    Partially Protected - Default
## 6965     146947                     Good Article
## 6966     146978                     Good Article
## 6967     146982                 Featured Article
## 6968     146983                     Good Article
## 6969     147019                 Featured Article
## 6970     147027    Partially Protected - Default
## 6971     147041                     Good Article
## 6972     147052                     Good Article
## 6973     147065    Partially Protected - Default
## 6974     147107                     Good Article
## 6975     147152                 Featured Article
## 6976     147156                 Featured Article
## 6977     147273                     Good Article
## 6978     147278                     Good Article
## 6979     147284 Partially Protected - Autoreview
## 6980     147301    Partially Protected - Default
## 6981     147367 Partially Protected - Autoreview
## 6982     147384 Partially Protected - Autoreview
## 6983     147414    Partially Protected - Default
## 6984     147414                           Spoken
## 6985     147429                 Featured Article
## 6986     147429    Partially Protected - Default
## 6987     147436    Partially Protected - Default
## 6988     147457    Partially Protected - Default
## 6989     147459    Partially Protected - Default
## 6990     147467                 Featured Article
## 6991     147470                     Good Article
## 6992     147481    Partially Protected - Default
## 6993     147511    Partially Protected - Default
## 6994     147533    Partially Protected - Default
## 6995     147537                 Featured Article
## 6996     147575                     Good Article
## 6997     147575    Partially Protected - Default
## 6998     147584                 Featured Article
## 6999     147584    Partially Protected - Default
## 7000     147589                 Featured Article
## 7001     147589    Partially Protected - Default
## 7002     147590                 Featured Article
## 7003     147590    Partially Protected - Default
## 7004     147591                 Featured Article
## 7005     147591    Partially Protected - Default
## 7006     147635                     Good Article
## 7007     147672    Partially Protected - Default
## 7008     147676    Partially Protected - Default
## 7009     147687    Partially Protected - Default
## 7010     147704                     Good Article
## 7011     147709                     Good Article
## 7012     147725    Partially Protected - Default
## 7013     147726    Partially Protected - Default
## 7014     147740    Partially Protected - Default
## 7015     147760                 Featured Article
## 7016     147846    Partially Protected - Default
## 7017     147848                     Good Article
## 7018     147897 Partially Protected - Autoreview
## 7019     147911    Partially Protected - Default
## 7020     147916    Partially Protected - Default
## 7021     147941                 Featured Article
## 7022     147958                     Good Article
## 7023     147965    Partially Protected - Default
## 7024     147976                 Featured Article
## 7025     148000                     Good Article
## 7026     148003                 Featured Article
## 7027     148037                     Good Article
## 7028     148069                     Good Article
## 7029     148161    Partially Protected - Default
## 7030     148163    Partially Protected - Default
## 7031     148219                 Featured Article
## 7032     148224                 Featured Article
## 7033     148236 Partially Protected - Autoreview
## 7034     148304                     Good Article
## 7035     148328    Partially Protected - Default
## 7036     148385 Partially Protected - Autoreview
## 7037     148540    Partially Protected - Default
## 7038     148547    Partially Protected - Default
## 7039     148557                     Good Article
## 7040     148576 Partially Protected - Autoreview
## 7041     148592                     Good Article
## 7042     148637    Partially Protected - Default
## 7043     148653    Partially Protected - Default
## 7044     148686                     Good Article
## 7045     148690                     Good Article
## 7046     148703    Partially Protected - Default
## 7047     148710                     Good Article
## 7048     148731                     Good Article
## 7049     148732                     Good Article
## 7050     148784 Partially Protected - Autoreview
## 7051     148819                     Good Article
## 7052     148854                     Good Article
## 7053     148854    Partially Protected - Default
## 7054     148869                     Good Article
## 7055     148904                     Good Article
## 7056     149013    Partially Protected - Default
## 7057     149016                 Featured Article
## 7058     149016    Partially Protected - Default
## 7059     149023    Partially Protected - Default
## 7060     149076                     Good Article
## 7061     149076    Partially Protected - Default
## 7062     149088                     Good Article
## 7063     149100                     Good Article
## 7064     149116                     Good Article
## 7065     149128    Partially Protected - Default
## 7066     149131                 Featured Article
## 7067     149183    Partially Protected - Default
## 7068     149189 Partially Protected - Autoreview
## 7069     149201                 Featured Article
## 7070     149208    Partially Protected - Default
## 7071     149216                     Good Article
## 7072     149225                 Featured Article
## 7073     149225 Partially Protected - Autoreview
## 7074     149232                     Good Article
## 7075     149233                     Good Article
## 7076     149234                     Good Article
## 7077     149237                     Good Article
## 7078     149243                 Featured Article
## 7079     149243    Partially Protected - Default
## 7080     149246                 Featured Article
## 7081     149258                 Featured Article
## 7082     149270                     Good Article
## 7083     149274                     Good Article
## 7084     149289                           Spoken
## 7085     149330                     Good Article
## 7086     149330    Partially Protected - Default
## 7087     149333    Partially Protected - Default
## 7088     149337    Partially Protected - Default
## 7089     149355 Partially Protected - Autoreview
## 7090     149370                     Good Article
## 7091     149377    Partially Protected - Default
## 7092     149411    Partially Protected - Default
## 7093     149536    Partially Protected - Default
## 7094     149545                 Featured Article
## 7095     149592                     Good Article
## 7096     149609    Partially Protected - Default
## 7097     149670    Partially Protected - Default
## 7098     149681                     Good Article
## 7099     149686    Partially Protected - Default
## 7100     149709                     Good Article
## 7101     149709    Partially Protected - Default
## 7102     149721                     Good Article
## 7103     149769    Partially Protected - Default
## 7104     149773                           Spoken
## 7105     149774                     Good Article
## 7106     149803 Partially Protected - Autoreview
## 7107     149837    Partially Protected - Default
## 7108     149875                 Featured Article
## 7109     149895                     Good Article
## 7110     149896                 Featured Article
## 7111     149920    Partially Protected - Default
## 7112     149932                     Good Article
## 7113     149996                     Good Article
## 7114     150011    Partially Protected - Default
## 7115     150012    Partially Protected - Default
## 7116     150013    Partially Protected - Default
## 7117     150021    Partially Protected - Default
## 7118     150029                     Good Article
## 7119     150030                     Good Article
## 7120     150056                     Good Article
## 7121     150063                     Good Article
## 7122     150091 Partially Protected - Autoreview
## 7123     150234                     Good Article
## 7124     150234    Partially Protected - Default
## 7125     150374                     Good Article
## 7126     150394                     Good Article
## 7127     150694                     Good Article
## 7128     150742                     Good Article
## 7129     150779                 Featured Article
## 7130     150780                     Good Article
## 7131     150927                 Featured Article
## 7132     150969                 Featured Article
## 7133     150983                     Good Article
## 7134     150996                 Featured Article
## 7135     151116                 Featured Article
## 7136     151143                 Featured Article
## 7137     151159                     Good Article
## 7138     151159                           Spoken
## 7139     151210 Partially Protected - Autoreview
## 7140     151226 Partially Protected - Autoreview
## 7141     151232                     Good Article
## 7142     151283    Partially Protected - Default
## 7143     151387                     Good Article
## 7144     151438                 Featured Article
## 7145     151475                     Good Article
## 7146     151500    Partially Protected - Default
## 7147     151608                 Featured Article
## 7148     151622                     Good Article
## 7149     151624                     Good Article
## 7150     151630                 Featured Article
## 7151     151640                     Good Article
## 7152     151667    Partially Protected - Default
## 7153     151667                           Spoken
## 7154     151668                 Featured Article
## 7155     151668                           Spoken
## 7156     151686                 Featured Article
## 7157     151777                 Featured Article
## 7158     151788    Partially Protected - Default
## 7159     151806                 Featured Article
## 7160     151874    Partially Protected - Default
## 7161     151876    Partially Protected - Default
## 7162     151898                 Featured Article
## 7163     151898                           Spoken
## 7164     151903                     Good Article
## 7165     151907                     Good Article
## 7166     151930 Partially Protected - Autoreview
## 7167     151933    Partially Protected - Default
## 7168     151995                 Featured Article
## 7169     151995    Partially Protected - Default
## 7170     152017    Partially Protected - Default
## 7171     152059                           Spoken
## 7172     152066                     Good Article
## 7173     152117    Partially Protected - Default
## 7174     152271 Partially Protected - Autoreview
## 7175     152279    Partially Protected - Default
## 7176     152439                     Good Article
## 7177     152441                     Good Article
## 7178     152447                     Good Article
## 7179     152546                     Good Article
## 7180     152770                     Good Article
## 7181     152770    Partially Protected - Default
## 7182     152770                           Spoken
## 7183     152777                     Good Article
## 7184     152833                     Good Article
## 7185     152833    Partially Protected - Default
## 7186     152836                     Good Article
## 7187     152860    Partially Protected - Default
## 7188     152992                     Good Article
## 7189     152994                 Featured Article
## 7190     152995                     Good Article
## 7191     153067                 Featured Article
## 7192     153112                     Good Article
## 7193     153132                     Good Article
## 7194     153183    Partially Protected - Default
## 7195     153206    Partially Protected - Default
## 7196     153216                     Good Article
## 7197     153217                           Spoken
## 7198     153232                     Good Article
## 7199     153259                     Good Article
## 7200     153295                     Good Article
## 7201     153295    Partially Protected - Default
## 7202     153353                 Featured Article
## 7203     153364                     Good Article
## 7204     153399                     Good Article
## 7205     153414                     Good Article
## 7206     153418                     Good Article
## 7207     153421                 Featured Article
## 7208     153431                     Good Article
## 7209     153431    Partially Protected - Default
## 7210     153432                     Good Article
## 7211     153443                     Good Article
## 7212     153446                     Good Article
## 7213     153557                           Spoken
## 7214     153612                     Good Article
## 7215     153642                 Featured Article
## 7216     153654                 Featured Article
## 7217     153660                     Good Article
## 7218     153661                 Featured Article
## 7219     153664                 Featured Article
## 7220     153669                 Featured Article
## 7221     153671                     Good Article
## 7222     153673                     Good Article
## 7223     153758                     Good Article
## 7224     153770                     Good Article
## 7225     153797    Partially Protected - Default
## 7226     153842                 Featured Article
## 7227     153856                     Good Article
## 7228     153920    Partially Protected - Default
## 7229     153920                           Spoken
## 7230     153956 Partially Protected - Autoreview
## 7231     153968    Partially Protected - Default
## 7232     154016    Partially Protected - Default
## 7233     154022                 Featured Article
## 7234     154023                 Featured Article
## 7235     154034                     Good Article
## 7236     154081 Partially Protected - Autoreview
## 7237     154099    Partially Protected - Default
## 7238     154105                     Good Article
## 7239     154147                           Spoken
## 7240     154188    Partially Protected - Default
## 7241     154191    Partially Protected - Default
## 7242     154209                           Spoken
## 7243     154250                     Good Article
## 7244     154259                     Good Article
## 7245     154450    Partially Protected - Default
## 7246     154490                     Good Article
## 7247     154502                     Good Article
## 7248     154502    Partially Protected - Default
## 7249     154507                     Good Article
## 7250     154521                     Good Article
## 7251     154538                     Good Article
## 7252     154594                     Good Article
## 7253     154596 Partially Protected - Autoreview
## 7254     154601                     Good Article
## 7255     154604                     Good Article
## 7256     154607                     Good Article
## 7257     154698    Partially Protected - Default
## 7258     154704    Partially Protected - Default
## 7259     154710    Partially Protected - Default
## 7260     154783                     Good Article
## 7261     154784                     Good Article
## 7262     154826    Partially Protected - Default
## 7263     154857 Partially Protected - Autoreview
## 7264     154909                     Good Article
## 7265     154957                 Featured Article
## 7266     154957                           Spoken
## 7267     154971    Partially Protected - Default
## 7268     154981    Partially Protected - Default
## 7269     154995    Partially Protected - Default
## 7270     155052                     Good Article
## 7271     155054                     Good Article
## 7272     155087                 Featured Article
## 7273     155087    Partially Protected - Default
## 7274     155139    Partially Protected - Default
## 7275     155202    Partially Protected - Default
## 7276     155214                     Good Article
## 7277     155333    Partially Protected - Default
## 7278     155441 Partially Protected - Autoreview
## 7279     155452                 Featured Article
## 7280     155485                     Good Article
## 7281     155488    Partially Protected - Default
## 7282     155537 Partially Protected - Autoreview
## 7283     155571                 Featured Article
## 7284     155588 Partially Protected - Autoreview
## 7285     155595    Partially Protected - Default
## 7286     155629    Partially Protected - Default
## 7287     155630                     Good Article
## 7288     155631    Partially Protected - Default
## 7289     155634                     Good Article
## 7290     155634    Partially Protected - Default
## 7291     155637    Partially Protected - Default
## 7292     155650    Partially Protected - Default
## 7293     155739                     Good Article
## 7294     155800                     Good Article
## 7295     155816                 Featured Article
## 7296     155851                 Featured Article
## 7297     155972                     Good Article
## 7298     156006 Partially Protected - Autoreview
## 7299     156068                 Featured Article
## 7300     156068    Partially Protected - Default
## 7301     156093                     Good Article
## 7302     156093    Partially Protected - Default
## 7303     156098                     Good Article
## 7304     156126                     Good Article
## 7305     156126    Partially Protected - Default
## 7306     156179    Partially Protected - Default
## 7307     156222                 Featured Article
## 7308     156243    Partially Protected - Default
## 7309     156257                     Good Article
## 7310     156278                     Good Article
## 7311     156292                     Good Article
## 7312     156314                     Good Article
## 7313     156357                     Good Article
## 7314     156357    Partially Protected - Default
## 7315     156384                 Featured Article
## 7316     156384    Partially Protected - Default
## 7317     156489                     Good Article
## 7318     156540    Partially Protected - Default
## 7319     156560    Partially Protected - Default
## 7320     156567    Partially Protected - Default
## 7321     156572    Partially Protected - Default
## 7322     156589                     Good Article
## 7323     156599    Partially Protected - Default
## 7324     156618                     Good Article
## 7325     156644                     Good Article
## 7326     156647                     Good Article
## 7327     156647                           Spoken
## 7328     156658    Partially Protected - Default
## 7329     156659                           Spoken
## 7330     156671                 Featured Article
## 7331     156701                 Featured Article
## 7332     156701    Partially Protected - Default
## 7333     156756                 Featured Article
## 7334     156778                           Spoken
## 7335     156858                     Good Article
## 7336     156883                 Featured Article
## 7337     156886                 Featured Article
## 7338     156960                     Good Article
## 7339     156967    Partially Protected - Default
## 7340     156978    Partially Protected - Default
## 7341     156978                           Spoken
## 7342     157018    Partially Protected - Default
## 7343     157023    Partially Protected - Default
## 7344     157058                     Good Article
## 7345     157100                     Good Article
## 7346     157118                     Good Article
## 7347     157211                     Good Article
## 7348     157233    Partially Protected - Default
## 7349     157239                     Good Article
## 7350     157241                     Good Article
## 7351     157366                     Good Article
## 7352     157398    Partially Protected - Default
## 7353     157407                     Good Article
## 7354     157448    Partially Protected - Default
## 7355     157456    Partially Protected - Default
## 7356     157461    Partially Protected - Default
## 7357     157465    Partially Protected - Default
## 7358     157470                     Good Article
## 7359     157472                 Featured Article
## 7360     157481                     Good Article
## 7361     157486                     Good Article
## 7362     157531                 Featured Article
## 7363     157537                     Good Article
## 7364     157547                     Good Article
## 7365     157562                 Featured Article
## 7366     157592                     Good Article
## 7367     157598                     Good Article
## 7368     157606                     Good Article
## 7369     157626                 Featured Article
## 7370     157680                     Good Article
## 7371     157696                     Good Article
## 7372     157715                     Good Article
## 7373     157728                 Featured Article
## 7374     157731                 Featured Article
## 7375     157760                     Good Article
## 7376     157770                     Good Article
## 7377     157770 Partially Protected - Autoreview
## 7378     157785                     Good Article
## 7379     157799                     Good Article
## 7380     157809    Partially Protected - Default
## 7381     157814                 Featured Article
## 7382     157839    Partially Protected - Default
## 7383     157898    Partially Protected - Default
## 7384     157903                     Good Article
## 7385     157903    Partially Protected - Default
## 7386     157920                     Good Article
## 7387     157921                     Good Article
## 7388     157931                     Good Article
## 7389     157957                     Good Article
## 7390     157987                     Good Article
## 7391     157991                     Good Article
## 7392     157993                 Featured Article
## 7393     158006    Partially Protected - Default
## 7394     158011                     Good Article
## 7395     158028    Partially Protected - Default
## 7396     158049                     Good Article
## 7397     158177    Partially Protected - Default
## 7398     158197                           Spoken
## 7399     158252                     Good Article
## 7400     158357                     Good Article
## 7401     158410                     Good Article
## 7402     158448                     Good Article
## 7403     158480                     Good Article
## 7404     158483                     Good Article
## 7405     158490                     Good Article
## 7406     158493                     Good Article
## 7407     158534                     Good Article
## 7408     158538    Partially Protected - Default
## 7409     158548    Partially Protected - Default
## 7410     158583    Partially Protected - Default
## 7411     158585                     Good Article
## 7412     158595                     Good Article
## 7413     158595 Partially Protected - Autoreview
## 7414     158696                 Featured Article
## 7415     158701    Partially Protected - Default
## 7416     158721                           Spoken
## 7417     158722                     Good Article
## 7418     158723                 Featured Article
## 7419     158723    Partially Protected - Default
## 7420     158795                     Good Article
## 7421     158795    Partially Protected - Default
## 7422     158796                 Featured Article
## 7423     158835                 Featured Article
## 7424     158835    Partially Protected - Default
## 7425     158889    Partially Protected - Default
## 7426     158894    Partially Protected - Default
## 7427     158909    Partially Protected - Default
## 7428     158969    Partially Protected - Default
## 7429     158990                 Featured Article
## 7430     158997                 Featured Article
## 7431     159044    Partially Protected - Default
## 7432     159052    Partially Protected - Default
## 7433     159053    Partially Protected - Default
## 7434     159054    Partially Protected - Default
## 7435     159055    Partially Protected - Default
## 7436     159056    Partially Protected - Default
## 7437     159057    Partially Protected - Default
## 7438     159058    Partially Protected - Default
## 7439     159059    Partially Protected - Default
## 7440     159060    Partially Protected - Default
## 7441     159096    Partially Protected - Default
## 7442     159159                     Good Article
## 7443     159161                     Good Article
## 7444     159162                     Good Article
## 7445     159170    Partially Protected - Default
## 7446     159171                     Good Article
## 7447     159172                     Good Article
## 7448     159226                     Good Article
## 7449     159275                 Featured Article
## 7450     159275    Partially Protected - Default
## 7451     159304                     Good Article
## 7452     159331                     Good Article
## 7453     159344    Partially Protected - Default
## 7454     159348    Partially Protected - Default
## 7455     159351    Partially Protected - Default
## 7456     159421    Partially Protected - Default
## 7457     159473                     Good Article
## 7458     159479    Partially Protected - Default
## 7459     159493    Partially Protected - Default
## 7460     159547                     Good Article
## 7461     159580                     Good Article
## 7462     159599                 Featured Article
## 7463     159599    Partially Protected - Default
## 7464     159617    Partially Protected - Default
## 7465     159623    Partially Protected - Default
## 7466     159671                     Good Article
## 7467     159739    Partially Protected - Default
## 7468     159748    Partially Protected - Default
## 7469     159829                 Featured Article
## 7470     159836                     Good Article
## 7471     159853                           Spoken
## 7472     159855    Partially Protected - Default
## 7473     159871    Partially Protected - Default
## 7474     159895                           Spoken
## 7475     159961                     Good Article
## 7476     159966    Partially Protected - Default
## 7477     159980    Partially Protected - Default
## 7478     160039                     Good Article
## 7479     160112                 Featured Article
## 7480     160112                           Spoken
## 7481     160114    Partially Protected - Default
## 7482     160210                 Featured Article
## 7483     160227 Partially Protected - Autoreview
## 7484     160270 Partially Protected - Autoreview
## 7485     160300                     Good Article
## 7486     160327                     Good Article
## 7487     160335                     Good Article
## 7488     160339    Partially Protected - Default
## 7489     160388    Partially Protected - Default
## 7490     160397    Partially Protected - Default
## 7491     160431    Partially Protected - Default
## 7492     160457                     Good Article
## 7493     160564    Partially Protected - Default
## 7494     160703                     Good Article
## 7495     160728                     Good Article
## 7496     160728 Partially Protected - Autoreview
## 7497     160735    Partially Protected - Default
## 7498     160736                     Good Article
## 7499     160760 Partially Protected - Autoreview
## 7500     160811 Partially Protected - Autoreview
## 7501     160892                     Good Article
## 7502     160914    Partially Protected - Default
## 7503     160985                     Good Article
## 7504     160985 Partially Protected - Autoreview
## 7505     161041    Partially Protected - Default
## 7506     161087                 Featured Article
## 7507     161151                     Good Article
## 7508     161189    Partially Protected - Default
## 7509     161190                 Featured Article
## 7510     161230                     Good Article
## 7511     161233    Partially Protected - Default
## 7512     161252    Partially Protected - Default
## 7513     161270                     Good Article
## 7514     161277                     Good Article
## 7515     161350                     Good Article
## 7516     161354                     Good Article
## 7517     161374                     Good Article
## 7518     161378                     Good Article
## 7519     161482 Partially Protected - Autoreview
## 7520     161515                     Good Article
## 7521     161515                           Spoken
## 7522     161523                     Good Article
## 7523     161560    Partially Protected - Default
## 7524     161570    Partially Protected - Default
## 7525     161573                     Good Article
## 7526     161672                     Good Article
## 7527     161730                     Good Article
## 7528     161738                     Good Article
## 7529     161739                     Good Article
## 7530     161753                     Good Article
## 7531     161755                     Good Article
## 7532     161761                           Spoken
## 7533     161781                 Featured Article
## 7534     161804 Partially Protected - Autoreview
## 7535     161810 Partially Protected - Autoreview
## 7536     161880                     Good Article
## 7537     161897                     Good Article
## 7538     162010                           Spoken
## 7539     162084    Partially Protected - Default
## 7540     162115                     Good Article
## 7541     162186                           Spoken
## 7542     162249                 Featured Article
## 7543     162264 Partially Protected - Autoreview
## 7544     162279                 Featured Article
## 7545     162279                           Spoken
## 7546     162306    Partially Protected - Default
## 7547     162404    Partially Protected - Default
## 7548     162425                     Good Article
## 7549     162426                     Good Article
## 7550     162427                     Good Article
## 7551     162452    Partially Protected - Default
## 7552     162534    Partially Protected - Default
## 7553     162576    Partially Protected - Default
## 7554     162612    Partially Protected - Default
## 7555     162617    Partially Protected - Default
## 7556     162684                     Good Article
## 7557     162714    Partially Protected - Default
## 7558     162802                           Spoken
## 7559     162864                     Good Article
## 7560     162870    Partially Protected - Default
## 7561     163036                 Featured Article
## 7562     163038    Partially Protected - Default
## 7563     163088    Partially Protected - Default
## 7564     163138                     Good Article
## 7565     163143    Partially Protected - Default
## 7566     163151 Partially Protected - Autoreview
## 7567     163154                     Good Article
## 7568     163162                     Good Article
## 7569     163162    Partially Protected - Default
## 7570     163168                     Good Article
## 7571     163168    Partially Protected - Default
## 7572     163169                     Good Article
## 7573     163169    Partially Protected - Default
## 7574     163170                     Good Article
## 7575     163170    Partially Protected - Default
## 7576     163205 Partially Protected - Autoreview
## 7577     163206 Partially Protected - Autoreview
## 7578     163228    Partially Protected - Default
## 7579     163231                     Good Article
## 7580     163234                     Good Article
## 7581     163236    Partially Protected - Default
## 7582     163248                     Good Article
## 7583     163278                 Featured Article
## 7584     163286    Partially Protected - Default
## 7585     163382                 Featured Article
## 7586     163416                     Good Article
## 7587     163417                 Featured Article
## 7588     163438                     Good Article
## 7589     166346                     Good Article
## 7590     171166    Partially Protected - Default
## 7591     175905 Partially Protected - Autoreview
## 7592     181675                     Good Article
## 7593     182000    Partially Protected - Default
## 7594     182161                     Good Article
## 7595     195149    Partially Protected - Default
## 7596     197558                     Good Article
## 7597     201490                     Good Article
## 7598     202354    Partially Protected - Default
## 7599     215913 Partially Protected - Autoreview
## 7600     229914    Partially Protected - Default
## 7601     237052                     Good Article
## 7602     251720                     Good Article
## 7603     258858    Partially Protected - Default
## 7604     268988                 Featured Article
## 7605     297952                     Good Article
## 7606     297952    Partially Protected - Default
## 7607     323592    Partially Protected - Default
## 7608     334990    Partially Protected - Default
## 7609     347105    Partially Protected - Default
## 7610     349303    Partially Protected - Default
## 7611     366385    Partially Protected - Default
## 7612     381399    Partially Protected - Default
## 7613     418065                 Featured Article
## 7614     418065                           Spoken
## 7615     552153                     Good Article
## 7616     570280    Partially Protected - Default
## 7617     585629    Partially Protected - Default
## 7618     590840    Partially Protected - Default
## 7619     625404    Partially Protected - Default
## 7620     645042    Partially Protected - Default
## 7621     682482    Partially Protected - Default
## 7622     682482                           Spoken
## 7623     768413                     Good Article
## 7624     768413    Partially Protected - Default
## 7625     804581                 Featured Article
## 7626     804581    Partially Protected - Default
## 7627     804602 Partially Protected - Autoreview
## 7628     804611    Partially Protected - Default
## 7629     876490    Partially Protected - Default
## 7630     968777                 Featured Article
## 7631    1021764                 Featured Article
## 7632    1032619    Partially Protected - Default
## 7633    1051892                 Featured Article
## 7634    1095706                 Featured Article
## 7635    1095706    Partially Protected - Default
## 7636    1095706                           Spoken
## 7637    1181663    Partially Protected - Default
## 7638    1265396                           Spoken
## 7639    1284376                     Good Article
## 7640    1284376    Partially Protected - Default
## 7641    1331018    Partially Protected - Default
## 7642    1527181    Partially Protected - Default
## 7643    1645518                     Good Article
## 7644    1645518    Partially Protected - Default
## 7645    1973155                 Featured Article
## 7646    2112961    Partially Protected - Default
## 7647    2200527    Partially Protected - Default
## 7648    2243595 Partially Protected - Autoreview
## 7649    2387806                     Good Article
## 7650    2387806    Partially Protected - Default
## 7651    2387806                           Spoken
## 7652    2421391    Partially Protected - Default
## 7653    2480306    Partially Protected - Default
## 7654    2480627    Partially Protected - Default
## 7655    2499027                     Good Article
## 7656    2499027    Partially Protected - Default
## 7657    2510506    Partially Protected - Default
## 7658    2539671    Partially Protected - Default
## 7659    2582359                 Featured Article
## 7660    2589714                     Good Article
## 7661    2589714    Partially Protected - Default
## 7662    2646043    Partially Protected - Default
## 7663    2721845                     Good Article
## 7664    2731583                     Good Article
## 7665    2731583    Partially Protected - Default
## 7666    2773076    Partially Protected - Default
## 7667    2788558                           Spoken
## 7668    2825494    Partially Protected - Default
## 7669    2855554    Partially Protected - Default
## 7670    2890783                 Featured Article
## 7671    3069677    Partially Protected - Default
## 7672    3078437                     Good Article
## 7673    3158351                 Featured Article
## 7674    3173243    Partially Protected - Default
## 7675    3267529    Partially Protected - Default
## 7676    3301347    Partially Protected - Default
## 7677    3391396                 Featured Article
## 7678    3414021                     Good Article
## 7679    3414021    Partially Protected - Default
## 7680    3414021                           Spoken
## 7681    3418303                 Featured Article
## 7682    3434750                     Good Article
## 7683    3434750    Partially Protected - Default
## 7684    3607937                     Good Article
## 7685    3607937    Partially Protected - Default
## 7686    3646611                 Featured Article
## 7687    3871014    Partially Protected - Default
## 7688    3966054    Partially Protected - Default
## 7689    4221870    Partially Protected - Default
## 7690    4250553                     Good Article
## 7691    4254144                     Good Article
## 7692    4269567    Partially Protected - Default
## 7693    4321886                     Good Article
## 7694    4321886    Partially Protected - Default
## 7695    4349420                 Featured Article
## 7696    4349459                     Good Article
## 7697    4398564                     Good Article
## 7698    4412145                     Good Article
## 7699    4429395    Partially Protected - Default
## 7700    4576465    Partially Protected - Default
## 7701    4608353    Partially Protected - Default
## 7702    4637590                 Featured Article
## 7703    4637590    Partially Protected - Default
## 7704    4637590                           Spoken
## 7705    4689264                 Featured Article
## 7706    4689264    Partially Protected - Default
## 7707    4689264                           Spoken
## 7708    4689517                 Featured Article
## 7709    4689709    Partially Protected - Default
## 7710    4699587                     Good Article
## 7711    4699587    Partially Protected - Default
## 7712    4732861                     Good Article
## 7713    4740559                     Good Article
## 7714    4740559    Partially Protected - Default
## 7715    4749442    Partially Protected - Default
## 7716    4764461    Partially Protected - Default
## 7717    4764461                           Spoken
## 7718    4848143    Partially Protected - Default
## 7719    4860524    Partially Protected - Default
## 7720    4913064                     Good Article
## 7721    4913064    Partially Protected - Default
## 7722    4984440    Partially Protected - Default
## 7723    5012175                 Featured Article
## 7724    5024887                 Featured Article
## 7725    5024887    Partially Protected - Default
## 7726    5024887                           Spoken
## 7727    5030380                 Featured Article
## 7728    5030380    Partially Protected - Default
## 7729    5042481    Partially Protected - Default
## 7730    5042706                     Good Article
## 7731    5042706    Partially Protected - Default
## 7732    5042765    Partially Protected - Default
## 7733    5042765                           Spoken
## 7734    5042916                 Featured Article
## 7735    5042916    Partially Protected - Default
## 7736    5042916                           Spoken
## 7737    5042951                 Featured Article
## 7738    5042951    Partially Protected - Default
## 7739    5043192                 Featured Article
## 7740    5043192    Partially Protected - Default
## 7741    5043192                           Spoken
## 7742    5043544    Partially Protected - Default
## 7743    5043734    Partially Protected - Default
## 7744    5051780    Partially Protected - Default
## 7745    5052197    Partially Protected - Default
## 7746    5052533    Partially Protected - Default
## 7747    5058628                     Good Article
## 7748    5058628    Partially Protected - Default
## 7749    5058690                     Good Article
## 7750    5058690    Partially Protected - Default
## 7751    5058739    Partially Protected - Default
## 7752    5068415    Partially Protected - Default
## 7753    5068415                           Spoken
## 7754    5068852                 Featured Article
## 7755    5069516                     Good Article
## 7756    5069516    Partially Protected - Default
## 7757    5070109                           Spoken
## 7758    5079506                 Featured Article
## 7759    5079506    Partially Protected - Default
## 7760    5079506                           Spoken
## 7761    5094570    Partially Protected - Default
## 7762    5097395    Partially Protected - Default
## 7763    5098574    Partially Protected - Default
## 7764    5119376    Partially Protected - Default
## 7765    5135982    Partially Protected - Default
## 7766    5135982                           Spoken
## 7767    5168174    Partially Protected - Default
## 7768    5171128    Partially Protected - Default
## 7769    5183633    Partially Protected - Default
## 7770    5195436 Partially Protected - Autoreview
## 7771    5200013    Partially Protected - Default
## 7772    5243711                 Featured Article
## 7773    5275459                     Good Article
## 7774    5334607    Partially Protected - Default
## 7775    5482854                     Good Article
## 7776    5488304    Partially Protected - Default
## 7777    5517329                 Featured Article
## 7778    5575722    Partially Protected - Default
## 7779    5575722                           Spoken
## 7780    5595163                 Featured Article
## 7781    5710507    Partially Protected - Default
## 7782    5791492                     Good Article
## 7783    5791492    Partially Protected - Default
## 7784    5792809                 Featured Article
## 7785    5792809    Partially Protected - Default
## 7786    5843419    Partially Protected - Default
## 7787    5870424                     Good Article
## 7788    5876413    Partially Protected - Default
## 7789    5937384                           Spoken
## 7790    5985739                     Good Article
## 7791    5985739    Partially Protected - Default
## 7792    6037917    Partially Protected - Default
## 7793    6048708 Partially Protected - Autoreview
## 7794    6097240                 Featured Article
## 7795    6097240                           Spoken
## 7796    6097297 Partially Protected - Autoreview
## 7797    6336902    Partially Protected - Default
## 7798    6341469    Partially Protected - Default
## 7799    6344115                     Good Article
## 7800    6479315    Partially Protected - Default
## 7801    6596274                     Good Article
## 7802    6596274    Partially Protected - Default
## 7803    6596274                           Spoken
## 7804    6710844    Partially Protected - Default
## 7805    6792877                     Good Article
## 7806    6860726                 Featured Article
## 7807    6860726    Partially Protected - Default
## 7808    6860726                           Spoken
## 7809    6880483                 Featured Article
## 7810    7368926                 Featured Article
## 7811    7397019    Partially Protected - Default
## 7812    7412236    Partially Protected - Default
## 7813    7515849    Partially Protected - Default
## 7814    7515865    Partially Protected - Default
## 7815    7515890 Partially Protected - Autoreview
## 7816    7515928    Partially Protected - Default
## 7817    7515964                     Good Article
## 7818    7550182                 Featured Article
## 7819    7550182    Partially Protected - Default
## 7820    7567080    Partially Protected - Default
## 7821    7567080                           Spoken
## 7822    7580554                     Good Article
## 7823    7669549                 Featured Article
## 7824    7669549 Partially Protected - Autoreview
## 7825    7688189                           Spoken
## 7826    7713110    Partially Protected - Default
## 7827    7766419                 Featured Article
## 7828    7787253                     Good Article
## 7829    7878457    Partially Protected - Default
## 7830    7954455                     Good Article
## 7831    7954455    Partially Protected - Default
## 7832    7954643                     Good Article
## 7833    7954681                     Good Article
## 7834    7954681                           Spoken
## 7835    7954867    Partially Protected - Default
## 7836    7955325                     Good Article
## 7837    7955551                     Good Article
## 7838    7955693    Partially Protected - Default
## 7839    7960202    Partially Protected - Default
## 7840    7963342                     Good Article
## 7841    7969401                 Featured Article
## 7842    7980471    Partially Protected - Default
## 7843    7987684                 Featured Article
## 7844    7987684    Partially Protected - Default
## 7845    7993134                 Featured Article
## 7846    8052722    Partially Protected - Default
## 7847    8082932    Partially Protected - Default
## 7848    8087628    Partially Protected - Default
## 7849    8145410                 Featured Article
## 7850    8145410    Partially Protected - Default
## 7851    8161655    Partially Protected - Default
## 7852    8233758    Partially Protected - Default
## 7853    8239846                     Good Article
## 7854    8239846    Partially Protected - Default
## 7855    8242057                     Good Article
## 7856    8262427    Partially Protected - Default
## 7857    8282374                 Featured Article
## 7858    8282374    Partially Protected - Default
## 7859    8286923    Partially Protected - Default
## 7860    8295950    Partially Protected - Default
## 7861    8490390                     Good Article
## 7862    8490390    Partially Protected - Default
## 7863    8507183    Partially Protected - Default
## 7864    8569916                     Good Article
## 7865    8569916    Partially Protected - Default
## 7866    8718425                     Good Article
## 7867    8718425    Partially Protected - Default
## 7868    8759562                     Good Article
## 7869    8972714                     Good Article
## 7870    8972714 Partially Protected - Autoreview
## 7871    8983183    Partially Protected - Default
## 7872    9028799                 Featured Article
## 7873    9028799    Partially Protected - Default
## 7874    9119240                     Good Article
## 7875    9119240    Partially Protected - Default
## 7876    9127632                     Good Article
## 7877    9127632    Partially Protected - Default
## 7878    9209651    Partially Protected - Default
## 7879    9210500                     Good Article
## 7880    9210500    Partially Protected - Default
## 7881    9271614                 Featured Article
## 7882    9271614    Partially Protected - Default
## 7883    9271614                           Spoken
## 7884    9271636                     Good Article
## 7885    9271636    Partially Protected - Default
## 7886    9282173    Partially Protected - Default
## 7887    9287211    Partially Protected - Default
## 7888    9906294    Partially Protected - Default
## 7889    9940234    Partially Protected - Default
## 7890    9969224    Partially Protected - Default
## 7891    9969246    Partially Protected - Default
## 7892    9969246                           Spoken
## 7893    9969251    Partially Protected - Default
## 7894    9969256    Partially Protected - Default
## 7895    9969267    Partially Protected - Default
## 7896    9969292    Partially Protected - Default
## 7897    9969298    Partially Protected - Default
## 7898    9969816    Partially Protected - Default
## 7899   10396793    Partially Protected - Default
## 7900   10410626                     Good Article
## 7901   10410626    Partially Protected - Default
## 7902   10461516                     Good Article
## 7903   10519138    Partially Protected - Default
## 7904   10608031                 Featured Article
## 7905   10608031                           Spoken
## 7906   10624594                     Good Article
## 7907   10624594    Partially Protected - Default
## 7908   10634933                           Spoken
## 7909   10772350    Partially Protected - Default
## 7910   10918072    Partially Protected - Default
## 7911   10950533                     Good Article
## 7912   11015252                 Featured Article
## 7913   11015252    Partially Protected - Default
## 7914   11038318                     Good Article
## 7915   11038318    Partially Protected - Default
## 7916   11039790                     Good Article
## 7917   11039790    Partially Protected - Default
## 7918   11089416    Partially Protected - Default
## 7919   11125639                     Good Article
## 7920   11125639    Partially Protected - Default
## 7921   11338027    Partially Protected - Default
## 7922   11388236                 Featured Article
## 7923   11388236    Partially Protected - Default
## 7924   11415141    Partially Protected - Default
## 7925   11473533 Partially Protected - Autoreview
## 7926   11669530 Partially Protected - Autoreview
## 7927   11749910    Partially Protected - Default
## 7928   11749910                           Spoken
## 7929   12153654                 Featured Article
## 7930   12153654    Partially Protected - Default
## 7931   12153654                           Spoken
## 7932   12502446                     Good Article
## 7933   12505972 Partially Protected - Autoreview
## 7934   12598742 Partially Protected - Autoreview
## 7935   12800708                     Good Article
## 7936   13093253    Partially Protected - Default
## 7937   13118744    Partially Protected - Default
## 7938   13425800 Partially Protected - Autoreview
## 7939   13612861    Partially Protected - Default
## 7940   13623554                     Good Article
## 7941   13623554    Partially Protected - Default
## 7942   13655028                 Featured Article
## 7943   13655028    Partially Protected - Default
## 7944   13673345    Partially Protected - Default
## 7945   13692155    Partially Protected - Default
## 7946   13736167                 Featured Article
## 7947   13736167    Partially Protected - Default
## 7948   13882056                     Good Article
## 7949   13947297    Partially Protected - Default
## 7950   14298059                     Good Article
## 7951   14443840 Partially Protected - Autoreview
## 7952   14529239    Partially Protected - Default
## 7953   14563107 Partially Protected - Autoreview
## 7954   14640471                 Featured Article
## 7955   14640471    Partially Protected - Default
## 7956   14750344 Partially Protected - Autoreview
## 7957   14995351                 Featured Article
## 7958   14995351    Partially Protected - Default
data.with.indicators <- merge(tags, df1_5yrs, by='article_id', all=TRUE, sort=FALSE)
data.with.indicators <- data.with.indicators[!is.na(data.with.indicators$first),]
arrange(data.with.indicators,article_id,quarter)
##       article_id                        Indicator totalrevisions    bins
## 1            670    Partially Protected - Default            763    500-
## 2            670    Partially Protected - Default            763    500-
## 3            670    Partially Protected - Default            763    500-
## 4            670    Partially Protected - Default            763    500-
## 5            670    Partially Protected - Default            763    500-
## 6            670    Partially Protected - Default            763    500-
## 7            670    Partially Protected - Default            763    500-
## 8            670    Partially Protected - Default            763    500-
## 9            670    Partially Protected - Default            763    500-
## 10           670    Partially Protected - Default            763    500-
## 11           670    Partially Protected - Default            763    500-
## 12           670    Partially Protected - Default            763    500-
## 13           670    Partially Protected - Default            763    500-
## 14           670    Partially Protected - Default            763    500-
## 15           670    Partially Protected - Default            763    500-
## 16           670    Partially Protected - Default            763    500-
## 17           670    Partially Protected - Default            763    500-
## 18           670    Partially Protected - Default            763    500-
## 19           670    Partially Protected - Default            763    500-
## 20           670    Partially Protected - Default            763    500-
## 21           670    Partially Protected - Default            763    500-
## 22           670    Partially Protected - Default            763    500-
## 23           670    Partially Protected - Default            763    500-
## 24           670    Partially Protected - Default            763    500-
## 25           670    Partially Protected - Default            763    500-
## 26           670    Partially Protected - Default            763    500-
## 27           670    Partially Protected - Default            763    500-
## 28           670    Partially Protected - Default            763    500-
## 29           670    Partially Protected - Default            763    500-
## 30           670    Partially Protected - Default            763    500-
## 31           670    Partially Protected - Default            763    500-
## 32           670    Partially Protected - Default            763    500-
## 33           670    Partially Protected - Default            763    500-
## 34           670    Partially Protected - Default            763    500-
## 35           670    Partially Protected - Default            763    500-
## 36           670    Partially Protected - Default            763    500-
## 37           670    Partially Protected - Default            763    500-
## 38           670    Partially Protected - Default            763    500-
## 39           670    Partially Protected - Default            763    500-
## 40           670    Partially Protected - Default            763    500-
## 41           670    Partially Protected - Default            763    500-
## 42           670    Partially Protected - Default            763    500-
## 43           670    Partially Protected - Default            763    500-
## 44           670    Partially Protected - Default            763    500-
## 45           670    Partially Protected - Default            763    500-
## 46           670    Partially Protected - Default            763    500-
## 47           670    Partially Protected - Default            763    500-
## 48           670    Partially Protected - Default            763    500-
## 49           670    Partially Protected - Default            763    500-
## 50           670    Partially Protected - Default            763    500-
## 51           670    Partially Protected - Default            763    500-
## 52           670    Partially Protected - Default            763    500-
## 53           670    Partially Protected - Default            763    500-
## 54           670    Partially Protected - Default            763    500-
## 55           670    Partially Protected - Default            763    500-
## 56           670    Partially Protected - Default            763    500-
## 57           670    Partially Protected - Default            763    500-
## 58           670    Partially Protected - Default            763    500-
## 59           670    Partially Protected - Default            763    500-
## 60           670    Partially Protected - Default            763    500-
## 61           670    Partially Protected - Default            763    500-
## 62           696                             <NA>             58  25-100
## 63           696                             <NA>             58  25-100
## 64           696                             <NA>             58  25-100
## 65           696                             <NA>             58  25-100
## 66           696                             <NA>             58  25-100
## 67           696                             <NA>             58  25-100
## 68           696                             <NA>             58  25-100
## 69           696                             <NA>             58  25-100
## 70           696                             <NA>             58  25-100
## 71           696                             <NA>             58  25-100
## 72           696                             <NA>             58  25-100
## 73           696                             <NA>             58  25-100
## 74           696                             <NA>             58  25-100
## 75           696                             <NA>             58  25-100
## 76           696                             <NA>             58  25-100
## 77           696                             <NA>             58  25-100
## 78           696                             <NA>             58  25-100
## 79           696                             <NA>             58  25-100
## 80           696                             <NA>             58  25-100
## 81           696                             <NA>             58  25-100
## 82           696                             <NA>             58  25-100
## 83           696                             <NA>             58  25-100
## 84           696                             <NA>             58  25-100
## 85           696                             <NA>             58  25-100
## 86           696                             <NA>             58  25-100
## 87           696                             <NA>             58  25-100
## 88           696                             <NA>             58  25-100
## 89           696                             <NA>             58  25-100
## 90           696                             <NA>             58  25-100
## 91           696                             <NA>             58  25-100
## 92           696                             <NA>             58  25-100
## 93           696                             <NA>             58  25-100
## 94           696                             <NA>             58  25-100
## 95           696                             <NA>             58  25-100
## 96           696                             <NA>             58  25-100
## 97           696                             <NA>             58  25-100
## 98           696                             <NA>             58  25-100
## 99           696                             <NA>             58  25-100
## 100          696                             <NA>             58  25-100
## 101          696                             <NA>             58  25-100
## 102          696                             <NA>             58  25-100
## 103          696                             <NA>             58  25-100
## 104          696                             <NA>             58  25-100
## 105          696                             <NA>             58  25-100
## 106          696                             <NA>             58  25-100
## 107          696                             <NA>             58  25-100
## 108          696                             <NA>             58  25-100
## 109          696                             <NA>             58  25-100
## 110          696                             <NA>             58  25-100
## 111          696                             <NA>             58  25-100
## 112          696                             <NA>             58  25-100
## 113          696                             <NA>             58  25-100
## 114          696                             <NA>             58  25-100
## 115          696                             <NA>             58  25-100
## 116          696                             <NA>             58  25-100
## 117          696                             <NA>             58  25-100
## 118          696                             <NA>             58  25-100
## 119          696                             <NA>             58  25-100
## 120          696                             <NA>             58  25-100
## 121          696                             <NA>             58  25-100
## 122          696                             <NA>             58  25-100
## 123          839                             <NA>              8    3-10
## 124          839                             <NA>              8    3-10
## 125          839                             <NA>              8    3-10
## 126          839                             <NA>              8    3-10
## 127          839                             <NA>              8    3-10
## 128          839                             <NA>              8    3-10
## 129          839                             <NA>              8    3-10
## 130          839                             <NA>              8    3-10
## 131          839                             <NA>              8    3-10
## 132          839                             <NA>              8    3-10
## 133          839                             <NA>              8    3-10
## 134          839                             <NA>              8    3-10
## 135          839                             <NA>              8    3-10
## 136          839                             <NA>              8    3-10
## 137          839                             <NA>              8    3-10
## 138          839                             <NA>              8    3-10
## 139          839                             <NA>              8    3-10
## 140          839                             <NA>              8    3-10
## 141          839                             <NA>              8    3-10
## 142          839                             <NA>              8    3-10
## 143          839                             <NA>              8    3-10
## 144          839                             <NA>              8    3-10
## 145          839                             <NA>              8    3-10
## 146          839                             <NA>              8    3-10
## 147          839                             <NA>              8    3-10
## 148          839                             <NA>              8    3-10
## 149          839                             <NA>              8    3-10
## 150          839                             <NA>              8    3-10
## 151          839                             <NA>              8    3-10
## 152          839                             <NA>              8    3-10
## 153          839                             <NA>              8    3-10
## 154          839                             <NA>              8    3-10
## 155          839                             <NA>              8    3-10
## 156          839                             <NA>              8    3-10
## 157          839                             <NA>              8    3-10
## 158          839                             <NA>              8    3-10
## 159          839                             <NA>              8    3-10
## 160          839                             <NA>              8    3-10
## 161          839                             <NA>              8    3-10
## 162          839                             <NA>              8    3-10
## 163          839                             <NA>              8    3-10
## 164          839                             <NA>              8    3-10
## 165          839                             <NA>              8    3-10
## 166          839                             <NA>              8    3-10
## 167          839                             <NA>              8    3-10
## 168          839                             <NA>              8    3-10
## 169          839                             <NA>              8    3-10
## 170          839                             <NA>              8    3-10
## 171          839                             <NA>              8    3-10
## 172          839                             <NA>              8    3-10
## 173          839                             <NA>              8    3-10
## 174          839                             <NA>              8    3-10
## 175          839                             <NA>              8    3-10
## 176          839                             <NA>              8    3-10
## 177          839                             <NA>              8    3-10
## 178          839                             <NA>              8    3-10
## 179          839                             <NA>              8    3-10
## 180          839                             <NA>              8    3-10
## 181          839                             <NA>              8    3-10
## 182          839                             <NA>              8    3-10
## 183          839                             <NA>              8    3-10
## 184          898                     Good Article            221 100-500
## 185          898                     Good Article            221 100-500
## 186          898                     Good Article            221 100-500
## 187          898                     Good Article            221 100-500
## 188          898                     Good Article            221 100-500
## 189          898                     Good Article            221 100-500
## 190          898                     Good Article            221 100-500
## 191          898                     Good Article            221 100-500
## 192          898                     Good Article            221 100-500
## 193          898                     Good Article            221 100-500
## 194          898                     Good Article            221 100-500
## 195          898                     Good Article            221 100-500
## 196          898                     Good Article            221 100-500
## 197          898                     Good Article            221 100-500
## 198          898                     Good Article            221 100-500
## 199          898                     Good Article            221 100-500
## 200          898                     Good Article            221 100-500
## 201          898                     Good Article            221 100-500
## 202          898                     Good Article            221 100-500
## 203          898                     Good Article            221 100-500
## 204          898                     Good Article            221 100-500
## 205          898                     Good Article            221 100-500
## 206          898                     Good Article            221 100-500
## 207          898                     Good Article            221 100-500
## 208          898                     Good Article            221 100-500
## 209          898                     Good Article            221 100-500
## 210          898                     Good Article            221 100-500
## 211          898                     Good Article            221 100-500
## 212          898                     Good Article            221 100-500
## 213          898                     Good Article            221 100-500
## 214          898                     Good Article            221 100-500
## 215          898                     Good Article            221 100-500
## 216          898                     Good Article            221 100-500
## 217          898                     Good Article            221 100-500
## 218          898                     Good Article            221 100-500
## 219          898                     Good Article            221 100-500
## 220          898                     Good Article            221 100-500
## 221          898                     Good Article            221 100-500
## 222          898                     Good Article            221 100-500
## 223          898                     Good Article            221 100-500
## 224          898                     Good Article            221 100-500
## 225          898                     Good Article            221 100-500
## 226          898                     Good Article            221 100-500
## 227          898                     Good Article            221 100-500
## 228          898                     Good Article            221 100-500
## 229          898                     Good Article            221 100-500
## 230          898                     Good Article            221 100-500
## 231          898                     Good Article            221 100-500
## 232          898                     Good Article            221 100-500
## 233          898                     Good Article            221 100-500
## 234          898                     Good Article            221 100-500
## 235          898                     Good Article            221 100-500
## 236          898                     Good Article            221 100-500
## 237          898                     Good Article            221 100-500
## 238          898                     Good Article            221 100-500
## 239          898                     Good Article            221 100-500
## 240          898                     Good Article            221 100-500
## 241          898                     Good Article            221 100-500
## 242          898                     Good Article            221 100-500
## 243          898                     Good Article            221 100-500
## 244          898                     Good Article            221 100-500
## 245         1010 Partially Protected - Autoreview            803    500-
## 246         1010 Partially Protected - Autoreview            803    500-
## 247         1010 Partially Protected - Autoreview            803    500-
## 248         1010 Partially Protected - Autoreview            803    500-
## 249         1010 Partially Protected - Autoreview            803    500-
## 250         1010 Partially Protected - Autoreview            803    500-
## 251         1010 Partially Protected - Autoreview            803    500-
## 252         1010 Partially Protected - Autoreview            803    500-
## 253         1010 Partially Protected - Autoreview            803    500-
## 254         1010 Partially Protected - Autoreview            803    500-
## 255         1010 Partially Protected - Autoreview            803    500-
## 256         1010 Partially Protected - Autoreview            803    500-
## 257         1010 Partially Protected - Autoreview            803    500-
## 258         1010 Partially Protected - Autoreview            803    500-
## 259         1010 Partially Protected - Autoreview            803    500-
## 260         1010 Partially Protected - Autoreview            803    500-
## 261         1010 Partially Protected - Autoreview            803    500-
## 262         1010 Partially Protected - Autoreview            803    500-
## 263         1010 Partially Protected - Autoreview            803    500-
## 264         1010 Partially Protected - Autoreview            803    500-
## 265         1010 Partially Protected - Autoreview            803    500-
## 266         1010 Partially Protected - Autoreview            803    500-
## 267         1010 Partially Protected - Autoreview            803    500-
## 268         1010 Partially Protected - Autoreview            803    500-
## 269         1010 Partially Protected - Autoreview            803    500-
## 270         1010 Partially Protected - Autoreview            803    500-
## 271         1010 Partially Protected - Autoreview            803    500-
## 272         1010 Partially Protected - Autoreview            803    500-
## 273         1010 Partially Protected - Autoreview            803    500-
## 274         1010 Partially Protected - Autoreview            803    500-
## 275         1010 Partially Protected - Autoreview            803    500-
## 276         1010 Partially Protected - Autoreview            803    500-
## 277         1010 Partially Protected - Autoreview            803    500-
## 278         1010 Partially Protected - Autoreview            803    500-
## 279         1010 Partially Protected - Autoreview            803    500-
## 280         1010 Partially Protected - Autoreview            803    500-
## 281         1010 Partially Protected - Autoreview            803    500-
## 282         1010 Partially Protected - Autoreview            803    500-
## 283         1010 Partially Protected - Autoreview            803    500-
## 284         1010 Partially Protected - Autoreview            803    500-
## 285         1010 Partially Protected - Autoreview            803    500-
## 286         1010 Partially Protected - Autoreview            803    500-
## 287         1010 Partially Protected - Autoreview            803    500-
## 288         1010 Partially Protected - Autoreview            803    500-
## 289         1010 Partially Protected - Autoreview            803    500-
## 290         1010 Partially Protected - Autoreview            803    500-
## 291         1010 Partially Protected - Autoreview            803    500-
## 292         1010 Partially Protected - Autoreview            803    500-
## 293         1010 Partially Protected - Autoreview            803    500-
## 294         1010 Partially Protected - Autoreview            803    500-
## 295         1010 Partially Protected - Autoreview            803    500-
## 296         1010 Partially Protected - Autoreview            803    500-
## 297         1010 Partially Protected - Autoreview            803    500-
## 298         1010 Partially Protected - Autoreview            803    500-
## 299         1010 Partially Protected - Autoreview            803    500-
## 300         1010 Partially Protected - Autoreview            803    500-
## 301         1010 Partially Protected - Autoreview            803    500-
## 302         1010 Partially Protected - Autoreview            803    500-
## 303         1010 Partially Protected - Autoreview            803    500-
## 304         1010 Partially Protected - Autoreview            803    500-
## 305         1010 Partially Protected - Autoreview            803    500-
## 306         1070                             <NA>              3    3-10
## 307         1070                             <NA>              3    3-10
## 308         1070                             <NA>              3    3-10
## 309         1070                             <NA>              3    3-10
## 310         1070                             <NA>              3    3-10
## 311         1070                             <NA>              3    3-10
## 312         1070                             <NA>              3    3-10
## 313         1070                             <NA>              3    3-10
## 314         1070                             <NA>              3    3-10
## 315         1070                             <NA>              3    3-10
## 316         1070                             <NA>              3    3-10
## 317         1070                             <NA>              3    3-10
## 318         1070                             <NA>              3    3-10
## 319         1070                             <NA>              3    3-10
## 320         1070                             <NA>              3    3-10
## 321         1070                             <NA>              3    3-10
## 322         1070                             <NA>              3    3-10
## 323         1070                             <NA>              3    3-10
## 324         1070                             <NA>              3    3-10
## 325         1070                             <NA>              3    3-10
## 326         1070                             <NA>              3    3-10
## 327         1070                             <NA>              3    3-10
## 328         1070                             <NA>              3    3-10
## 329         1070                             <NA>              3    3-10
## 330         1070                             <NA>              3    3-10
## 331         1070                             <NA>              3    3-10
## 332         1070                             <NA>              3    3-10
## 333         1070                             <NA>              3    3-10
## 334         1070                             <NA>              3    3-10
## 335         1070                             <NA>              3    3-10
## 336         1070                             <NA>              3    3-10
## 337         1070                             <NA>              3    3-10
## 338         1070                             <NA>              3    3-10
## 339         1070                             <NA>              3    3-10
## 340         1070                             <NA>              3    3-10
## 341         1070                             <NA>              3    3-10
## 342         1070                             <NA>              3    3-10
## 343         1070                             <NA>              3    3-10
## 344         1070                             <NA>              3    3-10
## 345         1070                             <NA>              3    3-10
## 346         1070                             <NA>              3    3-10
## 347         1070                             <NA>              3    3-10
## 348         1070                             <NA>              3    3-10
## 349         1070                             <NA>              3    3-10
## 350         1070                             <NA>              3    3-10
## 351         1070                             <NA>              3    3-10
## 352         1070                             <NA>              3    3-10
## 353         1070                             <NA>              3    3-10
## 354         1070                             <NA>              3    3-10
## 355         1070                             <NA>              3    3-10
## 356         1070                             <NA>              3    3-10
## 357         1070                             <NA>              3    3-10
## 358         1070                             <NA>              3    3-10
## 359         1070                             <NA>              3    3-10
## 360         1070                             <NA>              3    3-10
## 361         1070                             <NA>              3    3-10
## 362         1070                             <NA>              3    3-10
## 363         1070                             <NA>              3    3-10
## 364         1070                             <NA>              3    3-10
## 365         1070                             <NA>              3    3-10
## 366         1070                             <NA>              3    3-10
## 367         1073                             <NA>              2     1-2
## 368         1073                             <NA>              2     1-2
## 369         1073                             <NA>              2     1-2
## 370         1073                             <NA>              2     1-2
## 371         1073                             <NA>              2     1-2
## 372         1073                             <NA>              2     1-2
## 373         1073                             <NA>              2     1-2
## 374         1073                             <NA>              2     1-2
## 375         1073                             <NA>              2     1-2
## 376         1073                             <NA>              2     1-2
## 377         1073                             <NA>              2     1-2
## 378         1073                             <NA>              2     1-2
## 379         1073                             <NA>              2     1-2
## 380         1073                             <NA>              2     1-2
## 381         1073                             <NA>              2     1-2
## 382         1073                             <NA>              2     1-2
## 383         1073                             <NA>              2     1-2
## 384         1073                             <NA>              2     1-2
## 385         1073                             <NA>              2     1-2
## 386         1073                             <NA>              2     1-2
## 387         1073                             <NA>              2     1-2
## 388         1073                             <NA>              2     1-2
## 389         1073                             <NA>              2     1-2
## 390         1073                             <NA>              2     1-2
## 391         1073                             <NA>              2     1-2
## 392         1073                             <NA>              2     1-2
## 393         1073                             <NA>              2     1-2
## 394         1073                             <NA>              2     1-2
## 395         1073                             <NA>              2     1-2
## 396         1073                             <NA>              2     1-2
## 397         1073                             <NA>              2     1-2
## 398         1073                             <NA>              2     1-2
## 399         1073                             <NA>              2     1-2
## 400         1073                             <NA>              2     1-2
## 401         1073                             <NA>              2     1-2
## 402         1073                             <NA>              2     1-2
## 403         1073                             <NA>              2     1-2
## 404         1073                             <NA>              2     1-2
## 405         1073                             <NA>              2     1-2
## 406         1073                             <NA>              2     1-2
## 407         1073                             <NA>              2     1-2
## 408         1073                             <NA>              2     1-2
## 409         1073                             <NA>              2     1-2
## 410         1073                             <NA>              2     1-2
## 411         1073                             <NA>              2     1-2
## 412         1073                             <NA>              2     1-2
## 413         1073                             <NA>              2     1-2
## 414         1073                             <NA>              2     1-2
## 415         1073                             <NA>              2     1-2
## 416         1073                             <NA>              2     1-2
## 417         1073                             <NA>              2     1-2
## 418         1073                             <NA>              2     1-2
## 419         1073                             <NA>              2     1-2
## 420         1073                             <NA>              2     1-2
## 421         1073                             <NA>              2     1-2
## 422         1073                             <NA>              2     1-2
## 423         1073                             <NA>              2     1-2
## 424         1073                             <NA>              2     1-2
## 425         1073                             <NA>              2     1-2
## 426         1073                             <NA>              2     1-2
## 427         1073                             <NA>              2     1-2
## 428         1078    Partially Protected - Default           3740    500-
## 429         1078    Partially Protected - Default           3740    500-
## 430         1078    Partially Protected - Default           3740    500-
## 431         1078    Partially Protected - Default           3740    500-
## 432         1078    Partially Protected - Default           3740    500-
## 433         1078    Partially Protected - Default           3740    500-
## 434         1078    Partially Protected - Default           3740    500-
## 435         1078    Partially Protected - Default           3740    500-
## 436         1078    Partially Protected - Default           3740    500-
## 437         1078    Partially Protected - Default           3740    500-
## 438         1078    Partially Protected - Default           3740    500-
## 439         1078    Partially Protected - Default           3740    500-
## 440         1078    Partially Protected - Default           3740    500-
## 441         1078    Partially Protected - Default           3740    500-
## 442         1078    Partially Protected - Default           3740    500-
## 443         1078    Partially Protected - Default           3740    500-
## 444         1078    Partially Protected - Default           3740    500-
## 445         1078    Partially Protected - Default           3740    500-
## 446         1078    Partially Protected - Default           3740    500-
## 447         1078    Partially Protected - Default           3740    500-
## 448         1078    Partially Protected - Default           3740    500-
## 449         1078    Partially Protected - Default           3740    500-
## 450         1078    Partially Protected - Default           3740    500-
## 451         1078    Partially Protected - Default           3740    500-
## 452         1078    Partially Protected - Default           3740    500-
## 453         1078    Partially Protected - Default           3740    500-
## 454         1078    Partially Protected - Default           3740    500-
## 455         1078    Partially Protected - Default           3740    500-
## 456         1078    Partially Protected - Default           3740    500-
## 457         1078    Partially Protected - Default           3740    500-
## 458         1078    Partially Protected - Default           3740    500-
## 459         1078    Partially Protected - Default           3740    500-
## 460         1078    Partially Protected - Default           3740    500-
## 461         1078    Partially Protected - Default           3740    500-
## 462         1078    Partially Protected - Default           3740    500-
## 463         1078    Partially Protected - Default           3740    500-
## 464         1078    Partially Protected - Default           3740    500-
## 465         1078    Partially Protected - Default           3740    500-
## 466         1078    Partially Protected - Default           3740    500-
## 467         1078    Partially Protected - Default           3740    500-
## 468         1078    Partially Protected - Default           3740    500-
## 469         1078    Partially Protected - Default           3740    500-
## 470         1078    Partially Protected - Default           3740    500-
## 471         1078    Partially Protected - Default           3740    500-
## 472         1078    Partially Protected - Default           3740    500-
## 473         1078    Partially Protected - Default           3740    500-
## 474         1078    Partially Protected - Default           3740    500-
## 475         1078    Partially Protected - Default           3740    500-
## 476         1078    Partially Protected - Default           3740    500-
## 477         1078    Partially Protected - Default           3740    500-
## 478         1078    Partially Protected - Default           3740    500-
## 479         1078    Partially Protected - Default           3740    500-
## 480         1078    Partially Protected - Default           3740    500-
## 481         1078    Partially Protected - Default           3740    500-
## 482         1078    Partially Protected - Default           3740    500-
## 483         1078    Partially Protected - Default           3740    500-
## 484         1078    Partially Protected - Default           3740    500-
## 485         1078    Partially Protected - Default           3740    500-
## 486         1078    Partially Protected - Default           3740    500-
## 487         1078    Partially Protected - Default           3740    500-
## 488         1078    Partially Protected - Default           3740    500-
## 489         1231                             <NA>              1     1-2
## 490         1231                             <NA>              1     1-2
## 491         1231                             <NA>              1     1-2
## 492         1231                             <NA>              1     1-2
## 493         1231                             <NA>              1     1-2
## 494         1231                             <NA>              1     1-2
## 495         1231                             <NA>              1     1-2
## 496         1231                             <NA>              1     1-2
## 497         1231                             <NA>              1     1-2
## 498         1231                             <NA>              1     1-2
## 499         1231                             <NA>              1     1-2
## 500         1231                             <NA>              1     1-2
## 501         1231                             <NA>              1     1-2
## 502         1231                             <NA>              1     1-2
## 503         1231                             <NA>              1     1-2
## 504         1231                             <NA>              1     1-2
## 505         1231                             <NA>              1     1-2
## 506         1231                             <NA>              1     1-2
## 507         1231                             <NA>              1     1-2
## 508         1231                             <NA>              1     1-2
## 509         1231                             <NA>              1     1-2
## 510         1231                             <NA>              1     1-2
## 511         1231                             <NA>              1     1-2
## 512         1231                             <NA>              1     1-2
## 513         1231                             <NA>              1     1-2
## 514         1231                             <NA>              1     1-2
## 515         1231                             <NA>              1     1-2
## 516         1231                             <NA>              1     1-2
## 517         1231                             <NA>              1     1-2
## 518         1231                             <NA>              1     1-2
## 519         1231                             <NA>              1     1-2
## 520         1231                             <NA>              1     1-2
## 521         1231                             <NA>              1     1-2
## 522         1231                             <NA>              1     1-2
## 523         1231                             <NA>              1     1-2
## 524         1231                             <NA>              1     1-2
## 525         1231                             <NA>              1     1-2
## 526         1231                             <NA>              1     1-2
## 527         1231                             <NA>              1     1-2
## 528         1231                             <NA>              1     1-2
## 529         1231                             <NA>              1     1-2
## 530         1231                             <NA>              1     1-2
## 531         1231                             <NA>              1     1-2
## 532         1231                             <NA>              1     1-2
## 533         1231                             <NA>              1     1-2
## 534         1231                             <NA>              1     1-2
## 535         1231                             <NA>              1     1-2
## 536         1231                             <NA>              1     1-2
## 537         1231                             <NA>              1     1-2
## 538         1231                             <NA>              1     1-2
## 539         1231                             <NA>              1     1-2
## 540         1231                             <NA>              1     1-2
## 541         1231                             <NA>              1     1-2
## 542         1231                             <NA>              1     1-2
## 543         1231                             <NA>              1     1-2
## 544         1231                             <NA>              1     1-2
## 545         1231                             <NA>              1     1-2
## 546         1231                             <NA>              1     1-2
## 547         1231                             <NA>              1     1-2
## 548         1231                             <NA>              1     1-2
## 549         1231                             <NA>              1     1-2
## 550         1357                             <NA>             45  25-100
## 551         1357                             <NA>             45  25-100
## 552         1357                             <NA>             45  25-100
## 553         1357                             <NA>             45  25-100
## 554         1357                             <NA>             45  25-100
## 555         1357                             <NA>             45  25-100
## 556         1357                             <NA>             45  25-100
## 557         1357                             <NA>             45  25-100
## 558         1357                             <NA>             45  25-100
## 559         1357                             <NA>             45  25-100
## 560         1357                             <NA>             45  25-100
## 561         1357                             <NA>             45  25-100
## 562         1357                             <NA>             45  25-100
## 563         1357                             <NA>             45  25-100
## 564         1357                             <NA>             45  25-100
## 565         1357                             <NA>             45  25-100
## 566         1357                             <NA>             45  25-100
## 567         1357                             <NA>             45  25-100
## 568         1357                             <NA>             45  25-100
## 569         1357                             <NA>             45  25-100
## 570         1357                             <NA>             45  25-100
## 571         1357                             <NA>             45  25-100
## 572         1357                             <NA>             45  25-100
## 573         1357                             <NA>             45  25-100
## 574         1357                             <NA>             45  25-100
## 575         1357                             <NA>             45  25-100
## 576         1357                             <NA>             45  25-100
## 577         1357                             <NA>             45  25-100
## 578         1357                             <NA>             45  25-100
## 579         1357                             <NA>             45  25-100
## 580         1357                             <NA>             45  25-100
## 581         1357                             <NA>             45  25-100
## 582         1357                             <NA>             45  25-100
## 583         1357                             <NA>             45  25-100
## 584         1357                             <NA>             45  25-100
## 585         1357                             <NA>             45  25-100
## 586         1357                             <NA>             45  25-100
## 587         1357                             <NA>             45  25-100
## 588         1357                             <NA>             45  25-100
## 589         1357                             <NA>             45  25-100
## 590         1357                             <NA>             45  25-100
## 591         1357                             <NA>             45  25-100
## 592         1357                             <NA>             45  25-100
## 593         1357                             <NA>             45  25-100
## 594         1357                             <NA>             45  25-100
## 595         1357                             <NA>             45  25-100
## 596         1357                             <NA>             45  25-100
## 597         1357                             <NA>             45  25-100
## 598         1357                             <NA>             45  25-100
## 599         1357                             <NA>             45  25-100
## 600         1357                             <NA>             45  25-100
## 601         1357                             <NA>             45  25-100
## 602         1357                             <NA>             45  25-100
## 603         1357                             <NA>             45  25-100
## 604         1357                             <NA>             45  25-100
## 605         1357                             <NA>             45  25-100
## 606         1357                             <NA>             45  25-100
## 607         1357                             <NA>             45  25-100
## 608         1357                             <NA>             45  25-100
## 609         1357                             <NA>             45  25-100
## 610         1357                             <NA>             45  25-100
## 611         1365                             <NA>            762    500-
## 612         1365                             <NA>            762    500-
## 613         1365                             <NA>            762    500-
## 614         1365                             <NA>            762    500-
## 615         1365                             <NA>            762    500-
## 616         1365                             <NA>            762    500-
## 617         1365                             <NA>            762    500-
## 618         1365                             <NA>            762    500-
## 619         1365                             <NA>            762    500-
## 620         1365                             <NA>            762    500-
## 621         1365                             <NA>            762    500-
## 622         1365                             <NA>            762    500-
## 623         1365                             <NA>            762    500-
## 624         1365                             <NA>            762    500-
## 625         1365                             <NA>            762    500-
## 626         1365                             <NA>            762    500-
## 627         1365                             <NA>            762    500-
## 628         1365                             <NA>            762    500-
## 629         1365                             <NA>            762    500-
## 630         1365                             <NA>            762    500-
## 631         1365                             <NA>            762    500-
## 632         1365                             <NA>            762    500-
## 633         1365                             <NA>            762    500-
## 634         1365                             <NA>            762    500-
## 635         1365                             <NA>            762    500-
## 636         1365                             <NA>            762    500-
## 637         1365                             <NA>            762    500-
## 638         1365                             <NA>            762    500-
## 639         1365                             <NA>            762    500-
## 640         1365                             <NA>            762    500-
## 641         1365                             <NA>            762    500-
## 642         1365                             <NA>            762    500-
## 643         1365                             <NA>            762    500-
## 644         1365                             <NA>            762    500-
## 645         1365                             <NA>            762    500-
## 646         1365                             <NA>            762    500-
## 647         1365                             <NA>            762    500-
## 648         1365                             <NA>            762    500-
## 649         1365                             <NA>            762    500-
## 650         1365                             <NA>            762    500-
## 651         1365                             <NA>            762    500-
## 652         1365                             <NA>            762    500-
## 653         1365                             <NA>            762    500-
## 654         1365                             <NA>            762    500-
## 655         1365                             <NA>            762    500-
## 656         1365                             <NA>            762    500-
## 657         1365                             <NA>            762    500-
## 658         1365                             <NA>            762    500-
## 659         1365                             <NA>            762    500-
## 660         1365                             <NA>            762    500-
## 661         1365                             <NA>            762    500-
## 662         1365                             <NA>            762    500-
## 663         1365                             <NA>            762    500-
## 664         1365                             <NA>            762    500-
## 665         1365                             <NA>            762    500-
## 666         1365                             <NA>            762    500-
## 667         1365                             <NA>            762    500-
## 668         1365                             <NA>            762    500-
## 669         1365                             <NA>            762    500-
## 670         1365                             <NA>            762    500-
## 671         1365                             <NA>            762    500-
## 672         1399                     Good Article              6    3-10
## 673         1399                     Good Article              6    3-10
## 674         1399                     Good Article              6    3-10
## 675         1399                     Good Article              6    3-10
## 676         1399                     Good Article              6    3-10
## 677         1399                     Good Article              6    3-10
## 678         1399                     Good Article              6    3-10
## 679         1399                     Good Article              6    3-10
## 680         1399                     Good Article              6    3-10
## 681         1399                     Good Article              6    3-10
## 682         1399                     Good Article              6    3-10
## 683         1399                     Good Article              6    3-10
## 684         1399                     Good Article              6    3-10
## 685         1399                     Good Article              6    3-10
## 686         1399                     Good Article              6    3-10
## 687         1399                     Good Article              6    3-10
## 688         1399                     Good Article              6    3-10
## 689         1399                     Good Article              6    3-10
## 690         1399                     Good Article              6    3-10
## 691         1399                     Good Article              6    3-10
## 692         1399                     Good Article              6    3-10
## 693         1399                     Good Article              6    3-10
## 694         1399                     Good Article              6    3-10
## 695         1399                     Good Article              6    3-10
## 696         1399                     Good Article              6    3-10
## 697         1399                     Good Article              6    3-10
## 698         1399                     Good Article              6    3-10
## 699         1399                     Good Article              6    3-10
## 700         1399                     Good Article              6    3-10
## 701         1399                     Good Article              6    3-10
## 702         1399                     Good Article              6    3-10
## 703         1399                     Good Article              6    3-10
## 704         1399                     Good Article              6    3-10
## 705         1399                     Good Article              6    3-10
## 706         1399                     Good Article              6    3-10
## 707         1399                     Good Article              6    3-10
## 708         1399                     Good Article              6    3-10
## 709         1399                     Good Article              6    3-10
## 710         1399                     Good Article              6    3-10
## 711         1399                     Good Article              6    3-10
## 712         1399                     Good Article              6    3-10
## 713         1399                     Good Article              6    3-10
## 714         1399                     Good Article              6    3-10
## 715         1399                     Good Article              6    3-10
## 716         1399                     Good Article              6    3-10
## 717         1399                     Good Article              6    3-10
## 718         1399                     Good Article              6    3-10
## 719         1399                     Good Article              6    3-10
## 720         1399                     Good Article              6    3-10
## 721         1399                     Good Article              6    3-10
## 722         1399                     Good Article              6    3-10
## 723         1399                     Good Article              6    3-10
## 724         1399                     Good Article              6    3-10
## 725         1399                     Good Article              6    3-10
## 726         1399                     Good Article              6    3-10
## 727         1399                     Good Article              6    3-10
## 728         1399                     Good Article              6    3-10
## 729         1399                     Good Article              6    3-10
## 730         1399                     Good Article              6    3-10
## 731         1399                     Good Article              6    3-10
## 732         1399                     Good Article              6    3-10
## 733         1526                             <NA>             28  25-100
## 734         1526                             <NA>             28  25-100
## 735         1526                             <NA>             28  25-100
## 736         1526                             <NA>             28  25-100
## 737         1526                             <NA>             28  25-100
## 738         1526                             <NA>             28  25-100
## 739         1526                             <NA>             28  25-100
## 740         1526                             <NA>             28  25-100
## 741         1526                             <NA>             28  25-100
## 742         1526                             <NA>             28  25-100
## 743         1526                             <NA>             28  25-100
## 744         1526                             <NA>             28  25-100
## 745         1526                             <NA>             28  25-100
## 746         1526                             <NA>             28  25-100
## 747         1526                             <NA>             28  25-100
## 748         1526                             <NA>             28  25-100
## 749         1526                             <NA>             28  25-100
## 750         1526                             <NA>             28  25-100
## 751         1526                             <NA>             28  25-100
## 752         1526                             <NA>             28  25-100
## 753         1526                             <NA>             28  25-100
## 754         1526                             <NA>             28  25-100
## 755         1526                             <NA>             28  25-100
## 756         1526                             <NA>             28  25-100
## 757         1526                             <NA>             28  25-100
## 758         1526                             <NA>             28  25-100
## 759         1526                             <NA>             28  25-100
## 760         1526                             <NA>             28  25-100
## 761         1526                             <NA>             28  25-100
## 762         1526                             <NA>             28  25-100
## 763         1526                             <NA>             28  25-100
## 764         1526                             <NA>             28  25-100
## 765         1526                             <NA>             28  25-100
## 766         1526                             <NA>             28  25-100
## 767         1526                             <NA>             28  25-100
## 768         1526                             <NA>             28  25-100
## 769         1526                             <NA>             28  25-100
## 770         1526                             <NA>             28  25-100
## 771         1526                             <NA>             28  25-100
## 772         1526                             <NA>             28  25-100
## 773         1526                             <NA>             28  25-100
## 774         1526                             <NA>             28  25-100
## 775         1526                             <NA>             28  25-100
## 776         1526                             <NA>             28  25-100
## 777         1526                             <NA>             28  25-100
## 778         1526                             <NA>             28  25-100
## 779         1526                             <NA>             28  25-100
## 780         1526                             <NA>             28  25-100
## 781         1526                             <NA>             28  25-100
## 782         1526                             <NA>             28  25-100
## 783         1526                             <NA>             28  25-100
## 784         1526                             <NA>             28  25-100
## 785         1526                             <NA>             28  25-100
## 786         1526                             <NA>             28  25-100
## 787         1526                             <NA>             28  25-100
## 788         1526                             <NA>             28  25-100
## 789         1526                             <NA>             28  25-100
## 790         1526                             <NA>             28  25-100
## 791         1526                             <NA>             28  25-100
## 792         1526                             <NA>             28  25-100
## 793         1526                             <NA>             28  25-100
## 794         1556                     Good Article             84  25-100
## 795         1556                     Good Article             84  25-100
## 796         1556                     Good Article             84  25-100
## 797         1556                     Good Article             84  25-100
## 798         1556                     Good Article             84  25-100
## 799         1556                     Good Article             84  25-100
## 800         1556                     Good Article             84  25-100
## 801         1556                     Good Article             84  25-100
## 802         1556                     Good Article             84  25-100
## 803         1556                     Good Article             84  25-100
## 804         1556                     Good Article             84  25-100
## 805         1556                     Good Article             84  25-100
## 806         1556                     Good Article             84  25-100
## 807         1556                     Good Article             84  25-100
## 808         1556                     Good Article             84  25-100
## 809         1556                     Good Article             84  25-100
## 810         1556                     Good Article             84  25-100
## 811         1556                     Good Article             84  25-100
## 812         1556                     Good Article             84  25-100
## 813         1556                     Good Article             84  25-100
## 814         1556                     Good Article             84  25-100
## 815         1556                     Good Article             84  25-100
## 816         1556                     Good Article             84  25-100
## 817         1556                     Good Article             84  25-100
## 818         1556                     Good Article             84  25-100
## 819         1556                     Good Article             84  25-100
## 820         1556                     Good Article             84  25-100
## 821         1556                     Good Article             84  25-100
## 822         1556                     Good Article             84  25-100
## 823         1556                     Good Article             84  25-100
## 824         1556                     Good Article             84  25-100
## 825         1556                     Good Article             84  25-100
## 826         1556                     Good Article             84  25-100
## 827         1556                     Good Article             84  25-100
## 828         1556                     Good Article             84  25-100
## 829         1556                     Good Article             84  25-100
## 830         1556                     Good Article             84  25-100
## 831         1556                     Good Article             84  25-100
## 832         1556                     Good Article             84  25-100
## 833         1556                     Good Article             84  25-100
## 834         1556                     Good Article             84  25-100
## 835         1556                     Good Article             84  25-100
## 836         1556                     Good Article             84  25-100
## 837         1556                     Good Article             84  25-100
## 838         1556                     Good Article             84  25-100
## 839         1556                     Good Article             84  25-100
## 840         1556                     Good Article             84  25-100
## 841         1556                     Good Article             84  25-100
## 842         1556                     Good Article             84  25-100
## 843         1556                     Good Article             84  25-100
## 844         1556                     Good Article             84  25-100
## 845         1556                     Good Article             84  25-100
## 846         1556                     Good Article             84  25-100
## 847         1556                     Good Article             84  25-100
## 848         1556                     Good Article             84  25-100
## 849         1556                     Good Article             84  25-100
## 850         1556                     Good Article             84  25-100
## 851         1556                     Good Article             84  25-100
## 852         1556                     Good Article             84  25-100
## 853         1556                     Good Article             84  25-100
## 854         1556                     Good Article             84  25-100
## 855         1654                             <NA>             18   10-25
## 856         1654                             <NA>             18   10-25
## 857         1654                             <NA>             18   10-25
## 858         1654                             <NA>             18   10-25
## 859         1654                             <NA>             18   10-25
## 860         1654                             <NA>             18   10-25
## 861         1654                             <NA>             18   10-25
## 862         1654                             <NA>             18   10-25
## 863         1654                             <NA>             18   10-25
## 864         1654                             <NA>             18   10-25
## 865         1654                             <NA>             18   10-25
## 866         1654                             <NA>             18   10-25
## 867         1654                             <NA>             18   10-25
## 868         1654                             <NA>             18   10-25
## 869         1654                             <NA>             18   10-25
## 870         1654                             <NA>             18   10-25
## 871         1654                             <NA>             18   10-25
## 872         1654                             <NA>             18   10-25
## 873         1654                             <NA>             18   10-25
## 874         1654                             <NA>             18   10-25
## 875         1654                             <NA>             18   10-25
## 876         1654                             <NA>             18   10-25
## 877         1654                             <NA>             18   10-25
## 878         1654                             <NA>             18   10-25
## 879         1654                             <NA>             18   10-25
## 880         1654                             <NA>             18   10-25
## 881         1654                             <NA>             18   10-25
## 882         1654                             <NA>             18   10-25
## 883         1654                             <NA>             18   10-25
## 884         1654                             <NA>             18   10-25
## 885         1654                             <NA>             18   10-25
## 886         1654                             <NA>             18   10-25
## 887         1654                             <NA>             18   10-25
## 888         1654                             <NA>             18   10-25
## 889         1654                             <NA>             18   10-25
## 890         1654                             <NA>             18   10-25
## 891         1654                             <NA>             18   10-25
## 892         1654                             <NA>             18   10-25
## 893         1654                             <NA>             18   10-25
## 894         1654                             <NA>             18   10-25
## 895         1654                             <NA>             18   10-25
## 896         1654                             <NA>             18   10-25
## 897         1654                             <NA>             18   10-25
## 898         1654                             <NA>             18   10-25
## 899         1654                             <NA>             18   10-25
## 900         1654                             <NA>             18   10-25
## 901         1654                             <NA>             18   10-25
## 902         1654                             <NA>             18   10-25
## 903         1654                             <NA>             18   10-25
## 904         1654                             <NA>             18   10-25
## 905         1654                             <NA>             18   10-25
## 906         1654                             <NA>             18   10-25
## 907         1654                             <NA>             18   10-25
## 908         1654                             <NA>             18   10-25
## 909         1654                             <NA>             18   10-25
## 910         1654                             <NA>             18   10-25
## 911         1654                             <NA>             18   10-25
## 912         1654                             <NA>             18   10-25
## 913         1654                             <NA>             18   10-25
## 914         1654                             <NA>             18   10-25
## 915         1654                             <NA>             18   10-25
## 916         1734                             <NA>             15   10-25
## 917         1734                             <NA>             15   10-25
## 918         1734                             <NA>             15   10-25
## 919         1734                             <NA>             15   10-25
## 920         1734                             <NA>             15   10-25
## 921         1734                             <NA>             15   10-25
## 922         1734                             <NA>             15   10-25
## 923         1734                             <NA>             15   10-25
## 924         1734                             <NA>             15   10-25
## 925         1734                             <NA>             15   10-25
## 926         1734                             <NA>             15   10-25
## 927         1734                             <NA>             15   10-25
## 928         1734                             <NA>             15   10-25
## 929         1734                             <NA>             15   10-25
## 930         1734                             <NA>             15   10-25
## 931         1734                             <NA>             15   10-25
## 932         1734                             <NA>             15   10-25
## 933         1734                             <NA>             15   10-25
## 934         1734                             <NA>             15   10-25
## 935         1734                             <NA>             15   10-25
## 936         1734                             <NA>             15   10-25
## 937         1734                             <NA>             15   10-25
## 938         1734                             <NA>             15   10-25
## 939         1734                             <NA>             15   10-25
## 940         1734                             <NA>             15   10-25
## 941         1734                             <NA>             15   10-25
## 942         1734                             <NA>             15   10-25
## 943         1734                             <NA>             15   10-25
## 944         1734                             <NA>             15   10-25
## 945         1734                             <NA>             15   10-25
## 946         1734                             <NA>             15   10-25
## 947         1734                             <NA>             15   10-25
## 948         1734                             <NA>             15   10-25
## 949         1734                             <NA>             15   10-25
## 950         1734                             <NA>             15   10-25
## 951         1734                             <NA>             15   10-25
## 952         1734                             <NA>             15   10-25
## 953         1734                             <NA>             15   10-25
## 954         1734                             <NA>             15   10-25
## 955         1734                             <NA>             15   10-25
## 956         1734                             <NA>             15   10-25
## 957         1734                             <NA>             15   10-25
## 958         1734                             <NA>             15   10-25
## 959         1734                             <NA>             15   10-25
## 960         1734                             <NA>             15   10-25
## 961         1734                             <NA>             15   10-25
## 962         1734                             <NA>             15   10-25
## 963         1734                             <NA>             15   10-25
## 964         1734                             <NA>             15   10-25
## 965         1734                             <NA>             15   10-25
## 966         1734                             <NA>             15   10-25
## 967         1734                             <NA>             15   10-25
## 968         1734                             <NA>             15   10-25
## 969         1734                             <NA>             15   10-25
## 970         1734                             <NA>             15   10-25
## 971         1734                             <NA>             15   10-25
## 972         1734                             <NA>             15   10-25
## 973         1734                             <NA>             15   10-25
## 974         1734                             <NA>             15   10-25
## 975         1734                             <NA>             15   10-25
## 976         1734                             <NA>             15   10-25
## 977         1835                             <NA>            199 100-500
## 978         1835                             <NA>            199 100-500
## 979         1835                             <NA>            199 100-500
## 980         1835                             <NA>            199 100-500
## 981         1835                             <NA>            199 100-500
## 982         1835                             <NA>            199 100-500
## 983         1835                             <NA>            199 100-500
## 984         1835                             <NA>            199 100-500
## 985         1835                             <NA>            199 100-500
## 986         1835                             <NA>            199 100-500
## 987         1835                             <NA>            199 100-500
## 988         1835                             <NA>            199 100-500
## 989         1835                             <NA>            199 100-500
## 990         1835                             <NA>            199 100-500
## 991         1835                             <NA>            199 100-500
## 992         1835                             <NA>            199 100-500
## 993         1835                             <NA>            199 100-500
## 994         1835                             <NA>            199 100-500
## 995         1835                             <NA>            199 100-500
## 996         1835                             <NA>            199 100-500
## 997         1835                             <NA>            199 100-500
## 998         1835                             <NA>            199 100-500
## 999         1835                             <NA>            199 100-500
## 1000        1835                             <NA>            199 100-500
## 1001        1835                             <NA>            199 100-500
## 1002        1835                             <NA>            199 100-500
## 1003        1835                             <NA>            199 100-500
## 1004        1835                             <NA>            199 100-500
## 1005        1835                             <NA>            199 100-500
## 1006        1835                             <NA>            199 100-500
## 1007        1835                             <NA>            199 100-500
## 1008        1835                             <NA>            199 100-500
## 1009        1835                             <NA>            199 100-500
## 1010        1835                             <NA>            199 100-500
## 1011        1835                             <NA>            199 100-500
## 1012        1835                             <NA>            199 100-500
## 1013        1835                             <NA>            199 100-500
## 1014        1835                             <NA>            199 100-500
## 1015        1835                             <NA>            199 100-500
## 1016        1835                             <NA>            199 100-500
## 1017        1835                             <NA>            199 100-500
## 1018        1835                             <NA>            199 100-500
## 1019        1835                             <NA>            199 100-500
## 1020        1835                             <NA>            199 100-500
## 1021        1835                             <NA>            199 100-500
## 1022        1835                             <NA>            199 100-500
## 1023        1835                             <NA>            199 100-500
## 1024        1835                             <NA>            199 100-500
## 1025        1835                             <NA>            199 100-500
## 1026        1835                             <NA>            199 100-500
## 1027        1835                             <NA>            199 100-500
## 1028        1835                             <NA>            199 100-500
## 1029        1835                             <NA>            199 100-500
## 1030        1835                             <NA>            199 100-500
## 1031        1835                             <NA>            199 100-500
## 1032        1835                             <NA>            199 100-500
## 1033        1835                             <NA>            199 100-500
## 1034        1835                             <NA>            199 100-500
## 1035        1835                             <NA>            199 100-500
## 1036        1835                             <NA>            199 100-500
## 1037        1835                             <NA>            199 100-500
## 1038        1905                             <NA>             69  25-100
## 1039        1905                             <NA>             69  25-100
## 1040        1905                             <NA>             69  25-100
## 1041        1905                             <NA>             69  25-100
## 1042        1905                             <NA>             69  25-100
## 1043        1905                             <NA>             69  25-100
## 1044        1905                             <NA>             69  25-100
## 1045        1905                             <NA>             69  25-100
## 1046        1905                             <NA>             69  25-100
## 1047        1905                             <NA>             69  25-100
## 1048        1905                             <NA>             69  25-100
## 1049        1905                             <NA>             69  25-100
## 1050        1905                             <NA>             69  25-100
## 1051        1905                             <NA>             69  25-100
## 1052        1905                             <NA>             69  25-100
## 1053        1905                             <NA>             69  25-100
## 1054        1905                             <NA>             69  25-100
## 1055        1905                             <NA>             69  25-100
## 1056        1905                             <NA>             69  25-100
## 1057        1905                             <NA>             69  25-100
## 1058        1905                             <NA>             69  25-100
## 1059        1905                             <NA>             69  25-100
## 1060        1905                             <NA>             69  25-100
## 1061        1905                             <NA>             69  25-100
## 1062        1905                             <NA>             69  25-100
## 1063        1905                             <NA>             69  25-100
## 1064        1905                             <NA>             69  25-100
## 1065        1905                             <NA>             69  25-100
## 1066        1905                             <NA>             69  25-100
## 1067        1905                             <NA>             69  25-100
## 1068        1905                             <NA>             69  25-100
## 1069        1905                             <NA>             69  25-100
## 1070        1905                             <NA>             69  25-100
## 1071        1905                             <NA>             69  25-100
## 1072        1905                             <NA>             69  25-100
## 1073        1905                             <NA>             69  25-100
## 1074        1905                             <NA>             69  25-100
## 1075        1905                             <NA>             69  25-100
## 1076        1905                             <NA>             69  25-100
## 1077        1905                             <NA>             69  25-100
## 1078        1905                             <NA>             69  25-100
## 1079        1905                             <NA>             69  25-100
## 1080        1905                             <NA>             69  25-100
## 1081        1905                             <NA>             69  25-100
## 1082        1905                             <NA>             69  25-100
## 1083        1905                             <NA>             69  25-100
## 1084        1905                             <NA>             69  25-100
## 1085        1905                             <NA>             69  25-100
## 1086        1905                             <NA>             69  25-100
## 1087        1905                             <NA>             69  25-100
## 1088        1905                             <NA>             69  25-100
## 1089        1905                             <NA>             69  25-100
## 1090        1905                             <NA>             69  25-100
## 1091        1905                             <NA>             69  25-100
## 1092        1905                             <NA>             69  25-100
## 1093        1905                             <NA>             69  25-100
## 1094        1905                             <NA>             69  25-100
## 1095        1905                             <NA>             69  25-100
## 1096        1905                             <NA>             69  25-100
## 1097        1905                             <NA>             69  25-100
## 1098        1905                             <NA>             69  25-100
## 1099        1947                             <NA>             15   10-25
## 1100        1947                             <NA>             15   10-25
## 1101        1947                             <NA>             15   10-25
## 1102        1947                             <NA>             15   10-25
## 1103        1947                             <NA>             15   10-25
## 1104        1947                             <NA>             15   10-25
## 1105        1947                             <NA>             15   10-25
## 1106        1947                             <NA>             15   10-25
## 1107        1947                             <NA>             15   10-25
## 1108        1947                             <NA>             15   10-25
## 1109        1947                             <NA>             15   10-25
## 1110        1947                             <NA>             15   10-25
## 1111        1947                             <NA>             15   10-25
## 1112        1947                             <NA>             15   10-25
## 1113        1947                             <NA>             15   10-25
## 1114        1947                             <NA>             15   10-25
## 1115        1947                             <NA>             15   10-25
## 1116        1947                             <NA>             15   10-25
## 1117        1947                             <NA>             15   10-25
## 1118        1947                             <NA>             15   10-25
## 1119        1947                             <NA>             15   10-25
## 1120        1947                             <NA>             15   10-25
## 1121        1947                             <NA>             15   10-25
## 1122        1947                             <NA>             15   10-25
## 1123        1947                             <NA>             15   10-25
## 1124        1947                             <NA>             15   10-25
## 1125        1947                             <NA>             15   10-25
## 1126        1947                             <NA>             15   10-25
## 1127        1947                             <NA>             15   10-25
## 1128        1947                             <NA>             15   10-25
## 1129        1947                             <NA>             15   10-25
## 1130        1947                             <NA>             15   10-25
## 1131        1947                             <NA>             15   10-25
## 1132        1947                             <NA>             15   10-25
## 1133        1947                             <NA>             15   10-25
## 1134        1947                             <NA>             15   10-25
## 1135        1947                             <NA>             15   10-25
## 1136        1947                             <NA>             15   10-25
## 1137        1947                             <NA>             15   10-25
## 1138        1947                             <NA>             15   10-25
## 1139        1947                             <NA>             15   10-25
## 1140        1947                             <NA>             15   10-25
## 1141        1947                             <NA>             15   10-25
## 1142        1947                             <NA>             15   10-25
## 1143        1947                             <NA>             15   10-25
## 1144        1947                             <NA>             15   10-25
## 1145        1947                             <NA>             15   10-25
## 1146        1947                             <NA>             15   10-25
## 1147        1947                             <NA>             15   10-25
## 1148        1947                             <NA>             15   10-25
## 1149        1947                             <NA>             15   10-25
## 1150        1947                             <NA>             15   10-25
## 1151        1947                             <NA>             15   10-25
## 1152        1947                             <NA>             15   10-25
## 1153        1947                             <NA>             15   10-25
## 1154        1947                             <NA>             15   10-25
## 1155        1947                             <NA>             15   10-25
## 1156        1947                             <NA>             15   10-25
## 1157        1947                             <NA>             15   10-25
## 1158        1947                             <NA>             15   10-25
## 1159        1947                             <NA>             15   10-25
## 1160        1979                             <NA>            382 100-500
## 1161        1979                             <NA>            382 100-500
## 1162        1979                             <NA>            382 100-500
## 1163        1979                             <NA>            382 100-500
## 1164        1979                             <NA>            382 100-500
## 1165        1979                             <NA>            382 100-500
## 1166        1979                             <NA>            382 100-500
## 1167        1979                             <NA>            382 100-500
## 1168        1979                             <NA>            382 100-500
## 1169        1979                             <NA>            382 100-500
## 1170        1979                             <NA>            382 100-500
## 1171        1979                             <NA>            382 100-500
## 1172        1979                             <NA>            382 100-500
## 1173        1979                             <NA>            382 100-500
## 1174        1979                             <NA>            382 100-500
## 1175        1979                             <NA>            382 100-500
## 1176        1979                             <NA>            382 100-500
## 1177        1979                             <NA>            382 100-500
## 1178        1979                             <NA>            382 100-500
## 1179        1979                             <NA>            382 100-500
## 1180        1979                             <NA>            382 100-500
## 1181        1979                             <NA>            382 100-500
## 1182        1979                             <NA>            382 100-500
## 1183        1979                             <NA>            382 100-500
## 1184        1979                             <NA>            382 100-500
## 1185        1979                             <NA>            382 100-500
## 1186        1979                             <NA>            382 100-500
## 1187        1979                             <NA>            382 100-500
## 1188        1979                             <NA>            382 100-500
## 1189        1979                             <NA>            382 100-500
## 1190        1979                             <NA>            382 100-500
## 1191        1979                             <NA>            382 100-500
## 1192        1979                             <NA>            382 100-500
## 1193        1979                             <NA>            382 100-500
## 1194        1979                             <NA>            382 100-500
## 1195        1979                             <NA>            382 100-500
## 1196        1979                             <NA>            382 100-500
## 1197        1979                             <NA>            382 100-500
## 1198        1979                             <NA>            382 100-500
## 1199        1979                             <NA>            382 100-500
## 1200        1979                             <NA>            382 100-500
## 1201        1979                             <NA>            382 100-500
## 1202        1979                             <NA>            382 100-500
## 1203        1979                             <NA>            382 100-500
## 1204        1979                             <NA>            382 100-500
## 1205        1979                             <NA>            382 100-500
## 1206        1979                             <NA>            382 100-500
## 1207        1979                             <NA>            382 100-500
## 1208        1979                             <NA>            382 100-500
## 1209        1979                             <NA>            382 100-500
## 1210        1979                             <NA>            382 100-500
## 1211        1979                             <NA>            382 100-500
## 1212        1979                             <NA>            382 100-500
## 1213        1979                             <NA>            382 100-500
## 1214        1979                             <NA>            382 100-500
## 1215        1979                             <NA>            382 100-500
## 1216        1979                             <NA>            382 100-500
## 1217        1979                             <NA>            382 100-500
## 1218        1979                             <NA>            382 100-500
## 1219        1979                             <NA>            382 100-500
## 1220        1979                             <NA>            382 100-500
## 1221        2114                             <NA>            286 100-500
## 1222        2114                             <NA>            286 100-500
## 1223        2114                             <NA>            286 100-500
## 1224        2114                             <NA>            286 100-500
## 1225        2114                             <NA>            286 100-500
## 1226        2114                             <NA>            286 100-500
## 1227        2114                             <NA>            286 100-500
## 1228        2114                             <NA>            286 100-500
## 1229        2114                             <NA>            286 100-500
## 1230        2114                             <NA>            286 100-500
## 1231        2114                             <NA>            286 100-500
## 1232        2114                             <NA>            286 100-500
## 1233        2114                             <NA>            286 100-500
## 1234        2114                             <NA>            286 100-500
## 1235        2114                             <NA>            286 100-500
## 1236        2114                             <NA>            286 100-500
## 1237        2114                             <NA>            286 100-500
## 1238        2114                             <NA>            286 100-500
## 1239        2114                             <NA>            286 100-500
## 1240        2114                             <NA>            286 100-500
## 1241        2114                             <NA>            286 100-500
## 1242        2114                             <NA>            286 100-500
## 1243        2114                             <NA>            286 100-500
## 1244        2114                             <NA>            286 100-500
## 1245        2114                             <NA>            286 100-500
## 1246        2114                             <NA>            286 100-500
## 1247        2114                             <NA>            286 100-500
## 1248        2114                             <NA>            286 100-500
## 1249        2114                             <NA>            286 100-500
## 1250        2114                             <NA>            286 100-500
## 1251        2114                             <NA>            286 100-500
## 1252        2114                             <NA>            286 100-500
## 1253        2114                             <NA>            286 100-500
## 1254        2114                             <NA>            286 100-500
## 1255        2114                             <NA>            286 100-500
## 1256        2114                             <NA>            286 100-500
## 1257        2114                             <NA>            286 100-500
## 1258        2114                             <NA>            286 100-500
## 1259        2114                             <NA>            286 100-500
## 1260        2114                             <NA>            286 100-500
## 1261        2114                             <NA>            286 100-500
## 1262        2114                             <NA>            286 100-500
## 1263        2114                             <NA>            286 100-500
## 1264        2114                             <NA>            286 100-500
## 1265        2114                             <NA>            286 100-500
## 1266        2114                             <NA>            286 100-500
## 1267        2114                             <NA>            286 100-500
## 1268        2114                             <NA>            286 100-500
## 1269        2114                             <NA>            286 100-500
## 1270        2114                             <NA>            286 100-500
## 1271        2114                             <NA>            286 100-500
## 1272        2114                             <NA>            286 100-500
## 1273        2114                             <NA>            286 100-500
## 1274        2114                             <NA>            286 100-500
## 1275        2114                             <NA>            286 100-500
## 1276        2114                             <NA>            286 100-500
## 1277        2114                             <NA>            286 100-500
## 1278        2114                             <NA>            286 100-500
## 1279        2114                             <NA>            286 100-500
## 1280        2114                             <NA>            286 100-500
## 1281        2114                             <NA>            286 100-500
## 1282        2167                             <NA>             37  25-100
## 1283        2167                             <NA>             37  25-100
## 1284        2167                             <NA>             37  25-100
## 1285        2167                             <NA>             37  25-100
## 1286        2167                             <NA>             37  25-100
## 1287        2167                             <NA>             37  25-100
## 1288        2167                             <NA>             37  25-100
## 1289        2167                             <NA>             37  25-100
## 1290        2167                             <NA>             37  25-100
## 1291        2167                             <NA>             37  25-100
## 1292        2167                             <NA>             37  25-100
## 1293        2167                             <NA>             37  25-100
## 1294        2167                             <NA>             37  25-100
## 1295        2167                             <NA>             37  25-100
## 1296        2167                             <NA>             37  25-100
## 1297        2167                             <NA>             37  25-100
## 1298        2167                             <NA>             37  25-100
## 1299        2167                             <NA>             37  25-100
## 1300        2167                             <NA>             37  25-100
## 1301        2167                             <NA>             37  25-100
## 1302        2167                             <NA>             37  25-100
## 1303        2167                             <NA>             37  25-100
## 1304        2167                             <NA>             37  25-100
## 1305        2167                             <NA>             37  25-100
## 1306        2167                             <NA>             37  25-100
## 1307        2167                             <NA>             37  25-100
## 1308        2167                             <NA>             37  25-100
## 1309        2167                             <NA>             37  25-100
## 1310        2167                             <NA>             37  25-100
## 1311        2167                             <NA>             37  25-100
## 1312        2167                             <NA>             37  25-100
## 1313        2167                             <NA>             37  25-100
## 1314        2167                             <NA>             37  25-100
## 1315        2167                             <NA>             37  25-100
## 1316        2167                             <NA>             37  25-100
## 1317        2167                             <NA>             37  25-100
## 1318        2167                             <NA>             37  25-100
## 1319        2167                             <NA>             37  25-100
## 1320        2167                             <NA>             37  25-100
## 1321        2167                             <NA>             37  25-100
## 1322        2167                             <NA>             37  25-100
## 1323        2167                             <NA>             37  25-100
## 1324        2167                             <NA>             37  25-100
## 1325        2167                             <NA>             37  25-100
## 1326        2167                             <NA>             37  25-100
## 1327        2167                             <NA>             37  25-100
## 1328        2167                             <NA>             37  25-100
## 1329        2167                             <NA>             37  25-100
## 1330        2167                             <NA>             37  25-100
## 1331        2167                             <NA>             37  25-100
## 1332        2167                             <NA>             37  25-100
## 1333        2167                             <NA>             37  25-100
## 1334        2167                             <NA>             37  25-100
## 1335        2167                             <NA>             37  25-100
## 1336        2167                             <NA>             37  25-100
## 1337        2167                             <NA>             37  25-100
## 1338        2167                             <NA>             37  25-100
## 1339        2167                             <NA>             37  25-100
## 1340        2167                             <NA>             37  25-100
## 1341        2167                             <NA>             37  25-100
## 1342        2167                             <NA>             37  25-100
## 1343        2217                             <NA>            639    500-
## 1344        2217                             <NA>            639    500-
## 1345        2217                             <NA>            639    500-
## 1346        2217                             <NA>            639    500-
## 1347        2217                             <NA>            639    500-
## 1348        2217                             <NA>            639    500-
## 1349        2217                             <NA>            639    500-
## 1350        2217                             <NA>            639    500-
## 1351        2217                             <NA>            639    500-
## 1352        2217                             <NA>            639    500-
## 1353        2217                             <NA>            639    500-
## 1354        2217                             <NA>            639    500-
## 1355        2217                             <NA>            639    500-
## 1356        2217                             <NA>            639    500-
## 1357        2217                             <NA>            639    500-
## 1358        2217                             <NA>            639    500-
## 1359        2217                             <NA>            639    500-
## 1360        2217                             <NA>            639    500-
## 1361        2217                             <NA>            639    500-
## 1362        2217                             <NA>            639    500-
## 1363        2217                             <NA>            639    500-
## 1364        2217                             <NA>            639    500-
## 1365        2217                             <NA>            639    500-
## 1366        2217                             <NA>            639    500-
## 1367        2217                             <NA>            639    500-
## 1368        2217                             <NA>            639    500-
## 1369        2217                             <NA>            639    500-
## 1370        2217                             <NA>            639    500-
## 1371        2217                             <NA>            639    500-
## 1372        2217                             <NA>            639    500-
## 1373        2217                             <NA>            639    500-
## 1374        2217                             <NA>            639    500-
## 1375        2217                             <NA>            639    500-
## 1376        2217                             <NA>            639    500-
## 1377        2217                             <NA>            639    500-
## 1378        2217                             <NA>            639    500-
## 1379        2217                             <NA>            639    500-
## 1380        2217                             <NA>            639    500-
## 1381        2217                             <NA>            639    500-
## 1382        2217                             <NA>            639    500-
## 1383        2217                             <NA>            639    500-
## 1384        2217                             <NA>            639    500-
## 1385        2217                             <NA>            639    500-
## 1386        2217                             <NA>            639    500-
## 1387        2217                             <NA>            639    500-
## 1388        2217                             <NA>            639    500-
## 1389        2217                             <NA>            639    500-
## 1390        2217                             <NA>            639    500-
## 1391        2217                             <NA>            639    500-
## 1392        2217                             <NA>            639    500-
## 1393        2217                             <NA>            639    500-
## 1394        2217                             <NA>            639    500-
## 1395        2217                             <NA>            639    500-
## 1396        2217                             <NA>            639    500-
## 1397        2217                             <NA>            639    500-
## 1398        2217                             <NA>            639    500-
## 1399        2217                             <NA>            639    500-
## 1400        2217                             <NA>            639    500-
## 1401        2217                             <NA>            639    500-
## 1402        2217                             <NA>            639    500-
## 1403        2217                             <NA>            639    500-
## 1404        2335    Partially Protected - Default             76  25-100
## 1405        2335    Partially Protected - Default             76  25-100
## 1406        2335    Partially Protected - Default             76  25-100
## 1407        2335    Partially Protected - Default             76  25-100
## 1408        2335    Partially Protected - Default             76  25-100
## 1409        2335    Partially Protected - Default             76  25-100
## 1410        2335    Partially Protected - Default             76  25-100
## 1411        2335    Partially Protected - Default             76  25-100
## 1412        2335    Partially Protected - Default             76  25-100
## 1413        2335    Partially Protected - Default             76  25-100
## 1414        2335    Partially Protected - Default             76  25-100
## 1415        2335    Partially Protected - Default             76  25-100
## 1416        2335    Partially Protected - Default             76  25-100
## 1417        2335    Partially Protected - Default             76  25-100
## 1418        2335    Partially Protected - Default             76  25-100
## 1419        2335    Partially Protected - Default             76  25-100
## 1420        2335    Partially Protected - Default             76  25-100
## 1421        2335    Partially Protected - Default             76  25-100
## 1422        2335    Partially Protected - Default             76  25-100
## 1423        2335    Partially Protected - Default             76  25-100
## 1424        2335    Partially Protected - Default             76  25-100
## 1425        2335    Partially Protected - Default             76  25-100
## 1426        2335    Partially Protected - Default             76  25-100
## 1427        2335    Partially Protected - Default             76  25-100
## 1428        2335    Partially Protected - Default             76  25-100
## 1429        2335    Partially Protected - Default             76  25-100
## 1430        2335    Partially Protected - Default             76  25-100
## 1431        2335    Partially Protected - Default             76  25-100
## 1432        2335    Partially Protected - Default             76  25-100
## 1433        2335    Partially Protected - Default             76  25-100
## 1434        2335    Partially Protected - Default             76  25-100
## 1435        2335    Partially Protected - Default             76  25-100
## 1436        2335    Partially Protected - Default             76  25-100
## 1437        2335    Partially Protected - Default             76  25-100
## 1438        2335    Partially Protected - Default             76  25-100
## 1439        2335    Partially Protected - Default             76  25-100
## 1440        2335    Partially Protected - Default             76  25-100
## 1441        2335    Partially Protected - Default             76  25-100
## 1442        2335    Partially Protected - Default             76  25-100
## 1443        2335    Partially Protected - Default             76  25-100
## 1444        2335    Partially Protected - Default             76  25-100
## 1445        2335    Partially Protected - Default             76  25-100
## 1446        2335    Partially Protected - Default             76  25-100
## 1447        2335    Partially Protected - Default             76  25-100
## 1448        2335    Partially Protected - Default             76  25-100
## 1449        2335    Partially Protected - Default             76  25-100
## 1450        2335    Partially Protected - Default             76  25-100
## 1451        2335    Partially Protected - Default             76  25-100
## 1452        2335    Partially Protected - Default             76  25-100
## 1453        2335    Partially Protected - Default             76  25-100
## 1454        2335    Partially Protected - Default             76  25-100
## 1455        2335    Partially Protected - Default             76  25-100
## 1456        2335    Partially Protected - Default             76  25-100
## 1457        2335    Partially Protected - Default             76  25-100
## 1458        2335    Partially Protected - Default             76  25-100
## 1459        2335    Partially Protected - Default             76  25-100
## 1460        2335    Partially Protected - Default             76  25-100
## 1461        2335    Partially Protected - Default             76  25-100
## 1462        2335    Partially Protected - Default             76  25-100
## 1463        2335    Partially Protected - Default             76  25-100
## 1464        2335    Partially Protected - Default             76  25-100
## 1465        2578                             <NA>             35  25-100
## 1466        2578                             <NA>             35  25-100
## 1467        2578                             <NA>             35  25-100
## 1468        2578                             <NA>             35  25-100
## 1469        2578                             <NA>             35  25-100
## 1470        2578                             <NA>             35  25-100
## 1471        2578                             <NA>             35  25-100
## 1472        2578                             <NA>             35  25-100
## 1473        2578                             <NA>             35  25-100
## 1474        2578                             <NA>             35  25-100
## 1475        2578                             <NA>             35  25-100
## 1476        2578                             <NA>             35  25-100
## 1477        2578                             <NA>             35  25-100
## 1478        2578                             <NA>             35  25-100
## 1479        2578                             <NA>             35  25-100
## 1480        2578                             <NA>             35  25-100
## 1481        2578                             <NA>             35  25-100
## 1482        2578                             <NA>             35  25-100
## 1483        2578                             <NA>             35  25-100
## 1484        2578                             <NA>             35  25-100
## 1485        2578                             <NA>             35  25-100
## 1486        2578                             <NA>             35  25-100
## 1487        2578                             <NA>             35  25-100
## 1488        2578                             <NA>             35  25-100
## 1489        2578                             <NA>             35  25-100
## 1490        2578                             <NA>             35  25-100
## 1491        2578                             <NA>             35  25-100
## 1492        2578                             <NA>             35  25-100
## 1493        2578                             <NA>             35  25-100
## 1494        2578                             <NA>             35  25-100
## 1495        2578                             <NA>             35  25-100
## 1496        2578                             <NA>             35  25-100
## 1497        2578                             <NA>             35  25-100
## 1498        2578                             <NA>             35  25-100
## 1499        2578                             <NA>             35  25-100
## 1500        2578                             <NA>             35  25-100
## 1501        2578                             <NA>             35  25-100
## 1502        2578                             <NA>             35  25-100
## 1503        2578                             <NA>             35  25-100
## 1504        2578                             <NA>             35  25-100
## 1505        2578                             <NA>             35  25-100
## 1506        2578                             <NA>             35  25-100
## 1507        2578                             <NA>             35  25-100
## 1508        2578                             <NA>             35  25-100
## 1509        2578                             <NA>             35  25-100
## 1510        2578                             <NA>             35  25-100
## 1511        2578                             <NA>             35  25-100
## 1512        2578                             <NA>             35  25-100
## 1513        2578                             <NA>             35  25-100
## 1514        2578                             <NA>             35  25-100
## 1515        2578                             <NA>             35  25-100
## 1516        2578                             <NA>             35  25-100
## 1517        2578                             <NA>             35  25-100
## 1518        2578                             <NA>             35  25-100
## 1519        2578                             <NA>             35  25-100
## 1520        2578                             <NA>             35  25-100
## 1521        2578                             <NA>             35  25-100
## 1522        2578                             <NA>             35  25-100
## 1523        2578                             <NA>             35  25-100
## 1524        2578                             <NA>             35  25-100
## 1525        2578                             <NA>             35  25-100
## 1526        2665                             <NA>             33  25-100
## 1527        2665                             <NA>             33  25-100
## 1528        2665                             <NA>             33  25-100
## 1529        2665                             <NA>             33  25-100
## 1530        2665                             <NA>             33  25-100
## 1531        2665                             <NA>             33  25-100
## 1532        2665                             <NA>             33  25-100
## 1533        2665                             <NA>             33  25-100
## 1534        2665                             <NA>             33  25-100
## 1535        2665                             <NA>             33  25-100
## 1536        2665                             <NA>             33  25-100
## 1537        2665                             <NA>             33  25-100
## 1538        2665                             <NA>             33  25-100
## 1539        2665                             <NA>             33  25-100
## 1540        2665                             <NA>             33  25-100
## 1541        2665                             <NA>             33  25-100
## 1542        2665                             <NA>             33  25-100
## 1543        2665                             <NA>             33  25-100
## 1544        2665                             <NA>             33  25-100
## 1545        2665                             <NA>             33  25-100
## 1546        2665                             <NA>             33  25-100
## 1547        2665                             <NA>             33  25-100
## 1548        2665                             <NA>             33  25-100
## 1549        2665                             <NA>             33  25-100
## 1550        2665                             <NA>             33  25-100
## 1551        2665                             <NA>             33  25-100
## 1552        2665                             <NA>             33  25-100
## 1553        2665                             <NA>             33  25-100
## 1554        2665                             <NA>             33  25-100
## 1555        2665                             <NA>             33  25-100
## 1556        2665                             <NA>             33  25-100
## 1557        2665                             <NA>             33  25-100
## 1558        2665                             <NA>             33  25-100
## 1559        2665                             <NA>             33  25-100
## 1560        2665                             <NA>             33  25-100
## 1561        2665                             <NA>             33  25-100
## 1562        2665                             <NA>             33  25-100
## 1563        2665                             <NA>             33  25-100
## 1564        2665                             <NA>             33  25-100
## 1565        2665                             <NA>             33  25-100
## 1566        2665                             <NA>             33  25-100
## 1567        2665                             <NA>             33  25-100
## 1568        2665                             <NA>             33  25-100
## 1569        2665                             <NA>             33  25-100
## 1570        2665                             <NA>             33  25-100
## 1571        2665                             <NA>             33  25-100
## 1572        2665                             <NA>             33  25-100
## 1573        2665                             <NA>             33  25-100
## 1574        2665                             <NA>             33  25-100
## 1575        2665                             <NA>             33  25-100
## 1576        2665                             <NA>             33  25-100
## 1577        2665                             <NA>             33  25-100
## 1578        2665                             <NA>             33  25-100
## 1579        2665                             <NA>             33  25-100
## 1580        2665                             <NA>             33  25-100
## 1581        2665                             <NA>             33  25-100
## 1582        2665                             <NA>             33  25-100
## 1583        2665                             <NA>             33  25-100
## 1584        2665                             <NA>             33  25-100
## 1585        2665                             <NA>             33  25-100
## 1586        2665                             <NA>             33  25-100
## 1587        2851                             <NA>            104 100-500
## 1588        2851                             <NA>            104 100-500
## 1589        2851                             <NA>            104 100-500
## 1590        2851                             <NA>            104 100-500
## 1591        2851                             <NA>            104 100-500
## 1592        2851                             <NA>            104 100-500
## 1593        2851                             <NA>            104 100-500
## 1594        2851                             <NA>            104 100-500
## 1595        2851                             <NA>            104 100-500
## 1596        2851                             <NA>            104 100-500
## 1597        2851                             <NA>            104 100-500
## 1598        2851                             <NA>            104 100-500
## 1599        2851                             <NA>            104 100-500
## 1600        2851                             <NA>            104 100-500
## 1601        2851                             <NA>            104 100-500
## 1602        2851                             <NA>            104 100-500
## 1603        2851                             <NA>            104 100-500
## 1604        2851                             <NA>            104 100-500
## 1605        2851                             <NA>            104 100-500
## 1606        2851                             <NA>            104 100-500
## 1607        2851                             <NA>            104 100-500
## 1608        2851                             <NA>            104 100-500
## 1609        2851                             <NA>            104 100-500
## 1610        2851                             <NA>            104 100-500
## 1611        2851                             <NA>            104 100-500
## 1612        2851                             <NA>            104 100-500
## 1613        2851                             <NA>            104 100-500
## 1614        2851                             <NA>            104 100-500
## 1615        2851                             <NA>            104 100-500
## 1616        2851                             <NA>            104 100-500
## 1617        2851                             <NA>            104 100-500
## 1618        2851                             <NA>            104 100-500
## 1619        2851                             <NA>            104 100-500
## 1620        2851                             <NA>            104 100-500
## 1621        2851                             <NA>            104 100-500
## 1622        2851                             <NA>            104 100-500
## 1623        2851                             <NA>            104 100-500
## 1624        2851                             <NA>            104 100-500
## 1625        2851                             <NA>            104 100-500
## 1626        2851                             <NA>            104 100-500
## 1627        2851                             <NA>            104 100-500
## 1628        2851                             <NA>            104 100-500
## 1629        2851                             <NA>            104 100-500
## 1630        2851                             <NA>            104 100-500
## 1631        2851                             <NA>            104 100-500
## 1632        2851                             <NA>            104 100-500
## 1633        2851                             <NA>            104 100-500
## 1634        2851                             <NA>            104 100-500
## 1635        2851                             <NA>            104 100-500
## 1636        2851                             <NA>            104 100-500
## 1637        2851                             <NA>            104 100-500
## 1638        2851                             <NA>            104 100-500
## 1639        2851                             <NA>            104 100-500
## 1640        2851                             <NA>            104 100-500
## 1641        2851                             <NA>            104 100-500
## 1642        2851                             <NA>            104 100-500
## 1643        2851                             <NA>            104 100-500
## 1644        2851                             <NA>            104 100-500
## 1645        2851                             <NA>            104 100-500
## 1646        2851                             <NA>            104 100-500
## 1647        2851                             <NA>            104 100-500
## 1648        3256                             <NA>            184 100-500
## 1649        3256                             <NA>            184 100-500
## 1650        3256                             <NA>            184 100-500
## 1651        3256                             <NA>            184 100-500
## 1652        3256                             <NA>            184 100-500
## 1653        3256                             <NA>            184 100-500
## 1654        3256                             <NA>            184 100-500
## 1655        3256                             <NA>            184 100-500
## 1656        3256                             <NA>            184 100-500
## 1657        3256                             <NA>            184 100-500
## 1658        3256                             <NA>            184 100-500
## 1659        3256                             <NA>            184 100-500
## 1660        3256                             <NA>            184 100-500
## 1661        3256                             <NA>            184 100-500
## 1662        3256                             <NA>            184 100-500
## 1663        3256                             <NA>            184 100-500
## 1664        3256                             <NA>            184 100-500
## 1665        3256                             <NA>            184 100-500
## 1666        3256                             <NA>            184 100-500
## 1667        3256                             <NA>            184 100-500
## 1668        3256                             <NA>            184 100-500
## 1669        3256                             <NA>            184 100-500
## 1670        3256                             <NA>            184 100-500
## 1671        3256                             <NA>            184 100-500
## 1672        3256                             <NA>            184 100-500
## 1673        3256                             <NA>            184 100-500
## 1674        3256                             <NA>            184 100-500
## 1675        3256                             <NA>            184 100-500
## 1676        3256                             <NA>            184 100-500
## 1677        3256                             <NA>            184 100-500
## 1678        3256                             <NA>            184 100-500
## 1679        3256                             <NA>            184 100-500
## 1680        3256                             <NA>            184 100-500
## 1681        3256                             <NA>            184 100-500
## 1682        3256                             <NA>            184 100-500
## 1683        3256                             <NA>            184 100-500
## 1684        3256                             <NA>            184 100-500
## 1685        3256                             <NA>            184 100-500
## 1686        3256                             <NA>            184 100-500
## 1687        3256                             <NA>            184 100-500
## 1688        3256                             <NA>            184 100-500
## 1689        3256                             <NA>            184 100-500
## 1690        3256                             <NA>            184 100-500
## 1691        3256                             <NA>            184 100-500
## 1692        3256                             <NA>            184 100-500
## 1693        3256                             <NA>            184 100-500
## 1694        3256                             <NA>            184 100-500
## 1695        3256                             <NA>            184 100-500
## 1696        3256                             <NA>            184 100-500
## 1697        3256                             <NA>            184 100-500
## 1698        3256                             <NA>            184 100-500
## 1699        3256                             <NA>            184 100-500
## 1700        3256                             <NA>            184 100-500
## 1701        3256                             <NA>            184 100-500
## 1702        3256                             <NA>            184 100-500
## 1703        3256                             <NA>            184 100-500
## 1704        3256                             <NA>            184 100-500
## 1705        3256                             <NA>            184 100-500
## 1706        3256                             <NA>            184 100-500
## 1707        3256                             <NA>            184 100-500
## 1708        3256                             <NA>            184 100-500
## 1709        3303                             <NA>              2     1-2
## 1710        3303                             <NA>              2     1-2
## 1711        3303                             <NA>              2     1-2
## 1712        3303                             <NA>              2     1-2
## 1713        3303                             <NA>              2     1-2
## 1714        3303                             <NA>              2     1-2
## 1715        3303                             <NA>              2     1-2
## 1716        3303                             <NA>              2     1-2
## 1717        3303                             <NA>              2     1-2
## 1718        3303                             <NA>              2     1-2
## 1719        3303                             <NA>              2     1-2
## 1720        3303                             <NA>              2     1-2
## 1721        3303                             <NA>              2     1-2
## 1722        3303                             <NA>              2     1-2
## 1723        3303                             <NA>              2     1-2
## 1724        3303                             <NA>              2     1-2
## 1725        3303                             <NA>              2     1-2
## 1726        3303                             <NA>              2     1-2
## 1727        3303                             <NA>              2     1-2
## 1728        3303                             <NA>              2     1-2
## 1729        3303                             <NA>              2     1-2
## 1730        3303                             <NA>              2     1-2
## 1731        3303                             <NA>              2     1-2
## 1732        3303                             <NA>              2     1-2
## 1733        3303                             <NA>              2     1-2
## 1734        3303                             <NA>              2     1-2
## 1735        3303                             <NA>              2     1-2
## 1736        3303                             <NA>              2     1-2
## 1737        3303                             <NA>              2     1-2
## 1738        3303                             <NA>              2     1-2
## 1739        3303                             <NA>              2     1-2
## 1740        3303                             <NA>              2     1-2
## 1741        3303                             <NA>              2     1-2
## 1742        3303                             <NA>              2     1-2
## 1743        3303                             <NA>              2     1-2
## 1744        3303                             <NA>              2     1-2
## 1745        3303                             <NA>              2     1-2
## 1746        3303                             <NA>              2     1-2
## 1747        3303                             <NA>              2     1-2
## 1748        3303                             <NA>              2     1-2
## 1749        3303                             <NA>              2     1-2
## 1750        3303                             <NA>              2     1-2
## 1751        3303                             <NA>              2     1-2
## 1752        3303                             <NA>              2     1-2
## 1753        3303                             <NA>              2     1-2
## 1754        3303                             <NA>              2     1-2
## 1755        3303                             <NA>              2     1-2
## 1756        3303                             <NA>              2     1-2
## 1757        3303                             <NA>              2     1-2
## 1758        3303                             <NA>              2     1-2
## 1759        3303                             <NA>              2     1-2
## 1760        3303                             <NA>              2     1-2
## 1761        3303                             <NA>              2     1-2
## 1762        3303                             <NA>              2     1-2
## 1763        3303                             <NA>              2     1-2
## 1764        3303                             <NA>              2     1-2
## 1765        3303                             <NA>              2     1-2
## 1766        3303                             <NA>              2     1-2
## 1767        3303                             <NA>              2     1-2
## 1768        3303                             <NA>              2     1-2
## 1769        3303                             <NA>              2     1-2
## 1770        3413                             <NA>              9    3-10
## 1771        3413                             <NA>              9    3-10
## 1772        3413                             <NA>              9    3-10
## 1773        3413                             <NA>              9    3-10
## 1774        3413                             <NA>              9    3-10
## 1775        3413                             <NA>              9    3-10
## 1776        3413                             <NA>              9    3-10
## 1777        3413                             <NA>              9    3-10
## 1778        3413                             <NA>              9    3-10
## 1779        3413                             <NA>              9    3-10
## 1780        3413                             <NA>              9    3-10
## 1781        3413                             <NA>              9    3-10
## 1782        3413                             <NA>              9    3-10
## 1783        3413                             <NA>              9    3-10
## 1784        3413                             <NA>              9    3-10
## 1785        3413                             <NA>              9    3-10
## 1786        3413                             <NA>              9    3-10
## 1787        3413                             <NA>              9    3-10
## 1788        3413                             <NA>              9    3-10
## 1789        3413                             <NA>              9    3-10
## 1790        3413                             <NA>              9    3-10
## 1791        3413                             <NA>              9    3-10
## 1792        3413                             <NA>              9    3-10
## 1793        3413                             <NA>              9    3-10
## 1794        3413                             <NA>              9    3-10
## 1795        3413                             <NA>              9    3-10
## 1796        3413                             <NA>              9    3-10
## 1797        3413                             <NA>              9    3-10
## 1798        3413                             <NA>              9    3-10
## 1799        3413                             <NA>              9    3-10
## 1800        3413                             <NA>              9    3-10
## 1801        3413                             <NA>              9    3-10
## 1802        3413                             <NA>              9    3-10
## 1803        3413                             <NA>              9    3-10
## 1804        3413                             <NA>              9    3-10
## 1805        3413                             <NA>              9    3-10
## 1806        3413                             <NA>              9    3-10
## 1807        3413                             <NA>              9    3-10
## 1808        3413                             <NA>              9    3-10
## 1809        3413                             <NA>              9    3-10
## 1810        3413                             <NA>              9    3-10
## 1811        3413                             <NA>              9    3-10
## 1812        3413                             <NA>              9    3-10
## 1813        3413                             <NA>              9    3-10
## 1814        3413                             <NA>              9    3-10
## 1815        3413                             <NA>              9    3-10
## 1816        3413                             <NA>              9    3-10
## 1817        3413                             <NA>              9    3-10
## 1818        3413                             <NA>              9    3-10
## 1819        3413                             <NA>              9    3-10
## 1820        3413                             <NA>              9    3-10
## 1821        3413                             <NA>              9    3-10
## 1822        3413                             <NA>              9    3-10
## 1823        3413                             <NA>              9    3-10
## 1824        3413                             <NA>              9    3-10
## 1825        3413                             <NA>              9    3-10
## 1826        3413                             <NA>              9    3-10
## 1827        3413                             <NA>              9    3-10
## 1828        3413                             <NA>              9    3-10
## 1829        3413                             <NA>              9    3-10
## 1830        3413                             <NA>              9    3-10
## 1831        3472                             <NA>            320 100-500
## 1832        3472                             <NA>            320 100-500
## 1833        3472                             <NA>            320 100-500
## 1834        3472                             <NA>            320 100-500
## 1835        3472                             <NA>            320 100-500
## 1836        3472                             <NA>            320 100-500
## 1837        3472                             <NA>            320 100-500
## 1838        3472                             <NA>            320 100-500
## 1839        3472                             <NA>            320 100-500
## 1840        3472                             <NA>            320 100-500
## 1841        3472                             <NA>            320 100-500
## 1842        3472                             <NA>            320 100-500
## 1843        3472                             <NA>            320 100-500
## 1844        3472                             <NA>            320 100-500
## 1845        3472                             <NA>            320 100-500
## 1846        3472                             <NA>            320 100-500
## 1847        3472                             <NA>            320 100-500
## 1848        3472                             <NA>            320 100-500
## 1849        3472                             <NA>            320 100-500
## 1850        3472                             <NA>            320 100-500
## 1851        3472                             <NA>            320 100-500
## 1852        3472                             <NA>            320 100-500
## 1853        3472                             <NA>            320 100-500
## 1854        3472                             <NA>            320 100-500
## 1855        3472                             <NA>            320 100-500
## 1856        3472                             <NA>            320 100-500
## 1857        3472                             <NA>            320 100-500
## 1858        3472                             <NA>            320 100-500
## 1859        3472                             <NA>            320 100-500
## 1860        3472                             <NA>            320 100-500
## 1861        3472                             <NA>            320 100-500
## 1862        3472                             <NA>            320 100-500
## 1863        3472                             <NA>            320 100-500
## 1864        3472                             <NA>            320 100-500
## 1865        3472                             <NA>            320 100-500
## 1866        3472                             <NA>            320 100-500
## 1867        3472                             <NA>            320 100-500
## 1868        3472                             <NA>            320 100-500
## 1869        3472                             <NA>            320 100-500
## 1870        3472                             <NA>            320 100-500
## 1871        3472                             <NA>            320 100-500
## 1872        3472                             <NA>            320 100-500
## 1873        3472                             <NA>            320 100-500
## 1874        3472                             <NA>            320 100-500
## 1875        3472                             <NA>            320 100-500
## 1876        3472                             <NA>            320 100-500
## 1877        3472                             <NA>            320 100-500
## 1878        3472                             <NA>            320 100-500
## 1879        3472                             <NA>            320 100-500
## 1880        3472                             <NA>            320 100-500
## 1881        3472                             <NA>            320 100-500
## 1882        3472                             <NA>            320 100-500
## 1883        3472                             <NA>            320 100-500
## 1884        3472                             <NA>            320 100-500
## 1885        3472                             <NA>            320 100-500
## 1886        3472                             <NA>            320 100-500
## 1887        3472                             <NA>            320 100-500
## 1888        3472                             <NA>            320 100-500
## 1889        3472                             <NA>            320 100-500
## 1890        3472                             <NA>            320 100-500
## 1891        3472                             <NA>            320 100-500
## 1892        3861                             <NA>            141 100-500
## 1893        3861                             <NA>            141 100-500
## 1894        3861                             <NA>            141 100-500
## 1895        3861                             <NA>            141 100-500
## 1896        3861                             <NA>            141 100-500
## 1897        3861                             <NA>            141 100-500
## 1898        3861                             <NA>            141 100-500
## 1899        3861                             <NA>            141 100-500
## 1900        3861                             <NA>            141 100-500
## 1901        3861                             <NA>            141 100-500
## 1902        3861                             <NA>            141 100-500
## 1903        3861                             <NA>            141 100-500
## 1904        3861                             <NA>            141 100-500
## 1905        3861                             <NA>            141 100-500
## 1906        3861                             <NA>            141 100-500
## 1907        3861                             <NA>            141 100-500
## 1908        3861                             <NA>            141 100-500
## 1909        3861                             <NA>            141 100-500
## 1910        3861                             <NA>            141 100-500
## 1911        3861                             <NA>            141 100-500
## 1912        3861                             <NA>            141 100-500
## 1913        3861                             <NA>            141 100-500
## 1914        3861                             <NA>            141 100-500
## 1915        3861                             <NA>            141 100-500
## 1916        3861                             <NA>            141 100-500
## 1917        3861                             <NA>            141 100-500
## 1918        3861                             <NA>            141 100-500
## 1919        3861                             <NA>            141 100-500
## 1920        3861                             <NA>            141 100-500
## 1921        3861                             <NA>            141 100-500
## 1922        3861                             <NA>            141 100-500
## 1923        3861                             <NA>            141 100-500
## 1924        3861                             <NA>            141 100-500
## 1925        3861                             <NA>            141 100-500
## 1926        3861                             <NA>            141 100-500
## 1927        3861                             <NA>            141 100-500
## 1928        3861                             <NA>            141 100-500
## 1929        3861                             <NA>            141 100-500
## 1930        3861                             <NA>            141 100-500
## 1931        3861                             <NA>            141 100-500
## 1932        3861                             <NA>            141 100-500
## 1933        3861                             <NA>            141 100-500
## 1934        3861                             <NA>            141 100-500
## 1935        3861                             <NA>            141 100-500
## 1936        3861                             <NA>            141 100-500
## 1937        3861                             <NA>            141 100-500
## 1938        3861                             <NA>            141 100-500
## 1939        3861                             <NA>            141 100-500
## 1940        3861                             <NA>            141 100-500
## 1941        3861                             <NA>            141 100-500
## 1942        3861                             <NA>            141 100-500
## 1943        3861                             <NA>            141 100-500
## 1944        3861                             <NA>            141 100-500
## 1945        3861                             <NA>            141 100-500
## 1946        3861                             <NA>            141 100-500
## 1947        3861                             <NA>            141 100-500
## 1948        3861                             <NA>            141 100-500
## 1949        3861                             <NA>            141 100-500
## 1950        3861                             <NA>            141 100-500
## 1951        3861                             <NA>            141 100-500
## 1952        3861                             <NA>            141 100-500
## 1953        3953                             <NA>            114 100-500
## 1954        3953                             <NA>            114 100-500
## 1955        3953                             <NA>            114 100-500
## 1956        3953                             <NA>            114 100-500
## 1957        3953                             <NA>            114 100-500
## 1958        3953                             <NA>            114 100-500
## 1959        3953                             <NA>            114 100-500
## 1960        3953                             <NA>            114 100-500
## 1961        3953                             <NA>            114 100-500
## 1962        3953                             <NA>            114 100-500
## 1963        3953                             <NA>            114 100-500
## 1964        3953                             <NA>            114 100-500
## 1965        3953                             <NA>            114 100-500
## 1966        3953                             <NA>            114 100-500
## 1967        3953                             <NA>            114 100-500
## 1968        3953                             <NA>            114 100-500
## 1969        3953                             <NA>            114 100-500
## 1970        3953                             <NA>            114 100-500
## 1971        3953                             <NA>            114 100-500
## 1972        3953                             <NA>            114 100-500
## 1973        3953                             <NA>            114 100-500
## 1974        3953                             <NA>            114 100-500
## 1975        3953                             <NA>            114 100-500
## 1976        3953                             <NA>            114 100-500
## 1977        3953                             <NA>            114 100-500
## 1978        3953                             <NA>            114 100-500
## 1979        3953                             <NA>            114 100-500
## 1980        3953                             <NA>            114 100-500
## 1981        3953                             <NA>            114 100-500
## 1982        3953                             <NA>            114 100-500
## 1983        3953                             <NA>            114 100-500
## 1984        3953                             <NA>            114 100-500
## 1985        3953                             <NA>            114 100-500
## 1986        3953                             <NA>            114 100-500
## 1987        3953                             <NA>            114 100-500
## 1988        3953                             <NA>            114 100-500
## 1989        3953                             <NA>            114 100-500
## 1990        3953                             <NA>            114 100-500
## 1991        3953                             <NA>            114 100-500
## 1992        3953                             <NA>            114 100-500
## 1993        3953                             <NA>            114 100-500
## 1994        3953                             <NA>            114 100-500
## 1995        3953                             <NA>            114 100-500
## 1996        3953                             <NA>            114 100-500
## 1997        3953                             <NA>            114 100-500
## 1998        3953                             <NA>            114 100-500
## 1999        3953                             <NA>            114 100-500
## 2000        3953                             <NA>            114 100-500
## 2001        3953                             <NA>            114 100-500
## 2002        3953                             <NA>            114 100-500
## 2003        3953                             <NA>            114 100-500
## 2004        3953                             <NA>            114 100-500
## 2005        3953                             <NA>            114 100-500
## 2006        3953                             <NA>            114 100-500
## 2007        3953                             <NA>            114 100-500
## 2008        3953                             <NA>            114 100-500
## 2009        3953                             <NA>            114 100-500
## 2010        3953                             <NA>            114 100-500
## 2011        3953                             <NA>            114 100-500
## 2012        3953                             <NA>            114 100-500
## 2013        3953                             <NA>            114 100-500
## 2014        3954                             <NA>            406 100-500
## 2015        3954                             <NA>            406 100-500
## 2016        3954                             <NA>            406 100-500
## 2017        3954                             <NA>            406 100-500
## 2018        3954                             <NA>            406 100-500
## 2019        3954                             <NA>            406 100-500
## 2020        3954                             <NA>            406 100-500
## 2021        3954                             <NA>            406 100-500
## 2022        3954                             <NA>            406 100-500
## 2023        3954                             <NA>            406 100-500
## 2024        3954                             <NA>            406 100-500
## 2025        3954                             <NA>            406 100-500
## 2026        3954                             <NA>            406 100-500
## 2027        3954                             <NA>            406 100-500
## 2028        3954                             <NA>            406 100-500
## 2029        3954                             <NA>            406 100-500
## 2030        3954                             <NA>            406 100-500
## 2031        3954                             <NA>            406 100-500
## 2032        3954                             <NA>            406 100-500
## 2033        3954                             <NA>            406 100-500
## 2034        3954                             <NA>            406 100-500
## 2035        3954                             <NA>            406 100-500
## 2036        3954                             <NA>            406 100-500
## 2037        3954                             <NA>            406 100-500
## 2038        3954                             <NA>            406 100-500
## 2039        3954                             <NA>            406 100-500
## 2040        3954                             <NA>            406 100-500
## 2041        3954                             <NA>            406 100-500
## 2042        3954                             <NA>            406 100-500
## 2043        3954                             <NA>            406 100-500
## 2044        3954                             <NA>            406 100-500
## 2045        3954                             <NA>            406 100-500
## 2046        3954                             <NA>            406 100-500
## 2047        3954                             <NA>            406 100-500
## 2048        3954                             <NA>            406 100-500
## 2049        3954                             <NA>            406 100-500
## 2050        3954                             <NA>            406 100-500
## 2051        3954                             <NA>            406 100-500
## 2052        3954                             <NA>            406 100-500
## 2053        3954                             <NA>            406 100-500
## 2054        3954                             <NA>            406 100-500
## 2055        3954                             <NA>            406 100-500
## 2056        3954                             <NA>            406 100-500
## 2057        3954                             <NA>            406 100-500
## 2058        3954                             <NA>            406 100-500
## 2059        3954                             <NA>            406 100-500
## 2060        3954                             <NA>            406 100-500
## 2061        3954                             <NA>            406 100-500
## 2062        3954                             <NA>            406 100-500
## 2063        3954                             <NA>            406 100-500
## 2064        3954                             <NA>            406 100-500
## 2065        3954                             <NA>            406 100-500
## 2066        3954                             <NA>            406 100-500
## 2067        3954                             <NA>            406 100-500
## 2068        3954                             <NA>            406 100-500
## 2069        3954                             <NA>            406 100-500
## 2070        3954                             <NA>            406 100-500
## 2071        3954                             <NA>            406 100-500
## 2072        3954                             <NA>            406 100-500
## 2073        3954                             <NA>            406 100-500
## 2074        3954                             <NA>            406 100-500
## 2075        4113                     Good Article            225 100-500
## 2076        4113                     Good Article            225 100-500
## 2077        4113                     Good Article            225 100-500
## 2078        4113                     Good Article            225 100-500
## 2079        4113                     Good Article            225 100-500
## 2080        4113                     Good Article            225 100-500
## 2081        4113                     Good Article            225 100-500
## 2082        4113                     Good Article            225 100-500
## 2083        4113                     Good Article            225 100-500
## 2084        4113                     Good Article            225 100-500
## 2085        4113                     Good Article            225 100-500
## 2086        4113                     Good Article            225 100-500
## 2087        4113                     Good Article            225 100-500
## 2088        4113                     Good Article            225 100-500
## 2089        4113                     Good Article            225 100-500
## 2090        4113                     Good Article            225 100-500
## 2091        4113                     Good Article            225 100-500
## 2092        4113                     Good Article            225 100-500
## 2093        4113                     Good Article            225 100-500
## 2094        4113                     Good Article            225 100-500
## 2095        4113                     Good Article            225 100-500
## 2096        4113                     Good Article            225 100-500
## 2097        4113                     Good Article            225 100-500
## 2098        4113                     Good Article            225 100-500
## 2099        4113                     Good Article            225 100-500
## 2100        4113                     Good Article            225 100-500
## 2101        4113                     Good Article            225 100-500
## 2102        4113                     Good Article            225 100-500
## 2103        4113                     Good Article            225 100-500
## 2104        4113                     Good Article            225 100-500
## 2105        4113                     Good Article            225 100-500
## 2106        4113                     Good Article            225 100-500
## 2107        4113                     Good Article            225 100-500
## 2108        4113                     Good Article            225 100-500
## 2109        4113                     Good Article            225 100-500
## 2110        4113                     Good Article            225 100-500
## 2111        4113                     Good Article            225 100-500
## 2112        4113                     Good Article            225 100-500
## 2113        4113                     Good Article            225 100-500
## 2114        4113                     Good Article            225 100-500
## 2115        4113                     Good Article            225 100-500
## 2116        4113                     Good Article            225 100-500
## 2117        4113                     Good Article            225 100-500
## 2118        4113                     Good Article            225 100-500
## 2119        4113                     Good Article            225 100-500
## 2120        4113                     Good Article            225 100-500
## 2121        4113                     Good Article            225 100-500
## 2122        4113                     Good Article            225 100-500
## 2123        4113                     Good Article            225 100-500
## 2124        4113                     Good Article            225 100-500
## 2125        4113                     Good Article            225 100-500
## 2126        4113                     Good Article            225 100-500
## 2127        4113                     Good Article            225 100-500
## 2128        4113                     Good Article            225 100-500
## 2129        4113                     Good Article            225 100-500
## 2130        4113                     Good Article            225 100-500
## 2131        4113                     Good Article            225 100-500
## 2132        4113                     Good Article            225 100-500
## 2133        4113                     Good Article            225 100-500
## 2134        4113                     Good Article            225 100-500
## 2135        4113                     Good Article            225 100-500
## 2136        4260                             <NA>            101 100-500
## 2137        4260                             <NA>            101 100-500
## 2138        4260                             <NA>            101 100-500
## 2139        4260                             <NA>            101 100-500
## 2140        4260                             <NA>            101 100-500
## 2141        4260                             <NA>            101 100-500
## 2142        4260                             <NA>            101 100-500
## 2143        4260                             <NA>            101 100-500
## 2144        4260                             <NA>            101 100-500
## 2145        4260                             <NA>            101 100-500
## 2146        4260                             <NA>            101 100-500
## 2147        4260                             <NA>            101 100-500
## 2148        4260                             <NA>            101 100-500
## 2149        4260                             <NA>            101 100-500
## 2150        4260                             <NA>            101 100-500
## 2151        4260                             <NA>            101 100-500
## 2152        4260                             <NA>            101 100-500
## 2153        4260                             <NA>            101 100-500
## 2154        4260                             <NA>            101 100-500
## 2155        4260                             <NA>            101 100-500
## 2156        4260                             <NA>            101 100-500
## 2157        4260                             <NA>            101 100-500
## 2158        4260                             <NA>            101 100-500
## 2159        4260                             <NA>            101 100-500
## 2160        4260                             <NA>            101 100-500
## 2161        4260                             <NA>            101 100-500
## 2162        4260                             <NA>            101 100-500
## 2163        4260                             <NA>            101 100-500
## 2164        4260                             <NA>            101 100-500
## 2165        4260                             <NA>            101 100-500
## 2166        4260                             <NA>            101 100-500
## 2167        4260                             <NA>            101 100-500
## 2168        4260                             <NA>            101 100-500
## 2169        4260                             <NA>            101 100-500
## 2170        4260                             <NA>            101 100-500
## 2171        4260                             <NA>            101 100-500
## 2172        4260                             <NA>            101 100-500
## 2173        4260                             <NA>            101 100-500
## 2174        4260                             <NA>            101 100-500
## 2175        4260                             <NA>            101 100-500
## 2176        4260                             <NA>            101 100-500
## 2177        4260                             <NA>            101 100-500
## 2178        4260                             <NA>            101 100-500
## 2179        4260                             <NA>            101 100-500
## 2180        4260                             <NA>            101 100-500
## 2181        4260                             <NA>            101 100-500
## 2182        4260                             <NA>            101 100-500
## 2183        4260                             <NA>            101 100-500
## 2184        4260                             <NA>            101 100-500
## 2185        4260                             <NA>            101 100-500
## 2186        4260                             <NA>            101 100-500
## 2187        4260                             <NA>            101 100-500
## 2188        4260                             <NA>            101 100-500
## 2189        4260                             <NA>            101 100-500
## 2190        4260                             <NA>            101 100-500
## 2191        4260                             <NA>            101 100-500
## 2192        4260                             <NA>            101 100-500
## 2193        4260                             <NA>            101 100-500
## 2194        4260                             <NA>            101 100-500
## 2195        4260                             <NA>            101 100-500
## 2196        4260                             <NA>            101 100-500
## 2197        4666                             <NA>             20   10-25
## 2198        4666                             <NA>             20   10-25
## 2199        4666                             <NA>             20   10-25
## 2200        4666                             <NA>             20   10-25
## 2201        4666                             <NA>             20   10-25
## 2202        4666                             <NA>             20   10-25
## 2203        4666                             <NA>             20   10-25
## 2204        4666                             <NA>             20   10-25
## 2205        4666                             <NA>             20   10-25
## 2206        4666                             <NA>             20   10-25
## 2207        4666                             <NA>             20   10-25
## 2208        4666                             <NA>             20   10-25
## 2209        4666                             <NA>             20   10-25
## 2210        4666                             <NA>             20   10-25
## 2211        4666                             <NA>             20   10-25
## 2212        4666                             <NA>             20   10-25
## 2213        4666                             <NA>             20   10-25
## 2214        4666                             <NA>             20   10-25
## 2215        4666                             <NA>             20   10-25
## 2216        4666                             <NA>             20   10-25
## 2217        4666                             <NA>             20   10-25
## 2218        4666                             <NA>             20   10-25
## 2219        4666                             <NA>             20   10-25
## 2220        4666                             <NA>             20   10-25
## 2221        4666                             <NA>             20   10-25
## 2222        4666                             <NA>             20   10-25
## 2223        4666                             <NA>             20   10-25
## 2224        4666                             <NA>             20   10-25
## 2225        4666                             <NA>             20   10-25
## 2226        4666                             <NA>             20   10-25
## 2227        4666                             <NA>             20   10-25
## 2228        4666                             <NA>             20   10-25
## 2229        4666                             <NA>             20   10-25
## 2230        4666                             <NA>             20   10-25
## 2231        4666                             <NA>             20   10-25
## 2232        4666                             <NA>             20   10-25
## 2233        4666                             <NA>             20   10-25
## 2234        4666                             <NA>             20   10-25
## 2235        4666                             <NA>             20   10-25
## 2236        4666                             <NA>             20   10-25
## 2237        4666                             <NA>             20   10-25
## 2238        4666                             <NA>             20   10-25
## 2239        4666                             <NA>             20   10-25
## 2240        4666                             <NA>             20   10-25
## 2241        4666                             <NA>             20   10-25
## 2242        4666                             <NA>             20   10-25
## 2243        4666                             <NA>             20   10-25
## 2244        4666                             <NA>             20   10-25
## 2245        4666                             <NA>             20   10-25
## 2246        4666                             <NA>             20   10-25
## 2247        4666                             <NA>             20   10-25
## 2248        4666                             <NA>             20   10-25
## 2249        4666                             <NA>             20   10-25
## 2250        4666                             <NA>             20   10-25
## 2251        4666                             <NA>             20   10-25
## 2252        4666                             <NA>             20   10-25
## 2253        4666                             <NA>             20   10-25
## 2254        4666                             <NA>             20   10-25
## 2255        4666                             <NA>             20   10-25
## 2256        4666                             <NA>             20   10-25
## 2257        4666                             <NA>             20   10-25
## 2258        4691                             <NA>            114 100-500
## 2259        4691                             <NA>            114 100-500
## 2260        4691                             <NA>            114 100-500
## 2261        4691                             <NA>            114 100-500
## 2262        4691                             <NA>            114 100-500
## 2263        4691                             <NA>            114 100-500
## 2264        4691                             <NA>            114 100-500
## 2265        4691                             <NA>            114 100-500
## 2266        4691                             <NA>            114 100-500
## 2267        4691                             <NA>            114 100-500
## 2268        4691                             <NA>            114 100-500
## 2269        4691                             <NA>            114 100-500
## 2270        4691                             <NA>            114 100-500
## 2271        4691                             <NA>            114 100-500
## 2272        4691                             <NA>            114 100-500
## 2273        4691                             <NA>            114 100-500
## 2274        4691                             <NA>            114 100-500
## 2275        4691                             <NA>            114 100-500
## 2276        4691                             <NA>            114 100-500
## 2277        4691                             <NA>            114 100-500
## 2278        4691                             <NA>            114 100-500
## 2279        4691                             <NA>            114 100-500
## 2280        4691                             <NA>            114 100-500
## 2281        4691                             <NA>            114 100-500
## 2282        4691                             <NA>            114 100-500
## 2283        4691                             <NA>            114 100-500
## 2284        4691                             <NA>            114 100-500
## 2285        4691                             <NA>            114 100-500
## 2286        4691                             <NA>            114 100-500
## 2287        4691                             <NA>            114 100-500
## 2288        4691                             <NA>            114 100-500
## 2289        4691                             <NA>            114 100-500
## 2290        4691                             <NA>            114 100-500
## 2291        4691                             <NA>            114 100-500
## 2292        4691                             <NA>            114 100-500
## 2293        4691                             <NA>            114 100-500
## 2294        4691                             <NA>            114 100-500
## 2295        4691                             <NA>            114 100-500
## 2296        4691                             <NA>            114 100-500
## 2297        4691                             <NA>            114 100-500
## 2298        4691                             <NA>            114 100-500
## 2299        4691                             <NA>            114 100-500
## 2300        4691                             <NA>            114 100-500
## 2301        4691                             <NA>            114 100-500
## 2302        4691                             <NA>            114 100-500
## 2303        4691                             <NA>            114 100-500
## 2304        4691                             <NA>            114 100-500
## 2305        4691                             <NA>            114 100-500
## 2306        4691                             <NA>            114 100-500
## 2307        4691                             <NA>            114 100-500
## 2308        4691                             <NA>            114 100-500
## 2309        4691                             <NA>            114 100-500
## 2310        4691                             <NA>            114 100-500
## 2311        4691                             <NA>            114 100-500
## 2312        4691                             <NA>            114 100-500
## 2313        4691                             <NA>            114 100-500
## 2314        4691                             <NA>            114 100-500
## 2315        4691                             <NA>            114 100-500
## 2316        4691                             <NA>            114 100-500
## 2317        4691                             <NA>            114 100-500
## 2318        4691                             <NA>            114 100-500
## 2319        4760                             <NA>             84  25-100
## 2320        4760                             <NA>             84  25-100
## 2321        4760                             <NA>             84  25-100
## 2322        4760                             <NA>             84  25-100
## 2323        4760                             <NA>             84  25-100
## 2324        4760                             <NA>             84  25-100
## 2325        4760                             <NA>             84  25-100
## 2326        4760                             <NA>             84  25-100
## 2327        4760                             <NA>             84  25-100
## 2328        4760                             <NA>             84  25-100
## 2329        4760                             <NA>             84  25-100
## 2330        4760                             <NA>             84  25-100
## 2331        4760                             <NA>             84  25-100
## 2332        4760                             <NA>             84  25-100
## 2333        4760                             <NA>             84  25-100
## 2334        4760                             <NA>             84  25-100
## 2335        4760                             <NA>             84  25-100
## 2336        4760                             <NA>             84  25-100
## 2337        4760                             <NA>             84  25-100
## 2338        4760                             <NA>             84  25-100
## 2339        4760                             <NA>             84  25-100
## 2340        4760                             <NA>             84  25-100
## 2341        4760                             <NA>             84  25-100
## 2342        4760                             <NA>             84  25-100
## 2343        4760                             <NA>             84  25-100
## 2344        4760                             <NA>             84  25-100
## 2345        4760                             <NA>             84  25-100
## 2346        4760                             <NA>             84  25-100
## 2347        4760                             <NA>             84  25-100
## 2348        4760                             <NA>             84  25-100
## 2349        4760                             <NA>             84  25-100
## 2350        4760                             <NA>             84  25-100
## 2351        4760                             <NA>             84  25-100
## 2352        4760                             <NA>             84  25-100
## 2353        4760                             <NA>             84  25-100
## 2354        4760                             <NA>             84  25-100
## 2355        4760                             <NA>             84  25-100
## 2356        4760                             <NA>             84  25-100
## 2357        4760                             <NA>             84  25-100
## 2358        4760                             <NA>             84  25-100
## 2359        4760                             <NA>             84  25-100
## 2360        4760                             <NA>             84  25-100
## 2361        4760                             <NA>             84  25-100
## 2362        4760                             <NA>             84  25-100
## 2363        4760                             <NA>             84  25-100
## 2364        4760                             <NA>             84  25-100
## 2365        4760                             <NA>             84  25-100
## 2366        4760                             <NA>             84  25-100
## 2367        4760                             <NA>             84  25-100
## 2368        4760                             <NA>             84  25-100
## 2369        4760                             <NA>             84  25-100
## 2370        4760                             <NA>             84  25-100
## 2371        4760                             <NA>             84  25-100
## 2372        4760                             <NA>             84  25-100
## 2373        4760                             <NA>             84  25-100
## 2374        4760                             <NA>             84  25-100
## 2375        4760                             <NA>             84  25-100
## 2376        4760                             <NA>             84  25-100
## 2377        4760                             <NA>             84  25-100
## 2378        4760                             <NA>             84  25-100
## 2379        4760                             <NA>             84  25-100
## 2380        5356                             <NA>              7    3-10
## 2381        5356                             <NA>              7    3-10
## 2382        5356                             <NA>              7    3-10
## 2383        5356                             <NA>              7    3-10
## 2384        5356                             <NA>              7    3-10
## 2385        5356                             <NA>              7    3-10
## 2386        5356                             <NA>              7    3-10
## 2387        5356                             <NA>              7    3-10
## 2388        5356                             <NA>              7    3-10
## 2389        5356                             <NA>              7    3-10
## 2390        5356                             <NA>              7    3-10
## 2391        5356                             <NA>              7    3-10
## 2392        5356                             <NA>              7    3-10
## 2393        5356                             <NA>              7    3-10
## 2394        5356                             <NA>              7    3-10
## 2395        5356                             <NA>              7    3-10
## 2396        5356                             <NA>              7    3-10
## 2397        5356                             <NA>              7    3-10
## 2398        5356                             <NA>              7    3-10
## 2399        5356                             <NA>              7    3-10
## 2400        5356                             <NA>              7    3-10
## 2401        5356                             <NA>              7    3-10
## 2402        5356                             <NA>              7    3-10
## 2403        5356                             <NA>              7    3-10
## 2404        5356                             <NA>              7    3-10
## 2405        5356                             <NA>              7    3-10
## 2406        5356                             <NA>              7    3-10
## 2407        5356                             <NA>              7    3-10
## 2408        5356                             <NA>              7    3-10
## 2409        5356                             <NA>              7    3-10
## 2410        5356                             <NA>              7    3-10
## 2411        5356                             <NA>              7    3-10
## 2412        5356                             <NA>              7    3-10
## 2413        5356                             <NA>              7    3-10
## 2414        5356                             <NA>              7    3-10
## 2415        5356                             <NA>              7    3-10
## 2416        5356                             <NA>              7    3-10
## 2417        5356                             <NA>              7    3-10
## 2418        5356                             <NA>              7    3-10
## 2419        5356                             <NA>              7    3-10
## 2420        5356                             <NA>              7    3-10
## 2421        5356                             <NA>              7    3-10
## 2422        5356                             <NA>              7    3-10
## 2423        5356                             <NA>              7    3-10
## 2424        5356                             <NA>              7    3-10
## 2425        5356                             <NA>              7    3-10
## 2426        5356                             <NA>              7    3-10
## 2427        5356                             <NA>              7    3-10
## 2428        5356                             <NA>              7    3-10
## 2429        5356                             <NA>              7    3-10
## 2430        5356                             <NA>              7    3-10
## 2431        5356                             <NA>              7    3-10
## 2432        5356                             <NA>              7    3-10
## 2433        5356                             <NA>              7    3-10
## 2434        5356                             <NA>              7    3-10
## 2435        5356                             <NA>              7    3-10
## 2436        5356                             <NA>              7    3-10
## 2437        5356                             <NA>              7    3-10
## 2438        5356                             <NA>              7    3-10
## 2439        5356                             <NA>              7    3-10
## 2440        5356                             <NA>              7    3-10
## 2441        5369                     Good Article              8    3-10
## 2442        5369                     Good Article              8    3-10
## 2443        5369                     Good Article              8    3-10
## 2444        5369                     Good Article              8    3-10
## 2445        5369                     Good Article              8    3-10
## 2446        5369                     Good Article              8    3-10
## 2447        5369                     Good Article              8    3-10
## 2448        5369                     Good Article              8    3-10
## 2449        5369                     Good Article              8    3-10
## 2450        5369                     Good Article              8    3-10
## 2451        5369                     Good Article              8    3-10
## 2452        5369                     Good Article              8    3-10
## 2453        5369                     Good Article              8    3-10
## 2454        5369                     Good Article              8    3-10
## 2455        5369                     Good Article              8    3-10
## 2456        5369                     Good Article              8    3-10
## 2457        5369                     Good Article              8    3-10
## 2458        5369                     Good Article              8    3-10
## 2459        5369                     Good Article              8    3-10
## 2460        5369                     Good Article              8    3-10
## 2461        5369                     Good Article              8    3-10
## 2462        5369                     Good Article              8    3-10
## 2463        5369                     Good Article              8    3-10
## 2464        5369                     Good Article              8    3-10
## 2465        5369                     Good Article              8    3-10
## 2466        5369                     Good Article              8    3-10
## 2467        5369                     Good Article              8    3-10
## 2468        5369                     Good Article              8    3-10
## 2469        5369                     Good Article              8    3-10
## 2470        5369                     Good Article              8    3-10
## 2471        5369                     Good Article              8    3-10
## 2472        5369                     Good Article              8    3-10
## 2473        5369                     Good Article              8    3-10
## 2474        5369                     Good Article              8    3-10
## 2475        5369                     Good Article              8    3-10
## 2476        5369                     Good Article              8    3-10
## 2477        5369                     Good Article              8    3-10
## 2478        5369                     Good Article              8    3-10
## 2479        5369                     Good Article              8    3-10
## 2480        5369                     Good Article              8    3-10
## 2481        5369                     Good Article              8    3-10
## 2482        5369                     Good Article              8    3-10
## 2483        5369                     Good Article              8    3-10
## 2484        5369                     Good Article              8    3-10
## 2485        5369                     Good Article              8    3-10
## 2486        5369                     Good Article              8    3-10
## 2487        5369                     Good Article              8    3-10
## 2488        5369                     Good Article              8    3-10
## 2489        5369                     Good Article              8    3-10
## 2490        5369                     Good Article              8    3-10
## 2491        5369                     Good Article              8    3-10
## 2492        5369                     Good Article              8    3-10
## 2493        5369                     Good Article              8    3-10
## 2494        5369                     Good Article              8    3-10
## 2495        5369                     Good Article              8    3-10
## 2496        5369                     Good Article              8    3-10
## 2497        5369                     Good Article              8    3-10
## 2498        5369                     Good Article              8    3-10
## 2499        5369                     Good Article              8    3-10
## 2500        5369                     Good Article              8    3-10
## 2501        5369                     Good Article              8    3-10
## 2502        5419    Partially Protected - Default             77  25-100
## 2503        5419    Partially Protected - Default             77  25-100
## 2504        5419    Partially Protected - Default             77  25-100
## 2505        5419    Partially Protected - Default             77  25-100
## 2506        5419    Partially Protected - Default             77  25-100
## 2507        5419    Partially Protected - Default             77  25-100
## 2508        5419    Partially Protected - Default             77  25-100
## 2509        5419    Partially Protected - Default             77  25-100
## 2510        5419    Partially Protected - Default             77  25-100
## 2511        5419    Partially Protected - Default             77  25-100
## 2512        5419    Partially Protected - Default             77  25-100
## 2513        5419    Partially Protected - Default             77  25-100
## 2514        5419    Partially Protected - Default             77  25-100
## 2515        5419    Partially Protected - Default             77  25-100
## 2516        5419    Partially Protected - Default             77  25-100
## 2517        5419    Partially Protected - Default             77  25-100
## 2518        5419    Partially Protected - Default             77  25-100
## 2519        5419    Partially Protected - Default             77  25-100
## 2520        5419    Partially Protected - Default             77  25-100
## 2521        5419    Partially Protected - Default             77  25-100
## 2522        5419    Partially Protected - Default             77  25-100
## 2523        5419    Partially Protected - Default             77  25-100
## 2524        5419    Partially Protected - Default             77  25-100
## 2525        5419    Partially Protected - Default             77  25-100
## 2526        5419    Partially Protected - Default             77  25-100
## 2527        5419    Partially Protected - Default             77  25-100
## 2528        5419    Partially Protected - Default             77  25-100
## 2529        5419    Partially Protected - Default             77  25-100
## 2530        5419    Partially Protected - Default             77  25-100
## 2531        5419    Partially Protected - Default             77  25-100
## 2532        5419    Partially Protected - Default             77  25-100
## 2533        5419    Partially Protected - Default             77  25-100
## 2534        5419    Partially Protected - Default             77  25-100
## 2535        5419    Partially Protected - Default             77  25-100
## 2536        5419    Partially Protected - Default             77  25-100
## 2537        5419    Partially Protected - Default             77  25-100
## 2538        5419    Partially Protected - Default             77  25-100
## 2539        5419    Partially Protected - Default             77  25-100
## 2540        5419    Partially Protected - Default             77  25-100
## 2541        5419    Partially Protected - Default             77  25-100
## 2542        5419    Partially Protected - Default             77  25-100
## 2543        5419    Partially Protected - Default             77  25-100
## 2544        5419    Partially Protected - Default             77  25-100
## 2545        5419    Partially Protected - Default             77  25-100
## 2546        5419    Partially Protected - Default             77  25-100
## 2547        5419    Partially Protected - Default             77  25-100
## 2548        5419    Partially Protected - Default             77  25-100
## 2549        5419    Partially Protected - Default             77  25-100
## 2550        5419    Partially Protected - Default             77  25-100
## 2551        5419    Partially Protected - Default             77  25-100
## 2552        5419    Partially Protected - Default             77  25-100
## 2553        5419    Partially Protected - Default             77  25-100
## 2554        5419    Partially Protected - Default             77  25-100
## 2555        5419    Partially Protected - Default             77  25-100
## 2556        5419    Partially Protected - Default             77  25-100
## 2557        5419    Partially Protected - Default             77  25-100
## 2558        5419    Partially Protected - Default             77  25-100
## 2559        5419    Partially Protected - Default             77  25-100
## 2560        5419    Partially Protected - Default             77  25-100
## 2561        5419    Partially Protected - Default             77  25-100
## 2562        5419    Partially Protected - Default             77  25-100
## 2563        5567                             <NA>             64  25-100
## 2564        5567                             <NA>             64  25-100
## 2565        5567                             <NA>             64  25-100
## 2566        5567                             <NA>             64  25-100
## 2567        5567                             <NA>             64  25-100
## 2568        5567                             <NA>             64  25-100
## 2569        5567                             <NA>             64  25-100
## 2570        5567                             <NA>             64  25-100
## 2571        5567                             <NA>             64  25-100
## 2572        5567                             <NA>             64  25-100
## 2573        5567                             <NA>             64  25-100
## 2574        5567                             <NA>             64  25-100
## 2575        5567                             <NA>             64  25-100
## 2576        5567                             <NA>             64  25-100
## 2577        5567                             <NA>             64  25-100
## 2578        5567                             <NA>             64  25-100
## 2579        5567                             <NA>             64  25-100
## 2580        5567                             <NA>             64  25-100
## 2581        5567                             <NA>             64  25-100
## 2582        5567                             <NA>             64  25-100
## 2583        5567                             <NA>             64  25-100
## 2584        5567                             <NA>             64  25-100
## 2585        5567                             <NA>             64  25-100
## 2586        5567                             <NA>             64  25-100
## 2587        5567                             <NA>             64  25-100
## 2588        5567                             <NA>             64  25-100
## 2589        5567                             <NA>             64  25-100
## 2590        5567                             <NA>             64  25-100
## 2591        5567                             <NA>             64  25-100
## 2592        5567                             <NA>             64  25-100
## 2593        5567                             <NA>             64  25-100
## 2594        5567                             <NA>             64  25-100
## 2595        5567                             <NA>             64  25-100
## 2596        5567                             <NA>             64  25-100
## 2597        5567                             <NA>             64  25-100
## 2598        5567                             <NA>             64  25-100
## 2599        5567                             <NA>             64  25-100
## 2600        5567                             <NA>             64  25-100
## 2601        5567                             <NA>             64  25-100
## 2602        5567                             <NA>             64  25-100
## 2603        5567                             <NA>             64  25-100
## 2604        5567                             <NA>             64  25-100
## 2605        5567                             <NA>             64  25-100
## 2606        5567                             <NA>             64  25-100
## 2607        5567                             <NA>             64  25-100
## 2608        5567                             <NA>             64  25-100
## 2609        5567                             <NA>             64  25-100
## 2610        5567                             <NA>             64  25-100
## 2611        5567                             <NA>             64  25-100
## 2612        5567                             <NA>             64  25-100
## 2613        5567                             <NA>             64  25-100
## 2614        5567                             <NA>             64  25-100
## 2615        5567                             <NA>             64  25-100
## 2616        5567                             <NA>             64  25-100
## 2617        5567                             <NA>             64  25-100
## 2618        5567                             <NA>             64  25-100
## 2619        5567                             <NA>             64  25-100
## 2620        5567                             <NA>             64  25-100
## 2621        5567                             <NA>             64  25-100
## 2622        5567                             <NA>             64  25-100
## 2623        5567                             <NA>             64  25-100
## 2624        5751                             <NA>           1869    500-
## 2625        5751                             <NA>           1869    500-
## 2626        5751                             <NA>           1869    500-
## 2627        5751                             <NA>           1869    500-
## 2628        5751                             <NA>           1869    500-
## 2629        5751                             <NA>           1869    500-
## 2630        5751                             <NA>           1869    500-
## 2631        5751                             <NA>           1869    500-
## 2632        5751                             <NA>           1869    500-
## 2633        5751                             <NA>           1869    500-
## 2634        5751                             <NA>           1869    500-
## 2635        5751                             <NA>           1869    500-
## 2636        5751                             <NA>           1869    500-
## 2637        5751                             <NA>           1869    500-
## 2638        5751                             <NA>           1869    500-
## 2639        5751                             <NA>           1869    500-
## 2640        5751                             <NA>           1869    500-
## 2641        5751                             <NA>           1869    500-
## 2642        5751                             <NA>           1869    500-
## 2643        5751                             <NA>           1869    500-
## 2644        5751                             <NA>           1869    500-
## 2645        5751                             <NA>           1869    500-
## 2646        5751                             <NA>           1869    500-
## 2647        5751                             <NA>           1869    500-
## 2648        5751                             <NA>           1869    500-
## 2649        5751                             <NA>           1869    500-
## 2650        5751                             <NA>           1869    500-
## 2651        5751                             <NA>           1869    500-
## 2652        5751                             <NA>           1869    500-
## 2653        5751                             <NA>           1869    500-
## 2654        5751                             <NA>           1869    500-
## 2655        5751                             <NA>           1869    500-
## 2656        5751                             <NA>           1869    500-
## 2657        5751                             <NA>           1869    500-
## 2658        5751                             <NA>           1869    500-
## 2659        5751                             <NA>           1869    500-
## 2660        5751                             <NA>           1869    500-
## 2661        5751                             <NA>           1869    500-
## 2662        5751                             <NA>           1869    500-
## 2663        5751                             <NA>           1869    500-
## 2664        5751                             <NA>           1869    500-
## 2665        5751                             <NA>           1869    500-
## 2666        5751                             <NA>           1869    500-
## 2667        5751                             <NA>           1869    500-
## 2668        5751                             <NA>           1869    500-
## 2669        5751                             <NA>           1869    500-
## 2670        5751                             <NA>           1869    500-
## 2671        5751                             <NA>           1869    500-
## 2672        5751                             <NA>           1869    500-
## 2673        5751                             <NA>           1869    500-
## 2674        5751                             <NA>           1869    500-
## 2675        5751                             <NA>           1869    500-
## 2676        5751                             <NA>           1869    500-
## 2677        5751                             <NA>           1869    500-
## 2678        5751                             <NA>           1869    500-
## 2679        5751                             <NA>           1869    500-
## 2680        5751                             <NA>           1869    500-
## 2681        5751                             <NA>           1869    500-
## 2682        5751                             <NA>           1869    500-
## 2683        5751                             <NA>           1869    500-
## 2684        5751                             <NA>           1869    500-
## 2685        5762                             <NA>            391 100-500
## 2686        5762                             <NA>            391 100-500
## 2687        5762                             <NA>            391 100-500
## 2688        5762                             <NA>            391 100-500
## 2689        5762                             <NA>            391 100-500
## 2690        5762                             <NA>            391 100-500
## 2691        5762                             <NA>            391 100-500
## 2692        5762                             <NA>            391 100-500
## 2693        5762                             <NA>            391 100-500
## 2694        5762                             <NA>            391 100-500
## 2695        5762                             <NA>            391 100-500
## 2696        5762                             <NA>            391 100-500
## 2697        5762                             <NA>            391 100-500
## 2698        5762                             <NA>            391 100-500
## 2699        5762                             <NA>            391 100-500
## 2700        5762                             <NA>            391 100-500
## 2701        5762                             <NA>            391 100-500
## 2702        5762                             <NA>            391 100-500
## 2703        5762                             <NA>            391 100-500
## 2704        5762                             <NA>            391 100-500
## 2705        5762                             <NA>            391 100-500
## 2706        5762                             <NA>            391 100-500
## 2707        5762                             <NA>            391 100-500
## 2708        5762                             <NA>            391 100-500
## 2709        5762                             <NA>            391 100-500
## 2710        5762                             <NA>            391 100-500
## 2711        5762                             <NA>            391 100-500
## 2712        5762                             <NA>            391 100-500
## 2713        5762                             <NA>            391 100-500
## 2714        5762                             <NA>            391 100-500
## 2715        5762                             <NA>            391 100-500
## 2716        5762                             <NA>            391 100-500
## 2717        5762                             <NA>            391 100-500
## 2718        5762                             <NA>            391 100-500
## 2719        5762                             <NA>            391 100-500
## 2720        5762                             <NA>            391 100-500
## 2721        5762                             <NA>            391 100-500
## 2722        5762                             <NA>            391 100-500
## 2723        5762                             <NA>            391 100-500
## 2724        5762                             <NA>            391 100-500
## 2725        5762                             <NA>            391 100-500
## 2726        5762                             <NA>            391 100-500
## 2727        5762                             <NA>            391 100-500
## 2728        5762                             <NA>            391 100-500
## 2729        5762                             <NA>            391 100-500
## 2730        5762                             <NA>            391 100-500
## 2731        5762                             <NA>            391 100-500
## 2732        5762                             <NA>            391 100-500
## 2733        5762                             <NA>            391 100-500
## 2734        5762                             <NA>            391 100-500
## 2735        5762                             <NA>            391 100-500
## 2736        5762                             <NA>            391 100-500
## 2737        5762                             <NA>            391 100-500
## 2738        5762                             <NA>            391 100-500
## 2739        5762                             <NA>            391 100-500
## 2740        5762                             <NA>            391 100-500
## 2741        5762                             <NA>            391 100-500
## 2742        5762                             <NA>            391 100-500
## 2743        5762                             <NA>            391 100-500
## 2744        5762                             <NA>            391 100-500
## 2745        5762                             <NA>            391 100-500
## 2746        5876                             <NA>            303 100-500
## 2747        5876                             <NA>            303 100-500
## 2748        5876                             <NA>            303 100-500
## 2749        5876                             <NA>            303 100-500
## 2750        5876                             <NA>            303 100-500
## 2751        5876                             <NA>            303 100-500
## 2752        5876                             <NA>            303 100-500
## 2753        5876                             <NA>            303 100-500
## 2754        5876                             <NA>            303 100-500
## 2755        5876                             <NA>            303 100-500
## 2756        5876                             <NA>            303 100-500
## 2757        5876                             <NA>            303 100-500
## 2758        5876                             <NA>            303 100-500
## 2759        5876                             <NA>            303 100-500
## 2760        5876                             <NA>            303 100-500
## 2761        5876                             <NA>            303 100-500
## 2762        5876                             <NA>            303 100-500
## 2763        5876                             <NA>            303 100-500
## 2764        5876                             <NA>            303 100-500
## 2765        5876                             <NA>            303 100-500
## 2766        5876                             <NA>            303 100-500
## 2767        5876                             <NA>            303 100-500
## 2768        5876                             <NA>            303 100-500
## 2769        5876                             <NA>            303 100-500
## 2770        5876                             <NA>            303 100-500
## 2771        5876                             <NA>            303 100-500
## 2772        5876                             <NA>            303 100-500
## 2773        5876                             <NA>            303 100-500
## 2774        5876                             <NA>            303 100-500
## 2775        5876                             <NA>            303 100-500
## 2776        5876                             <NA>            303 100-500
## 2777        5876                             <NA>            303 100-500
## 2778        5876                             <NA>            303 100-500
## 2779        5876                             <NA>            303 100-500
## 2780        5876                             <NA>            303 100-500
## 2781        5876                             <NA>            303 100-500
## 2782        5876                             <NA>            303 100-500
## 2783        5876                             <NA>            303 100-500
## 2784        5876                             <NA>            303 100-500
## 2785        5876                             <NA>            303 100-500
## 2786        5876                             <NA>            303 100-500
## 2787        5876                             <NA>            303 100-500
## 2788        5876                             <NA>            303 100-500
## 2789        5876                             <NA>            303 100-500
## 2790        5876                             <NA>            303 100-500
## 2791        5876                             <NA>            303 100-500
## 2792        5876                             <NA>            303 100-500
## 2793        5876                             <NA>            303 100-500
## 2794        5876                             <NA>            303 100-500
## 2795        5876                             <NA>            303 100-500
## 2796        5876                             <NA>            303 100-500
## 2797        5876                             <NA>            303 100-500
## 2798        5876                             <NA>            303 100-500
## 2799        5876                             <NA>            303 100-500
## 2800        5876                             <NA>            303 100-500
## 2801        5876                             <NA>            303 100-500
## 2802        5876                             <NA>            303 100-500
## 2803        5876                             <NA>            303 100-500
## 2804        5876                             <NA>            303 100-500
## 2805        5876                             <NA>            303 100-500
## 2806        5876                             <NA>            303 100-500
## 2807        5914                             <NA>             86  25-100
## 2808        5914                             <NA>             86  25-100
## 2809        5914                             <NA>             86  25-100
## 2810        5914                             <NA>             86  25-100
## 2811        5914                             <NA>             86  25-100
## 2812        5914                             <NA>             86  25-100
## 2813        5914                             <NA>             86  25-100
## 2814        5914                             <NA>             86  25-100
## 2815        5914                             <NA>             86  25-100
## 2816        5914                             <NA>             86  25-100
## 2817        5914                             <NA>             86  25-100
## 2818        5914                             <NA>             86  25-100
## 2819        5914                             <NA>             86  25-100
## 2820        5914                             <NA>             86  25-100
## 2821        5914                             <NA>             86  25-100
## 2822        5914                             <NA>             86  25-100
## 2823        5914                             <NA>             86  25-100
## 2824        5914                             <NA>             86  25-100
## 2825        5914                             <NA>             86  25-100
## 2826        5914                             <NA>             86  25-100
## 2827        5914                             <NA>             86  25-100
## 2828        5914                             <NA>             86  25-100
## 2829        5914                             <NA>             86  25-100
## 2830        5914                             <NA>             86  25-100
## 2831        5914                             <NA>             86  25-100
## 2832        5914                             <NA>             86  25-100
## 2833        5914                             <NA>             86  25-100
## 2834        5914                             <NA>             86  25-100
## 2835        5914                             <NA>             86  25-100
## 2836        5914                             <NA>             86  25-100
## 2837        5914                             <NA>             86  25-100
## 2838        5914                             <NA>             86  25-100
## 2839        5914                             <NA>             86  25-100
## 2840        5914                             <NA>             86  25-100
## 2841        5914                             <NA>             86  25-100
## 2842        5914                             <NA>             86  25-100
## 2843        5914                             <NA>             86  25-100
## 2844        5914                             <NA>             86  25-100
## 2845        5914                             <NA>             86  25-100
## 2846        5914                             <NA>             86  25-100
## 2847        5914                             <NA>             86  25-100
## 2848        5914                             <NA>             86  25-100
## 2849        5914                             <NA>             86  25-100
## 2850        5914                             <NA>             86  25-100
## 2851        5914                             <NA>             86  25-100
## 2852        5914                             <NA>             86  25-100
## 2853        5914                             <NA>             86  25-100
## 2854        5914                             <NA>             86  25-100
## 2855        5914                             <NA>             86  25-100
## 2856        5914                             <NA>             86  25-100
## 2857        5914                             <NA>             86  25-100
## 2858        5914                             <NA>             86  25-100
## 2859        5914                             <NA>             86  25-100
## 2860        5914                             <NA>             86  25-100
## 2861        5914                             <NA>             86  25-100
## 2862        5914                             <NA>             86  25-100
## 2863        5914                             <NA>             86  25-100
## 2864        5914                             <NA>             86  25-100
## 2865        5914                             <NA>             86  25-100
## 2866        5914                             <NA>             86  25-100
## 2867        5914                             <NA>             86  25-100
## 2868        5947                             <NA>             11   10-25
## 2869        5947                             <NA>             11   10-25
## 2870        5947                             <NA>             11   10-25
## 2871        5947                             <NA>             11   10-25
## 2872        5947                             <NA>             11   10-25
## 2873        5947                             <NA>             11   10-25
## 2874        5947                             <NA>             11   10-25
## 2875        5947                             <NA>             11   10-25
## 2876        5947                             <NA>             11   10-25
## 2877        5947                             <NA>             11   10-25
## 2878        5947                             <NA>             11   10-25
## 2879        5947                             <NA>             11   10-25
## 2880        5947                             <NA>             11   10-25
## 2881        5947                             <NA>             11   10-25
## 2882        5947                             <NA>             11   10-25
## 2883        5947                             <NA>             11   10-25
## 2884        5947                             <NA>             11   10-25
## 2885        5947                             <NA>             11   10-25
## 2886        5947                             <NA>             11   10-25
## 2887        5947                             <NA>             11   10-25
## 2888        5947                             <NA>             11   10-25
## 2889        5947                             <NA>             11   10-25
## 2890        5947                             <NA>             11   10-25
## 2891        5947                             <NA>             11   10-25
## 2892        5947                             <NA>             11   10-25
## 2893        5947                             <NA>             11   10-25
## 2894        5947                             <NA>             11   10-25
## 2895        5947                             <NA>             11   10-25
## 2896        5947                             <NA>             11   10-25
## 2897        5947                             <NA>             11   10-25
## 2898        5947                             <NA>             11   10-25
## 2899        5947                             <NA>             11   10-25
## 2900        5947                             <NA>             11   10-25
## 2901        5947                             <NA>             11   10-25
## 2902        5947                             <NA>             11   10-25
## 2903        5947                             <NA>             11   10-25
## 2904        5947                             <NA>             11   10-25
## 2905        5947                             <NA>             11   10-25
## 2906        5947                             <NA>             11   10-25
## 2907        5947                             <NA>             11   10-25
## 2908        5947                             <NA>             11   10-25
## 2909        5947                             <NA>             11   10-25
## 2910        5947                             <NA>             11   10-25
## 2911        5947                             <NA>             11   10-25
## 2912        5947                             <NA>             11   10-25
## 2913        5947                             <NA>             11   10-25
## 2914        5947                             <NA>             11   10-25
## 2915        5947                             <NA>             11   10-25
## 2916        5947                             <NA>             11   10-25
## 2917        5947                             <NA>             11   10-25
## 2918        5947                             <NA>             11   10-25
## 2919        5947                             <NA>             11   10-25
## 2920        5947                             <NA>             11   10-25
## 2921        5947                             <NA>             11   10-25
## 2922        5947                             <NA>             11   10-25
## 2923        5947                             <NA>             11   10-25
## 2924        5947                             <NA>             11   10-25
## 2925        5947                             <NA>             11   10-25
## 2926        5947                             <NA>             11   10-25
## 2927        5947                             <NA>             11   10-25
## 2928        5947                             <NA>             11   10-25
## 2929        5978                             <NA>              1     1-2
## 2930        5978                             <NA>              1     1-2
## 2931        5978                             <NA>              1     1-2
## 2932        5978                             <NA>              1     1-2
## 2933        5978                             <NA>              1     1-2
## 2934        5978                             <NA>              1     1-2
## 2935        5978                             <NA>              1     1-2
## 2936        5978                             <NA>              1     1-2
## 2937        5978                             <NA>              1     1-2
## 2938        5978                             <NA>              1     1-2
## 2939        5978                             <NA>              1     1-2
## 2940        5978                             <NA>              1     1-2
## 2941        5978                             <NA>              1     1-2
## 2942        5978                             <NA>              1     1-2
## 2943        5978                             <NA>              1     1-2
## 2944        5978                             <NA>              1     1-2
## 2945        5978                             <NA>              1     1-2
## 2946        5978                             <NA>              1     1-2
## 2947        5978                             <NA>              1     1-2
## 2948        5978                             <NA>              1     1-2
## 2949        5978                             <NA>              1     1-2
## 2950        5978                             <NA>              1     1-2
## 2951        5978                             <NA>              1     1-2
## 2952        5978                             <NA>              1     1-2
## 2953        5978                             <NA>              1     1-2
## 2954        5978                             <NA>              1     1-2
## 2955        5978                             <NA>              1     1-2
## 2956        5978                             <NA>              1     1-2
## 2957        5978                             <NA>              1     1-2
## 2958        5978                             <NA>              1     1-2
## 2959        5978                             <NA>              1     1-2
## 2960        5978                             <NA>              1     1-2
## 2961        5978                             <NA>              1     1-2
## 2962        5978                             <NA>              1     1-2
## 2963        5978                             <NA>              1     1-2
## 2964        5978                             <NA>              1     1-2
## 2965        5978                             <NA>              1     1-2
## 2966        5978                             <NA>              1     1-2
## 2967        5978                             <NA>              1     1-2
## 2968        5978                             <NA>              1     1-2
## 2969        5978                             <NA>              1     1-2
## 2970        5978                             <NA>              1     1-2
## 2971        5978                             <NA>              1     1-2
## 2972        5978                             <NA>              1     1-2
## 2973        5978                             <NA>              1     1-2
## 2974        5978                             <NA>              1     1-2
## 2975        5978                             <NA>              1     1-2
## 2976        5978                             <NA>              1     1-2
## 2977        5978                             <NA>              1     1-2
## 2978        5978                             <NA>              1     1-2
## 2979        5978                             <NA>              1     1-2
## 2980        5978                             <NA>              1     1-2
## 2981        5978                             <NA>              1     1-2
## 2982        5978                             <NA>              1     1-2
## 2983        5978                             <NA>              1     1-2
## 2984        5978                             <NA>              1     1-2
## 2985        5978                             <NA>              1     1-2
## 2986        5978                             <NA>              1     1-2
## 2987        5978                             <NA>              1     1-2
## 2988        5978                             <NA>              1     1-2
## 2989        5978                             <NA>              1     1-2
## 2990        6157                             <NA>              2     1-2
## 2991        6157                             <NA>              2     1-2
## 2992        6157                             <NA>              2     1-2
## 2993        6157                             <NA>              2     1-2
## 2994        6157                             <NA>              2     1-2
## 2995        6157                             <NA>              2     1-2
## 2996        6157                             <NA>              2     1-2
## 2997        6157                             <NA>              2     1-2
## 2998        6157                             <NA>              2     1-2
## 2999        6157                             <NA>              2     1-2
## 3000        6157                             <NA>              2     1-2
## 3001        6157                             <NA>              2     1-2
## 3002        6157                             <NA>              2     1-2
## 3003        6157                             <NA>              2     1-2
## 3004        6157                             <NA>              2     1-2
## 3005        6157                             <NA>              2     1-2
## 3006        6157                             <NA>              2     1-2
## 3007        6157                             <NA>              2     1-2
## 3008        6157                             <NA>              2     1-2
## 3009        6157                             <NA>              2     1-2
## 3010        6157                             <NA>              2     1-2
## 3011        6157                             <NA>              2     1-2
## 3012        6157                             <NA>              2     1-2
## 3013        6157                             <NA>              2     1-2
## 3014        6157                             <NA>              2     1-2
## 3015        6157                             <NA>              2     1-2
## 3016        6157                             <NA>              2     1-2
## 3017        6157                             <NA>              2     1-2
## 3018        6157                             <NA>              2     1-2
## 3019        6157                             <NA>              2     1-2
## 3020        6157                             <NA>              2     1-2
## 3021        6157                             <NA>              2     1-2
## 3022        6157                             <NA>              2     1-2
## 3023        6157                             <NA>              2     1-2
## 3024        6157                             <NA>              2     1-2
## 3025        6157                             <NA>              2     1-2
## 3026        6157                             <NA>              2     1-2
## 3027        6157                             <NA>              2     1-2
## 3028        6157                             <NA>              2     1-2
## 3029        6157                             <NA>              2     1-2
## 3030        6157                             <NA>              2     1-2
## 3031        6157                             <NA>              2     1-2
## 3032        6157                             <NA>              2     1-2
## 3033        6157                             <NA>              2     1-2
## 3034        6157                             <NA>              2     1-2
## 3035        6157                             <NA>              2     1-2
## 3036        6157                             <NA>              2     1-2
## 3037        6157                             <NA>              2     1-2
## 3038        6157                             <NA>              2     1-2
## 3039        6157                             <NA>              2     1-2
## 3040        6157                             <NA>              2     1-2
## 3041        6157                             <NA>              2     1-2
## 3042        6157                             <NA>              2     1-2
## 3043        6157                             <NA>              2     1-2
## 3044        6157                             <NA>              2     1-2
## 3045        6157                             <NA>              2     1-2
## 3046        6157                             <NA>              2     1-2
## 3047        6157                             <NA>              2     1-2
## 3048        6157                             <NA>              2     1-2
## 3049        6157                             <NA>              2     1-2
## 3050        6157                             <NA>              2     1-2
## 3051        6168                             <NA>              1     1-2
## 3052        6168                             <NA>              1     1-2
## 3053        6168                             <NA>              1     1-2
## 3054        6168                             <NA>              1     1-2
## 3055        6168                             <NA>              1     1-2
## 3056        6168                             <NA>              1     1-2
## 3057        6168                             <NA>              1     1-2
## 3058        6168                             <NA>              1     1-2
## 3059        6168                             <NA>              1     1-2
## 3060        6168                             <NA>              1     1-2
## 3061        6168                             <NA>              1     1-2
## 3062        6168                             <NA>              1     1-2
## 3063        6168                             <NA>              1     1-2
## 3064        6168                             <NA>              1     1-2
## 3065        6168                             <NA>              1     1-2
## 3066        6168                             <NA>              1     1-2
## 3067        6168                             <NA>              1     1-2
## 3068        6168                             <NA>              1     1-2
## 3069        6168                             <NA>              1     1-2
## 3070        6168                             <NA>              1     1-2
## 3071        6168                             <NA>              1     1-2
## 3072        6168                             <NA>              1     1-2
## 3073        6168                             <NA>              1     1-2
## 3074        6168                             <NA>              1     1-2
## 3075        6168                             <NA>              1     1-2
## 3076        6168                             <NA>              1     1-2
## 3077        6168                             <NA>              1     1-2
## 3078        6168                             <NA>              1     1-2
## 3079        6168                             <NA>              1     1-2
## 3080        6168                             <NA>              1     1-2
## 3081        6168                             <NA>              1     1-2
## 3082        6168                             <NA>              1     1-2
## 3083        6168                             <NA>              1     1-2
## 3084        6168                             <NA>              1     1-2
## 3085        6168                             <NA>              1     1-2
## 3086        6168                             <NA>              1     1-2
## 3087        6168                             <NA>              1     1-2
## 3088        6168                             <NA>              1     1-2
## 3089        6168                             <NA>              1     1-2
## 3090        6168                             <NA>              1     1-2
## 3091        6168                             <NA>              1     1-2
## 3092        6168                             <NA>              1     1-2
## 3093        6168                             <NA>              1     1-2
## 3094        6168                             <NA>              1     1-2
## 3095        6168                             <NA>              1     1-2
## 3096        6168                             <NA>              1     1-2
## 3097        6168                             <NA>              1     1-2
## 3098        6168                             <NA>              1     1-2
## 3099        6168                             <NA>              1     1-2
## 3100        6168                             <NA>              1     1-2
## 3101        6168                             <NA>              1     1-2
## 3102        6168                             <NA>              1     1-2
## 3103        6168                             <NA>              1     1-2
## 3104        6168                             <NA>              1     1-2
## 3105        6168                             <NA>              1     1-2
## 3106        6168                             <NA>              1     1-2
## 3107        6168                             <NA>              1     1-2
## 3108        6168                             <NA>              1     1-2
## 3109        6168                             <NA>              1     1-2
## 3110        6168                             <NA>              1     1-2
## 3111        6168                             <NA>              1     1-2
## 3112        6328                             <NA>            176 100-500
## 3113        6328                             <NA>            176 100-500
## 3114        6328                             <NA>            176 100-500
## 3115        6328                             <NA>            176 100-500
## 3116        6328                             <NA>            176 100-500
## 3117        6328                             <NA>            176 100-500
## 3118        6328                             <NA>            176 100-500
## 3119        6328                             <NA>            176 100-500
## 3120        6328                             <NA>            176 100-500
## 3121        6328                             <NA>            176 100-500
## 3122        6328                             <NA>            176 100-500
## 3123        6328                             <NA>            176 100-500
## 3124        6328                             <NA>            176 100-500
## 3125        6328                             <NA>            176 100-500
## 3126        6328                             <NA>            176 100-500
## 3127        6328                             <NA>            176 100-500
## 3128        6328                             <NA>            176 100-500
## 3129        6328                             <NA>            176 100-500
## 3130        6328                             <NA>            176 100-500
## 3131        6328                             <NA>            176 100-500
## 3132        6328                             <NA>            176 100-500
## 3133        6328                             <NA>            176 100-500
## 3134        6328                             <NA>            176 100-500
## 3135        6328                             <NA>            176 100-500
## 3136        6328                             <NA>            176 100-500
## 3137        6328                             <NA>            176 100-500
## 3138        6328                             <NA>            176 100-500
## 3139        6328                             <NA>            176 100-500
## 3140        6328                             <NA>            176 100-500
## 3141        6328                             <NA>            176 100-500
## 3142        6328                             <NA>            176 100-500
## 3143        6328                             <NA>            176 100-500
## 3144        6328                             <NA>            176 100-500
## 3145        6328                             <NA>            176 100-500
## 3146        6328                             <NA>            176 100-500
## 3147        6328                             <NA>            176 100-500
## 3148        6328                             <NA>            176 100-500
## 3149        6328                             <NA>            176 100-500
## 3150        6328                             <NA>            176 100-500
## 3151        6328                             <NA>            176 100-500
## 3152        6328                             <NA>            176 100-500
## 3153        6328                             <NA>            176 100-500
## 3154        6328                             <NA>            176 100-500
## 3155        6328                             <NA>            176 100-500
## 3156        6328                             <NA>            176 100-500
## 3157        6328                             <NA>            176 100-500
## 3158        6328                             <NA>            176 100-500
## 3159        6328                             <NA>            176 100-500
## 3160        6328                             <NA>            176 100-500
## 3161        6328                             <NA>            176 100-500
## 3162        6328                             <NA>            176 100-500
## 3163        6328                             <NA>            176 100-500
## 3164        6328                             <NA>            176 100-500
## 3165        6328                             <NA>            176 100-500
## 3166        6328                             <NA>            176 100-500
## 3167        6328                             <NA>            176 100-500
## 3168        6328                             <NA>            176 100-500
## 3169        6328                             <NA>            176 100-500
## 3170        6328                             <NA>            176 100-500
## 3171        6328                             <NA>            176 100-500
## 3172        6328                             <NA>            176 100-500
## 3173        6421                             <NA>            142 100-500
## 3174        6421                             <NA>            142 100-500
## 3175        6421                             <NA>            142 100-500
## 3176        6421                             <NA>            142 100-500
## 3177        6421                             <NA>            142 100-500
## 3178        6421                             <NA>            142 100-500
## 3179        6421                             <NA>            142 100-500
## 3180        6421                             <NA>            142 100-500
## 3181        6421                             <NA>            142 100-500
## 3182        6421                             <NA>            142 100-500
## 3183        6421                             <NA>            142 100-500
## 3184        6421                             <NA>            142 100-500
## 3185        6421                             <NA>            142 100-500
## 3186        6421                             <NA>            142 100-500
## 3187        6421                             <NA>            142 100-500
## 3188        6421                             <NA>            142 100-500
## 3189        6421                             <NA>            142 100-500
## 3190        6421                             <NA>            142 100-500
## 3191        6421                             <NA>            142 100-500
## 3192        6421                             <NA>            142 100-500
## 3193        6421                             <NA>            142 100-500
## 3194        6421                             <NA>            142 100-500
## 3195        6421                             <NA>            142 100-500
## 3196        6421                             <NA>            142 100-500
## 3197        6421                             <NA>            142 100-500
## 3198        6421                             <NA>            142 100-500
## 3199        6421                             <NA>            142 100-500
## 3200        6421                             <NA>            142 100-500
## 3201        6421                             <NA>            142 100-500
## 3202        6421                             <NA>            142 100-500
## 3203        6421                             <NA>            142 100-500
## 3204        6421                             <NA>            142 100-500
## 3205        6421                             <NA>            142 100-500
## 3206        6421                             <NA>            142 100-500
## 3207        6421                             <NA>            142 100-500
## 3208        6421                             <NA>            142 100-500
## 3209        6421                             <NA>            142 100-500
## 3210        6421                             <NA>            142 100-500
## 3211        6421                             <NA>            142 100-500
## 3212        6421                             <NA>            142 100-500
## 3213        6421                             <NA>            142 100-500
## 3214        6421                             <NA>            142 100-500
## 3215        6421                             <NA>            142 100-500
## 3216        6421                             <NA>            142 100-500
## 3217        6421                             <NA>            142 100-500
## 3218        6421                             <NA>            142 100-500
## 3219        6421                             <NA>            142 100-500
## 3220        6421                             <NA>            142 100-500
## 3221        6421                             <NA>            142 100-500
## 3222        6421                             <NA>            142 100-500
## 3223        6421                             <NA>            142 100-500
## 3224        6421                             <NA>            142 100-500
## 3225        6421                             <NA>            142 100-500
## 3226        6421                             <NA>            142 100-500
## 3227        6421                             <NA>            142 100-500
## 3228        6421                             <NA>            142 100-500
## 3229        6421                             <NA>            142 100-500
## 3230        6421                             <NA>            142 100-500
## 3231        6421                             <NA>            142 100-500
## 3232        6421                             <NA>            142 100-500
## 3233        6421                             <NA>            142 100-500
## 3234        6689                             <NA>             40  25-100
## 3235        6689                             <NA>             40  25-100
## 3236        6689                             <NA>             40  25-100
## 3237        6689                             <NA>             40  25-100
## 3238        6689                             <NA>             40  25-100
## 3239        6689                             <NA>             40  25-100
## 3240        6689                             <NA>             40  25-100
## 3241        6689                             <NA>             40  25-100
## 3242        6689                             <NA>             40  25-100
## 3243        6689                             <NA>             40  25-100
## 3244        6689                             <NA>             40  25-100
## 3245        6689                             <NA>             40  25-100
## 3246        6689                             <NA>             40  25-100
## 3247        6689                             <NA>             40  25-100
## 3248        6689                             <NA>             40  25-100
## 3249        6689                             <NA>             40  25-100
## 3250        6689                             <NA>             40  25-100
## 3251        6689                             <NA>             40  25-100
## 3252        6689                             <NA>             40  25-100
## 3253        6689                             <NA>             40  25-100
## 3254        6689                             <NA>             40  25-100
## 3255        6689                             <NA>             40  25-100
## 3256        6689                             <NA>             40  25-100
## 3257        6689                             <NA>             40  25-100
## 3258        6689                             <NA>             40  25-100
## 3259        6689                             <NA>             40  25-100
## 3260        6689                             <NA>             40  25-100
## 3261        6689                             <NA>             40  25-100
## 3262        6689                             <NA>             40  25-100
## 3263        6689                             <NA>             40  25-100
## 3264        6689                             <NA>             40  25-100
## 3265        6689                             <NA>             40  25-100
## 3266        6689                             <NA>             40  25-100
## 3267        6689                             <NA>             40  25-100
## 3268        6689                             <NA>             40  25-100
## 3269        6689                             <NA>             40  25-100
## 3270        6689                             <NA>             40  25-100
## 3271        6689                             <NA>             40  25-100
## 3272        6689                             <NA>             40  25-100
## 3273        6689                             <NA>             40  25-100
## 3274        6689                             <NA>             40  25-100
## 3275        6689                             <NA>             40  25-100
## 3276        6689                             <NA>             40  25-100
## 3277        6689                             <NA>             40  25-100
## 3278        6689                             <NA>             40  25-100
## 3279        6689                             <NA>             40  25-100
## 3280        6689                             <NA>             40  25-100
## 3281        6689                             <NA>             40  25-100
## 3282        6689                             <NA>             40  25-100
## 3283        6689                             <NA>             40  25-100
## 3284        6689                             <NA>             40  25-100
## 3285        6689                             <NA>             40  25-100
## 3286        6689                             <NA>             40  25-100
## 3287        6689                             <NA>             40  25-100
## 3288        6689                             <NA>             40  25-100
## 3289        6689                             <NA>             40  25-100
## 3290        6689                             <NA>             40  25-100
## 3291        6689                             <NA>             40  25-100
## 3292        6689                             <NA>             40  25-100
## 3293        6689                             <NA>             40  25-100
## 3294        6689                             <NA>             40  25-100
## 3295        6753                             <NA>            115 100-500
## 3296        6753                             <NA>            115 100-500
## 3297        6753                             <NA>            115 100-500
## 3298        6753                             <NA>            115 100-500
## 3299        6753                             <NA>            115 100-500
## 3300        6753                             <NA>            115 100-500
## 3301        6753                             <NA>            115 100-500
## 3302        6753                             <NA>            115 100-500
## 3303        6753                             <NA>            115 100-500
## 3304        6753                             <NA>            115 100-500
## 3305        6753                             <NA>            115 100-500
## 3306        6753                             <NA>            115 100-500
## 3307        6753                             <NA>            115 100-500
## 3308        6753                             <NA>            115 100-500
## 3309        6753                             <NA>            115 100-500
## 3310        6753                             <NA>            115 100-500
## 3311        6753                             <NA>            115 100-500
## 3312        6753                             <NA>            115 100-500
## 3313        6753                             <NA>            115 100-500
## 3314        6753                             <NA>            115 100-500
## 3315        6753                             <NA>            115 100-500
## 3316        6753                             <NA>            115 100-500
## 3317        6753                             <NA>            115 100-500
## 3318        6753                             <NA>            115 100-500
## 3319        6753                             <NA>            115 100-500
## 3320        6753                             <NA>            115 100-500
## 3321        6753                             <NA>            115 100-500
## 3322        6753                             <NA>            115 100-500
## 3323        6753                             <NA>            115 100-500
## 3324        6753                             <NA>            115 100-500
## 3325        6753                             <NA>            115 100-500
## 3326        6753                             <NA>            115 100-500
## 3327        6753                             <NA>            115 100-500
## 3328        6753                             <NA>            115 100-500
## 3329        6753                             <NA>            115 100-500
## 3330        6753                             <NA>            115 100-500
## 3331        6753                             <NA>            115 100-500
## 3332        6753                             <NA>            115 100-500
## 3333        6753                             <NA>            115 100-500
## 3334        6753                             <NA>            115 100-500
## 3335        6753                             <NA>            115 100-500
## 3336        6753                             <NA>            115 100-500
## 3337        6753                             <NA>            115 100-500
## 3338        6753                             <NA>            115 100-500
## 3339        6753                             <NA>            115 100-500
## 3340        6753                             <NA>            115 100-500
## 3341        6753                             <NA>            115 100-500
## 3342        6753                             <NA>            115 100-500
## 3343        6753                             <NA>            115 100-500
## 3344        6753                             <NA>            115 100-500
## 3345        6753                             <NA>            115 100-500
## 3346        6753                             <NA>            115 100-500
## 3347        6753                             <NA>            115 100-500
## 3348        6753                             <NA>            115 100-500
## 3349        6753                             <NA>            115 100-500
## 3350        6753                             <NA>            115 100-500
## 3351        6753                             <NA>            115 100-500
## 3352        6753                             <NA>            115 100-500
## 3353        6753                             <NA>            115 100-500
## 3354        6753                             <NA>            115 100-500
## 3355        6753                             <NA>            115 100-500
## 3356        6852                     Good Article            947    500-
## 3357        6852                     Good Article            947    500-
## 3358        6852                     Good Article            947    500-
## 3359        6852                     Good Article            947    500-
## 3360        6852                     Good Article            947    500-
## 3361        6852                     Good Article            947    500-
## 3362        6852                     Good Article            947    500-
## 3363        6852                     Good Article            947    500-
## 3364        6852                     Good Article            947    500-
## 3365        6852                     Good Article            947    500-
## 3366        6852                     Good Article            947    500-
## 3367        6852                     Good Article            947    500-
## 3368        6852                     Good Article            947    500-
## 3369        6852                     Good Article            947    500-
## 3370        6852                     Good Article            947    500-
## 3371        6852                     Good Article            947    500-
## 3372        6852                     Good Article            947    500-
## 3373        6852                     Good Article            947    500-
## 3374        6852                     Good Article            947    500-
## 3375        6852                     Good Article            947    500-
## 3376        6852                     Good Article            947    500-
## 3377        6852                     Good Article            947    500-
## 3378        6852                     Good Article            947    500-
## 3379        6852                     Good Article            947    500-
## 3380        6852                     Good Article            947    500-
## 3381        6852                     Good Article            947    500-
## 3382        6852                     Good Article            947    500-
## 3383        6852                     Good Article            947    500-
## 3384        6852                     Good Article            947    500-
## 3385        6852                     Good Article            947    500-
## 3386        6852                     Good Article            947    500-
## 3387        6852                     Good Article            947    500-
## 3388        6852                     Good Article            947    500-
## 3389        6852                     Good Article            947    500-
## 3390        6852                     Good Article            947    500-
## 3391        6852                     Good Article            947    500-
## 3392        6852                     Good Article            947    500-
## 3393        6852                     Good Article            947    500-
## 3394        6852                     Good Article            947    500-
## 3395        6852                     Good Article            947    500-
## 3396        6852                     Good Article            947    500-
## 3397        6852                     Good Article            947    500-
## 3398        6852                     Good Article            947    500-
## 3399        6852                     Good Article            947    500-
## 3400        6852                     Good Article            947    500-
## 3401        6852                     Good Article            947    500-
## 3402        6852                     Good Article            947    500-
## 3403        6852                     Good Article            947    500-
## 3404        6852                     Good Article            947    500-
## 3405        6852                     Good Article            947    500-
## 3406        6852                     Good Article            947    500-
## 3407        6852                     Good Article            947    500-
## 3408        6852                     Good Article            947    500-
## 3409        6852                     Good Article            947    500-
## 3410        6852                     Good Article            947    500-
## 3411        6852                     Good Article            947    500-
## 3412        6852                     Good Article            947    500-
## 3413        6852                     Good Article            947    500-
## 3414        6852                     Good Article            947    500-
## 3415        6852                     Good Article            947    500-
## 3416        6852                     Good Article            947    500-
## 3417        6982                             <NA>             86  25-100
## 3418        6982                             <NA>             86  25-100
## 3419        6982                             <NA>             86  25-100
## 3420        6982                             <NA>             86  25-100
## 3421        6982                             <NA>             86  25-100
## 3422        6982                             <NA>             86  25-100
## 3423        6982                             <NA>             86  25-100
## 3424        6982                             <NA>             86  25-100
## 3425        6982                             <NA>             86  25-100
## 3426        6982                             <NA>             86  25-100
## 3427        6982                             <NA>             86  25-100
## 3428        6982                             <NA>             86  25-100
## 3429        6982                             <NA>             86  25-100
## 3430        6982                             <NA>             86  25-100
## 3431        6982                             <NA>             86  25-100
## 3432        6982                             <NA>             86  25-100
## 3433        6982                             <NA>             86  25-100
## 3434        6982                             <NA>             86  25-100
## 3435        6982                             <NA>             86  25-100
## 3436        6982                             <NA>             86  25-100
## 3437        6982                             <NA>             86  25-100
## 3438        6982                             <NA>             86  25-100
## 3439        6982                             <NA>             86  25-100
## 3440        6982                             <NA>             86  25-100
## 3441        6982                             <NA>             86  25-100
## 3442        6982                             <NA>             86  25-100
## 3443        6982                             <NA>             86  25-100
## 3444        6982                             <NA>             86  25-100
## 3445        6982                             <NA>             86  25-100
## 3446        6982                             <NA>             86  25-100
## 3447        6982                             <NA>             86  25-100
## 3448        6982                             <NA>             86  25-100
## 3449        6982                             <NA>             86  25-100
## 3450        6982                             <NA>             86  25-100
## 3451        6982                             <NA>             86  25-100
## 3452        6982                             <NA>             86  25-100
## 3453        6982                             <NA>             86  25-100
## 3454        6982                             <NA>             86  25-100
## 3455        6982                             <NA>             86  25-100
## 3456        6982                             <NA>             86  25-100
## 3457        6982                             <NA>             86  25-100
## 3458        6982                             <NA>             86  25-100
## 3459        6982                             <NA>             86  25-100
## 3460        6982                             <NA>             86  25-100
## 3461        6982                             <NA>             86  25-100
## 3462        6982                             <NA>             86  25-100
## 3463        6982                             <NA>             86  25-100
## 3464        6982                             <NA>             86  25-100
## 3465        6982                             <NA>             86  25-100
## 3466        6982                             <NA>             86  25-100
## 3467        6982                             <NA>             86  25-100
## 3468        6982                             <NA>             86  25-100
## 3469        6982                             <NA>             86  25-100
## 3470        6982                             <NA>             86  25-100
## 3471        6982                             <NA>             86  25-100
## 3472        6982                             <NA>             86  25-100
## 3473        6982                             <NA>             86  25-100
## 3474        6982                             <NA>             86  25-100
## 3475        6982                             <NA>             86  25-100
## 3476        6982                             <NA>             86  25-100
## 3477        6982                             <NA>             86  25-100
## 3478        7176                             <NA>            283 100-500
## 3479        7176                             <NA>            283 100-500
## 3480        7176                             <NA>            283 100-500
## 3481        7176                             <NA>            283 100-500
## 3482        7176                             <NA>            283 100-500
## 3483        7176                             <NA>            283 100-500
## 3484        7176                             <NA>            283 100-500
## 3485        7176                             <NA>            283 100-500
## 3486        7176                             <NA>            283 100-500
## 3487        7176                             <NA>            283 100-500
## 3488        7176                             <NA>            283 100-500
## 3489        7176                             <NA>            283 100-500
## 3490        7176                             <NA>            283 100-500
## 3491        7176                             <NA>            283 100-500
## 3492        7176                             <NA>            283 100-500
## 3493        7176                             <NA>            283 100-500
## 3494        7176                             <NA>            283 100-500
## 3495        7176                             <NA>            283 100-500
## 3496        7176                             <NA>            283 100-500
## 3497        7176                             <NA>            283 100-500
## 3498        7176                             <NA>            283 100-500
## 3499        7176                             <NA>            283 100-500
## 3500        7176                             <NA>            283 100-500
## 3501        7176                             <NA>            283 100-500
## 3502        7176                             <NA>            283 100-500
## 3503        7176                             <NA>            283 100-500
## 3504        7176                             <NA>            283 100-500
## 3505        7176                             <NA>            283 100-500
## 3506        7176                             <NA>            283 100-500
## 3507        7176                             <NA>            283 100-500
## 3508        7176                             <NA>            283 100-500
## 3509        7176                             <NA>            283 100-500
## 3510        7176                             <NA>            283 100-500
## 3511        7176                             <NA>            283 100-500
## 3512        7176                             <NA>            283 100-500
## 3513        7176                             <NA>            283 100-500
## 3514        7176                             <NA>            283 100-500
## 3515        7176                             <NA>            283 100-500
## 3516        7176                             <NA>            283 100-500
## 3517        7176                             <NA>            283 100-500
## 3518        7176                             <NA>            283 100-500
## 3519        7176                             <NA>            283 100-500
## 3520        7176                             <NA>            283 100-500
## 3521        7176                             <NA>            283 100-500
## 3522        7176                             <NA>            283 100-500
## 3523        7176                             <NA>            283 100-500
## 3524        7176                             <NA>            283 100-500
## 3525        7176                             <NA>            283 100-500
## 3526        7176                             <NA>            283 100-500
## 3527        7176                             <NA>            283 100-500
## 3528        7176                             <NA>            283 100-500
## 3529        7176                             <NA>            283 100-500
## 3530        7176                             <NA>            283 100-500
## 3531        7176                             <NA>            283 100-500
## 3532        7176                             <NA>            283 100-500
## 3533        7176                             <NA>            283 100-500
## 3534        7176                             <NA>            283 100-500
## 3535        7176                             <NA>            283 100-500
## 3536        7176                             <NA>            283 100-500
## 3537        7176                             <NA>            283 100-500
## 3538        7176                             <NA>            283 100-500
## 3539        7222                             <NA>            519    500-
## 3540        7222                             <NA>            519    500-
## 3541        7222                             <NA>            519    500-
## 3542        7222                             <NA>            519    500-
## 3543        7222                             <NA>            519    500-
## 3544        7222                             <NA>            519    500-
## 3545        7222                             <NA>            519    500-
## 3546        7222                             <NA>            519    500-
## 3547        7222                             <NA>            519    500-
## 3548        7222                             <NA>            519    500-
## 3549        7222                             <NA>            519    500-
## 3550        7222                             <NA>            519    500-
## 3551        7222                             <NA>            519    500-
## 3552        7222                             <NA>            519    500-
## 3553        7222                             <NA>            519    500-
## 3554        7222                             <NA>            519    500-
## 3555        7222                             <NA>            519    500-
## 3556        7222                             <NA>            519    500-
## 3557        7222                             <NA>            519    500-
## 3558        7222                             <NA>            519    500-
## 3559        7222                             <NA>            519    500-
## 3560        7222                             <NA>            519    500-
## 3561        7222                             <NA>            519    500-
## 3562        7222                             <NA>            519    500-
## 3563        7222                             <NA>            519    500-
## 3564        7222                             <NA>            519    500-
## 3565        7222                             <NA>            519    500-
## 3566        7222                             <NA>            519    500-
## 3567        7222                             <NA>            519    500-
## 3568        7222                             <NA>            519    500-
## 3569        7222                             <NA>            519    500-
## 3570        7222                             <NA>            519    500-
## 3571        7222                             <NA>            519    500-
## 3572        7222                             <NA>            519    500-
## 3573        7222                             <NA>            519    500-
## 3574        7222                             <NA>            519    500-
## 3575        7222                             <NA>            519    500-
## 3576        7222                             <NA>            519    500-
## 3577        7222                             <NA>            519    500-
## 3578        7222                             <NA>            519    500-
## 3579        7222                             <NA>            519    500-
## 3580        7222                             <NA>            519    500-
## 3581        7222                             <NA>            519    500-
## 3582        7222                             <NA>            519    500-
## 3583        7222                             <NA>            519    500-
## 3584        7222                             <NA>            519    500-
## 3585        7222                             <NA>            519    500-
## 3586        7222                             <NA>            519    500-
## 3587        7222                             <NA>            519    500-
## 3588        7222                             <NA>            519    500-
## 3589        7222                             <NA>            519    500-
## 3590        7222                             <NA>            519    500-
## 3591        7222                             <NA>            519    500-
## 3592        7222                             <NA>            519    500-
## 3593        7222                             <NA>            519    500-
## 3594        7222                             <NA>            519    500-
## 3595        7222                             <NA>            519    500-
## 3596        7222                             <NA>            519    500-
## 3597        7222                             <NA>            519    500-
## 3598        7222                             <NA>            519    500-
## 3599        7222                             <NA>            519    500-
## 3600        7224                             <NA>            118 100-500
## 3601        7224                             <NA>            118 100-500
## 3602        7224                             <NA>            118 100-500
## 3603        7224                             <NA>            118 100-500
## 3604        7224                             <NA>            118 100-500
## 3605        7224                             <NA>            118 100-500
## 3606        7224                             <NA>            118 100-500
## 3607        7224                             <NA>            118 100-500
## 3608        7224                             <NA>            118 100-500
## 3609        7224                             <NA>            118 100-500
## 3610        7224                             <NA>            118 100-500
## 3611        7224                             <NA>            118 100-500
## 3612        7224                             <NA>            118 100-500
## 3613        7224                             <NA>            118 100-500
## 3614        7224                             <NA>            118 100-500
## 3615        7224                             <NA>            118 100-500
## 3616        7224                             <NA>            118 100-500
## 3617        7224                             <NA>            118 100-500
## 3618        7224                             <NA>            118 100-500
## 3619        7224                             <NA>            118 100-500
## 3620        7224                             <NA>            118 100-500
## 3621        7224                             <NA>            118 100-500
## 3622        7224                             <NA>            118 100-500
## 3623        7224                             <NA>            118 100-500
## 3624        7224                             <NA>            118 100-500
## 3625        7224                             <NA>            118 100-500
## 3626        7224                             <NA>            118 100-500
## 3627        7224                             <NA>            118 100-500
## 3628        7224                             <NA>            118 100-500
## 3629        7224                             <NA>            118 100-500
## 3630        7224                             <NA>            118 100-500
## 3631        7224                             <NA>            118 100-500
## 3632        7224                             <NA>            118 100-500
## 3633        7224                             <NA>            118 100-500
## 3634        7224                             <NA>            118 100-500
## 3635        7224                             <NA>            118 100-500
## 3636        7224                             <NA>            118 100-500
## 3637        7224                             <NA>            118 100-500
## 3638        7224                             <NA>            118 100-500
## 3639        7224                             <NA>            118 100-500
## 3640        7224                             <NA>            118 100-500
## 3641        7224                             <NA>            118 100-500
## 3642        7224                             <NA>            118 100-500
## 3643        7224                             <NA>            118 100-500
## 3644        7224                             <NA>            118 100-500
## 3645        7224                             <NA>            118 100-500
## 3646        7224                             <NA>            118 100-500
## 3647        7224                             <NA>            118 100-500
## 3648        7224                             <NA>            118 100-500
## 3649        7224                             <NA>            118 100-500
## 3650        7224                             <NA>            118 100-500
## 3651        7224                             <NA>            118 100-500
## 3652        7224                             <NA>            118 100-500
## 3653        7224                             <NA>            118 100-500
## 3654        7224                             <NA>            118 100-500
## 3655        7224                             <NA>            118 100-500
## 3656        7224                             <NA>            118 100-500
## 3657        7224                             <NA>            118 100-500
## 3658        7224                             <NA>            118 100-500
## 3659        7224                             <NA>            118 100-500
## 3660        7224                             <NA>            118 100-500
## 3661        7372                             <NA>              1     1-2
## 3662        7372                             <NA>              1     1-2
## 3663        7372                             <NA>              1     1-2
## 3664        7372                             <NA>              1     1-2
## 3665        7372                             <NA>              1     1-2
## 3666        7372                             <NA>              1     1-2
## 3667        7372                             <NA>              1     1-2
## 3668        7372                             <NA>              1     1-2
## 3669        7372                             <NA>              1     1-2
## 3670        7372                             <NA>              1     1-2
## 3671        7372                             <NA>              1     1-2
## 3672        7372                             <NA>              1     1-2
## 3673        7372                             <NA>              1     1-2
## 3674        7372                             <NA>              1     1-2
## 3675        7372                             <NA>              1     1-2
## 3676        7372                             <NA>              1     1-2
## 3677        7372                             <NA>              1     1-2
## 3678        7372                             <NA>              1     1-2
## 3679        7372                             <NA>              1     1-2
## 3680        7372                             <NA>              1     1-2
## 3681        7372                             <NA>              1     1-2
## 3682        7372                             <NA>              1     1-2
## 3683        7372                             <NA>              1     1-2
## 3684        7372                             <NA>              1     1-2
## 3685        7372                             <NA>              1     1-2
## 3686        7372                             <NA>              1     1-2
## 3687        7372                             <NA>              1     1-2
## 3688        7372                             <NA>              1     1-2
## 3689        7372                             <NA>              1     1-2
## 3690        7372                             <NA>              1     1-2
## 3691        7372                             <NA>              1     1-2
## 3692        7372                             <NA>              1     1-2
## 3693        7372                             <NA>              1     1-2
## 3694        7372                             <NA>              1     1-2
## 3695        7372                             <NA>              1     1-2
## 3696        7372                             <NA>              1     1-2
## 3697        7372                             <NA>              1     1-2
## 3698        7372                             <NA>              1     1-2
## 3699        7372                             <NA>              1     1-2
## 3700        7372                             <NA>              1     1-2
## 3701        7372                             <NA>              1     1-2
## 3702        7372                             <NA>              1     1-2
## 3703        7372                             <NA>              1     1-2
## 3704        7372                             <NA>              1     1-2
## 3705        7372                             <NA>              1     1-2
## 3706        7372                             <NA>              1     1-2
## 3707        7372                             <NA>              1     1-2
## 3708        7372                             <NA>              1     1-2
## 3709        7372                             <NA>              1     1-2
## 3710        7372                             <NA>              1     1-2
## 3711        7372                             <NA>              1     1-2
## 3712        7372                             <NA>              1     1-2
## 3713        7372                             <NA>              1     1-2
## 3714        7372                             <NA>              1     1-2
## 3715        7372                             <NA>              1     1-2
## 3716        7372                             <NA>              1     1-2
## 3717        7372                             <NA>              1     1-2
## 3718        7372                             <NA>              1     1-2
## 3719        7372                             <NA>              1     1-2
## 3720        7372                             <NA>              1     1-2
## 3721        7372                             <NA>              1     1-2
## 3722        7402                             <NA>             19   10-25
## 3723        7402                             <NA>             19   10-25
## 3724        7402                             <NA>             19   10-25
## 3725        7402                             <NA>             19   10-25
## 3726        7402                             <NA>             19   10-25
## 3727        7402                             <NA>             19   10-25
## 3728        7402                             <NA>             19   10-25
## 3729        7402                             <NA>             19   10-25
## 3730        7402                             <NA>             19   10-25
## 3731        7402                             <NA>             19   10-25
## 3732        7402                             <NA>             19   10-25
## 3733        7402                             <NA>             19   10-25
## 3734        7402                             <NA>             19   10-25
## 3735        7402                             <NA>             19   10-25
## 3736        7402                             <NA>             19   10-25
## 3737        7402                             <NA>             19   10-25
## 3738        7402                             <NA>             19   10-25
## 3739        7402                             <NA>             19   10-25
## 3740        7402                             <NA>             19   10-25
## 3741        7402                             <NA>             19   10-25
## 3742        7402                             <NA>             19   10-25
## 3743        7402                             <NA>             19   10-25
## 3744        7402                             <NA>             19   10-25
## 3745        7402                             <NA>             19   10-25
## 3746        7402                             <NA>             19   10-25
## 3747        7402                             <NA>             19   10-25
## 3748        7402                             <NA>             19   10-25
## 3749        7402                             <NA>             19   10-25
## 3750        7402                             <NA>             19   10-25
## 3751        7402                             <NA>             19   10-25
## 3752        7402                             <NA>             19   10-25
## 3753        7402                             <NA>             19   10-25
## 3754        7402                             <NA>             19   10-25
## 3755        7402                             <NA>             19   10-25
## 3756        7402                             <NA>             19   10-25
## 3757        7402                             <NA>             19   10-25
## 3758        7402                             <NA>             19   10-25
## 3759        7402                             <NA>             19   10-25
## 3760        7402                             <NA>             19   10-25
## 3761        7402                             <NA>             19   10-25
## 3762        7402                             <NA>             19   10-25
## 3763        7402                             <NA>             19   10-25
## 3764        7402                             <NA>             19   10-25
## 3765        7402                             <NA>             19   10-25
## 3766        7402                             <NA>             19   10-25
## 3767        7402                             <NA>             19   10-25
## 3768        7402                             <NA>             19   10-25
## 3769        7402                             <NA>             19   10-25
## 3770        7402                             <NA>             19   10-25
## 3771        7402                             <NA>             19   10-25
## 3772        7402                             <NA>             19   10-25
## 3773        7402                             <NA>             19   10-25
## 3774        7402                             <NA>             19   10-25
## 3775        7402                             <NA>             19   10-25
## 3776        7402                             <NA>             19   10-25
## 3777        7402                             <NA>             19   10-25
## 3778        7402                             <NA>             19   10-25
## 3779        7402                             <NA>             19   10-25
## 3780        7402                             <NA>             19   10-25
## 3781        7402                             <NA>             19   10-25
## 3782        7402                             <NA>             19   10-25
## 3783        7685                             <NA>            211 100-500
## 3784        7685                             <NA>            211 100-500
## 3785        7685                             <NA>            211 100-500
## 3786        7685                             <NA>            211 100-500
## 3787        7685                             <NA>            211 100-500
## 3788        7685                             <NA>            211 100-500
## 3789        7685                             <NA>            211 100-500
## 3790        7685                             <NA>            211 100-500
## 3791        7685                             <NA>            211 100-500
## 3792        7685                             <NA>            211 100-500
## 3793        7685                             <NA>            211 100-500
## 3794        7685                             <NA>            211 100-500
## 3795        7685                             <NA>            211 100-500
## 3796        7685                             <NA>            211 100-500
## 3797        7685                             <NA>            211 100-500
## 3798        7685                             <NA>            211 100-500
## 3799        7685                             <NA>            211 100-500
## 3800        7685                             <NA>            211 100-500
## 3801        7685                             <NA>            211 100-500
## 3802        7685                             <NA>            211 100-500
## 3803        7685                             <NA>            211 100-500
## 3804        7685                             <NA>            211 100-500
## 3805        7685                             <NA>            211 100-500
## 3806        7685                             <NA>            211 100-500
## 3807        7685                             <NA>            211 100-500
## 3808        7685                             <NA>            211 100-500
## 3809        7685                             <NA>            211 100-500
## 3810        7685                             <NA>            211 100-500
## 3811        7685                             <NA>            211 100-500
## 3812        7685                             <NA>            211 100-500
## 3813        7685                             <NA>            211 100-500
## 3814        7685                             <NA>            211 100-500
## 3815        7685                             <NA>            211 100-500
## 3816        7685                             <NA>            211 100-500
## 3817        7685                             <NA>            211 100-500
## 3818        7685                             <NA>            211 100-500
## 3819        7685                             <NA>            211 100-500
## 3820        7685                             <NA>            211 100-500
## 3821        7685                             <NA>            211 100-500
## 3822        7685                             <NA>            211 100-500
## 3823        7685                             <NA>            211 100-500
## 3824        7685                             <NA>            211 100-500
## 3825        7685                             <NA>            211 100-500
## 3826        7685                             <NA>            211 100-500
## 3827        7685                             <NA>            211 100-500
## 3828        7685                             <NA>            211 100-500
## 3829        7685                             <NA>            211 100-500
## 3830        7685                             <NA>            211 100-500
## 3831        7685                             <NA>            211 100-500
## 3832        7685                             <NA>            211 100-500
## 3833        7685                             <NA>            211 100-500
## 3834        7685                             <NA>            211 100-500
## 3835        7685                             <NA>            211 100-500
## 3836        7685                             <NA>            211 100-500
## 3837        7685                             <NA>            211 100-500
## 3838        7685                             <NA>            211 100-500
## 3839        7685                             <NA>            211 100-500
## 3840        7685                             <NA>            211 100-500
## 3841        7685                             <NA>            211 100-500
## 3842        7685                             <NA>            211 100-500
## 3843        7685                             <NA>            211 100-500
## 3844        7736                             <NA>             10    3-10
## 3845        7736                             <NA>             10    3-10
## 3846        7736                             <NA>             10    3-10
## 3847        7736                             <NA>             10    3-10
## 3848        7736                             <NA>             10    3-10
## 3849        7736                             <NA>             10    3-10
## 3850        7736                             <NA>             10    3-10
## 3851        7736                             <NA>             10    3-10
## 3852        7736                             <NA>             10    3-10
## 3853        7736                             <NA>             10    3-10
## 3854        7736                             <NA>             10    3-10
## 3855        7736                             <NA>             10    3-10
## 3856        7736                             <NA>             10    3-10
## 3857        7736                             <NA>             10    3-10
## 3858        7736                             <NA>             10    3-10
## 3859        7736                             <NA>             10    3-10
## 3860        7736                             <NA>             10    3-10
## 3861        7736                             <NA>             10    3-10
## 3862        7736                             <NA>             10    3-10
## 3863        7736                             <NA>             10    3-10
## 3864        7736                             <NA>             10    3-10
## 3865        7736                             <NA>             10    3-10
## 3866        7736                             <NA>             10    3-10
## 3867        7736                             <NA>             10    3-10
## 3868        7736                             <NA>             10    3-10
## 3869        7736                             <NA>             10    3-10
## 3870        7736                             <NA>             10    3-10
## 3871        7736                             <NA>             10    3-10
## 3872        7736                             <NA>             10    3-10
## 3873        7736                             <NA>             10    3-10
## 3874        7736                             <NA>             10    3-10
## 3875        7736                             <NA>             10    3-10
## 3876        7736                             <NA>             10    3-10
## 3877        7736                             <NA>             10    3-10
## 3878        7736                             <NA>             10    3-10
## 3879        7736                             <NA>             10    3-10
## 3880        7736                             <NA>             10    3-10
## 3881        7736                             <NA>             10    3-10
## 3882        7736                             <NA>             10    3-10
## 3883        7736                             <NA>             10    3-10
## 3884        7736                             <NA>             10    3-10
## 3885        7736                             <NA>             10    3-10
## 3886        7736                             <NA>             10    3-10
## 3887        7736                             <NA>             10    3-10
## 3888        7736                             <NA>             10    3-10
## 3889        7736                             <NA>             10    3-10
## 3890        7736                             <NA>             10    3-10
## 3891        7736                             <NA>             10    3-10
## 3892        7736                             <NA>             10    3-10
## 3893        7736                             <NA>             10    3-10
## 3894        7736                             <NA>             10    3-10
## 3895        7736                             <NA>             10    3-10
## 3896        7736                             <NA>             10    3-10
## 3897        7736                             <NA>             10    3-10
## 3898        7736                             <NA>             10    3-10
## 3899        7736                             <NA>             10    3-10
## 3900        7736                             <NA>             10    3-10
## 3901        7736                             <NA>             10    3-10
## 3902        7736                             <NA>             10    3-10
## 3903        7736                             <NA>             10    3-10
## 3904        7736                             <NA>             10    3-10
## 3905        7766                             <NA>              3    3-10
## 3906        7766                             <NA>              3    3-10
## 3907        7766                             <NA>              3    3-10
## 3908        7766                             <NA>              3    3-10
## 3909        7766                             <NA>              3    3-10
## 3910        7766                             <NA>              3    3-10
## 3911        7766                             <NA>              3    3-10
## 3912        7766                             <NA>              3    3-10
## 3913        7766                             <NA>              3    3-10
## 3914        7766                             <NA>              3    3-10
## 3915        7766                             <NA>              3    3-10
## 3916        7766                             <NA>              3    3-10
## 3917        7766                             <NA>              3    3-10
## 3918        7766                             <NA>              3    3-10
## 3919        7766                             <NA>              3    3-10
## 3920        7766                             <NA>              3    3-10
## 3921        7766                             <NA>              3    3-10
## 3922        7766                             <NA>              3    3-10
## 3923        7766                             <NA>              3    3-10
## 3924        7766                             <NA>              3    3-10
## 3925        7766                             <NA>              3    3-10
## 3926        7766                             <NA>              3    3-10
## 3927        7766                             <NA>              3    3-10
## 3928        7766                             <NA>              3    3-10
## 3929        7766                             <NA>              3    3-10
## 3930        7766                             <NA>              3    3-10
## 3931        7766                             <NA>              3    3-10
## 3932        7766                             <NA>              3    3-10
## 3933        7766                             <NA>              3    3-10
## 3934        7766                             <NA>              3    3-10
## 3935        7766                             <NA>              3    3-10
## 3936        7766                             <NA>              3    3-10
## 3937        7766                             <NA>              3    3-10
## 3938        7766                             <NA>              3    3-10
## 3939        7766                             <NA>              3    3-10
## 3940        7766                             <NA>              3    3-10
## 3941        7766                             <NA>              3    3-10
## 3942        7766                             <NA>              3    3-10
## 3943        7766                             <NA>              3    3-10
## 3944        7766                             <NA>              3    3-10
## 3945        7766                             <NA>              3    3-10
## 3946        7766                             <NA>              3    3-10
## 3947        7766                             <NA>              3    3-10
## 3948        7766                             <NA>              3    3-10
## 3949        7766                             <NA>              3    3-10
## 3950        7766                             <NA>              3    3-10
## 3951        7766                             <NA>              3    3-10
## 3952        7766                             <NA>              3    3-10
## 3953        7766                             <NA>              3    3-10
## 3954        7766                             <NA>              3    3-10
## 3955        7766                             <NA>              3    3-10
## 3956        7766                             <NA>              3    3-10
## 3957        7766                             <NA>              3    3-10
## 3958        7766                             <NA>              3    3-10
## 3959        7766                             <NA>              3    3-10
## 3960        7766                             <NA>              3    3-10
## 3961        7766                             <NA>              3    3-10
## 3962        7766                             <NA>              3    3-10
## 3963        7766                             <NA>              3    3-10
## 3964        7766                             <NA>              3    3-10
## 3965        7766                             <NA>              3    3-10
## 3966        7810                             <NA>            308 100-500
## 3967        7810                             <NA>            308 100-500
## 3968        7810                             <NA>            308 100-500
## 3969        7810                             <NA>            308 100-500
## 3970        7810                             <NA>            308 100-500
## 3971        7810                             <NA>            308 100-500
## 3972        7810                             <NA>            308 100-500
## 3973        7810                             <NA>            308 100-500
## 3974        7810                             <NA>            308 100-500
## 3975        7810                             <NA>            308 100-500
## 3976        7810                             <NA>            308 100-500
## 3977        7810                             <NA>            308 100-500
## 3978        7810                             <NA>            308 100-500
## 3979        7810                             <NA>            308 100-500
## 3980        7810                             <NA>            308 100-500
## 3981        7810                             <NA>            308 100-500
## 3982        7810                             <NA>            308 100-500
## 3983        7810                             <NA>            308 100-500
## 3984        7810                             <NA>            308 100-500
## 3985        7810                             <NA>            308 100-500
## 3986        7810                             <NA>            308 100-500
## 3987        7810                             <NA>            308 100-500
## 3988        7810                             <NA>            308 100-500
## 3989        7810                             <NA>            308 100-500
## 3990        7810                             <NA>            308 100-500
## 3991        7810                             <NA>            308 100-500
## 3992        7810                             <NA>            308 100-500
## 3993        7810                             <NA>            308 100-500
## 3994        7810                             <NA>            308 100-500
## 3995        7810                             <NA>            308 100-500
## 3996        7810                             <NA>            308 100-500
## 3997        7810                             <NA>            308 100-500
## 3998        7810                             <NA>            308 100-500
## 3999        7810                             <NA>            308 100-500
## 4000        7810                             <NA>            308 100-500
## 4001        7810                             <NA>            308 100-500
## 4002        7810                             <NA>            308 100-500
## 4003        7810                             <NA>            308 100-500
## 4004        7810                             <NA>            308 100-500
## 4005        7810                             <NA>            308 100-500
## 4006        7810                             <NA>            308 100-500
## 4007        7810                             <NA>            308 100-500
## 4008        7810                             <NA>            308 100-500
## 4009        7810                             <NA>            308 100-500
## 4010        7810                             <NA>            308 100-500
## 4011        7810                             <NA>            308 100-500
## 4012        7810                             <NA>            308 100-500
## 4013        7810                             <NA>            308 100-500
## 4014        7810                             <NA>            308 100-500
## 4015        7810                             <NA>            308 100-500
## 4016        7810                             <NA>            308 100-500
## 4017        7810                             <NA>            308 100-500
## 4018        7810                             <NA>            308 100-500
## 4019        7810                             <NA>            308 100-500
## 4020        7810                             <NA>            308 100-500
## 4021        7810                             <NA>            308 100-500
## 4022        7810                             <NA>            308 100-500
## 4023        7810                             <NA>            308 100-500
## 4024        7810                             <NA>            308 100-500
## 4025        7810                             <NA>            308 100-500
## 4026        7810                             <NA>            308 100-500
## 4027        7986                             <NA>             53  25-100
## 4028        7986                             <NA>             53  25-100
## 4029        7986                             <NA>             53  25-100
## 4030        7986                             <NA>             53  25-100
## 4031        7986                             <NA>             53  25-100
## 4032        7986                             <NA>             53  25-100
## 4033        7986                             <NA>             53  25-100
## 4034        7986                             <NA>             53  25-100
## 4035        7986                             <NA>             53  25-100
## 4036        7986                             <NA>             53  25-100
## 4037        7986                             <NA>             53  25-100
## 4038        7986                             <NA>             53  25-100
## 4039        7986                             <NA>             53  25-100
## 4040        7986                             <NA>             53  25-100
## 4041        7986                             <NA>             53  25-100
## 4042        7986                             <NA>             53  25-100
## 4043        7986                             <NA>             53  25-100
## 4044        7986                             <NA>             53  25-100
## 4045        7986                             <NA>             53  25-100
## 4046        7986                             <NA>             53  25-100
## 4047        7986                             <NA>             53  25-100
## 4048        7986                             <NA>             53  25-100
## 4049        7986                             <NA>             53  25-100
## 4050        7986                             <NA>             53  25-100
## 4051        7986                             <NA>             53  25-100
## 4052        7986                             <NA>             53  25-100
## 4053        7986                             <NA>             53  25-100
## 4054        7986                             <NA>             53  25-100
## 4055        7986                             <NA>             53  25-100
## 4056        7986                             <NA>             53  25-100
## 4057        7986                             <NA>             53  25-100
## 4058        7986                             <NA>             53  25-100
## 4059        7986                             <NA>             53  25-100
## 4060        7986                             <NA>             53  25-100
## 4061        7986                             <NA>             53  25-100
## 4062        7986                             <NA>             53  25-100
## 4063        7986                             <NA>             53  25-100
## 4064        7986                             <NA>             53  25-100
## 4065        7986                             <NA>             53  25-100
## 4066        7986                             <NA>             53  25-100
## 4067        7986                             <NA>             53  25-100
## 4068        7986                             <NA>             53  25-100
## 4069        7986                             <NA>             53  25-100
## 4070        7986                             <NA>             53  25-100
## 4071        7986                             <NA>             53  25-100
## 4072        7986                             <NA>             53  25-100
## 4073        7986                             <NA>             53  25-100
## 4074        7986                             <NA>             53  25-100
## 4075        7986                             <NA>             53  25-100
## 4076        7986                             <NA>             53  25-100
## 4077        7986                             <NA>             53  25-100
## 4078        7986                             <NA>             53  25-100
## 4079        7986                             <NA>             53  25-100
## 4080        7986                             <NA>             53  25-100
## 4081        7986                             <NA>             53  25-100
## 4082        7986                             <NA>             53  25-100
## 4083        7986                             <NA>             53  25-100
## 4084        7986                             <NA>             53  25-100
## 4085        7986                             <NA>             53  25-100
## 4086        7986                             <NA>             53  25-100
## 4087        7986                             <NA>             53  25-100
## 4088        8020                             <NA>              5    3-10
## 4089        8020                             <NA>              5    3-10
## 4090        8020                             <NA>              5    3-10
## 4091        8020                             <NA>              5    3-10
## 4092        8020                             <NA>              5    3-10
## 4093        8020                             <NA>              5    3-10
## 4094        8020                             <NA>              5    3-10
## 4095        8020                             <NA>              5    3-10
## 4096        8020                             <NA>              5    3-10
## 4097        8020                             <NA>              5    3-10
## 4098        8020                             <NA>              5    3-10
## 4099        8020                             <NA>              5    3-10
## 4100        8020                             <NA>              5    3-10
## 4101        8020                             <NA>              5    3-10
## 4102        8020                             <NA>              5    3-10
## 4103        8020                             <NA>              5    3-10
## 4104        8020                             <NA>              5    3-10
## 4105        8020                             <NA>              5    3-10
## 4106        8020                             <NA>              5    3-10
## 4107        8020                             <NA>              5    3-10
## 4108        8020                             <NA>              5    3-10
## 4109        8020                             <NA>              5    3-10
## 4110        8020                             <NA>              5    3-10
## 4111        8020                             <NA>              5    3-10
## 4112        8020                             <NA>              5    3-10
## 4113        8020                             <NA>              5    3-10
## 4114        8020                             <NA>              5    3-10
## 4115        8020                             <NA>              5    3-10
## 4116        8020                             <NA>              5    3-10
## 4117        8020                             <NA>              5    3-10
## 4118        8020                             <NA>              5    3-10
## 4119        8020                             <NA>              5    3-10
## 4120        8020                             <NA>              5    3-10
## 4121        8020                             <NA>              5    3-10
## 4122        8020                             <NA>              5    3-10
## 4123        8020                             <NA>              5    3-10
## 4124        8020                             <NA>              5    3-10
## 4125        8020                             <NA>              5    3-10
## 4126        8020                             <NA>              5    3-10
## 4127        8020                             <NA>              5    3-10
## 4128        8020                             <NA>              5    3-10
## 4129        8020                             <NA>              5    3-10
## 4130        8020                             <NA>              5    3-10
## 4131        8020                             <NA>              5    3-10
## 4132        8020                             <NA>              5    3-10
## 4133        8020                             <NA>              5    3-10
## 4134        8020                             <NA>              5    3-10
## 4135        8020                             <NA>              5    3-10
## 4136        8020                             <NA>              5    3-10
## 4137        8020                             <NA>              5    3-10
## 4138        8020                             <NA>              5    3-10
## 4139        8020                             <NA>              5    3-10
## 4140        8020                             <NA>              5    3-10
## 4141        8020                             <NA>              5    3-10
## 4142        8020                             <NA>              5    3-10
## 4143        8020                             <NA>              5    3-10
## 4144        8020                             <NA>              5    3-10
## 4145        8020                             <NA>              5    3-10
## 4146        8020                             <NA>              5    3-10
## 4147        8020                             <NA>              5    3-10
## 4148        8020                             <NA>              5    3-10
## 4149        8352 Partially Protected - Autoreview            904    500-
## 4150        8352 Partially Protected - Autoreview            904    500-
## 4151        8352 Partially Protected - Autoreview            904    500-
## 4152        8352 Partially Protected - Autoreview            904    500-
## 4153        8352 Partially Protected - Autoreview            904    500-
## 4154        8352 Partially Protected - Autoreview            904    500-
## 4155        8352 Partially Protected - Autoreview            904    500-
## 4156        8352 Partially Protected - Autoreview            904    500-
## 4157        8352 Partially Protected - Autoreview            904    500-
## 4158        8352 Partially Protected - Autoreview            904    500-
## 4159        8352 Partially Protected - Autoreview            904    500-
## 4160        8352 Partially Protected - Autoreview            904    500-
## 4161        8352 Partially Protected - Autoreview            904    500-
## 4162        8352 Partially Protected - Autoreview            904    500-
## 4163        8352 Partially Protected - Autoreview            904    500-
## 4164        8352 Partially Protected - Autoreview            904    500-
## 4165        8352 Partially Protected - Autoreview            904    500-
## 4166        8352 Partially Protected - Autoreview            904    500-
## 4167        8352 Partially Protected - Autoreview            904    500-
## 4168        8352 Partially Protected - Autoreview            904    500-
## 4169        8352 Partially Protected - Autoreview            904    500-
## 4170        8352 Partially Protected - Autoreview            904    500-
## 4171        8352 Partially Protected - Autoreview            904    500-
## 4172        8352 Partially Protected - Autoreview            904    500-
## 4173        8352 Partially Protected - Autoreview            904    500-
## 4174        8352 Partially Protected - Autoreview            904    500-
## 4175        8352 Partially Protected - Autoreview            904    500-
## 4176        8352 Partially Protected - Autoreview            904    500-
## 4177        8352 Partially Protected - Autoreview            904    500-
## 4178        8352 Partially Protected - Autoreview            904    500-
## 4179        8352 Partially Protected - Autoreview            904    500-
## 4180        8352 Partially Protected - Autoreview            904    500-
## 4181        8352 Partially Protected - Autoreview            904    500-
## 4182        8352 Partially Protected - Autoreview            904    500-
## 4183        8352 Partially Protected - Autoreview            904    500-
## 4184        8352 Partially Protected - Autoreview            904    500-
## 4185        8352 Partially Protected - Autoreview            904    500-
## 4186        8352 Partially Protected - Autoreview            904    500-
## 4187        8352 Partially Protected - Autoreview            904    500-
## 4188        8352 Partially Protected - Autoreview            904    500-
## 4189        8352 Partially Protected - Autoreview            904    500-
## 4190        8352 Partially Protected - Autoreview            904    500-
## 4191        8352 Partially Protected - Autoreview            904    500-
## 4192        8352 Partially Protected - Autoreview            904    500-
## 4193        8352 Partially Protected - Autoreview            904    500-
## 4194        8352 Partially Protected - Autoreview            904    500-
## 4195        8352 Partially Protected - Autoreview            904    500-
## 4196        8352 Partially Protected - Autoreview            904    500-
## 4197        8352 Partially Protected - Autoreview            904    500-
## 4198        8352 Partially Protected - Autoreview            904    500-
## 4199        8352 Partially Protected - Autoreview            904    500-
## 4200        8352 Partially Protected - Autoreview            904    500-
## 4201        8352 Partially Protected - Autoreview            904    500-
## 4202        8352 Partially Protected - Autoreview            904    500-
## 4203        8352 Partially Protected - Autoreview            904    500-
## 4204        8352 Partially Protected - Autoreview            904    500-
## 4205        8352 Partially Protected - Autoreview            904    500-
## 4206        8352 Partially Protected - Autoreview            904    500-
## 4207        8352 Partially Protected - Autoreview            904    500-
## 4208        8352 Partially Protected - Autoreview            904    500-
## 4209        8352 Partially Protected - Autoreview            904    500-
## 4210        8507                             <NA>             44  25-100
## 4211        8507                             <NA>             44  25-100
## 4212        8507                             <NA>             44  25-100
## 4213        8507                             <NA>             44  25-100
## 4214        8507                             <NA>             44  25-100
## 4215        8507                             <NA>             44  25-100
## 4216        8507                             <NA>             44  25-100
## 4217        8507                             <NA>             44  25-100
## 4218        8507                             <NA>             44  25-100
## 4219        8507                             <NA>             44  25-100
## 4220        8507                             <NA>             44  25-100
## 4221        8507                             <NA>             44  25-100
## 4222        8507                             <NA>             44  25-100
## 4223        8507                             <NA>             44  25-100
## 4224        8507                             <NA>             44  25-100
## 4225        8507                             <NA>             44  25-100
## 4226        8507                             <NA>             44  25-100
## 4227        8507                             <NA>             44  25-100
## 4228        8507                             <NA>             44  25-100
## 4229        8507                             <NA>             44  25-100
## 4230        8507                             <NA>             44  25-100
## 4231        8507                             <NA>             44  25-100
## 4232        8507                             <NA>             44  25-100
## 4233        8507                             <NA>             44  25-100
## 4234        8507                             <NA>             44  25-100
## 4235        8507                             <NA>             44  25-100
## 4236        8507                             <NA>             44  25-100
## 4237        8507                             <NA>             44  25-100
## 4238        8507                             <NA>             44  25-100
## 4239        8507                             <NA>             44  25-100
## 4240        8507                             <NA>             44  25-100
## 4241        8507                             <NA>             44  25-100
## 4242        8507                             <NA>             44  25-100
## 4243        8507                             <NA>             44  25-100
## 4244        8507                             <NA>             44  25-100
## 4245        8507                             <NA>             44  25-100
## 4246        8507                             <NA>             44  25-100
## 4247        8507                             <NA>             44  25-100
## 4248        8507                             <NA>             44  25-100
## 4249        8507                             <NA>             44  25-100
## 4250        8507                             <NA>             44  25-100
## 4251        8507                             <NA>             44  25-100
## 4252        8507                             <NA>             44  25-100
## 4253        8507                             <NA>             44  25-100
## 4254        8507                             <NA>             44  25-100
## 4255        8507                             <NA>             44  25-100
## 4256        8507                             <NA>             44  25-100
## 4257        8507                             <NA>             44  25-100
## 4258        8507                             <NA>             44  25-100
## 4259        8507                             <NA>             44  25-100
## 4260        8507                             <NA>             44  25-100
## 4261        8507                             <NA>             44  25-100
## 4262        8507                             <NA>             44  25-100
## 4263        8507                             <NA>             44  25-100
## 4264        8507                             <NA>             44  25-100
## 4265        8507                             <NA>             44  25-100
## 4266        8507                             <NA>             44  25-100
## 4267        8507                             <NA>             44  25-100
## 4268        8507                             <NA>             44  25-100
## 4269        8507                             <NA>             44  25-100
## 4270        8507                             <NA>             44  25-100
## 4271        8803                             <NA>              6    3-10
## 4272        8803                             <NA>              6    3-10
## 4273        8803                             <NA>              6    3-10
## 4274        8803                             <NA>              6    3-10
## 4275        8803                             <NA>              6    3-10
## 4276        8803                             <NA>              6    3-10
## 4277        8803                             <NA>              6    3-10
## 4278        8803                             <NA>              6    3-10
## 4279        8803                             <NA>              6    3-10
## 4280        8803                             <NA>              6    3-10
## 4281        8803                             <NA>              6    3-10
## 4282        8803                             <NA>              6    3-10
## 4283        8803                             <NA>              6    3-10
## 4284        8803                             <NA>              6    3-10
## 4285        8803                             <NA>              6    3-10
## 4286        8803                             <NA>              6    3-10
## 4287        8803                             <NA>              6    3-10
## 4288        8803                             <NA>              6    3-10
## 4289        8803                             <NA>              6    3-10
## 4290        8803                             <NA>              6    3-10
## 4291        8803                             <NA>              6    3-10
## 4292        8803                             <NA>              6    3-10
## 4293        8803                             <NA>              6    3-10
## 4294        8803                             <NA>              6    3-10
## 4295        8803                             <NA>              6    3-10
## 4296        8803                             <NA>              6    3-10
## 4297        8803                             <NA>              6    3-10
## 4298        8803                             <NA>              6    3-10
## 4299        8803                             <NA>              6    3-10
## 4300        8803                             <NA>              6    3-10
## 4301        8803                             <NA>              6    3-10
## 4302        8803                             <NA>              6    3-10
## 4303        8803                             <NA>              6    3-10
## 4304        8803                             <NA>              6    3-10
## 4305        8803                             <NA>              6    3-10
## 4306        8803                             <NA>              6    3-10
## 4307        8803                             <NA>              6    3-10
## 4308        8803                             <NA>              6    3-10
## 4309        8803                             <NA>              6    3-10
## 4310        8803                             <NA>              6    3-10
## 4311        8803                             <NA>              6    3-10
## 4312        8803                             <NA>              6    3-10
## 4313        8803                             <NA>              6    3-10
## 4314        8803                             <NA>              6    3-10
## 4315        8803                             <NA>              6    3-10
## 4316        8803                             <NA>              6    3-10
## 4317        8803                             <NA>              6    3-10
## 4318        8803                             <NA>              6    3-10
## 4319        8803                             <NA>              6    3-10
## 4320        8803                             <NA>              6    3-10
## 4321        8803                             <NA>              6    3-10
## 4322        8803                             <NA>              6    3-10
## 4323        8803                             <NA>              6    3-10
## 4324        8803                             <NA>              6    3-10
## 4325        8803                             <NA>              6    3-10
## 4326        8803                             <NA>              6    3-10
## 4327        8803                             <NA>              6    3-10
## 4328        8803                             <NA>              6    3-10
## 4329        8803                             <NA>              6    3-10
## 4330        8803                             <NA>              6    3-10
## 4331        8803                             <NA>              6    3-10
## 4332        9011                             <NA>             47  25-100
## 4333        9011                             <NA>             47  25-100
## 4334        9011                             <NA>             47  25-100
## 4335        9011                             <NA>             47  25-100
## 4336        9011                             <NA>             47  25-100
## 4337        9011                             <NA>             47  25-100
## 4338        9011                             <NA>             47  25-100
## 4339        9011                             <NA>             47  25-100
## 4340        9011                             <NA>             47  25-100
## 4341        9011                             <NA>             47  25-100
## 4342        9011                             <NA>             47  25-100
## 4343        9011                             <NA>             47  25-100
## 4344        9011                             <NA>             47  25-100
## 4345        9011                             <NA>             47  25-100
## 4346        9011                             <NA>             47  25-100
## 4347        9011                             <NA>             47  25-100
## 4348        9011                             <NA>             47  25-100
## 4349        9011                             <NA>             47  25-100
## 4350        9011                             <NA>             47  25-100
## 4351        9011                             <NA>             47  25-100
## 4352        9011                             <NA>             47  25-100
## 4353        9011                             <NA>             47  25-100
## 4354        9011                             <NA>             47  25-100
## 4355        9011                             <NA>             47  25-100
## 4356        9011                             <NA>             47  25-100
## 4357        9011                             <NA>             47  25-100
## 4358        9011                             <NA>             47  25-100
## 4359        9011                             <NA>             47  25-100
## 4360        9011                             <NA>             47  25-100
## 4361        9011                             <NA>             47  25-100
## 4362        9011                             <NA>             47  25-100
## 4363        9011                             <NA>             47  25-100
## 4364        9011                             <NA>             47  25-100
## 4365        9011                             <NA>             47  25-100
## 4366        9011                             <NA>             47  25-100
## 4367        9011                             <NA>             47  25-100
## 4368        9011                             <NA>             47  25-100
## 4369        9011                             <NA>             47  25-100
## 4370        9011                             <NA>             47  25-100
## 4371        9011                             <NA>             47  25-100
## 4372        9011                             <NA>             47  25-100
## 4373        9011                             <NA>             47  25-100
## 4374        9011                             <NA>             47  25-100
## 4375        9011                             <NA>             47  25-100
## 4376        9011                             <NA>             47  25-100
## 4377        9011                             <NA>             47  25-100
## 4378        9011                             <NA>             47  25-100
## 4379        9011                             <NA>             47  25-100
## 4380        9011                             <NA>             47  25-100
## 4381        9011                             <NA>             47  25-100
## 4382        9011                             <NA>             47  25-100
## 4383        9011                             <NA>             47  25-100
## 4384        9011                             <NA>             47  25-100
## 4385        9011                             <NA>             47  25-100
## 4386        9011                             <NA>             47  25-100
## 4387        9011                             <NA>             47  25-100
## 4388        9011                             <NA>             47  25-100
## 4389        9011                             <NA>             47  25-100
## 4390        9011                             <NA>             47  25-100
## 4391        9011                             <NA>             47  25-100
## 4392        9011                             <NA>             47  25-100
## 4393        9430    Partially Protected - Default              8    3-10
## 4394        9430    Partially Protected - Default              8    3-10
## 4395        9430    Partially Protected - Default              8    3-10
## 4396        9430    Partially Protected - Default              8    3-10
## 4397        9430    Partially Protected - Default              8    3-10
## 4398        9430    Partially Protected - Default              8    3-10
## 4399        9430    Partially Protected - Default              8    3-10
## 4400        9430    Partially Protected - Default              8    3-10
## 4401        9430    Partially Protected - Default              8    3-10
## 4402        9430    Partially Protected - Default              8    3-10
## 4403        9430    Partially Protected - Default              8    3-10
## 4404        9430    Partially Protected - Default              8    3-10
## 4405        9430    Partially Protected - Default              8    3-10
## 4406        9430    Partially Protected - Default              8    3-10
## 4407        9430    Partially Protected - Default              8    3-10
## 4408        9430    Partially Protected - Default              8    3-10
## 4409        9430    Partially Protected - Default              8    3-10
## 4410        9430    Partially Protected - Default              8    3-10
## 4411        9430    Partially Protected - Default              8    3-10
## 4412        9430    Partially Protected - Default              8    3-10
## 4413        9430    Partially Protected - Default              8    3-10
## 4414        9430    Partially Protected - Default              8    3-10
## 4415        9430    Partially Protected - Default              8    3-10
## 4416        9430    Partially Protected - Default              8    3-10
## 4417        9430    Partially Protected - Default              8    3-10
## 4418        9430    Partially Protected - Default              8    3-10
## 4419        9430    Partially Protected - Default              8    3-10
## 4420        9430    Partially Protected - Default              8    3-10
## 4421        9430    Partially Protected - Default              8    3-10
## 4422        9430    Partially Protected - Default              8    3-10
## 4423        9430    Partially Protected - Default              8    3-10
## 4424        9430    Partially Protected - Default              8    3-10
## 4425        9430    Partially Protected - Default              8    3-10
## 4426        9430    Partially Protected - Default              8    3-10
## 4427        9430    Partially Protected - Default              8    3-10
## 4428        9430    Partially Protected - Default              8    3-10
## 4429        9430    Partially Protected - Default              8    3-10
## 4430        9430    Partially Protected - Default              8    3-10
## 4431        9430    Partially Protected - Default              8    3-10
## 4432        9430    Partially Protected - Default              8    3-10
## 4433        9430    Partially Protected - Default              8    3-10
## 4434        9430    Partially Protected - Default              8    3-10
## 4435        9430    Partially Protected - Default              8    3-10
## 4436        9430    Partially Protected - Default              8    3-10
## 4437        9430    Partially Protected - Default              8    3-10
## 4438        9430    Partially Protected - Default              8    3-10
## 4439        9430    Partially Protected - Default              8    3-10
## 4440        9430    Partially Protected - Default              8    3-10
## 4441        9430    Partially Protected - Default              8    3-10
## 4442        9430    Partially Protected - Default              8    3-10
## 4443        9430    Partially Protected - Default              8    3-10
## 4444        9430    Partially Protected - Default              8    3-10
## 4445        9430    Partially Protected - Default              8    3-10
## 4446        9430    Partially Protected - Default              8    3-10
## 4447        9430    Partially Protected - Default              8    3-10
## 4448        9430    Partially Protected - Default              8    3-10
## 4449        9430    Partially Protected - Default              8    3-10
## 4450        9430    Partially Protected - Default              8    3-10
## 4451        9430    Partially Protected - Default              8    3-10
## 4452        9430    Partially Protected - Default              8    3-10
## 4453        9430    Partially Protected - Default              8    3-10
## 4454        9430                 Featured Article              8    3-10
## 4455        9430                 Featured Article              8    3-10
## 4456        9430                 Featured Article              8    3-10
## 4457        9430                 Featured Article              8    3-10
## 4458        9430                 Featured Article              8    3-10
## 4459        9430                 Featured Article              8    3-10
## 4460        9430                 Featured Article              8    3-10
## 4461        9430                 Featured Article              8    3-10
## 4462        9430                 Featured Article              8    3-10
## 4463        9430                 Featured Article              8    3-10
## 4464        9430                 Featured Article              8    3-10
## 4465        9430                 Featured Article              8    3-10
## 4466        9430                 Featured Article              8    3-10
## 4467        9430                 Featured Article              8    3-10
## 4468        9430                 Featured Article              8    3-10
## 4469        9430                 Featured Article              8    3-10
## 4470        9430                 Featured Article              8    3-10
## 4471        9430                 Featured Article              8    3-10
## 4472        9430                 Featured Article              8    3-10
## 4473        9430                 Featured Article              8    3-10
## 4474        9430                 Featured Article              8    3-10
## 4475        9430                 Featured Article              8    3-10
## 4476        9430                 Featured Article              8    3-10
## 4477        9430                 Featured Article              8    3-10
## 4478        9430                 Featured Article              8    3-10
## 4479        9430                 Featured Article              8    3-10
## 4480        9430                 Featured Article              8    3-10
## 4481        9430                 Featured Article              8    3-10
## 4482        9430                 Featured Article              8    3-10
## 4483        9430                 Featured Article              8    3-10
## 4484        9430                 Featured Article              8    3-10
## 4485        9430                 Featured Article              8    3-10
## 4486        9430                 Featured Article              8    3-10
## 4487        9430                 Featured Article              8    3-10
## 4488        9430                 Featured Article              8    3-10
## 4489        9430                 Featured Article              8    3-10
## 4490        9430                 Featured Article              8    3-10
## 4491        9430                 Featured Article              8    3-10
## 4492        9430                 Featured Article              8    3-10
## 4493        9430                 Featured Article              8    3-10
## 4494        9430                 Featured Article              8    3-10
## 4495        9430                 Featured Article              8    3-10
## 4496        9430                 Featured Article              8    3-10
## 4497        9430                 Featured Article              8    3-10
## 4498        9430                 Featured Article              8    3-10
## 4499        9430                 Featured Article              8    3-10
## 4500        9430                 Featured Article              8    3-10
## 4501        9430                 Featured Article              8    3-10
## 4502        9430                 Featured Article              8    3-10
## 4503        9430                 Featured Article              8    3-10
## 4504        9430                 Featured Article              8    3-10
## 4505        9430                 Featured Article              8    3-10
## 4506        9430                 Featured Article              8    3-10
## 4507        9430                 Featured Article              8    3-10
## 4508        9430                 Featured Article              8    3-10
## 4509        9430                 Featured Article              8    3-10
## 4510        9430                 Featured Article              8    3-10
## 4511        9430                 Featured Article              8    3-10
## 4512        9430                 Featured Article              8    3-10
## 4513        9430                 Featured Article              8    3-10
## 4514        9430                 Featured Article              8    3-10
## 4515        9515                             <NA>            715    500-
## 4516        9515                             <NA>            715    500-
## 4517        9515                             <NA>            715    500-
## 4518        9515                             <NA>            715    500-
## 4519        9515                             <NA>            715    500-
## 4520        9515                             <NA>            715    500-
## 4521        9515                             <NA>            715    500-
## 4522        9515                             <NA>            715    500-
## 4523        9515                             <NA>            715    500-
## 4524        9515                             <NA>            715    500-
## 4525        9515                             <NA>            715    500-
## 4526        9515                             <NA>            715    500-
## 4527        9515                             <NA>            715    500-
## 4528        9515                             <NA>            715    500-
## 4529        9515                             <NA>            715    500-
## 4530        9515                             <NA>            715    500-
## 4531        9515                             <NA>            715    500-
## 4532        9515                             <NA>            715    500-
## 4533        9515                             <NA>            715    500-
## 4534        9515                             <NA>            715    500-
## 4535        9515                             <NA>            715    500-
## 4536        9515                             <NA>            715    500-
## 4537        9515                             <NA>            715    500-
## 4538        9515                             <NA>            715    500-
## 4539        9515                             <NA>            715    500-
## 4540        9515                             <NA>            715    500-
## 4541        9515                             <NA>            715    500-
## 4542        9515                             <NA>            715    500-
## 4543        9515                             <NA>            715    500-
## 4544        9515                             <NA>            715    500-
## 4545        9515                             <NA>            715    500-
## 4546        9515                             <NA>            715    500-
## 4547        9515                             <NA>            715    500-
## 4548        9515                             <NA>            715    500-
## 4549        9515                             <NA>            715    500-
## 4550        9515                             <NA>            715    500-
## 4551        9515                             <NA>            715    500-
## 4552        9515                             <NA>            715    500-
## 4553        9515                             <NA>            715    500-
## 4554        9515                             <NA>            715    500-
## 4555        9515                             <NA>            715    500-
## 4556        9515                             <NA>            715    500-
## 4557        9515                             <NA>            715    500-
## 4558        9515                             <NA>            715    500-
## 4559        9515                             <NA>            715    500-
## 4560        9515                             <NA>            715    500-
## 4561        9515                             <NA>            715    500-
## 4562        9515                             <NA>            715    500-
## 4563        9515                             <NA>            715    500-
## 4564        9515                             <NA>            715    500-
## 4565        9515                             <NA>            715    500-
## 4566        9515                             <NA>            715    500-
## 4567        9515                             <NA>            715    500-
## 4568        9515                             <NA>            715    500-
## 4569        9515                             <NA>            715    500-
## 4570        9515                             <NA>            715    500-
## 4571        9515                             <NA>            715    500-
## 4572        9515                             <NA>            715    500-
## 4573        9515                             <NA>            715    500-
## 4574        9515                             <NA>            715    500-
## 4575        9515                             <NA>            715    500-
## 4576        9649    Partially Protected - Default           1810    500-
## 4577        9649    Partially Protected - Default           1810    500-
## 4578        9649    Partially Protected - Default           1810    500-
## 4579        9649    Partially Protected - Default           1810    500-
## 4580        9649    Partially Protected - Default           1810    500-
## 4581        9649    Partially Protected - Default           1810    500-
## 4582        9649    Partially Protected - Default           1810    500-
## 4583        9649    Partially Protected - Default           1810    500-
## 4584        9649    Partially Protected - Default           1810    500-
## 4585        9649    Partially Protected - Default           1810    500-
## 4586        9649    Partially Protected - Default           1810    500-
## 4587        9649    Partially Protected - Default           1810    500-
## 4588        9649    Partially Protected - Default           1810    500-
## 4589        9649    Partially Protected - Default           1810    500-
## 4590        9649    Partially Protected - Default           1810    500-
## 4591        9649    Partially Protected - Default           1810    500-
## 4592        9649    Partially Protected - Default           1810    500-
## 4593        9649    Partially Protected - Default           1810    500-
## 4594        9649    Partially Protected - Default           1810    500-
## 4595        9649    Partially Protected - Default           1810    500-
## 4596        9649    Partially Protected - Default           1810    500-
## 4597        9649    Partially Protected - Default           1810    500-
## 4598        9649    Partially Protected - Default           1810    500-
## 4599        9649    Partially Protected - Default           1810    500-
## 4600        9649    Partially Protected - Default           1810    500-
## 4601        9649    Partially Protected - Default           1810    500-
## 4602        9649    Partially Protected - Default           1810    500-
## 4603        9649    Partially Protected - Default           1810    500-
## 4604        9649    Partially Protected - Default           1810    500-
## 4605        9649    Partially Protected - Default           1810    500-
## 4606        9649    Partially Protected - Default           1810    500-
## 4607        9649    Partially Protected - Default           1810    500-
## 4608        9649    Partially Protected - Default           1810    500-
## 4609        9649    Partially Protected - Default           1810    500-
## 4610        9649    Partially Protected - Default           1810    500-
## 4611        9649    Partially Protected - Default           1810    500-
## 4612        9649    Partially Protected - Default           1810    500-
## 4613        9649    Partially Protected - Default           1810    500-
## 4614        9649    Partially Protected - Default           1810    500-
## 4615        9649    Partially Protected - Default           1810    500-
## 4616        9649    Partially Protected - Default           1810    500-
## 4617        9649    Partially Protected - Default           1810    500-
## 4618        9649    Partially Protected - Default           1810    500-
## 4619        9649    Partially Protected - Default           1810    500-
## 4620        9649    Partially Protected - Default           1810    500-
## 4621        9649    Partially Protected - Default           1810    500-
## 4622        9649    Partially Protected - Default           1810    500-
## 4623        9649    Partially Protected - Default           1810    500-
## 4624        9649    Partially Protected - Default           1810    500-
## 4625        9649    Partially Protected - Default           1810    500-
## 4626        9649    Partially Protected - Default           1810    500-
## 4627        9649    Partially Protected - Default           1810    500-
## 4628        9649    Partially Protected - Default           1810    500-
## 4629        9649    Partially Protected - Default           1810    500-
## 4630        9649    Partially Protected - Default           1810    500-
## 4631        9649    Partially Protected - Default           1810    500-
## 4632        9649    Partially Protected - Default           1810    500-
## 4633        9649    Partially Protected - Default           1810    500-
## 4634        9649    Partially Protected - Default           1810    500-
## 4635        9649    Partially Protected - Default           1810    500-
## 4636        9649    Partially Protected - Default           1810    500-
## 4637        9838                             <NA>            451 100-500
## 4638        9838                             <NA>            451 100-500
## 4639        9838                             <NA>            451 100-500
## 4640        9838                             <NA>            451 100-500
## 4641        9838                             <NA>            451 100-500
## 4642        9838                             <NA>            451 100-500
## 4643        9838                             <NA>            451 100-500
## 4644        9838                             <NA>            451 100-500
## 4645        9838                             <NA>            451 100-500
## 4646        9838                             <NA>            451 100-500
## 4647        9838                             <NA>            451 100-500
## 4648        9838                             <NA>            451 100-500
## 4649        9838                             <NA>            451 100-500
## 4650        9838                             <NA>            451 100-500
## 4651        9838                             <NA>            451 100-500
## 4652        9838                             <NA>            451 100-500
## 4653        9838                             <NA>            451 100-500
## 4654        9838                             <NA>            451 100-500
## 4655        9838                             <NA>            451 100-500
## 4656        9838                             <NA>            451 100-500
## 4657        9838                             <NA>            451 100-500
## 4658        9838                             <NA>            451 100-500
## 4659        9838                             <NA>            451 100-500
## 4660        9838                             <NA>            451 100-500
## 4661        9838                             <NA>            451 100-500
## 4662        9838                             <NA>            451 100-500
## 4663        9838                             <NA>            451 100-500
## 4664        9838                             <NA>            451 100-500
## 4665        9838                             <NA>            451 100-500
## 4666        9838                             <NA>            451 100-500
## 4667        9838                             <NA>            451 100-500
## 4668        9838                             <NA>            451 100-500
## 4669        9838                             <NA>            451 100-500
## 4670        9838                             <NA>            451 100-500
## 4671        9838                             <NA>            451 100-500
## 4672        9838                             <NA>            451 100-500
## 4673        9838                             <NA>            451 100-500
## 4674        9838                             <NA>            451 100-500
## 4675        9838                             <NA>            451 100-500
## 4676        9838                             <NA>            451 100-500
## 4677        9838                             <NA>            451 100-500
## 4678        9838                             <NA>            451 100-500
## 4679        9838                             <NA>            451 100-500
## 4680        9838                             <NA>            451 100-500
## 4681        9838                             <NA>            451 100-500
## 4682        9838                             <NA>            451 100-500
## 4683        9838                             <NA>            451 100-500
## 4684        9838                             <NA>            451 100-500
## 4685        9838                             <NA>            451 100-500
## 4686        9838                             <NA>            451 100-500
## 4687        9838                             <NA>            451 100-500
## 4688        9838                             <NA>            451 100-500
## 4689        9838                             <NA>            451 100-500
## 4690        9838                             <NA>            451 100-500
## 4691        9838                             <NA>            451 100-500
## 4692        9838                             <NA>            451 100-500
## 4693        9838                             <NA>            451 100-500
## 4694        9838                             <NA>            451 100-500
## 4695        9838                             <NA>            451 100-500
## 4696        9838                             <NA>            451 100-500
## 4697        9838                             <NA>            451 100-500
## 4698        9846                             <NA>              2     1-2
## 4699        9846                             <NA>              2     1-2
## 4700        9846                             <NA>              2     1-2
## 4701        9846                             <NA>              2     1-2
## 4702        9846                             <NA>              2     1-2
## 4703        9846                             <NA>              2     1-2
## 4704        9846                             <NA>              2     1-2
## 4705        9846                             <NA>              2     1-2
## 4706        9846                             <NA>              2     1-2
## 4707        9846                             <NA>              2     1-2
## 4708        9846                             <NA>              2     1-2
## 4709        9846                             <NA>              2     1-2
## 4710        9846                             <NA>              2     1-2
## 4711        9846                             <NA>              2     1-2
## 4712        9846                             <NA>              2     1-2
## 4713        9846                             <NA>              2     1-2
## 4714        9846                             <NA>              2     1-2
## 4715        9846                             <NA>              2     1-2
## 4716        9846                             <NA>              2     1-2
## 4717        9846                             <NA>              2     1-2
## 4718        9846                             <NA>              2     1-2
## 4719        9846                             <NA>              2     1-2
## 4720        9846                             <NA>              2     1-2
## 4721        9846                             <NA>              2     1-2
## 4722        9846                             <NA>              2     1-2
## 4723        9846                             <NA>              2     1-2
## 4724        9846                             <NA>              2     1-2
## 4725        9846                             <NA>              2     1-2
## 4726        9846                             <NA>              2     1-2
## 4727        9846                             <NA>              2     1-2
## 4728        9846                             <NA>              2     1-2
## 4729        9846                             <NA>              2     1-2
## 4730        9846                             <NA>              2     1-2
## 4731        9846                             <NA>              2     1-2
## 4732        9846                             <NA>              2     1-2
## 4733        9846                             <NA>              2     1-2
## 4734        9846                             <NA>              2     1-2
## 4735        9846                             <NA>              2     1-2
## 4736        9846                             <NA>              2     1-2
## 4737        9846                             <NA>              2     1-2
## 4738        9846                             <NA>              2     1-2
## 4739        9846                             <NA>              2     1-2
## 4740        9846                             <NA>              2     1-2
## 4741        9846                             <NA>              2     1-2
## 4742        9846                             <NA>              2     1-2
## 4743        9846                             <NA>              2     1-2
## 4744        9846                             <NA>              2     1-2
## 4745        9846                             <NA>              2     1-2
## 4746        9846                             <NA>              2     1-2
## 4747        9846                             <NA>              2     1-2
## 4748        9846                             <NA>              2     1-2
## 4749        9846                             <NA>              2     1-2
## 4750        9846                             <NA>              2     1-2
## 4751        9846                             <NA>              2     1-2
## 4752        9846                             <NA>              2     1-2
## 4753        9846                             <NA>              2     1-2
## 4754        9846                             <NA>              2     1-2
## 4755        9846                             <NA>              2     1-2
## 4756        9846                             <NA>              2     1-2
## 4757        9846                             <NA>              2     1-2
## 4758        9846                             <NA>              2     1-2
## 4759        9946                             <NA>            205 100-500
## 4760        9946                             <NA>            205 100-500
## 4761        9946                             <NA>            205 100-500
## 4762        9946                             <NA>            205 100-500
## 4763        9946                             <NA>            205 100-500
## 4764        9946                             <NA>            205 100-500
## 4765        9946                             <NA>            205 100-500
## 4766        9946                             <NA>            205 100-500
## 4767        9946                             <NA>            205 100-500
## 4768        9946                             <NA>            205 100-500
## 4769        9946                             <NA>            205 100-500
## 4770        9946                             <NA>            205 100-500
## 4771        9946                             <NA>            205 100-500
## 4772        9946                             <NA>            205 100-500
## 4773        9946                             <NA>            205 100-500
## 4774        9946                             <NA>            205 100-500
## 4775        9946                             <NA>            205 100-500
## 4776        9946                             <NA>            205 100-500
## 4777        9946                             <NA>            205 100-500
## 4778        9946                             <NA>            205 100-500
## 4779        9946                             <NA>            205 100-500
## 4780        9946                             <NA>            205 100-500
## 4781        9946                             <NA>            205 100-500
## 4782        9946                             <NA>            205 100-500
## 4783        9946                             <NA>            205 100-500
## 4784        9946                             <NA>            205 100-500
## 4785        9946                             <NA>            205 100-500
## 4786        9946                             <NA>            205 100-500
## 4787        9946                             <NA>            205 100-500
## 4788        9946                             <NA>            205 100-500
## 4789        9946                             <NA>            205 100-500
## 4790        9946                             <NA>            205 100-500
## 4791        9946                             <NA>            205 100-500
## 4792        9946                             <NA>            205 100-500
## 4793        9946                             <NA>            205 100-500
## 4794        9946                             <NA>            205 100-500
## 4795        9946                             <NA>            205 100-500
## 4796        9946                             <NA>            205 100-500
## 4797        9946                             <NA>            205 100-500
## 4798        9946                             <NA>            205 100-500
## 4799        9946                             <NA>            205 100-500
## 4800        9946                             <NA>            205 100-500
## 4801        9946                             <NA>            205 100-500
## 4802        9946                             <NA>            205 100-500
## 4803        9946                             <NA>            205 100-500
## 4804        9946                             <NA>            205 100-500
## 4805        9946                             <NA>            205 100-500
## 4806        9946                             <NA>            205 100-500
## 4807        9946                             <NA>            205 100-500
## 4808        9946                             <NA>            205 100-500
## 4809        9946                             <NA>            205 100-500
## 4810        9946                             <NA>            205 100-500
## 4811        9946                             <NA>            205 100-500
## 4812        9946                             <NA>            205 100-500
## 4813        9946                             <NA>            205 100-500
## 4814        9946                             <NA>            205 100-500
## 4815        9946                             <NA>            205 100-500
## 4816        9946                             <NA>            205 100-500
## 4817        9946                             <NA>            205 100-500
## 4818        9946                             <NA>            205 100-500
## 4819        9946                             <NA>            205 100-500
## 4820       10074                             <NA>            151 100-500
## 4821       10074                             <NA>            151 100-500
## 4822       10074                             <NA>            151 100-500
## 4823       10074                             <NA>            151 100-500
## 4824       10074                             <NA>            151 100-500
## 4825       10074                             <NA>            151 100-500
## 4826       10074                             <NA>            151 100-500
## 4827       10074                             <NA>            151 100-500
## 4828       10074                             <NA>            151 100-500
## 4829       10074                             <NA>            151 100-500
## 4830       10074                             <NA>            151 100-500
## 4831       10074                             <NA>            151 100-500
## 4832       10074                             <NA>            151 100-500
## 4833       10074                             <NA>            151 100-500
## 4834       10074                             <NA>            151 100-500
## 4835       10074                             <NA>            151 100-500
## 4836       10074                             <NA>            151 100-500
## 4837       10074                             <NA>            151 100-500
## 4838       10074                             <NA>            151 100-500
## 4839       10074                             <NA>            151 100-500
## 4840       10074                             <NA>            151 100-500
## 4841       10074                             <NA>            151 100-500
## 4842       10074                             <NA>            151 100-500
## 4843       10074                             <NA>            151 100-500
## 4844       10074                             <NA>            151 100-500
## 4845       10074                             <NA>            151 100-500
## 4846       10074                             <NA>            151 100-500
## 4847       10074                             <NA>            151 100-500
## 4848       10074                             <NA>            151 100-500
## 4849       10074                             <NA>            151 100-500
## 4850       10074                             <NA>            151 100-500
## 4851       10074                             <NA>            151 100-500
## 4852       10074                             <NA>            151 100-500
## 4853       10074                             <NA>            151 100-500
## 4854       10074                             <NA>            151 100-500
## 4855       10074                             <NA>            151 100-500
## 4856       10074                             <NA>            151 100-500
## 4857       10074                             <NA>            151 100-500
## 4858       10074                             <NA>            151 100-500
## 4859       10074                             <NA>            151 100-500
## 4860       10074                             <NA>            151 100-500
## 4861       10074                             <NA>            151 100-500
## 4862       10074                             <NA>            151 100-500
## 4863       10074                             <NA>            151 100-500
## 4864       10074                             <NA>            151 100-500
## 4865       10074                             <NA>            151 100-500
## 4866       10074                             <NA>            151 100-500
## 4867       10074                             <NA>            151 100-500
## 4868       10074                             <NA>            151 100-500
## 4869       10074                             <NA>            151 100-500
## 4870       10074                             <NA>            151 100-500
## 4871       10074                             <NA>            151 100-500
## 4872       10074                             <NA>            151 100-500
## 4873       10074                             <NA>            151 100-500
## 4874       10074                             <NA>            151 100-500
## 4875       10074                             <NA>            151 100-500
## 4876       10074                             <NA>            151 100-500
## 4877       10074                             <NA>            151 100-500
## 4878       10074                             <NA>            151 100-500
## 4879       10074                             <NA>            151 100-500
## 4880       10074                             <NA>            151 100-500
## 4881       10334                             <NA>             41  25-100
## 4882       10334                             <NA>             41  25-100
## 4883       10334                             <NA>             41  25-100
## 4884       10334                             <NA>             41  25-100
## 4885       10334                             <NA>             41  25-100
## 4886       10334                             <NA>             41  25-100
## 4887       10334                             <NA>             41  25-100
## 4888       10334                             <NA>             41  25-100
## 4889       10334                             <NA>             41  25-100
## 4890       10334                             <NA>             41  25-100
## 4891       10334                             <NA>             41  25-100
## 4892       10334                             <NA>             41  25-100
## 4893       10334                             <NA>             41  25-100
## 4894       10334                             <NA>             41  25-100
## 4895       10334                             <NA>             41  25-100
## 4896       10334                             <NA>             41  25-100
## 4897       10334                             <NA>             41  25-100
## 4898       10334                             <NA>             41  25-100
## 4899       10334                             <NA>             41  25-100
## 4900       10334                             <NA>             41  25-100
## 4901       10334                             <NA>             41  25-100
## 4902       10334                             <NA>             41  25-100
## 4903       10334                             <NA>             41  25-100
## 4904       10334                             <NA>             41  25-100
## 4905       10334                             <NA>             41  25-100
## 4906       10334                             <NA>             41  25-100
## 4907       10334                             <NA>             41  25-100
## 4908       10334                             <NA>             41  25-100
## 4909       10334                             <NA>             41  25-100
## 4910       10334                             <NA>             41  25-100
## 4911       10334                             <NA>             41  25-100
## 4912       10334                             <NA>             41  25-100
## 4913       10334                             <NA>             41  25-100
## 4914       10334                             <NA>             41  25-100
## 4915       10334                             <NA>             41  25-100
## 4916       10334                             <NA>             41  25-100
## 4917       10334                             <NA>             41  25-100
## 4918       10334                             <NA>             41  25-100
## 4919       10334                             <NA>             41  25-100
## 4920       10334                             <NA>             41  25-100
## 4921       10334                             <NA>             41  25-100
## 4922       10334                             <NA>             41  25-100
## 4923       10334                             <NA>             41  25-100
## 4924       10334                             <NA>             41  25-100
## 4925       10334                             <NA>             41  25-100
## 4926       10334                             <NA>             41  25-100
## 4927       10334                             <NA>             41  25-100
## 4928       10334                             <NA>             41  25-100
## 4929       10334                             <NA>             41  25-100
## 4930       10334                             <NA>             41  25-100
## 4931       10334                             <NA>             41  25-100
## 4932       10334                             <NA>             41  25-100
## 4933       10334                             <NA>             41  25-100
## 4934       10334                             <NA>             41  25-100
## 4935       10334                             <NA>             41  25-100
## 4936       10334                             <NA>             41  25-100
## 4937       10334                             <NA>             41  25-100
## 4938       10334                             <NA>             41  25-100
## 4939       10334                             <NA>             41  25-100
## 4940       10334                             <NA>             41  25-100
## 4941       10334                             <NA>             41  25-100
## 4942       10500                             <NA>            111 100-500
## 4943       10500                             <NA>            111 100-500
## 4944       10500                             <NA>            111 100-500
## 4945       10500                             <NA>            111 100-500
## 4946       10500                             <NA>            111 100-500
## 4947       10500                             <NA>            111 100-500
## 4948       10500                             <NA>            111 100-500
## 4949       10500                             <NA>            111 100-500
## 4950       10500                             <NA>            111 100-500
## 4951       10500                             <NA>            111 100-500
## 4952       10500                             <NA>            111 100-500
## 4953       10500                             <NA>            111 100-500
## 4954       10500                             <NA>            111 100-500
## 4955       10500                             <NA>            111 100-500
## 4956       10500                             <NA>            111 100-500
## 4957       10500                             <NA>            111 100-500
## 4958       10500                             <NA>            111 100-500
## 4959       10500                             <NA>            111 100-500
## 4960       10500                             <NA>            111 100-500
## 4961       10500                             <NA>            111 100-500
## 4962       10500                             <NA>            111 100-500
## 4963       10500                             <NA>            111 100-500
## 4964       10500                             <NA>            111 100-500
## 4965       10500                             <NA>            111 100-500
## 4966       10500                             <NA>            111 100-500
## 4967       10500                             <NA>            111 100-500
## 4968       10500                             <NA>            111 100-500
## 4969       10500                             <NA>            111 100-500
## 4970       10500                             <NA>            111 100-500
## 4971       10500                             <NA>            111 100-500
## 4972       10500                             <NA>            111 100-500
## 4973       10500                             <NA>            111 100-500
## 4974       10500                             <NA>            111 100-500
## 4975       10500                             <NA>            111 100-500
## 4976       10500                             <NA>            111 100-500
## 4977       10500                             <NA>            111 100-500
## 4978       10500                             <NA>            111 100-500
## 4979       10500                             <NA>            111 100-500
## 4980       10500                             <NA>            111 100-500
## 4981       10500                             <NA>            111 100-500
## 4982       10500                             <NA>            111 100-500
## 4983       10500                             <NA>            111 100-500
## 4984       10500                             <NA>            111 100-500
## 4985       10500                             <NA>            111 100-500
## 4986       10500                             <NA>            111 100-500
## 4987       10500                             <NA>            111 100-500
## 4988       10500                             <NA>            111 100-500
## 4989       10500                             <NA>            111 100-500
## 4990       10500                             <NA>            111 100-500
## 4991       10500                             <NA>            111 100-500
## 4992       10500                             <NA>            111 100-500
## 4993       10500                             <NA>            111 100-500
## 4994       10500                             <NA>            111 100-500
## 4995       10500                             <NA>            111 100-500
## 4996       10500                             <NA>            111 100-500
## 4997       10500                             <NA>            111 100-500
## 4998       10500                             <NA>            111 100-500
## 4999       10500                             <NA>            111 100-500
## 5000       10500                             <NA>            111 100-500
## 5001       10500                             <NA>            111 100-500
## 5002       10500                             <NA>            111 100-500
## 5003       10632                             <NA>             66  25-100
## 5004       10632                             <NA>             66  25-100
## 5005       10632                             <NA>             66  25-100
## 5006       10632                             <NA>             66  25-100
## 5007       10632                             <NA>             66  25-100
## 5008       10632                             <NA>             66  25-100
## 5009       10632                             <NA>             66  25-100
## 5010       10632                             <NA>             66  25-100
## 5011       10632                             <NA>             66  25-100
## 5012       10632                             <NA>             66  25-100
## 5013       10632                             <NA>             66  25-100
## 5014       10632                             <NA>             66  25-100
## 5015       10632                             <NA>             66  25-100
## 5016       10632                             <NA>             66  25-100
## 5017       10632                             <NA>             66  25-100
## 5018       10632                             <NA>             66  25-100
## 5019       10632                             <NA>             66  25-100
## 5020       10632                             <NA>             66  25-100
## 5021       10632                             <NA>             66  25-100
## 5022       10632                             <NA>             66  25-100
## 5023       10632                             <NA>             66  25-100
## 5024       10632                             <NA>             66  25-100
## 5025       10632                             <NA>             66  25-100
## 5026       10632                             <NA>             66  25-100
## 5027       10632                             <NA>             66  25-100
## 5028       10632                             <NA>             66  25-100
## 5029       10632                             <NA>             66  25-100
## 5030       10632                             <NA>             66  25-100
## 5031       10632                             <NA>             66  25-100
## 5032       10632                             <NA>             66  25-100
## 5033       10632                             <NA>             66  25-100
## 5034       10632                             <NA>             66  25-100
## 5035       10632                             <NA>             66  25-100
## 5036       10632                             <NA>             66  25-100
## 5037       10632                             <NA>             66  25-100
## 5038       10632                             <NA>             66  25-100
## 5039       10632                             <NA>             66  25-100
## 5040       10632                             <NA>             66  25-100
## 5041       10632                             <NA>             66  25-100
## 5042       10632                             <NA>             66  25-100
## 5043       10632                             <NA>             66  25-100
## 5044       10632                             <NA>             66  25-100
## 5045       10632                             <NA>             66  25-100
## 5046       10632                             <NA>             66  25-100
## 5047       10632                             <NA>             66  25-100
## 5048       10632                             <NA>             66  25-100
## 5049       10632                             <NA>             66  25-100
## 5050       10632                             <NA>             66  25-100
## 5051       10632                             <NA>             66  25-100
## 5052       10632                             <NA>             66  25-100
## 5053       10632                             <NA>             66  25-100
## 5054       10632                             <NA>             66  25-100
## 5055       10632                             <NA>             66  25-100
## 5056       10632                             <NA>             66  25-100
## 5057       10632                             <NA>             66  25-100
## 5058       10632                             <NA>             66  25-100
## 5059       10632                             <NA>             66  25-100
## 5060       10632                             <NA>             66  25-100
## 5061       10632                             <NA>             66  25-100
## 5062       10632                             <NA>             66  25-100
## 5063       10632                             <NA>             66  25-100
## 5064       10845                             <NA>            303 100-500
## 5065       10845                             <NA>            303 100-500
## 5066       10845                             <NA>            303 100-500
## 5067       10845                             <NA>            303 100-500
## 5068       10845                             <NA>            303 100-500
## 5069       10845                             <NA>            303 100-500
## 5070       10845                             <NA>            303 100-500
## 5071       10845                             <NA>            303 100-500
## 5072       10845                             <NA>            303 100-500
## 5073       10845                             <NA>            303 100-500
## 5074       10845                             <NA>            303 100-500
## 5075       10845                             <NA>            303 100-500
## 5076       10845                             <NA>            303 100-500
## 5077       10845                             <NA>            303 100-500
## 5078       10845                             <NA>            303 100-500
## 5079       10845                             <NA>            303 100-500
## 5080       10845                             <NA>            303 100-500
## 5081       10845                             <NA>            303 100-500
## 5082       10845                             <NA>            303 100-500
## 5083       10845                             <NA>            303 100-500
## 5084       10845                             <NA>            303 100-500
## 5085       10845                             <NA>            303 100-500
## 5086       10845                             <NA>            303 100-500
## 5087       10845                             <NA>            303 100-500
## 5088       10845                             <NA>            303 100-500
## 5089       10845                             <NA>            303 100-500
## 5090       10845                             <NA>            303 100-500
## 5091       10845                             <NA>            303 100-500
## 5092       10845                             <NA>            303 100-500
## 5093       10845                             <NA>            303 100-500
## 5094       10845                             <NA>            303 100-500
## 5095       10845                             <NA>            303 100-500
## 5096       10845                             <NA>            303 100-500
## 5097       10845                             <NA>            303 100-500
## 5098       10845                             <NA>            303 100-500
## 5099       10845                             <NA>            303 100-500
## 5100       10845                             <NA>            303 100-500
## 5101       10845                             <NA>            303 100-500
## 5102       10845                             <NA>            303 100-500
## 5103       10845                             <NA>            303 100-500
## 5104       10845                             <NA>            303 100-500
## 5105       10845                             <NA>            303 100-500
## 5106       10845                             <NA>            303 100-500
## 5107       10845                             <NA>            303 100-500
## 5108       10845                             <NA>            303 100-500
## 5109       10845                             <NA>            303 100-500
## 5110       10845                             <NA>            303 100-500
## 5111       10845                             <NA>            303 100-500
## 5112       10845                             <NA>            303 100-500
## 5113       10845                             <NA>            303 100-500
## 5114       10845                             <NA>            303 100-500
## 5115       10845                             <NA>            303 100-500
## 5116       10845                             <NA>            303 100-500
## 5117       10845                             <NA>            303 100-500
## 5118       10845                             <NA>            303 100-500
## 5119       10845                             <NA>            303 100-500
## 5120       10845                             <NA>            303 100-500
## 5121       10845                             <NA>            303 100-500
## 5122       10845                             <NA>            303 100-500
## 5123       10845                             <NA>            303 100-500
## 5124       10845                             <NA>            303 100-500
## 5125       10864                             <NA>             86  25-100
## 5126       10864                             <NA>             86  25-100
## 5127       10864                             <NA>             86  25-100
## 5128       10864                             <NA>             86  25-100
## 5129       10864                             <NA>             86  25-100
## 5130       10864                             <NA>             86  25-100
## 5131       10864                             <NA>             86  25-100
## 5132       10864                             <NA>             86  25-100
## 5133       10864                             <NA>             86  25-100
## 5134       10864                             <NA>             86  25-100
## 5135       10864                             <NA>             86  25-100
## 5136       10864                             <NA>             86  25-100
## 5137       10864                             <NA>             86  25-100
## 5138       10864                             <NA>             86  25-100
## 5139       10864                             <NA>             86  25-100
## 5140       10864                             <NA>             86  25-100
## 5141       10864                             <NA>             86  25-100
## 5142       10864                             <NA>             86  25-100
## 5143       10864                             <NA>             86  25-100
## 5144       10864                             <NA>             86  25-100
## 5145       10864                             <NA>             86  25-100
## 5146       10864                             <NA>             86  25-100
## 5147       10864                             <NA>             86  25-100
## 5148       10864                             <NA>             86  25-100
## 5149       10864                             <NA>             86  25-100
## 5150       10864                             <NA>             86  25-100
## 5151       10864                             <NA>             86  25-100
## 5152       10864                             <NA>             86  25-100
## 5153       10864                             <NA>             86  25-100
## 5154       10864                             <NA>             86  25-100
## 5155       10864                             <NA>             86  25-100
## 5156       10864                             <NA>             86  25-100
## 5157       10864                             <NA>             86  25-100
## 5158       10864                             <NA>             86  25-100
## 5159       10864                             <NA>             86  25-100
## 5160       10864                             <NA>             86  25-100
## 5161       10864                             <NA>             86  25-100
## 5162       10864                             <NA>             86  25-100
## 5163       10864                             <NA>             86  25-100
## 5164       10864                             <NA>             86  25-100
## 5165       10864                             <NA>             86  25-100
## 5166       10864                             <NA>             86  25-100
## 5167       10864                             <NA>             86  25-100
## 5168       10864                             <NA>             86  25-100
## 5169       10864                             <NA>             86  25-100
## 5170       10864                             <NA>             86  25-100
## 5171       10864                             <NA>             86  25-100
## 5172       10864                             <NA>             86  25-100
## 5173       10864                             <NA>             86  25-100
## 5174       10864                             <NA>             86  25-100
## 5175       10864                             <NA>             86  25-100
## 5176       10864                             <NA>             86  25-100
## 5177       10864                             <NA>             86  25-100
## 5178       10864                             <NA>             86  25-100
## 5179       10864                             <NA>             86  25-100
## 5180       10864                             <NA>             86  25-100
## 5181       10864                             <NA>             86  25-100
## 5182       10864                             <NA>             86  25-100
## 5183       10864                             <NA>             86  25-100
## 5184       10864                             <NA>             86  25-100
## 5185       10864                             <NA>             86  25-100
## 5186       11001                             <NA>            196 100-500
## 5187       11001                             <NA>            196 100-500
## 5188       11001                             <NA>            196 100-500
## 5189       11001                             <NA>            196 100-500
## 5190       11001                             <NA>            196 100-500
## 5191       11001                             <NA>            196 100-500
## 5192       11001                             <NA>            196 100-500
## 5193       11001                             <NA>            196 100-500
## 5194       11001                             <NA>            196 100-500
## 5195       11001                             <NA>            196 100-500
## 5196       11001                             <NA>            196 100-500
## 5197       11001                             <NA>            196 100-500
## 5198       11001                             <NA>            196 100-500
## 5199       11001                             <NA>            196 100-500
## 5200       11001                             <NA>            196 100-500
## 5201       11001                             <NA>            196 100-500
## 5202       11001                             <NA>            196 100-500
## 5203       11001                             <NA>            196 100-500
## 5204       11001                             <NA>            196 100-500
## 5205       11001                             <NA>            196 100-500
## 5206       11001                             <NA>            196 100-500
## 5207       11001                             <NA>            196 100-500
## 5208       11001                             <NA>            196 100-500
## 5209       11001                             <NA>            196 100-500
## 5210       11001                             <NA>            196 100-500
## 5211       11001                             <NA>            196 100-500
## 5212       11001                             <NA>            196 100-500
## 5213       11001                             <NA>            196 100-500
## 5214       11001                             <NA>            196 100-500
## 5215       11001                             <NA>            196 100-500
## 5216       11001                             <NA>            196 100-500
## 5217       11001                             <NA>            196 100-500
## 5218       11001                             <NA>            196 100-500
## 5219       11001                             <NA>            196 100-500
## 5220       11001                             <NA>            196 100-500
## 5221       11001                             <NA>            196 100-500
## 5222       11001                             <NA>            196 100-500
## 5223       11001                             <NA>            196 100-500
## 5224       11001                             <NA>            196 100-500
## 5225       11001                             <NA>            196 100-500
## 5226       11001                             <NA>            196 100-500
## 5227       11001                             <NA>            196 100-500
## 5228       11001                             <NA>            196 100-500
## 5229       11001                             <NA>            196 100-500
## 5230       11001                             <NA>            196 100-500
## 5231       11001                             <NA>            196 100-500
## 5232       11001                             <NA>            196 100-500
## 5233       11001                             <NA>            196 100-500
## 5234       11001                             <NA>            196 100-500
## 5235       11001                             <NA>            196 100-500
## 5236       11001                             <NA>            196 100-500
## 5237       11001                             <NA>            196 100-500
## 5238       11001                             <NA>            196 100-500
## 5239       11001                             <NA>            196 100-500
## 5240       11001                             <NA>            196 100-500
## 5241       11001                             <NA>            196 100-500
## 5242       11001                             <NA>            196 100-500
## 5243       11001                             <NA>            196 100-500
## 5244       11001                             <NA>            196 100-500
## 5245       11001                             <NA>            196 100-500
## 5246       11001                             <NA>            196 100-500
## 5247       11092                             <NA>            119 100-500
## 5248       11092                             <NA>            119 100-500
## 5249       11092                             <NA>            119 100-500
## 5250       11092                             <NA>            119 100-500
## 5251       11092                             <NA>            119 100-500
## 5252       11092                             <NA>            119 100-500
## 5253       11092                             <NA>            119 100-500
## 5254       11092                             <NA>            119 100-500
## 5255       11092                             <NA>            119 100-500
## 5256       11092                             <NA>            119 100-500
## 5257       11092                             <NA>            119 100-500
## 5258       11092                             <NA>            119 100-500
## 5259       11092                             <NA>            119 100-500
## 5260       11092                             <NA>            119 100-500
## 5261       11092                             <NA>            119 100-500
## 5262       11092                             <NA>            119 100-500
## 5263       11092                             <NA>            119 100-500
## 5264       11092                             <NA>            119 100-500
## 5265       11092                             <NA>            119 100-500
## 5266       11092                             <NA>            119 100-500
## 5267       11092                             <NA>            119 100-500
## 5268       11092                             <NA>            119 100-500
## 5269       11092                             <NA>            119 100-500
## 5270       11092                             <NA>            119 100-500
## 5271       11092                             <NA>            119 100-500
## 5272       11092                             <NA>            119 100-500
## 5273       11092                             <NA>            119 100-500
## 5274       11092                             <NA>            119 100-500
## 5275       11092                             <NA>            119 100-500
## 5276       11092                             <NA>            119 100-500
## 5277       11092                             <NA>            119 100-500
## 5278       11092                             <NA>            119 100-500
## 5279       11092                             <NA>            119 100-500
## 5280       11092                             <NA>            119 100-500
## 5281       11092                             <NA>            119 100-500
## 5282       11092                             <NA>            119 100-500
## 5283       11092                             <NA>            119 100-500
## 5284       11092                             <NA>            119 100-500
## 5285       11092                             <NA>            119 100-500
## 5286       11092                             <NA>            119 100-500
## 5287       11092                             <NA>            119 100-500
## 5288       11092                             <NA>            119 100-500
## 5289       11092                             <NA>            119 100-500
## 5290       11092                             <NA>            119 100-500
## 5291       11092                             <NA>            119 100-500
## 5292       11092                             <NA>            119 100-500
## 5293       11092                             <NA>            119 100-500
## 5294       11092                             <NA>            119 100-500
## 5295       11092                             <NA>            119 100-500
## 5296       11092                             <NA>            119 100-500
## 5297       11092                             <NA>            119 100-500
## 5298       11092                             <NA>            119 100-500
## 5299       11092                             <NA>            119 100-500
## 5300       11092                             <NA>            119 100-500
## 5301       11092                             <NA>            119 100-500
## 5302       11092                             <NA>            119 100-500
## 5303       11092                             <NA>            119 100-500
## 5304       11092                             <NA>            119 100-500
## 5305       11092                             <NA>            119 100-500
## 5306       11092                             <NA>            119 100-500
## 5307       11092                             <NA>            119 100-500
## 5308       11281                             <NA>            216 100-500
## 5309       11281                             <NA>            216 100-500
## 5310       11281                             <NA>            216 100-500
## 5311       11281                             <NA>            216 100-500
## 5312       11281                             <NA>            216 100-500
## 5313       11281                             <NA>            216 100-500
## 5314       11281                             <NA>            216 100-500
## 5315       11281                             <NA>            216 100-500
## 5316       11281                             <NA>            216 100-500
## 5317       11281                             <NA>            216 100-500
## 5318       11281                             <NA>            216 100-500
## 5319       11281                             <NA>            216 100-500
## 5320       11281                             <NA>            216 100-500
## 5321       11281                             <NA>            216 100-500
## 5322       11281                             <NA>            216 100-500
## 5323       11281                             <NA>            216 100-500
## 5324       11281                             <NA>            216 100-500
## 5325       11281                             <NA>            216 100-500
## 5326       11281                             <NA>            216 100-500
## 5327       11281                             <NA>            216 100-500
## 5328       11281                             <NA>            216 100-500
## 5329       11281                             <NA>            216 100-500
## 5330       11281                             <NA>            216 100-500
## 5331       11281                             <NA>            216 100-500
## 5332       11281                             <NA>            216 100-500
## 5333       11281                             <NA>            216 100-500
## 5334       11281                             <NA>            216 100-500
## 5335       11281                             <NA>            216 100-500
## 5336       11281                             <NA>            216 100-500
## 5337       11281                             <NA>            216 100-500
## 5338       11281                             <NA>            216 100-500
## 5339       11281                             <NA>            216 100-500
## 5340       11281                             <NA>            216 100-500
## 5341       11281                             <NA>            216 100-500
## 5342       11281                             <NA>            216 100-500
## 5343       11281                             <NA>            216 100-500
## 5344       11281                             <NA>            216 100-500
## 5345       11281                             <NA>            216 100-500
## 5346       11281                             <NA>            216 100-500
## 5347       11281                             <NA>            216 100-500
## 5348       11281                             <NA>            216 100-500
## 5349       11281                             <NA>            216 100-500
## 5350       11281                             <NA>            216 100-500
## 5351       11281                             <NA>            216 100-500
## 5352       11281                             <NA>            216 100-500
## 5353       11281                             <NA>            216 100-500
## 5354       11281                             <NA>            216 100-500
## 5355       11281                             <NA>            216 100-500
## 5356       11281                             <NA>            216 100-500
## 5357       11281                             <NA>            216 100-500
## 5358       11281                             <NA>            216 100-500
## 5359       11281                             <NA>            216 100-500
## 5360       11281                             <NA>            216 100-500
## 5361       11281                             <NA>            216 100-500
## 5362       11281                             <NA>            216 100-500
## 5363       11281                             <NA>            216 100-500
## 5364       11281                             <NA>            216 100-500
## 5365       11281                             <NA>            216 100-500
## 5366       11281                             <NA>            216 100-500
## 5367       11281                             <NA>            216 100-500
## 5368       11281                             <NA>            216 100-500
## 5369       11499                             <NA>              9    3-10
## 5370       11499                             <NA>              9    3-10
## 5371       11499                             <NA>              9    3-10
## 5372       11499                             <NA>              9    3-10
## 5373       11499                             <NA>              9    3-10
## 5374       11499                             <NA>              9    3-10
## 5375       11499                             <NA>              9    3-10
## 5376       11499                             <NA>              9    3-10
## 5377       11499                             <NA>              9    3-10
## 5378       11499                             <NA>              9    3-10
## 5379       11499                             <NA>              9    3-10
## 5380       11499                             <NA>              9    3-10
## 5381       11499                             <NA>              9    3-10
## 5382       11499                             <NA>              9    3-10
## 5383       11499                             <NA>              9    3-10
## 5384       11499                             <NA>              9    3-10
## 5385       11499                             <NA>              9    3-10
## 5386       11499                             <NA>              9    3-10
## 5387       11499                             <NA>              9    3-10
## 5388       11499                             <NA>              9    3-10
## 5389       11499                             <NA>              9    3-10
## 5390       11499                             <NA>              9    3-10
## 5391       11499                             <NA>              9    3-10
## 5392       11499                             <NA>              9    3-10
## 5393       11499                             <NA>              9    3-10
## 5394       11499                             <NA>              9    3-10
## 5395       11499                             <NA>              9    3-10
## 5396       11499                             <NA>              9    3-10
## 5397       11499                             <NA>              9    3-10
## 5398       11499                             <NA>              9    3-10
## 5399       11499                             <NA>              9    3-10
## 5400       11499                             <NA>              9    3-10
## 5401       11499                             <NA>              9    3-10
## 5402       11499                             <NA>              9    3-10
## 5403       11499                             <NA>              9    3-10
## 5404       11499                             <NA>              9    3-10
## 5405       11499                             <NA>              9    3-10
## 5406       11499                             <NA>              9    3-10
## 5407       11499                             <NA>              9    3-10
## 5408       11499                             <NA>              9    3-10
## 5409       11499                             <NA>              9    3-10
## 5410       11499                             <NA>              9    3-10
## 5411       11499                             <NA>              9    3-10
## 5412       11499                             <NA>              9    3-10
## 5413       11499                             <NA>              9    3-10
## 5414       11499                             <NA>              9    3-10
## 5415       11499                             <NA>              9    3-10
## 5416       11499                             <NA>              9    3-10
## 5417       11499                             <NA>              9    3-10
## 5418       11499                             <NA>              9    3-10
## 5419       11499                             <NA>              9    3-10
## 5420       11499                             <NA>              9    3-10
## 5421       11499                             <NA>              9    3-10
## 5422       11499                             <NA>              9    3-10
## 5423       11499                             <NA>              9    3-10
## 5424       11499                             <NA>              9    3-10
## 5425       11499                             <NA>              9    3-10
## 5426       11499                             <NA>              9    3-10
## 5427       11499                             <NA>              9    3-10
## 5428       11499                             <NA>              9    3-10
## 5429       11499                             <NA>              9    3-10
## 5430       11749                             <NA>           1299    500-
## 5431       11749                             <NA>           1299    500-
## 5432       11749                             <NA>           1299    500-
## 5433       11749                             <NA>           1299    500-
## 5434       11749                             <NA>           1299    500-
## 5435       11749                             <NA>           1299    500-
## 5436       11749                             <NA>           1299    500-
## 5437       11749                             <NA>           1299    500-
## 5438       11749                             <NA>           1299    500-
## 5439       11749                             <NA>           1299    500-
## 5440       11749                             <NA>           1299    500-
## 5441       11749                             <NA>           1299    500-
## 5442       11749                             <NA>           1299    500-
## 5443       11749                             <NA>           1299    500-
## 5444       11749                             <NA>           1299    500-
## 5445       11749                             <NA>           1299    500-
## 5446       11749                             <NA>           1299    500-
## 5447       11749                             <NA>           1299    500-
## 5448       11749                             <NA>           1299    500-
## 5449       11749                             <NA>           1299    500-
## 5450       11749                             <NA>           1299    500-
## 5451       11749                             <NA>           1299    500-
## 5452       11749                             <NA>           1299    500-
## 5453       11749                             <NA>           1299    500-
## 5454       11749                             <NA>           1299    500-
## 5455       11749                             <NA>           1299    500-
## 5456       11749                             <NA>           1299    500-
## 5457       11749                             <NA>           1299    500-
## 5458       11749                             <NA>           1299    500-
## 5459       11749                             <NA>           1299    500-
## 5460       11749                             <NA>           1299    500-
## 5461       11749                             <NA>           1299    500-
## 5462       11749                             <NA>           1299    500-
## 5463       11749                             <NA>           1299    500-
## 5464       11749                             <NA>           1299    500-
## 5465       11749                             <NA>           1299    500-
## 5466       11749                             <NA>           1299    500-
## 5467       11749                             <NA>           1299    500-
## 5468       11749                             <NA>           1299    500-
## 5469       11749                             <NA>           1299    500-
## 5470       11749                             <NA>           1299    500-
## 5471       11749                             <NA>           1299    500-
## 5472       11749                             <NA>           1299    500-
## 5473       11749                             <NA>           1299    500-
## 5474       11749                             <NA>           1299    500-
## 5475       11749                             <NA>           1299    500-
## 5476       11749                             <NA>           1299    500-
## 5477       11749                             <NA>           1299    500-
## 5478       11749                             <NA>           1299    500-
## 5479       11749                             <NA>           1299    500-
## 5480       11749                             <NA>           1299    500-
## 5481       11749                             <NA>           1299    500-
## 5482       11749                             <NA>           1299    500-
## 5483       11749                             <NA>           1299    500-
## 5484       11749                             <NA>           1299    500-
## 5485       11749                             <NA>           1299    500-
## 5486       11749                             <NA>           1299    500-
## 5487       11749                             <NA>           1299    500-
## 5488       11749                             <NA>           1299    500-
## 5489       11749                             <NA>           1299    500-
## 5490       11749                             <NA>           1299    500-
## 5491       11766                             <NA>              1     1-2
## 5492       11766                             <NA>              1     1-2
## 5493       11766                             <NA>              1     1-2
## 5494       11766                             <NA>              1     1-2
## 5495       11766                             <NA>              1     1-2
## 5496       11766                             <NA>              1     1-2
## 5497       11766                             <NA>              1     1-2
## 5498       11766                             <NA>              1     1-2
## 5499       11766                             <NA>              1     1-2
## 5500       11766                             <NA>              1     1-2
## 5501       11766                             <NA>              1     1-2
## 5502       11766                             <NA>              1     1-2
## 5503       11766                             <NA>              1     1-2
## 5504       11766                             <NA>              1     1-2
## 5505       11766                             <NA>              1     1-2
## 5506       11766                             <NA>              1     1-2
## 5507       11766                             <NA>              1     1-2
## 5508       11766                             <NA>              1     1-2
## 5509       11766                             <NA>              1     1-2
## 5510       11766                             <NA>              1     1-2
## 5511       11766                             <NA>              1     1-2
## 5512       11766                             <NA>              1     1-2
## 5513       11766                             <NA>              1     1-2
## 5514       11766                             <NA>              1     1-2
## 5515       11766                             <NA>              1     1-2
## 5516       11766                             <NA>              1     1-2
## 5517       11766                             <NA>              1     1-2
## 5518       11766                             <NA>              1     1-2
## 5519       11766                             <NA>              1     1-2
## 5520       11766                             <NA>              1     1-2
## 5521       11766                             <NA>              1     1-2
## 5522       11766                             <NA>              1     1-2
## 5523       11766                             <NA>              1     1-2
## 5524       11766                             <NA>              1     1-2
## 5525       11766                             <NA>              1     1-2
## 5526       11766                             <NA>              1     1-2
## 5527       11766                             <NA>              1     1-2
## 5528       11766                             <NA>              1     1-2
## 5529       11766                             <NA>              1     1-2
## 5530       11766                             <NA>              1     1-2
## 5531       11766                             <NA>              1     1-2
## 5532       11766                             <NA>              1     1-2
## 5533       11766                             <NA>              1     1-2
## 5534       11766                             <NA>              1     1-2
## 5535       11766                             <NA>              1     1-2
## 5536       11766                             <NA>              1     1-2
## 5537       11766                             <NA>              1     1-2
## 5538       11766                             <NA>              1     1-2
## 5539       11766                             <NA>              1     1-2
## 5540       11766                             <NA>              1     1-2
## 5541       11766                             <NA>              1     1-2
## 5542       11766                             <NA>              1     1-2
## 5543       11766                             <NA>              1     1-2
## 5544       11766                             <NA>              1     1-2
## 5545       11766                             <NA>              1     1-2
## 5546       11766                             <NA>              1     1-2
## 5547       11766                             <NA>              1     1-2
## 5548       11766                             <NA>              1     1-2
## 5549       11766                             <NA>              1     1-2
## 5550       11766                             <NA>              1     1-2
## 5551       11766                             <NA>              1     1-2
## 5552       11779                             <NA>             22   10-25
## 5553       11779                             <NA>             22   10-25
## 5554       11779                             <NA>             22   10-25
## 5555       11779                             <NA>             22   10-25
## 5556       11779                             <NA>             22   10-25
## 5557       11779                             <NA>             22   10-25
## 5558       11779                             <NA>             22   10-25
## 5559       11779                             <NA>             22   10-25
## 5560       11779                             <NA>             22   10-25
## 5561       11779                             <NA>             22   10-25
## 5562       11779                             <NA>             22   10-25
## 5563       11779                             <NA>             22   10-25
## 5564       11779                             <NA>             22   10-25
## 5565       11779                             <NA>             22   10-25
## 5566       11779                             <NA>             22   10-25
## 5567       11779                             <NA>             22   10-25
## 5568       11779                             <NA>             22   10-25
## 5569       11779                             <NA>             22   10-25
## 5570       11779                             <NA>             22   10-25
## 5571       11779                             <NA>             22   10-25
## 5572       11779                             <NA>             22   10-25
## 5573       11779                             <NA>             22   10-25
## 5574       11779                             <NA>             22   10-25
## 5575       11779                             <NA>             22   10-25
## 5576       11779                             <NA>             22   10-25
## 5577       11779                             <NA>             22   10-25
## 5578       11779                             <NA>             22   10-25
## 5579       11779                             <NA>             22   10-25
## 5580       11779                             <NA>             22   10-25
## 5581       11779                             <NA>             22   10-25
## 5582       11779                             <NA>             22   10-25
## 5583       11779                             <NA>             22   10-25
## 5584       11779                             <NA>             22   10-25
## 5585       11779                             <NA>             22   10-25
## 5586       11779                             <NA>             22   10-25
## 5587       11779                             <NA>             22   10-25
## 5588       11779                             <NA>             22   10-25
## 5589       11779                             <NA>             22   10-25
## 5590       11779                             <NA>             22   10-25
## 5591       11779                             <NA>             22   10-25
## 5592       11779                             <NA>             22   10-25
## 5593       11779                             <NA>             22   10-25
## 5594       11779                             <NA>             22   10-25
## 5595       11779                             <NA>             22   10-25
## 5596       11779                             <NA>             22   10-25
## 5597       11779                             <NA>             22   10-25
## 5598       11779                             <NA>             22   10-25
## 5599       11779                             <NA>             22   10-25
## 5600       11779                             <NA>             22   10-25
## 5601       11779                             <NA>             22   10-25
## 5602       11779                             <NA>             22   10-25
## 5603       11779                             <NA>             22   10-25
## 5604       11779                             <NA>             22   10-25
## 5605       11779                             <NA>             22   10-25
## 5606       11779                             <NA>             22   10-25
## 5607       11779                             <NA>             22   10-25
## 5608       11779                             <NA>             22   10-25
## 5609       11779                             <NA>             22   10-25
## 5610       11779                             <NA>             22   10-25
## 5611       11779                             <NA>             22   10-25
## 5612       11779                             <NA>             22   10-25
## 5613       11885                             <NA>            370 100-500
## 5614       11885                             <NA>            370 100-500
## 5615       11885                             <NA>            370 100-500
## 5616       11885                             <NA>            370 100-500
## 5617       11885                             <NA>            370 100-500
## 5618       11885                             <NA>            370 100-500
## 5619       11885                             <NA>            370 100-500
## 5620       11885                             <NA>            370 100-500
## 5621       11885                             <NA>            370 100-500
## 5622       11885                             <NA>            370 100-500
## 5623       11885                             <NA>            370 100-500
## 5624       11885                             <NA>            370 100-500
## 5625       11885                             <NA>            370 100-500
## 5626       11885                             <NA>            370 100-500
## 5627       11885                             <NA>            370 100-500
## 5628       11885                             <NA>            370 100-500
## 5629       11885                             <NA>            370 100-500
## 5630       11885                             <NA>            370 100-500
## 5631       11885                             <NA>            370 100-500
## 5632       11885                             <NA>            370 100-500
## 5633       11885                             <NA>            370 100-500
## 5634       11885                             <NA>            370 100-500
## 5635       11885                             <NA>            370 100-500
## 5636       11885                             <NA>            370 100-500
## 5637       11885                             <NA>            370 100-500
## 5638       11885                             <NA>            370 100-500
## 5639       11885                             <NA>            370 100-500
## 5640       11885                             <NA>            370 100-500
## 5641       11885                             <NA>            370 100-500
## 5642       11885                             <NA>            370 100-500
## 5643       11885                             <NA>            370 100-500
## 5644       11885                             <NA>            370 100-500
## 5645       11885                             <NA>            370 100-500
## 5646       11885                             <NA>            370 100-500
## 5647       11885                             <NA>            370 100-500
## 5648       11885                             <NA>            370 100-500
## 5649       11885                             <NA>            370 100-500
## 5650       11885                             <NA>            370 100-500
## 5651       11885                             <NA>            370 100-500
## 5652       11885                             <NA>            370 100-500
## 5653       11885                             <NA>            370 100-500
## 5654       11885                             <NA>            370 100-500
## 5655       11885                             <NA>            370 100-500
## 5656       11885                             <NA>            370 100-500
## 5657       11885                             <NA>            370 100-500
## 5658       11885                             <NA>            370 100-500
## 5659       11885                             <NA>            370 100-500
## 5660       11885                             <NA>            370 100-500
## 5661       11885                             <NA>            370 100-500
## 5662       11885                             <NA>            370 100-500
## 5663       11885                             <NA>            370 100-500
## 5664       11885                             <NA>            370 100-500
## 5665       11885                             <NA>            370 100-500
## 5666       11885                             <NA>            370 100-500
## 5667       11885                             <NA>            370 100-500
## 5668       11885                             <NA>            370 100-500
## 5669       11885                             <NA>            370 100-500
## 5670       11885                             <NA>            370 100-500
## 5671       11885                             <NA>            370 100-500
## 5672       11885                             <NA>            370 100-500
## 5673       11885                             <NA>            370 100-500
## 5674       11943                             <NA>            122 100-500
## 5675       11943                             <NA>            122 100-500
## 5676       11943                             <NA>            122 100-500
## 5677       11943                             <NA>            122 100-500
## 5678       11943                             <NA>            122 100-500
## 5679       11943                             <NA>            122 100-500
## 5680       11943                             <NA>            122 100-500
## 5681       11943                             <NA>            122 100-500
## 5682       11943                             <NA>            122 100-500
## 5683       11943                             <NA>            122 100-500
## 5684       11943                             <NA>            122 100-500
## 5685       11943                             <NA>            122 100-500
## 5686       11943                             <NA>            122 100-500
## 5687       11943                             <NA>            122 100-500
## 5688       11943                             <NA>            122 100-500
## 5689       11943                             <NA>            122 100-500
## 5690       11943                             <NA>            122 100-500
## 5691       11943                             <NA>            122 100-500
## 5692       11943                             <NA>            122 100-500
## 5693       11943                             <NA>            122 100-500
## 5694       11943                             <NA>            122 100-500
## 5695       11943                             <NA>            122 100-500
## 5696       11943                             <NA>            122 100-500
## 5697       11943                             <NA>            122 100-500
## 5698       11943                             <NA>            122 100-500
## 5699       11943                             <NA>            122 100-500
## 5700       11943                             <NA>            122 100-500
## 5701       11943                             <NA>            122 100-500
## 5702       11943                             <NA>            122 100-500
## 5703       11943                             <NA>            122 100-500
## 5704       11943                             <NA>            122 100-500
## 5705       11943                             <NA>            122 100-500
## 5706       11943                             <NA>            122 100-500
## 5707       11943                             <NA>            122 100-500
## 5708       11943                             <NA>            122 100-500
## 5709       11943                             <NA>            122 100-500
## 5710       11943                             <NA>            122 100-500
## 5711       11943                             <NA>            122 100-500
## 5712       11943                             <NA>            122 100-500
## 5713       11943                             <NA>            122 100-500
## 5714       11943                             <NA>            122 100-500
## 5715       11943                             <NA>            122 100-500
## 5716       11943                             <NA>            122 100-500
## 5717       11943                             <NA>            122 100-500
## 5718       11943                             <NA>            122 100-500
## 5719       11943                             <NA>            122 100-500
## 5720       11943                             <NA>            122 100-500
## 5721       11943                             <NA>            122 100-500
## 5722       11943                             <NA>            122 100-500
## 5723       11943                             <NA>            122 100-500
## 5724       11943                             <NA>            122 100-500
## 5725       11943                             <NA>            122 100-500
## 5726       11943                             <NA>            122 100-500
## 5727       11943                             <NA>            122 100-500
## 5728       11943                             <NA>            122 100-500
## 5729       11943                             <NA>            122 100-500
## 5730       11943                             <NA>            122 100-500
## 5731       11943                             <NA>            122 100-500
## 5732       11943                             <NA>            122 100-500
## 5733       11943                             <NA>            122 100-500
## 5734       11943                             <NA>            122 100-500
## 5735       11963                             <NA>              1     1-2
## 5736       11963                             <NA>              1     1-2
## 5737       11963                             <NA>              1     1-2
## 5738       11963                             <NA>              1     1-2
## 5739       11963                             <NA>              1     1-2
## 5740       11963                             <NA>              1     1-2
## 5741       11963                             <NA>              1     1-2
## 5742       11963                             <NA>              1     1-2
## 5743       11963                             <NA>              1     1-2
## 5744       11963                             <NA>              1     1-2
## 5745       11963                             <NA>              1     1-2
## 5746       11963                             <NA>              1     1-2
## 5747       11963                             <NA>              1     1-2
## 5748       11963                             <NA>              1     1-2
## 5749       11963                             <NA>              1     1-2
## 5750       11963                             <NA>              1     1-2
## 5751       11963                             <NA>              1     1-2
## 5752       11963                             <NA>              1     1-2
## 5753       11963                             <NA>              1     1-2
## 5754       11963                             <NA>              1     1-2
## 5755       11963                             <NA>              1     1-2
## 5756       11963                             <NA>              1     1-2
## 5757       11963                             <NA>              1     1-2
## 5758       11963                             <NA>              1     1-2
## 5759       11963                             <NA>              1     1-2
## 5760       11963                             <NA>              1     1-2
## 5761       11963                             <NA>              1     1-2
## 5762       11963                             <NA>              1     1-2
## 5763       11963                             <NA>              1     1-2
## 5764       11963                             <NA>              1     1-2
## 5765       11963                             <NA>              1     1-2
## 5766       11963                             <NA>              1     1-2
## 5767       11963                             <NA>              1     1-2
## 5768       11963                             <NA>              1     1-2
## 5769       11963                             <NA>              1     1-2
## 5770       11963                             <NA>              1     1-2
## 5771       11963                             <NA>              1     1-2
## 5772       11963                             <NA>              1     1-2
## 5773       11963                             <NA>              1     1-2
## 5774       11963                             <NA>              1     1-2
## 5775       11963                             <NA>              1     1-2
## 5776       11963                             <NA>              1     1-2
## 5777       11963                             <NA>              1     1-2
## 5778       11963                             <NA>              1     1-2
## 5779       11963                             <NA>              1     1-2
## 5780       11963                             <NA>              1     1-2
## 5781       11963                             <NA>              1     1-2
## 5782       11963                             <NA>              1     1-2
## 5783       11963                             <NA>              1     1-2
## 5784       11963                             <NA>              1     1-2
## 5785       11963                             <NA>              1     1-2
## 5786       11963                             <NA>              1     1-2
## 5787       11963                             <NA>              1     1-2
## 5788       11963                             <NA>              1     1-2
## 5789       11963                             <NA>              1     1-2
## 5790       11963                             <NA>              1     1-2
## 5791       11963                             <NA>              1     1-2
## 5792       11963                             <NA>              1     1-2
## 5793       11963                             <NA>              1     1-2
## 5794       11963                             <NA>              1     1-2
## 5795       11963                             <NA>              1     1-2
## 5796       12017                             <NA>             56  25-100
## 5797       12017                             <NA>             56  25-100
## 5798       12017                             <NA>             56  25-100
## 5799       12017                             <NA>             56  25-100
## 5800       12017                             <NA>             56  25-100
## 5801       12017                             <NA>             56  25-100
## 5802       12017                             <NA>             56  25-100
## 5803       12017                             <NA>             56  25-100
## 5804       12017                             <NA>             56  25-100
## 5805       12017                             <NA>             56  25-100
## 5806       12017                             <NA>             56  25-100
## 5807       12017                             <NA>             56  25-100
## 5808       12017                             <NA>             56  25-100
## 5809       12017                             <NA>             56  25-100
## 5810       12017                             <NA>             56  25-100
## 5811       12017                             <NA>             56  25-100
## 5812       12017                             <NA>             56  25-100
## 5813       12017                             <NA>             56  25-100
## 5814       12017                             <NA>             56  25-100
## 5815       12017                             <NA>             56  25-100
## 5816       12017                             <NA>             56  25-100
## 5817       12017                             <NA>             56  25-100
## 5818       12017                             <NA>             56  25-100
## 5819       12017                             <NA>             56  25-100
## 5820       12017                             <NA>             56  25-100
## 5821       12017                             <NA>             56  25-100
## 5822       12017                             <NA>             56  25-100
## 5823       12017                             <NA>             56  25-100
## 5824       12017                             <NA>             56  25-100
## 5825       12017                             <NA>             56  25-100
## 5826       12017                             <NA>             56  25-100
## 5827       12017                             <NA>             56  25-100
## 5828       12017                             <NA>             56  25-100
## 5829       12017                             <NA>             56  25-100
## 5830       12017                             <NA>             56  25-100
## 5831       12017                             <NA>             56  25-100
## 5832       12017                             <NA>             56  25-100
## 5833       12017                             <NA>             56  25-100
## 5834       12017                             <NA>             56  25-100
## 5835       12017                             <NA>             56  25-100
## 5836       12017                             <NA>             56  25-100
## 5837       12017                             <NA>             56  25-100
## 5838       12017                             <NA>             56  25-100
## 5839       12017                             <NA>             56  25-100
## 5840       12017                             <NA>             56  25-100
## 5841       12017                             <NA>             56  25-100
## 5842       12017                             <NA>             56  25-100
## 5843       12017                             <NA>             56  25-100
## 5844       12017                             <NA>             56  25-100
## 5845       12017                             <NA>             56  25-100
## 5846       12017                             <NA>             56  25-100
## 5847       12017                             <NA>             56  25-100
## 5848       12017                             <NA>             56  25-100
## 5849       12017                             <NA>             56  25-100
## 5850       12017                             <NA>             56  25-100
## 5851       12017                             <NA>             56  25-100
## 5852       12017                             <NA>             56  25-100
## 5853       12017                             <NA>             56  25-100
## 5854       12017                             <NA>             56  25-100
## 5855       12017                             <NA>             56  25-100
## 5856       12017                             <NA>             56  25-100
## 5857       12296                             <NA>             59  25-100
## 5858       12296                             <NA>             59  25-100
## 5859       12296                             <NA>             59  25-100
## 5860       12296                             <NA>             59  25-100
## 5861       12296                             <NA>             59  25-100
## 5862       12296                             <NA>             59  25-100
## 5863       12296                             <NA>             59  25-100
## 5864       12296                             <NA>             59  25-100
## 5865       12296                             <NA>             59  25-100
## 5866       12296                             <NA>             59  25-100
## 5867       12296                             <NA>             59  25-100
## 5868       12296                             <NA>             59  25-100
## 5869       12296                             <NA>             59  25-100
## 5870       12296                             <NA>             59  25-100
## 5871       12296                             <NA>             59  25-100
## 5872       12296                             <NA>             59  25-100
## 5873       12296                             <NA>             59  25-100
## 5874       12296                             <NA>             59  25-100
## 5875       12296                             <NA>             59  25-100
## 5876       12296                             <NA>             59  25-100
## 5877       12296                             <NA>             59  25-100
## 5878       12296                             <NA>             59  25-100
## 5879       12296                             <NA>             59  25-100
## 5880       12296                             <NA>             59  25-100
## 5881       12296                             <NA>             59  25-100
## 5882       12296                             <NA>             59  25-100
## 5883       12296                             <NA>             59  25-100
## 5884       12296                             <NA>             59  25-100
## 5885       12296                             <NA>             59  25-100
## 5886       12296                             <NA>             59  25-100
## 5887       12296                             <NA>             59  25-100
## 5888       12296                             <NA>             59  25-100
## 5889       12296                             <NA>             59  25-100
## 5890       12296                             <NA>             59  25-100
## 5891       12296                             <NA>             59  25-100
## 5892       12296                             <NA>             59  25-100
## 5893       12296                             <NA>             59  25-100
## 5894       12296                             <NA>             59  25-100
## 5895       12296                             <NA>             59  25-100
## 5896       12296                             <NA>             59  25-100
## 5897       12296                             <NA>             59  25-100
## 5898       12296                             <NA>             59  25-100
## 5899       12296                             <NA>             59  25-100
## 5900       12296                             <NA>             59  25-100
## 5901       12296                             <NA>             59  25-100
## 5902       12296                             <NA>             59  25-100
## 5903       12296                             <NA>             59  25-100
## 5904       12296                             <NA>             59  25-100
## 5905       12296                             <NA>             59  25-100
## 5906       12296                             <NA>             59  25-100
## 5907       12296                             <NA>             59  25-100
## 5908       12296                             <NA>             59  25-100
## 5909       12296                             <NA>             59  25-100
## 5910       12296                             <NA>             59  25-100
## 5911       12296                             <NA>             59  25-100
## 5912       12296                             <NA>             59  25-100
## 5913       12296                             <NA>             59  25-100
## 5914       12296                             <NA>             59  25-100
## 5915       12296                             <NA>             59  25-100
## 5916       12296                             <NA>             59  25-100
## 5917       12296                             <NA>             59  25-100
## 5918       12620                             <NA>           1375    500-
## 5919       12620                             <NA>           1375    500-
## 5920       12620                             <NA>           1375    500-
## 5921       12620                             <NA>           1375    500-
## 5922       12620                             <NA>           1375    500-
## 5923       12620                             <NA>           1375    500-
## 5924       12620                             <NA>           1375    500-
## 5925       12620                             <NA>           1375    500-
## 5926       12620                             <NA>           1375    500-
## 5927       12620                             <NA>           1375    500-
## 5928       12620                             <NA>           1375    500-
## 5929       12620                             <NA>           1375    500-
## 5930       12620                             <NA>           1375    500-
## 5931       12620                             <NA>           1375    500-
## 5932       12620                             <NA>           1375    500-
## 5933       12620                             <NA>           1375    500-
## 5934       12620                             <NA>           1375    500-
## 5935       12620                             <NA>           1375    500-
## 5936       12620                             <NA>           1375    500-
## 5937       12620                             <NA>           1375    500-
## 5938       12620                             <NA>           1375    500-
## 5939       12620                             <NA>           1375    500-
## 5940       12620                             <NA>           1375    500-
## 5941       12620                             <NA>           1375    500-
## 5942       12620                             <NA>           1375    500-
## 5943       12620                             <NA>           1375    500-
## 5944       12620                             <NA>           1375    500-
## 5945       12620                             <NA>           1375    500-
## 5946       12620                             <NA>           1375    500-
## 5947       12620                             <NA>           1375    500-
## 5948       12620                             <NA>           1375    500-
## 5949       12620                             <NA>           1375    500-
## 5950       12620                             <NA>           1375    500-
## 5951       12620                             <NA>           1375    500-
## 5952       12620                             <NA>           1375    500-
## 5953       12620                             <NA>           1375    500-
## 5954       12620                             <NA>           1375    500-
## 5955       12620                             <NA>           1375    500-
## 5956       12620                             <NA>           1375    500-
## 5957       12620                             <NA>           1375    500-
## 5958       12620                             <NA>           1375    500-
## 5959       12620                             <NA>           1375    500-
## 5960       12620                             <NA>           1375    500-
## 5961       12620                             <NA>           1375    500-
## 5962       12620                             <NA>           1375    500-
## 5963       12620                             <NA>           1375    500-
## 5964       12620                             <NA>           1375    500-
## 5965       12620                             <NA>           1375    500-
## 5966       12620                             <NA>           1375    500-
## 5967       12620                             <NA>           1375    500-
## 5968       12620                             <NA>           1375    500-
## 5969       12620                             <NA>           1375    500-
## 5970       12620                             <NA>           1375    500-
## 5971       12620                             <NA>           1375    500-
## 5972       12620                             <NA>           1375    500-
## 5973       12620                             <NA>           1375    500-
## 5974       12620                             <NA>           1375    500-
## 5975       12620                             <NA>           1375    500-
## 5976       12620                             <NA>           1375    500-
## 5977       12620                             <NA>           1375    500-
## 5978       12620                             <NA>           1375    500-
## 5979       13019                             <NA>            175 100-500
## 5980       13019                             <NA>            175 100-500
## 5981       13019                             <NA>            175 100-500
## 5982       13019                             <NA>            175 100-500
## 5983       13019                             <NA>            175 100-500
## 5984       13019                             <NA>            175 100-500
## 5985       13019                             <NA>            175 100-500
## 5986       13019                             <NA>            175 100-500
## 5987       13019                             <NA>            175 100-500
## 5988       13019                             <NA>            175 100-500
## 5989       13019                             <NA>            175 100-500
## 5990       13019                             <NA>            175 100-500
## 5991       13019                             <NA>            175 100-500
## 5992       13019                             <NA>            175 100-500
## 5993       13019                             <NA>            175 100-500
## 5994       13019                             <NA>            175 100-500
## 5995       13019                             <NA>            175 100-500
## 5996       13019                             <NA>            175 100-500
## 5997       13019                             <NA>            175 100-500
## 5998       13019                             <NA>            175 100-500
## 5999       13019                             <NA>            175 100-500
## 6000       13019                             <NA>            175 100-500
## 6001       13019                             <NA>            175 100-500
## 6002       13019                             <NA>            175 100-500
## 6003       13019                             <NA>            175 100-500
## 6004       13019                             <NA>            175 100-500
## 6005       13019                             <NA>            175 100-500
## 6006       13019                             <NA>            175 100-500
## 6007       13019                             <NA>            175 100-500
## 6008       13019                             <NA>            175 100-500
## 6009       13019                             <NA>            175 100-500
## 6010       13019                             <NA>            175 100-500
## 6011       13019                             <NA>            175 100-500
## 6012       13019                             <NA>            175 100-500
## 6013       13019                             <NA>            175 100-500
## 6014       13019                             <NA>            175 100-500
## 6015       13019                             <NA>            175 100-500
## 6016       13019                             <NA>            175 100-500
## 6017       13019                             <NA>            175 100-500
## 6018       13019                             <NA>            175 100-500
## 6019       13019                             <NA>            175 100-500
## 6020       13019                             <NA>            175 100-500
## 6021       13019                             <NA>            175 100-500
## 6022       13019                             <NA>            175 100-500
## 6023       13019                             <NA>            175 100-500
## 6024       13019                             <NA>            175 100-500
## 6025       13019                             <NA>            175 100-500
## 6026       13019                             <NA>            175 100-500
## 6027       13019                             <NA>            175 100-500
## 6028       13019                             <NA>            175 100-500
## 6029       13019                             <NA>            175 100-500
## 6030       13019                             <NA>            175 100-500
## 6031       13019                             <NA>            175 100-500
## 6032       13019                             <NA>            175 100-500
## 6033       13019                             <NA>            175 100-500
## 6034       13019                             <NA>            175 100-500
## 6035       13019                             <NA>            175 100-500
## 6036       13019                             <NA>            175 100-500
## 6037       13019                             <NA>            175 100-500
## 6038       13019                             <NA>            175 100-500
## 6039       13019                             <NA>            175 100-500
## 6040       13207                             <NA>            122 100-500
## 6041       13207                             <NA>            122 100-500
## 6042       13207                             <NA>            122 100-500
## 6043       13207                             <NA>            122 100-500
## 6044       13207                             <NA>            122 100-500
## 6045       13207                             <NA>            122 100-500
## 6046       13207                             <NA>            122 100-500
## 6047       13207                             <NA>            122 100-500
## 6048       13207                             <NA>            122 100-500
## 6049       13207                             <NA>            122 100-500
## 6050       13207                             <NA>            122 100-500
## 6051       13207                             <NA>            122 100-500
## 6052       13207                             <NA>            122 100-500
## 6053       13207                             <NA>            122 100-500
## 6054       13207                             <NA>            122 100-500
## 6055       13207                             <NA>            122 100-500
## 6056       13207                             <NA>            122 100-500
## 6057       13207                             <NA>            122 100-500
## 6058       13207                             <NA>            122 100-500
## 6059       13207                             <NA>            122 100-500
## 6060       13207                             <NA>            122 100-500
## 6061       13207                             <NA>            122 100-500
## 6062       13207                             <NA>            122 100-500
## 6063       13207                             <NA>            122 100-500
## 6064       13207                             <NA>            122 100-500
## 6065       13207                             <NA>            122 100-500
## 6066       13207                             <NA>            122 100-500
## 6067       13207                             <NA>            122 100-500
## 6068       13207                             <NA>            122 100-500
## 6069       13207                             <NA>            122 100-500
## 6070       13207                             <NA>            122 100-500
## 6071       13207                             <NA>            122 100-500
## 6072       13207                             <NA>            122 100-500
## 6073       13207                             <NA>            122 100-500
## 6074       13207                             <NA>            122 100-500
## 6075       13207                             <NA>            122 100-500
## 6076       13207                             <NA>            122 100-500
## 6077       13207                             <NA>            122 100-500
## 6078       13207                             <NA>            122 100-500
## 6079       13207                             <NA>            122 100-500
## 6080       13207                             <NA>            122 100-500
## 6081       13207                             <NA>            122 100-500
## 6082       13207                             <NA>            122 100-500
## 6083       13207                             <NA>            122 100-500
## 6084       13207                             <NA>            122 100-500
## 6085       13207                             <NA>            122 100-500
## 6086       13207                             <NA>            122 100-500
## 6087       13207                             <NA>            122 100-500
## 6088       13207                             <NA>            122 100-500
## 6089       13207                             <NA>            122 100-500
## 6090       13207                             <NA>            122 100-500
## 6091       13207                             <NA>            122 100-500
## 6092       13207                             <NA>            122 100-500
## 6093       13207                             <NA>            122 100-500
## 6094       13207                             <NA>            122 100-500
## 6095       13207                             <NA>            122 100-500
## 6096       13207                             <NA>            122 100-500
## 6097       13207                             <NA>            122 100-500
## 6098       13207                             <NA>            122 100-500
## 6099       13207                             <NA>            122 100-500
## 6100       13207                             <NA>            122 100-500
## 6101       13679                             <NA>             59  25-100
## 6102       13679                             <NA>             59  25-100
## 6103       13679                             <NA>             59  25-100
## 6104       13679                             <NA>             59  25-100
## 6105       13679                             <NA>             59  25-100
## 6106       13679                             <NA>             59  25-100
## 6107       13679                             <NA>             59  25-100
## 6108       13679                             <NA>             59  25-100
## 6109       13679                             <NA>             59  25-100
## 6110       13679                             <NA>             59  25-100
## 6111       13679                             <NA>             59  25-100
## 6112       13679                             <NA>             59  25-100
## 6113       13679                             <NA>             59  25-100
## 6114       13679                             <NA>             59  25-100
## 6115       13679                             <NA>             59  25-100
## 6116       13679                             <NA>             59  25-100
## 6117       13679                             <NA>             59  25-100
## 6118       13679                             <NA>             59  25-100
## 6119       13679                             <NA>             59  25-100
## 6120       13679                             <NA>             59  25-100
## 6121       13679                             <NA>             59  25-100
## 6122       13679                             <NA>             59  25-100
## 6123       13679                             <NA>             59  25-100
## 6124       13679                             <NA>             59  25-100
## 6125       13679                             <NA>             59  25-100
## 6126       13679                             <NA>             59  25-100
## 6127       13679                             <NA>             59  25-100
## 6128       13679                             <NA>             59  25-100
## 6129       13679                             <NA>             59  25-100
## 6130       13679                             <NA>             59  25-100
## 6131       13679                             <NA>             59  25-100
## 6132       13679                             <NA>             59  25-100
## 6133       13679                             <NA>             59  25-100
## 6134       13679                             <NA>             59  25-100
## 6135       13679                             <NA>             59  25-100
## 6136       13679                             <NA>             59  25-100
## 6137       13679                             <NA>             59  25-100
## 6138       13679                             <NA>             59  25-100
## 6139       13679                             <NA>             59  25-100
## 6140       13679                             <NA>             59  25-100
## 6141       13679                             <NA>             59  25-100
## 6142       13679                             <NA>             59  25-100
## 6143       13679                             <NA>             59  25-100
## 6144       13679                             <NA>             59  25-100
## 6145       13679                             <NA>             59  25-100
## 6146       13679                             <NA>             59  25-100
## 6147       13679                             <NA>             59  25-100
## 6148       13679                             <NA>             59  25-100
## 6149       13679                             <NA>             59  25-100
## 6150       13679                             <NA>             59  25-100
## 6151       13679                             <NA>             59  25-100
## 6152       13679                             <NA>             59  25-100
## 6153       13679                             <NA>             59  25-100
## 6154       13679                             <NA>             59  25-100
## 6155       13679                             <NA>             59  25-100
## 6156       13679                             <NA>             59  25-100
## 6157       13679                             <NA>             59  25-100
## 6158       13679                             <NA>             59  25-100
## 6159       13679                             <NA>             59  25-100
## 6160       13679                             <NA>             59  25-100
## 6161       13679                             <NA>             59  25-100
## 6162       13969                             <NA>            319 100-500
## 6163       13969                             <NA>            319 100-500
## 6164       13969                             <NA>            319 100-500
## 6165       13969                             <NA>            319 100-500
## 6166       13969                             <NA>            319 100-500
## 6167       13969                             <NA>            319 100-500
## 6168       13969                             <NA>            319 100-500
## 6169       13969                             <NA>            319 100-500
## 6170       13969                             <NA>            319 100-500
## 6171       13969                             <NA>            319 100-500
## 6172       13969                             <NA>            319 100-500
## 6173       13969                             <NA>            319 100-500
## 6174       13969                             <NA>            319 100-500
## 6175       13969                             <NA>            319 100-500
## 6176       13969                             <NA>            319 100-500
## 6177       13969                             <NA>            319 100-500
## 6178       13969                             <NA>            319 100-500
## 6179       13969                             <NA>            319 100-500
## 6180       13969                             <NA>            319 100-500
## 6181       13969                             <NA>            319 100-500
## 6182       13969                             <NA>            319 100-500
## 6183       13969                             <NA>            319 100-500
## 6184       13969                             <NA>            319 100-500
## 6185       13969                             <NA>            319 100-500
## 6186       13969                             <NA>            319 100-500
## 6187       13969                             <NA>            319 100-500
## 6188       13969                             <NA>            319 100-500
## 6189       13969                             <NA>            319 100-500
## 6190       13969                             <NA>            319 100-500
## 6191       13969                             <NA>            319 100-500
## 6192       13969                             <NA>            319 100-500
## 6193       13969                             <NA>            319 100-500
## 6194       13969                             <NA>            319 100-500
## 6195       13969                             <NA>            319 100-500
## 6196       13969                             <NA>            319 100-500
## 6197       13969                             <NA>            319 100-500
## 6198       13969                             <NA>            319 100-500
## 6199       13969                             <NA>            319 100-500
## 6200       13969                             <NA>            319 100-500
## 6201       13969                             <NA>            319 100-500
## 6202       13969                             <NA>            319 100-500
## 6203       13969                             <NA>            319 100-500
## 6204       13969                             <NA>            319 100-500
## 6205       13969                             <NA>            319 100-500
## 6206       13969                             <NA>            319 100-500
## 6207       13969                             <NA>            319 100-500
## 6208       13969                             <NA>            319 100-500
## 6209       13969                             <NA>            319 100-500
## 6210       13969                             <NA>            319 100-500
## 6211       13969                             <NA>            319 100-500
## 6212       13969                             <NA>            319 100-500
## 6213       13969                             <NA>            319 100-500
## 6214       13969                             <NA>            319 100-500
## 6215       13969                             <NA>            319 100-500
## 6216       13969                             <NA>            319 100-500
## 6217       13969                             <NA>            319 100-500
## 6218       13969                             <NA>            319 100-500
## 6219       13969                             <NA>            319 100-500
## 6220       13969                             <NA>            319 100-500
## 6221       13969                             <NA>            319 100-500
## 6222       13969                             <NA>            319 100-500
## 6223       14636                             <NA>              4    3-10
## 6224       14636                             <NA>              4    3-10
## 6225       14636                             <NA>              4    3-10
## 6226       14636                             <NA>              4    3-10
## 6227       14636                             <NA>              4    3-10
## 6228       14636                             <NA>              4    3-10
## 6229       14636                             <NA>              4    3-10
## 6230       14636                             <NA>              4    3-10
## 6231       14636                             <NA>              4    3-10
## 6232       14636                             <NA>              4    3-10
## 6233       14636                             <NA>              4    3-10
## 6234       14636                             <NA>              4    3-10
## 6235       14636                             <NA>              4    3-10
## 6236       14636                             <NA>              4    3-10
## 6237       14636                             <NA>              4    3-10
## 6238       14636                             <NA>              4    3-10
## 6239       14636                             <NA>              4    3-10
## 6240       14636                             <NA>              4    3-10
## 6241       14636                             <NA>              4    3-10
## 6242       14636                             <NA>              4    3-10
## 6243       14636                             <NA>              4    3-10
## 6244       14636                             <NA>              4    3-10
## 6245       14636                             <NA>              4    3-10
## 6246       14636                             <NA>              4    3-10
## 6247       14636                             <NA>              4    3-10
## 6248       14636                             <NA>              4    3-10
## 6249       14636                             <NA>              4    3-10
## 6250       14636                             <NA>              4    3-10
## 6251       14636                             <NA>              4    3-10
## 6252       14636                             <NA>              4    3-10
## 6253       14636                             <NA>              4    3-10
## 6254       14636                             <NA>              4    3-10
## 6255       14636                             <NA>              4    3-10
## 6256       14636                             <NA>              4    3-10
## 6257       14636                             <NA>              4    3-10
## 6258       14636                             <NA>              4    3-10
## 6259       14636                             <NA>              4    3-10
## 6260       14636                             <NA>              4    3-10
## 6261       14636                             <NA>              4    3-10
## 6262       14636                             <NA>              4    3-10
## 6263       14636                             <NA>              4    3-10
## 6264       14636                             <NA>              4    3-10
## 6265       14636                             <NA>              4    3-10
## 6266       14636                             <NA>              4    3-10
## 6267       14636                             <NA>              4    3-10
## 6268       14636                             <NA>              4    3-10
## 6269       14636                             <NA>              4    3-10
## 6270       14636                             <NA>              4    3-10
## 6271       14636                             <NA>              4    3-10
## 6272       14636                             <NA>              4    3-10
## 6273       14636                             <NA>              4    3-10
## 6274       14636                             <NA>              4    3-10
## 6275       14636                             <NA>              4    3-10
## 6276       14636                             <NA>              4    3-10
## 6277       14636                             <NA>              4    3-10
## 6278       14636                             <NA>              4    3-10
## 6279       14636                             <NA>              4    3-10
## 6280       14636                             <NA>              4    3-10
## 6281       14636                             <NA>              4    3-10
## 6282       14636                             <NA>              4    3-10
## 6283       14636                             <NA>              4    3-10
## 6284       14744                             <NA>            184 100-500
## 6285       14744                             <NA>            184 100-500
## 6286       14744                             <NA>            184 100-500
## 6287       14744                             <NA>            184 100-500
## 6288       14744                             <NA>            184 100-500
## 6289       14744                             <NA>            184 100-500
## 6290       14744                             <NA>            184 100-500
## 6291       14744                             <NA>            184 100-500
## 6292       14744                             <NA>            184 100-500
## 6293       14744                             <NA>            184 100-500
## 6294       14744                             <NA>            184 100-500
## 6295       14744                             <NA>            184 100-500
## 6296       14744                             <NA>            184 100-500
## 6297       14744                             <NA>            184 100-500
## 6298       14744                             <NA>            184 100-500
## 6299       14744                             <NA>            184 100-500
## 6300       14744                             <NA>            184 100-500
## 6301       14744                             <NA>            184 100-500
## 6302       14744                             <NA>            184 100-500
## 6303       14744                             <NA>            184 100-500
## 6304       14744                             <NA>            184 100-500
## 6305       14744                             <NA>            184 100-500
## 6306       14744                             <NA>            184 100-500
## 6307       14744                             <NA>            184 100-500
## 6308       14744                             <NA>            184 100-500
## 6309       14744                             <NA>            184 100-500
## 6310       14744                             <NA>            184 100-500
## 6311       14744                             <NA>            184 100-500
## 6312       14744                             <NA>            184 100-500
## 6313       14744                             <NA>            184 100-500
## 6314       14744                             <NA>            184 100-500
## 6315       14744                             <NA>            184 100-500
## 6316       14744                             <NA>            184 100-500
## 6317       14744                             <NA>            184 100-500
## 6318       14744                             <NA>            184 100-500
## 6319       14744                             <NA>            184 100-500
## 6320       14744                             <NA>            184 100-500
## 6321       14744                             <NA>            184 100-500
## 6322       14744                             <NA>            184 100-500
## 6323       14744                             <NA>            184 100-500
## 6324       14744                             <NA>            184 100-500
## 6325       14744                             <NA>            184 100-500
## 6326       14744                             <NA>            184 100-500
## 6327       14744                             <NA>            184 100-500
## 6328       14744                             <NA>            184 100-500
## 6329       14744                             <NA>            184 100-500
## 6330       14744                             <NA>            184 100-500
## 6331       14744                             <NA>            184 100-500
## 6332       14744                             <NA>            184 100-500
## 6333       14744                             <NA>            184 100-500
## 6334       14744                             <NA>            184 100-500
## 6335       14744                             <NA>            184 100-500
## 6336       14744                             <NA>            184 100-500
## 6337       14744                             <NA>            184 100-500
## 6338       14744                             <NA>            184 100-500
## 6339       14744                             <NA>            184 100-500
## 6340       14744                             <NA>            184 100-500
## 6341       14744                             <NA>            184 100-500
## 6342       14744                             <NA>            184 100-500
## 6343       14744                             <NA>            184 100-500
## 6344       14744                             <NA>            184 100-500
## 6345       14774                             <NA>             21   10-25
## 6346       14774                             <NA>             21   10-25
## 6347       14774                             <NA>             21   10-25
## 6348       14774                             <NA>             21   10-25
## 6349       14774                             <NA>             21   10-25
## 6350       14774                             <NA>             21   10-25
## 6351       14774                             <NA>             21   10-25
## 6352       14774                             <NA>             21   10-25
## 6353       14774                             <NA>             21   10-25
## 6354       14774                             <NA>             21   10-25
## 6355       14774                             <NA>             21   10-25
## 6356       14774                             <NA>             21   10-25
## 6357       14774                             <NA>             21   10-25
## 6358       14774                             <NA>             21   10-25
## 6359       14774                             <NA>             21   10-25
## 6360       14774                             <NA>             21   10-25
## 6361       14774                             <NA>             21   10-25
## 6362       14774                             <NA>             21   10-25
## 6363       14774                             <NA>             21   10-25
## 6364       14774                             <NA>             21   10-25
## 6365       14774                             <NA>             21   10-25
## 6366       14774                             <NA>             21   10-25
## 6367       14774                             <NA>             21   10-25
## 6368       14774                             <NA>             21   10-25
## 6369       14774                             <NA>             21   10-25
## 6370       14774                             <NA>             21   10-25
## 6371       14774                             <NA>             21   10-25
## 6372       14774                             <NA>             21   10-25
## 6373       14774                             <NA>             21   10-25
## 6374       14774                             <NA>             21   10-25
## 6375       14774                             <NA>             21   10-25
## 6376       14774                             <NA>             21   10-25
## 6377       14774                             <NA>             21   10-25
## 6378       14774                             <NA>             21   10-25
## 6379       14774                             <NA>             21   10-25
## 6380       14774                             <NA>             21   10-25
## 6381       14774                             <NA>             21   10-25
## 6382       14774                             <NA>             21   10-25
## 6383       14774                             <NA>             21   10-25
## 6384       14774                             <NA>             21   10-25
## 6385       14774                             <NA>             21   10-25
## 6386       14774                             <NA>             21   10-25
## 6387       14774                             <NA>             21   10-25
## 6388       14774                             <NA>             21   10-25
## 6389       14774                             <NA>             21   10-25
## 6390       14774                             <NA>             21   10-25
## 6391       14774                             <NA>             21   10-25
## 6392       14774                             <NA>             21   10-25
## 6393       14774                             <NA>             21   10-25
## 6394       14774                             <NA>             21   10-25
## 6395       14774                             <NA>             21   10-25
## 6396       14774                             <NA>             21   10-25
## 6397       14774                             <NA>             21   10-25
## 6398       14774                             <NA>             21   10-25
## 6399       14774                             <NA>             21   10-25
## 6400       14774                             <NA>             21   10-25
## 6401       14774                             <NA>             21   10-25
## 6402       14774                             <NA>             21   10-25
## 6403       14774                             <NA>             21   10-25
## 6404       14774                             <NA>             21   10-25
## 6405       14774                             <NA>             21   10-25
## 6406       14870                     Good Article            100  25-100
## 6407       14870                     Good Article            100  25-100
## 6408       14870                     Good Article            100  25-100
## 6409       14870                     Good Article            100  25-100
## 6410       14870                     Good Article            100  25-100
## 6411       14870                     Good Article            100  25-100
## 6412       14870                     Good Article            100  25-100
## 6413       14870                     Good Article            100  25-100
## 6414       14870                     Good Article            100  25-100
## 6415       14870                     Good Article            100  25-100
## 6416       14870                     Good Article            100  25-100
## 6417       14870                     Good Article            100  25-100
## 6418       14870                     Good Article            100  25-100
## 6419       14870                     Good Article            100  25-100
## 6420       14870                     Good Article            100  25-100
## 6421       14870                     Good Article            100  25-100
## 6422       14870                     Good Article            100  25-100
## 6423       14870                     Good Article            100  25-100
## 6424       14870                     Good Article            100  25-100
## 6425       14870                     Good Article            100  25-100
## 6426       14870                     Good Article            100  25-100
## 6427       14870                     Good Article            100  25-100
## 6428       14870                     Good Article            100  25-100
## 6429       14870                     Good Article            100  25-100
## 6430       14870                     Good Article            100  25-100
## 6431       14870                     Good Article            100  25-100
## 6432       14870                     Good Article            100  25-100
## 6433       14870                     Good Article            100  25-100
## 6434       14870                     Good Article            100  25-100
## 6435       14870                     Good Article            100  25-100
## 6436       14870                     Good Article            100  25-100
## 6437       14870                     Good Article            100  25-100
## 6438       14870                     Good Article            100  25-100
## 6439       14870                     Good Article            100  25-100
## 6440       14870                     Good Article            100  25-100
## 6441       14870                     Good Article            100  25-100
## 6442       14870                     Good Article            100  25-100
## 6443       14870                     Good Article            100  25-100
## 6444       14870                     Good Article            100  25-100
## 6445       14870                     Good Article            100  25-100
## 6446       14870                     Good Article            100  25-100
## 6447       14870                     Good Article            100  25-100
## 6448       14870                     Good Article            100  25-100
## 6449       14870                     Good Article            100  25-100
## 6450       14870                     Good Article            100  25-100
## 6451       14870                     Good Article            100  25-100
## 6452       14870                     Good Article            100  25-100
## 6453       14870                     Good Article            100  25-100
## 6454       14870                     Good Article            100  25-100
## 6455       14870                     Good Article            100  25-100
## 6456       14870                     Good Article            100  25-100
## 6457       14870                     Good Article            100  25-100
## 6458       14870                     Good Article            100  25-100
## 6459       14870                     Good Article            100  25-100
## 6460       14870                     Good Article            100  25-100
## 6461       14870                     Good Article            100  25-100
## 6462       14870                     Good Article            100  25-100
## 6463       14870                     Good Article            100  25-100
## 6464       14870                     Good Article            100  25-100
## 6465       14870                     Good Article            100  25-100
## 6466       14870                     Good Article            100  25-100
## 6467       14895                             <NA>            600    500-
## 6468       14895                             <NA>            600    500-
## 6469       14895                             <NA>            600    500-
## 6470       14895                             <NA>            600    500-
## 6471       14895                             <NA>            600    500-
## 6472       14895                             <NA>            600    500-
## 6473       14895                             <NA>            600    500-
## 6474       14895                             <NA>            600    500-
## 6475       14895                             <NA>            600    500-
## 6476       14895                             <NA>            600    500-
## 6477       14895                             <NA>            600    500-
## 6478       14895                             <NA>            600    500-
## 6479       14895                             <NA>            600    500-
## 6480       14895                             <NA>            600    500-
## 6481       14895                             <NA>            600    500-
## 6482       14895                             <NA>            600    500-
## 6483       14895                             <NA>            600    500-
## 6484       14895                             <NA>            600    500-
## 6485       14895                             <NA>            600    500-
## 6486       14895                             <NA>            600    500-
## 6487       14895                             <NA>            600    500-
## 6488       14895                             <NA>            600    500-
## 6489       14895                             <NA>            600    500-
## 6490       14895                             <NA>            600    500-
## 6491       14895                             <NA>            600    500-
## 6492       14895                             <NA>            600    500-
## 6493       14895                             <NA>            600    500-
## 6494       14895                             <NA>            600    500-
## 6495       14895                             <NA>            600    500-
## 6496       14895                             <NA>            600    500-
## 6497       14895                             <NA>            600    500-
## 6498       14895                             <NA>            600    500-
## 6499       14895                             <NA>            600    500-
## 6500       14895                             <NA>            600    500-
## 6501       14895                             <NA>            600    500-
## 6502       14895                             <NA>            600    500-
## 6503       14895                             <NA>            600    500-
## 6504       14895                             <NA>            600    500-
## 6505       14895                             <NA>            600    500-
## 6506       14895                             <NA>            600    500-
## 6507       14895                             <NA>            600    500-
## 6508       14895                             <NA>            600    500-
## 6509       14895                             <NA>            600    500-
## 6510       14895                             <NA>            600    500-
## 6511       14895                             <NA>            600    500-
## 6512       14895                             <NA>            600    500-
## 6513       14895                             <NA>            600    500-
## 6514       14895                             <NA>            600    500-
## 6515       14895                             <NA>            600    500-
## 6516       14895                             <NA>            600    500-
## 6517       14895                             <NA>            600    500-
## 6518       14895                             <NA>            600    500-
## 6519       14895                             <NA>            600    500-
## 6520       14895                             <NA>            600    500-
## 6521       14895                             <NA>            600    500-
## 6522       14895                             <NA>            600    500-
## 6523       14895                             <NA>            600    500-
## 6524       14895                             <NA>            600    500-
## 6525       14895                             <NA>            600    500-
## 6526       14895                             <NA>            600    500-
## 6527       14895                             <NA>            600    500-
## 6528       15175                             <NA>            176 100-500
## 6529       15175                             <NA>            176 100-500
## 6530       15175                             <NA>            176 100-500
## 6531       15175                             <NA>            176 100-500
## 6532       15175                             <NA>            176 100-500
## 6533       15175                             <NA>            176 100-500
## 6534       15175                             <NA>            176 100-500
## 6535       15175                             <NA>            176 100-500
## 6536       15175                             <NA>            176 100-500
## 6537       15175                             <NA>            176 100-500
## 6538       15175                             <NA>            176 100-500
## 6539       15175                             <NA>            176 100-500
## 6540       15175                             <NA>            176 100-500
## 6541       15175                             <NA>            176 100-500
## 6542       15175                             <NA>            176 100-500
## 6543       15175                             <NA>            176 100-500
## 6544       15175                             <NA>            176 100-500
## 6545       15175                             <NA>            176 100-500
## 6546       15175                             <NA>            176 100-500
## 6547       15175                             <NA>            176 100-500
## 6548       15175                             <NA>            176 100-500
## 6549       15175                             <NA>            176 100-500
## 6550       15175                             <NA>            176 100-500
## 6551       15175                             <NA>            176 100-500
## 6552       15175                             <NA>            176 100-500
## 6553       15175                             <NA>            176 100-500
## 6554       15175                             <NA>            176 100-500
## 6555       15175                             <NA>            176 100-500
## 6556       15175                             <NA>            176 100-500
## 6557       15175                             <NA>            176 100-500
## 6558       15175                             <NA>            176 100-500
## 6559       15175                             <NA>            176 100-500
## 6560       15175                             <NA>            176 100-500
## 6561       15175                             <NA>            176 100-500
## 6562       15175                             <NA>            176 100-500
## 6563       15175                             <NA>            176 100-500
## 6564       15175                             <NA>            176 100-500
## 6565       15175                             <NA>            176 100-500
## 6566       15175                             <NA>            176 100-500
## 6567       15175                             <NA>            176 100-500
## 6568       15175                             <NA>            176 100-500
## 6569       15175                             <NA>            176 100-500
## 6570       15175                             <NA>            176 100-500
## 6571       15175                             <NA>            176 100-500
## 6572       15175                             <NA>            176 100-500
## 6573       15175                             <NA>            176 100-500
## 6574       15175                             <NA>            176 100-500
## 6575       15175                             <NA>            176 100-500
## 6576       15175                             <NA>            176 100-500
## 6577       15175                             <NA>            176 100-500
## 6578       15175                             <NA>            176 100-500
## 6579       15175                             <NA>            176 100-500
## 6580       15175                             <NA>            176 100-500
## 6581       15175                             <NA>            176 100-500
## 6582       15175                             <NA>            176 100-500
## 6583       15175                             <NA>            176 100-500
## 6584       15175                             <NA>            176 100-500
## 6585       15175                             <NA>            176 100-500
## 6586       15175                             <NA>            176 100-500
## 6587       15175                             <NA>            176 100-500
## 6588       15175                             <NA>            176 100-500
## 6589       15260                             <NA>             89  25-100
## 6590       15260                             <NA>             89  25-100
## 6591       15260                             <NA>             89  25-100
## 6592       15260                             <NA>             89  25-100
## 6593       15260                             <NA>             89  25-100
## 6594       15260                             <NA>             89  25-100
## 6595       15260                             <NA>             89  25-100
## 6596       15260                             <NA>             89  25-100
## 6597       15260                             <NA>             89  25-100
## 6598       15260                             <NA>             89  25-100
## 6599       15260                             <NA>             89  25-100
## 6600       15260                             <NA>             89  25-100
## 6601       15260                             <NA>             89  25-100
## 6602       15260                             <NA>             89  25-100
## 6603       15260                             <NA>             89  25-100
## 6604       15260                             <NA>             89  25-100
## 6605       15260                             <NA>             89  25-100
## 6606       15260                             <NA>             89  25-100
## 6607       15260                             <NA>             89  25-100
## 6608       15260                             <NA>             89  25-100
## 6609       15260                             <NA>             89  25-100
## 6610       15260                             <NA>             89  25-100
## 6611       15260                             <NA>             89  25-100
## 6612       15260                             <NA>             89  25-100
## 6613       15260                             <NA>             89  25-100
## 6614       15260                             <NA>             89  25-100
## 6615       15260                             <NA>             89  25-100
## 6616       15260                             <NA>             89  25-100
## 6617       15260                             <NA>             89  25-100
## 6618       15260                             <NA>             89  25-100
## 6619       15260                             <NA>             89  25-100
## 6620       15260                             <NA>             89  25-100
## 6621       15260                             <NA>             89  25-100
## 6622       15260                             <NA>             89  25-100
## 6623       15260                             <NA>             89  25-100
## 6624       15260                             <NA>             89  25-100
## 6625       15260                             <NA>             89  25-100
## 6626       15260                             <NA>             89  25-100
## 6627       15260                             <NA>             89  25-100
## 6628       15260                             <NA>             89  25-100
## 6629       15260                             <NA>             89  25-100
## 6630       15260                             <NA>             89  25-100
## 6631       15260                             <NA>             89  25-100
## 6632       15260                             <NA>             89  25-100
## 6633       15260                             <NA>             89  25-100
## 6634       15260                             <NA>             89  25-100
## 6635       15260                             <NA>             89  25-100
## 6636       15260                             <NA>             89  25-100
## 6637       15260                             <NA>             89  25-100
## 6638       15260                             <NA>             89  25-100
## 6639       15260                             <NA>             89  25-100
## 6640       15260                             <NA>             89  25-100
## 6641       15260                             <NA>             89  25-100
## 6642       15260                             <NA>             89  25-100
## 6643       15260                             <NA>             89  25-100
## 6644       15260                             <NA>             89  25-100
## 6645       15260                             <NA>             89  25-100
## 6646       15260                             <NA>             89  25-100
## 6647       15260                             <NA>             89  25-100
## 6648       15260                             <NA>             89  25-100
## 6649       15260                             <NA>             89  25-100
## 6650       15658    Partially Protected - Default            787    500-
## 6651       15658    Partially Protected - Default            787    500-
## 6652       15658    Partially Protected - Default            787    500-
## 6653       15658    Partially Protected - Default            787    500-
## 6654       15658    Partially Protected - Default            787    500-
## 6655       15658    Partially Protected - Default            787    500-
## 6656       15658    Partially Protected - Default            787    500-
## 6657       15658    Partially Protected - Default            787    500-
## 6658       15658    Partially Protected - Default            787    500-
## 6659       15658    Partially Protected - Default            787    500-
## 6660       15658    Partially Protected - Default            787    500-
## 6661       15658    Partially Protected - Default            787    500-
## 6662       15658    Partially Protected - Default            787    500-
## 6663       15658    Partially Protected - Default            787    500-
## 6664       15658    Partially Protected - Default            787    500-
## 6665       15658    Partially Protected - Default            787    500-
## 6666       15658    Partially Protected - Default            787    500-
## 6667       15658    Partially Protected - Default            787    500-
## 6668       15658    Partially Protected - Default            787    500-
## 6669       15658    Partially Protected - Default            787    500-
## 6670       15658    Partially Protected - Default            787    500-
## 6671       15658    Partially Protected - Default            787    500-
## 6672       15658    Partially Protected - Default            787    500-
## 6673       15658    Partially Protected - Default            787    500-
## 6674       15658    Partially Protected - Default            787    500-
## 6675       15658    Partially Protected - Default            787    500-
## 6676       15658    Partially Protected - Default            787    500-
## 6677       15658    Partially Protected - Default            787    500-
## 6678       15658    Partially Protected - Default            787    500-
## 6679       15658    Partially Protected - Default            787    500-
## 6680       15658    Partially Protected - Default            787    500-
## 6681       15658    Partially Protected - Default            787    500-
## 6682       15658    Partially Protected - Default            787    500-
## 6683       15658    Partially Protected - Default            787    500-
## 6684       15658    Partially Protected - Default            787    500-
## 6685       15658    Partially Protected - Default            787    500-
## 6686       15658    Partially Protected - Default            787    500-
## 6687       15658    Partially Protected - Default            787    500-
## 6688       15658    Partially Protected - Default            787    500-
## 6689       15658    Partially Protected - Default            787    500-
## 6690       15658    Partially Protected - Default            787    500-
## 6691       15658    Partially Protected - Default            787    500-
## 6692       15658    Partially Protected - Default            787    500-
## 6693       15658    Partially Protected - Default            787    500-
## 6694       15658    Partially Protected - Default            787    500-
## 6695       15658    Partially Protected - Default            787    500-
## 6696       15658    Partially Protected - Default            787    500-
## 6697       15658    Partially Protected - Default            787    500-
## 6698       15658    Partially Protected - Default            787    500-
## 6699       15658    Partially Protected - Default            787    500-
## 6700       15658    Partially Protected - Default            787    500-
## 6701       15658    Partially Protected - Default            787    500-
## 6702       15658    Partially Protected - Default            787    500-
## 6703       15658    Partially Protected - Default            787    500-
## 6704       15658    Partially Protected - Default            787    500-
## 6705       15658    Partially Protected - Default            787    500-
## 6706       15658    Partially Protected - Default            787    500-
## 6707       15658    Partially Protected - Default            787    500-
## 6708       15658    Partially Protected - Default            787    500-
## 6709       15658    Partially Protected - Default            787    500-
## 6710       15658    Partially Protected - Default            787    500-
## 6711       15670                             <NA>             20   10-25
## 6712       15670                             <NA>             20   10-25
## 6713       15670                             <NA>             20   10-25
## 6714       15670                             <NA>             20   10-25
## 6715       15670                             <NA>             20   10-25
## 6716       15670                             <NA>             20   10-25
## 6717       15670                             <NA>             20   10-25
## 6718       15670                             <NA>             20   10-25
## 6719       15670                             <NA>             20   10-25
## 6720       15670                             <NA>             20   10-25
## 6721       15670                             <NA>             20   10-25
## 6722       15670                             <NA>             20   10-25
## 6723       15670                             <NA>             20   10-25
## 6724       15670                             <NA>             20   10-25
## 6725       15670                             <NA>             20   10-25
## 6726       15670                             <NA>             20   10-25
## 6727       15670                             <NA>             20   10-25
## 6728       15670                             <NA>             20   10-25
## 6729       15670                             <NA>             20   10-25
## 6730       15670                             <NA>             20   10-25
## 6731       15670                             <NA>             20   10-25
## 6732       15670                             <NA>             20   10-25
## 6733       15670                             <NA>             20   10-25
## 6734       15670                             <NA>             20   10-25
## 6735       15670                             <NA>             20   10-25
## 6736       15670                             <NA>             20   10-25
## 6737       15670                             <NA>             20   10-25
## 6738       15670                             <NA>             20   10-25
## 6739       15670                             <NA>             20   10-25
## 6740       15670                             <NA>             20   10-25
## 6741       15670                             <NA>             20   10-25
## 6742       15670                             <NA>             20   10-25
## 6743       15670                             <NA>             20   10-25
## 6744       15670                             <NA>             20   10-25
## 6745       15670                             <NA>             20   10-25
## 6746       15670                             <NA>             20   10-25
## 6747       15670                             <NA>             20   10-25
## 6748       15670                             <NA>             20   10-25
## 6749       15670                             <NA>             20   10-25
## 6750       15670                             <NA>             20   10-25
## 6751       15670                             <NA>             20   10-25
## 6752       15670                             <NA>             20   10-25
## 6753       15670                             <NA>             20   10-25
## 6754       15670                             <NA>             20   10-25
## 6755       15670                             <NA>             20   10-25
## 6756       15670                             <NA>             20   10-25
## 6757       15670                             <NA>             20   10-25
## 6758       15670                             <NA>             20   10-25
## 6759       15670                             <NA>             20   10-25
## 6760       15670                             <NA>             20   10-25
## 6761       15670                             <NA>             20   10-25
## 6762       15670                             <NA>             20   10-25
## 6763       15670                             <NA>             20   10-25
## 6764       15670                             <NA>             20   10-25
## 6765       15670                             <NA>             20   10-25
## 6766       15670                             <NA>             20   10-25
## 6767       15670                             <NA>             20   10-25
## 6768       15670                             <NA>             20   10-25
## 6769       15670                             <NA>             20   10-25
## 6770       15670                             <NA>             20   10-25
## 6771       15670                             <NA>             20   10-25
## 6772       15687                             <NA>              4    3-10
## 6773       15687                             <NA>              4    3-10
## 6774       15687                             <NA>              4    3-10
## 6775       15687                             <NA>              4    3-10
## 6776       15687                             <NA>              4    3-10
## 6777       15687                             <NA>              4    3-10
## 6778       15687                             <NA>              4    3-10
## 6779       15687                             <NA>              4    3-10
## 6780       15687                             <NA>              4    3-10
## 6781       15687                             <NA>              4    3-10
## 6782       15687                             <NA>              4    3-10
## 6783       15687                             <NA>              4    3-10
## 6784       15687                             <NA>              4    3-10
## 6785       15687                             <NA>              4    3-10
## 6786       15687                             <NA>              4    3-10
## 6787       15687                             <NA>              4    3-10
## 6788       15687                             <NA>              4    3-10
## 6789       15687                             <NA>              4    3-10
## 6790       15687                             <NA>              4    3-10
## 6791       15687                             <NA>              4    3-10
## 6792       15687                             <NA>              4    3-10
## 6793       15687                             <NA>              4    3-10
## 6794       15687                             <NA>              4    3-10
## 6795       15687                             <NA>              4    3-10
## 6796       15687                             <NA>              4    3-10
## 6797       15687                             <NA>              4    3-10
## 6798       15687                             <NA>              4    3-10
## 6799       15687                             <NA>              4    3-10
## 6800       15687                             <NA>              4    3-10
## 6801       15687                             <NA>              4    3-10
## 6802       15687                             <NA>              4    3-10
## 6803       15687                             <NA>              4    3-10
## 6804       15687                             <NA>              4    3-10
## 6805       15687                             <NA>              4    3-10
## 6806       15687                             <NA>              4    3-10
## 6807       15687                             <NA>              4    3-10
## 6808       15687                             <NA>              4    3-10
## 6809       15687                             <NA>              4    3-10
## 6810       15687                             <NA>              4    3-10
## 6811       15687                             <NA>              4    3-10
## 6812       15687                             <NA>              4    3-10
## 6813       15687                             <NA>              4    3-10
## 6814       15687                             <NA>              4    3-10
## 6815       15687                             <NA>              4    3-10
## 6816       15687                             <NA>              4    3-10
## 6817       15687                             <NA>              4    3-10
## 6818       15687                             <NA>              4    3-10
## 6819       15687                             <NA>              4    3-10
## 6820       15687                             <NA>              4    3-10
## 6821       15687                             <NA>              4    3-10
## 6822       15687                             <NA>              4    3-10
## 6823       15687                             <NA>              4    3-10
## 6824       15687                             <NA>              4    3-10
## 6825       15687                             <NA>              4    3-10
## 6826       15687                             <NA>              4    3-10
## 6827       15687                             <NA>              4    3-10
## 6828       15687                             <NA>              4    3-10
## 6829       15687                             <NA>              4    3-10
## 6830       15687                             <NA>              4    3-10
## 6831       15687                             <NA>              4    3-10
## 6832       15687                             <NA>              4    3-10
## 6833       15690                             <NA>              3    3-10
## 6834       15690                             <NA>              3    3-10
## 6835       15690                             <NA>              3    3-10
## 6836       15690                             <NA>              3    3-10
## 6837       15690                             <NA>              3    3-10
## 6838       15690                             <NA>              3    3-10
## 6839       15690                             <NA>              3    3-10
## 6840       15690                             <NA>              3    3-10
## 6841       15690                             <NA>              3    3-10
## 6842       15690                             <NA>              3    3-10
## 6843       15690                             <NA>              3    3-10
## 6844       15690                             <NA>              3    3-10
## 6845       15690                             <NA>              3    3-10
## 6846       15690                             <NA>              3    3-10
## 6847       15690                             <NA>              3    3-10
## 6848       15690                             <NA>              3    3-10
## 6849       15690                             <NA>              3    3-10
## 6850       15690                             <NA>              3    3-10
## 6851       15690                             <NA>              3    3-10
## 6852       15690                             <NA>              3    3-10
## 6853       15690                             <NA>              3    3-10
## 6854       15690                             <NA>              3    3-10
## 6855       15690                             <NA>              3    3-10
## 6856       15690                             <NA>              3    3-10
## 6857       15690                             <NA>              3    3-10
## 6858       15690                             <NA>              3    3-10
## 6859       15690                             <NA>              3    3-10
## 6860       15690                             <NA>              3    3-10
## 6861       15690                             <NA>              3    3-10
## 6862       15690                             <NA>              3    3-10
## 6863       15690                             <NA>              3    3-10
## 6864       15690                             <NA>              3    3-10
## 6865       15690                             <NA>              3    3-10
## 6866       15690                             <NA>              3    3-10
## 6867       15690                             <NA>              3    3-10
## 6868       15690                             <NA>              3    3-10
## 6869       15690                             <NA>              3    3-10
## 6870       15690                             <NA>              3    3-10
## 6871       15690                             <NA>              3    3-10
## 6872       15690                             <NA>              3    3-10
## 6873       15690                             <NA>              3    3-10
## 6874       15690                             <NA>              3    3-10
## 6875       15690                             <NA>              3    3-10
## 6876       15690                             <NA>              3    3-10
## 6877       15690                             <NA>              3    3-10
## 6878       15690                             <NA>              3    3-10
## 6879       15690                             <NA>              3    3-10
## 6880       15690                             <NA>              3    3-10
## 6881       15690                             <NA>              3    3-10
## 6882       15690                             <NA>              3    3-10
## 6883       15690                             <NA>              3    3-10
## 6884       15690                             <NA>              3    3-10
## 6885       15690                             <NA>              3    3-10
## 6886       15690                             <NA>              3    3-10
## 6887       15690                             <NA>              3    3-10
## 6888       15690                             <NA>              3    3-10
## 6889       15690                             <NA>              3    3-10
## 6890       15690                             <NA>              3    3-10
## 6891       15690                             <NA>              3    3-10
## 6892       15690                             <NA>              3    3-10
## 6893       15690                             <NA>              3    3-10
## 6894       15831 Partially Protected - Autoreview            599    500-
## 6895       15831 Partially Protected - Autoreview            599    500-
## 6896       15831 Partially Protected - Autoreview            599    500-
## 6897       15831 Partially Protected - Autoreview            599    500-
## 6898       15831 Partially Protected - Autoreview            599    500-
## 6899       15831 Partially Protected - Autoreview            599    500-
## 6900       15831 Partially Protected - Autoreview            599    500-
## 6901       15831 Partially Protected - Autoreview            599    500-
## 6902       15831 Partially Protected - Autoreview            599    500-
## 6903       15831 Partially Protected - Autoreview            599    500-
## 6904       15831 Partially Protected - Autoreview            599    500-
## 6905       15831 Partially Protected - Autoreview            599    500-
## 6906       15831 Partially Protected - Autoreview            599    500-
## 6907       15831 Partially Protected - Autoreview            599    500-
## 6908       15831 Partially Protected - Autoreview            599    500-
## 6909       15831 Partially Protected - Autoreview            599    500-
## 6910       15831 Partially Protected - Autoreview            599    500-
## 6911       15831 Partially Protected - Autoreview            599    500-
## 6912       15831 Partially Protected - Autoreview            599    500-
## 6913       15831 Partially Protected - Autoreview            599    500-
## 6914       15831 Partially Protected - Autoreview            599    500-
## 6915       15831 Partially Protected - Autoreview            599    500-
## 6916       15831 Partially Protected - Autoreview            599    500-
## 6917       15831 Partially Protected - Autoreview            599    500-
## 6918       15831 Partially Protected - Autoreview            599    500-
## 6919       15831 Partially Protected - Autoreview            599    500-
## 6920       15831 Partially Protected - Autoreview            599    500-
## 6921       15831 Partially Protected - Autoreview            599    500-
## 6922       15831 Partially Protected - Autoreview            599    500-
## 6923       15831 Partially Protected - Autoreview            599    500-
## 6924       15831 Partially Protected - Autoreview            599    500-
## 6925       15831 Partially Protected - Autoreview            599    500-
## 6926       15831 Partially Protected - Autoreview            599    500-
## 6927       15831 Partially Protected - Autoreview            599    500-
## 6928       15831 Partially Protected - Autoreview            599    500-
## 6929       15831 Partially Protected - Autoreview            599    500-
## 6930       15831 Partially Protected - Autoreview            599    500-
## 6931       15831 Partially Protected - Autoreview            599    500-
## 6932       15831 Partially Protected - Autoreview            599    500-
## 6933       15831 Partially Protected - Autoreview            599    500-
## 6934       15831 Partially Protected - Autoreview            599    500-
## 6935       15831 Partially Protected - Autoreview            599    500-
## 6936       15831 Partially Protected - Autoreview            599    500-
## 6937       15831 Partially Protected - Autoreview            599    500-
## 6938       15831 Partially Protected - Autoreview            599    500-
## 6939       15831 Partially Protected - Autoreview            599    500-
## 6940       15831 Partially Protected - Autoreview            599    500-
## 6941       15831 Partially Protected - Autoreview            599    500-
## 6942       15831 Partially Protected - Autoreview            599    500-
## 6943       15831 Partially Protected - Autoreview            599    500-
## 6944       15831 Partially Protected - Autoreview            599    500-
## 6945       15831 Partially Protected - Autoreview            599    500-
## 6946       15831 Partially Protected - Autoreview            599    500-
## 6947       15831 Partially Protected - Autoreview            599    500-
## 6948       15831 Partially Protected - Autoreview            599    500-
## 6949       15831 Partially Protected - Autoreview            599    500-
## 6950       15831 Partially Protected - Autoreview            599    500-
## 6951       15831 Partially Protected - Autoreview            599    500-
## 6952       15831 Partially Protected - Autoreview            599    500-
## 6953       15831 Partially Protected - Autoreview            599    500-
## 6954       15831 Partially Protected - Autoreview            599    500-
## 6955       15896                             <NA>              1     1-2
## 6956       15896                             <NA>              1     1-2
## 6957       15896                             <NA>              1     1-2
## 6958       15896                             <NA>              1     1-2
## 6959       15896                             <NA>              1     1-2
## 6960       15896                             <NA>              1     1-2
## 6961       15896                             <NA>              1     1-2
## 6962       15896                             <NA>              1     1-2
## 6963       15896                             <NA>              1     1-2
## 6964       15896                             <NA>              1     1-2
## 6965       15896                             <NA>              1     1-2
## 6966       15896                             <NA>              1     1-2
## 6967       15896                             <NA>              1     1-2
## 6968       15896                             <NA>              1     1-2
## 6969       15896                             <NA>              1     1-2
## 6970       15896                             <NA>              1     1-2
## 6971       15896                             <NA>              1     1-2
## 6972       15896                             <NA>              1     1-2
## 6973       15896                             <NA>              1     1-2
## 6974       15896                             <NA>              1     1-2
## 6975       15896                             <NA>              1     1-2
## 6976       15896                             <NA>              1     1-2
## 6977       15896                             <NA>              1     1-2
## 6978       15896                             <NA>              1     1-2
## 6979       15896                             <NA>              1     1-2
## 6980       15896                             <NA>              1     1-2
## 6981       15896                             <NA>              1     1-2
## 6982       15896                             <NA>              1     1-2
## 6983       15896                             <NA>              1     1-2
## 6984       15896                             <NA>              1     1-2
## 6985       15896                             <NA>              1     1-2
## 6986       15896                             <NA>              1     1-2
## 6987       15896                             <NA>              1     1-2
## 6988       15896                             <NA>              1     1-2
## 6989       15896                             <NA>              1     1-2
## 6990       15896                             <NA>              1     1-2
## 6991       15896                             <NA>              1     1-2
## 6992       15896                             <NA>              1     1-2
## 6993       15896                             <NA>              1     1-2
## 6994       15896                             <NA>              1     1-2
## 6995       15896                             <NA>              1     1-2
## 6996       15896                             <NA>              1     1-2
## 6997       15896                             <NA>              1     1-2
## 6998       15896                             <NA>              1     1-2
## 6999       15896                             <NA>              1     1-2
## 7000       15896                             <NA>              1     1-2
## 7001       15896                             <NA>              1     1-2
## 7002       15896                             <NA>              1     1-2
## 7003       15896                             <NA>              1     1-2
## 7004       15896                             <NA>              1     1-2
## 7005       15896                             <NA>              1     1-2
## 7006       15896                             <NA>              1     1-2
## 7007       15896                             <NA>              1     1-2
## 7008       15896                             <NA>              1     1-2
## 7009       15896                             <NA>              1     1-2
## 7010       15896                             <NA>              1     1-2
## 7011       15896                             <NA>              1     1-2
## 7012       15896                             <NA>              1     1-2
## 7013       15896                             <NA>              1     1-2
## 7014       15896                             <NA>              1     1-2
## 7015       15896                             <NA>              1     1-2
## 7016       16083                             <NA>            988    500-
## 7017       16083                             <NA>            988    500-
## 7018       16083                             <NA>            988    500-
## 7019       16083                             <NA>            988    500-
## 7020       16083                             <NA>            988    500-
## 7021       16083                             <NA>            988    500-
## 7022       16083                             <NA>            988    500-
## 7023       16083                             <NA>            988    500-
## 7024       16083                             <NA>            988    500-
## 7025       16083                             <NA>            988    500-
## 7026       16083                             <NA>            988    500-
## 7027       16083                             <NA>            988    500-
## 7028       16083                             <NA>            988    500-
## 7029       16083                             <NA>            988    500-
## 7030       16083                             <NA>            988    500-
## 7031       16083                             <NA>            988    500-
## 7032       16083                             <NA>            988    500-
## 7033       16083                             <NA>            988    500-
## 7034       16083                             <NA>            988    500-
## 7035       16083                             <NA>            988    500-
## 7036       16083                             <NA>            988    500-
## 7037       16083                             <NA>            988    500-
## 7038       16083                             <NA>            988    500-
## 7039       16083                             <NA>            988    500-
## 7040       16083                             <NA>            988    500-
## 7041       16083                             <NA>            988    500-
## 7042       16083                             <NA>            988    500-
## 7043       16083                             <NA>            988    500-
## 7044       16083                             <NA>            988    500-
## 7045       16083                             <NA>            988    500-
## 7046       16083                             <NA>            988    500-
## 7047       16083                             <NA>            988    500-
## 7048       16083                             <NA>            988    500-
## 7049       16083                             <NA>            988    500-
## 7050       16083                             <NA>            988    500-
## 7051       16083                             <NA>            988    500-
## 7052       16083                             <NA>            988    500-
## 7053       16083                             <NA>            988    500-
## 7054       16083                             <NA>            988    500-
## 7055       16083                             <NA>            988    500-
## 7056       16083                             <NA>            988    500-
## 7057       16083                             <NA>            988    500-
## 7058       16083                             <NA>            988    500-
## 7059       16083                             <NA>            988    500-
## 7060       16083                             <NA>            988    500-
## 7061       16083                             <NA>            988    500-
## 7062       16083                             <NA>            988    500-
## 7063       16083                             <NA>            988    500-
## 7064       16083                             <NA>            988    500-
## 7065       16083                             <NA>            988    500-
## 7066       16083                             <NA>            988    500-
## 7067       16083                             <NA>            988    500-
## 7068       16083                             <NA>            988    500-
## 7069       16083                             <NA>            988    500-
## 7070       16083                             <NA>            988    500-
## 7071       16083                             <NA>            988    500-
## 7072       16083                             <NA>            988    500-
## 7073       16083                             <NA>            988    500-
## 7074       16083                             <NA>            988    500-
## 7075       16083                             <NA>            988    500-
## 7076       16083                             <NA>            988    500-
## 7077       16126                             <NA>             20   10-25
## 7078       16126                             <NA>             20   10-25
## 7079       16126                             <NA>             20   10-25
## 7080       16126                             <NA>             20   10-25
## 7081       16126                             <NA>             20   10-25
## 7082       16126                             <NA>             20   10-25
## 7083       16126                             <NA>             20   10-25
## 7084       16126                             <NA>             20   10-25
## 7085       16126                             <NA>             20   10-25
## 7086       16126                             <NA>             20   10-25
## 7087       16126                             <NA>             20   10-25
## 7088       16126                             <NA>             20   10-25
## 7089       16126                             <NA>             20   10-25
## 7090       16126                             <NA>             20   10-25
## 7091       16126                             <NA>             20   10-25
## 7092       16126                             <NA>             20   10-25
## 7093       16126                             <NA>             20   10-25
## 7094       16126                             <NA>             20   10-25
## 7095       16126                             <NA>             20   10-25
## 7096       16126                             <NA>             20   10-25
## 7097       16126                             <NA>             20   10-25
## 7098       16126                             <NA>             20   10-25
## 7099       16126                             <NA>             20   10-25
## 7100       16126                             <NA>             20   10-25
## 7101       16126                             <NA>             20   10-25
## 7102       16126                             <NA>             20   10-25
## 7103       16126                             <NA>             20   10-25
## 7104       16126                             <NA>             20   10-25
## 7105       16126                             <NA>             20   10-25
## 7106       16126                             <NA>             20   10-25
## 7107       16126                             <NA>             20   10-25
## 7108       16126                             <NA>             20   10-25
## 7109       16126                             <NA>             20   10-25
## 7110       16126                             <NA>             20   10-25
## 7111       16126                             <NA>             20   10-25
## 7112       16126                             <NA>             20   10-25
## 7113       16126                             <NA>             20   10-25
## 7114       16126                             <NA>             20   10-25
## 7115       16126                             <NA>             20   10-25
## 7116       16126                             <NA>             20   10-25
## 7117       16126                             <NA>             20   10-25
## 7118       16126                             <NA>             20   10-25
## 7119       16126                             <NA>             20   10-25
## 7120       16126                             <NA>             20   10-25
## 7121       16126                             <NA>             20   10-25
## 7122       16126                             <NA>             20   10-25
## 7123       16126                             <NA>             20   10-25
## 7124       16126                             <NA>             20   10-25
## 7125       16126                             <NA>             20   10-25
## 7126       16126                             <NA>             20   10-25
## 7127       16126                             <NA>             20   10-25
## 7128       16126                             <NA>             20   10-25
## 7129       16126                             <NA>             20   10-25
## 7130       16126                             <NA>             20   10-25
## 7131       16126                             <NA>             20   10-25
## 7132       16126                             <NA>             20   10-25
## 7133       16126                             <NA>             20   10-25
## 7134       16126                             <NA>             20   10-25
## 7135       16126                             <NA>             20   10-25
## 7136       16126                             <NA>             20   10-25
## 7137       16126                             <NA>             20   10-25
## 7138       16773                             <NA>             86  25-100
## 7139       16773                             <NA>             86  25-100
## 7140       16773                             <NA>             86  25-100
## 7141       16773                             <NA>             86  25-100
## 7142       16773                             <NA>             86  25-100
## 7143       16773                             <NA>             86  25-100
## 7144       16773                             <NA>             86  25-100
## 7145       16773                             <NA>             86  25-100
## 7146       16773                             <NA>             86  25-100
## 7147       16773                             <NA>             86  25-100
## 7148       16773                             <NA>             86  25-100
## 7149       16773                             <NA>             86  25-100
## 7150       16773                             <NA>             86  25-100
## 7151       16773                             <NA>             86  25-100
## 7152       16773                             <NA>             86  25-100
## 7153       16773                             <NA>             86  25-100
## 7154       16773                             <NA>             86  25-100
## 7155       16773                             <NA>             86  25-100
## 7156       16773                             <NA>             86  25-100
## 7157       16773                             <NA>             86  25-100
## 7158       16773                             <NA>             86  25-100
## 7159       16773                             <NA>             86  25-100
## 7160       16773                             <NA>             86  25-100
## 7161       16773                             <NA>             86  25-100
## 7162       16773                             <NA>             86  25-100
## 7163       16773                             <NA>             86  25-100
## 7164       16773                             <NA>             86  25-100
## 7165       16773                             <NA>             86  25-100
## 7166       16773                             <NA>             86  25-100
## 7167       16773                             <NA>             86  25-100
## 7168       16773                             <NA>             86  25-100
## 7169       16773                             <NA>             86  25-100
## 7170       16773                             <NA>             86  25-100
## 7171       16773                             <NA>             86  25-100
## 7172       16773                             <NA>             86  25-100
## 7173       16773                             <NA>             86  25-100
## 7174       16773                             <NA>             86  25-100
## 7175       16773                             <NA>             86  25-100
## 7176       16773                             <NA>             86  25-100
## 7177       16773                             <NA>             86  25-100
## 7178       16773                             <NA>             86  25-100
## 7179       16773                             <NA>             86  25-100
## 7180       16773                             <NA>             86  25-100
## 7181       16773                             <NA>             86  25-100
## 7182       16773                             <NA>             86  25-100
## 7183       16773                             <NA>             86  25-100
## 7184       16773                             <NA>             86  25-100
## 7185       16773                             <NA>             86  25-100
## 7186       16773                             <NA>             86  25-100
## 7187       16773                             <NA>             86  25-100
## 7188       16773                             <NA>             86  25-100
## 7189       16773                             <NA>             86  25-100
## 7190       16773                             <NA>             86  25-100
## 7191       16773                             <NA>             86  25-100
## 7192       16773                             <NA>             86  25-100
## 7193       16773                             <NA>             86  25-100
## 7194       16773                             <NA>             86  25-100
## 7195       16773                             <NA>             86  25-100
## 7196       16773                             <NA>             86  25-100
## 7197       16773                             <NA>             86  25-100
## 7198       16773                             <NA>             86  25-100
## 7199       16897 Partially Protected - Autoreview           1146    500-
## 7200       16897 Partially Protected - Autoreview           1146    500-
## 7201       16897 Partially Protected - Autoreview           1146    500-
## 7202       16897 Partially Protected - Autoreview           1146    500-
## 7203       16897 Partially Protected - Autoreview           1146    500-
## 7204       16897 Partially Protected - Autoreview           1146    500-
## 7205       16897 Partially Protected - Autoreview           1146    500-
## 7206       16897 Partially Protected - Autoreview           1146    500-
## 7207       16897 Partially Protected - Autoreview           1146    500-
## 7208       16897 Partially Protected - Autoreview           1146    500-
## 7209       16897 Partially Protected - Autoreview           1146    500-
## 7210       16897 Partially Protected - Autoreview           1146    500-
## 7211       16897 Partially Protected - Autoreview           1146    500-
## 7212       16897 Partially Protected - Autoreview           1146    500-
## 7213       16897 Partially Protected - Autoreview           1146    500-
## 7214       16897 Partially Protected - Autoreview           1146    500-
## 7215       16897 Partially Protected - Autoreview           1146    500-
## 7216       16897 Partially Protected - Autoreview           1146    500-
## 7217       16897 Partially Protected - Autoreview           1146    500-
## 7218       16897 Partially Protected - Autoreview           1146    500-
## 7219       16897 Partially Protected - Autoreview           1146    500-
## 7220       16897 Partially Protected - Autoreview           1146    500-
## 7221       16897 Partially Protected - Autoreview           1146    500-
## 7222       16897 Partially Protected - Autoreview           1146    500-
## 7223       16897 Partially Protected - Autoreview           1146    500-
## 7224       16897 Partially Protected - Autoreview           1146    500-
## 7225       16897 Partially Protected - Autoreview           1146    500-
## 7226       16897 Partially Protected - Autoreview           1146    500-
## 7227       16897 Partially Protected - Autoreview           1146    500-
## 7228       16897 Partially Protected - Autoreview           1146    500-
## 7229       16897 Partially Protected - Autoreview           1146    500-
## 7230       16897 Partially Protected - Autoreview           1146    500-
## 7231       16897 Partially Protected - Autoreview           1146    500-
## 7232       16897 Partially Protected - Autoreview           1146    500-
## 7233       16897 Partially Protected - Autoreview           1146    500-
## 7234       16897 Partially Protected - Autoreview           1146    500-
## 7235       16897 Partially Protected - Autoreview           1146    500-
## 7236       16897 Partially Protected - Autoreview           1146    500-
## 7237       16897 Partially Protected - Autoreview           1146    500-
## 7238       16897 Partially Protected - Autoreview           1146    500-
## 7239       16897 Partially Protected - Autoreview           1146    500-
## 7240       16897 Partially Protected - Autoreview           1146    500-
## 7241       16897 Partially Protected - Autoreview           1146    500-
## 7242       16897 Partially Protected - Autoreview           1146    500-
## 7243       16897 Partially Protected - Autoreview           1146    500-
## 7244       16897 Partially Protected - Autoreview           1146    500-
## 7245       16897 Partially Protected - Autoreview           1146    500-
## 7246       16897 Partially Protected - Autoreview           1146    500-
## 7247       16897 Partially Protected - Autoreview           1146    500-
## 7248       16897 Partially Protected - Autoreview           1146    500-
## 7249       16897 Partially Protected - Autoreview           1146    500-
## 7250       16897 Partially Protected - Autoreview           1146    500-
## 7251       16897 Partially Protected - Autoreview           1146    500-
## 7252       16897 Partially Protected - Autoreview           1146    500-
## 7253       16897 Partially Protected - Autoreview           1146    500-
## 7254       16897 Partially Protected - Autoreview           1146    500-
## 7255       16897 Partially Protected - Autoreview           1146    500-
## 7256       16897 Partially Protected - Autoreview           1146    500-
## 7257       16897 Partially Protected - Autoreview           1146    500-
## 7258       16897 Partially Protected - Autoreview           1146    500-
## 7259       16897 Partially Protected - Autoreview           1146    500-
## 7260       17224                             <NA>             17   10-25
## 7261       17224                             <NA>             17   10-25
## 7262       17224                             <NA>             17   10-25
## 7263       17224                             <NA>             17   10-25
## 7264       17224                             <NA>             17   10-25
## 7265       17224                             <NA>             17   10-25
## 7266       17224                             <NA>             17   10-25
## 7267       17224                             <NA>             17   10-25
## 7268       17224                             <NA>             17   10-25
## 7269       17224                             <NA>             17   10-25
## 7270       17224                             <NA>             17   10-25
## 7271       17224                             <NA>             17   10-25
## 7272       17224                             <NA>             17   10-25
## 7273       17224                             <NA>             17   10-25
## 7274       17224                             <NA>             17   10-25
## 7275       17224                             <NA>             17   10-25
## 7276       17224                             <NA>             17   10-25
## 7277       17224                             <NA>             17   10-25
## 7278       17224                             <NA>             17   10-25
## 7279       17224                             <NA>             17   10-25
## 7280       17224                             <NA>             17   10-25
## 7281       17224                             <NA>             17   10-25
## 7282       17224                             <NA>             17   10-25
## 7283       17224                             <NA>             17   10-25
## 7284       17224                             <NA>             17   10-25
## 7285       17224                             <NA>             17   10-25
## 7286       17224                             <NA>             17   10-25
## 7287       17224                             <NA>             17   10-25
## 7288       17224                             <NA>             17   10-25
## 7289       17224                             <NA>             17   10-25
## 7290       17224                             <NA>             17   10-25
## 7291       17224                             <NA>             17   10-25
## 7292       17224                             <NA>             17   10-25
## 7293       17224                             <NA>             17   10-25
## 7294       17224                             <NA>             17   10-25
## 7295       17224                             <NA>             17   10-25
## 7296       17224                             <NA>             17   10-25
## 7297       17224                             <NA>             17   10-25
## 7298       17224                             <NA>             17   10-25
## 7299       17224                             <NA>             17   10-25
## 7300       17224                             <NA>             17   10-25
## 7301       17224                             <NA>             17   10-25
## 7302       17224                             <NA>             17   10-25
## 7303       17224                             <NA>             17   10-25
## 7304       17224                             <NA>             17   10-25
## 7305       17224                             <NA>             17   10-25
## 7306       17224                             <NA>             17   10-25
## 7307       17224                             <NA>             17   10-25
## 7308       17224                             <NA>             17   10-25
## 7309       17224                             <NA>             17   10-25
## 7310       17224                             <NA>             17   10-25
## 7311       17224                             <NA>             17   10-25
## 7312       17224                             <NA>             17   10-25
## 7313       17224                             <NA>             17   10-25
## 7314       17224                             <NA>             17   10-25
## 7315       17224                             <NA>             17   10-25
## 7316       17224                             <NA>             17   10-25
## 7317       17224                             <NA>             17   10-25
## 7318       17224                             <NA>             17   10-25
## 7319       17224                             <NA>             17   10-25
## 7320       17224                             <NA>             17   10-25
## 7321       17634                             <NA>             31  25-100
## 7322       17634                             <NA>             31  25-100
## 7323       17634                             <NA>             31  25-100
## 7324       17634                             <NA>             31  25-100
## 7325       17634                             <NA>             31  25-100
## 7326       17634                             <NA>             31  25-100
## 7327       17634                             <NA>             31  25-100
## 7328       17634                             <NA>             31  25-100
## 7329       17634                             <NA>             31  25-100
## 7330       17634                             <NA>             31  25-100
## 7331       17634                             <NA>             31  25-100
## 7332       17634                             <NA>             31  25-100
## 7333       17634                             <NA>             31  25-100
## 7334       17634                             <NA>             31  25-100
## 7335       17634                             <NA>             31  25-100
## 7336       17634                             <NA>             31  25-100
## 7337       17634                             <NA>             31  25-100
## 7338       17634                             <NA>             31  25-100
## 7339       17634                             <NA>             31  25-100
## 7340       17634                             <NA>             31  25-100
## 7341       17634                             <NA>             31  25-100
## 7342       17634                             <NA>             31  25-100
## 7343       17634                             <NA>             31  25-100
## 7344       17634                             <NA>             31  25-100
## 7345       17634                             <NA>             31  25-100
## 7346       17634                             <NA>             31  25-100
## 7347       17634                             <NA>             31  25-100
## 7348       17634                             <NA>             31  25-100
## 7349       17634                             <NA>             31  25-100
## 7350       17634                             <NA>             31  25-100
## 7351       17634                             <NA>             31  25-100
## 7352       17634                             <NA>             31  25-100
## 7353       17634                             <NA>             31  25-100
## 7354       17634                             <NA>             31  25-100
## 7355       17634                             <NA>             31  25-100
## 7356       17634                             <NA>             31  25-100
## 7357       17634                             <NA>             31  25-100
## 7358       17634                             <NA>             31  25-100
## 7359       17634                             <NA>             31  25-100
## 7360       17634                             <NA>             31  25-100
## 7361       17634                             <NA>             31  25-100
## 7362       17634                             <NA>             31  25-100
## 7363       17634                             <NA>             31  25-100
## 7364       17634                             <NA>             31  25-100
## 7365       17634                             <NA>             31  25-100
## 7366       17634                             <NA>             31  25-100
## 7367       17634                             <NA>             31  25-100
## 7368       17634                             <NA>             31  25-100
## 7369       17634                             <NA>             31  25-100
## 7370       17634                             <NA>             31  25-100
## 7371       17634                             <NA>             31  25-100
## 7372       17634                             <NA>             31  25-100
## 7373       17634                             <NA>             31  25-100
## 7374       17634                             <NA>             31  25-100
## 7375       17634                             <NA>             31  25-100
## 7376       17634                             <NA>             31  25-100
## 7377       17634                             <NA>             31  25-100
## 7378       17634                             <NA>             31  25-100
## 7379       17634                             <NA>             31  25-100
## 7380       17634                             <NA>             31  25-100
## 7381       17634                             <NA>             31  25-100
## 7382       17663                             <NA>              1     1-2
## 7383       17663                             <NA>              1     1-2
## 7384       17663                             <NA>              1     1-2
## 7385       17663                             <NA>              1     1-2
## 7386       17663                             <NA>              1     1-2
## 7387       17663                             <NA>              1     1-2
## 7388       17663                             <NA>              1     1-2
## 7389       17663                             <NA>              1     1-2
## 7390       17663                             <NA>              1     1-2
## 7391       17663                             <NA>              1     1-2
## 7392       17663                             <NA>              1     1-2
## 7393       17663                             <NA>              1     1-2
## 7394       17663                             <NA>              1     1-2
## 7395       17663                             <NA>              1     1-2
## 7396       17663                             <NA>              1     1-2
## 7397       17663                             <NA>              1     1-2
## 7398       17663                             <NA>              1     1-2
## 7399       17663                             <NA>              1     1-2
## 7400       17663                             <NA>              1     1-2
## 7401       17663                             <NA>              1     1-2
## 7402       17663                             <NA>              1     1-2
## 7403       17663                             <NA>              1     1-2
## 7404       17663                             <NA>              1     1-2
## 7405       17663                             <NA>              1     1-2
## 7406       17663                             <NA>              1     1-2
## 7407       17663                             <NA>              1     1-2
## 7408       17663                             <NA>              1     1-2
## 7409       17663                             <NA>              1     1-2
## 7410       17663                             <NA>              1     1-2
## 7411       17663                             <NA>              1     1-2
## 7412       17663                             <NA>              1     1-2
## 7413       17663                             <NA>              1     1-2
## 7414       17663                             <NA>              1     1-2
## 7415       17663                             <NA>              1     1-2
## 7416       17663                             <NA>              1     1-2
## 7417       17663                             <NA>              1     1-2
## 7418       17663                             <NA>              1     1-2
## 7419       17663                             <NA>              1     1-2
## 7420       17663                             <NA>              1     1-2
## 7421       17663                             <NA>              1     1-2
## 7422       17663                             <NA>              1     1-2
## 7423       17663                             <NA>              1     1-2
## 7424       17663                             <NA>              1     1-2
## 7425       17663                             <NA>              1     1-2
## 7426       17663                             <NA>              1     1-2
## 7427       17663                             <NA>              1     1-2
## 7428       17663                             <NA>              1     1-2
## 7429       17663                             <NA>              1     1-2
## 7430       17663                             <NA>              1     1-2
## 7431       17663                             <NA>              1     1-2
## 7432       17663                             <NA>              1     1-2
## 7433       17663                             <NA>              1     1-2
## 7434       17663                             <NA>              1     1-2
## 7435       17663                             <NA>              1     1-2
## 7436       17663                             <NA>              1     1-2
## 7437       17663                             <NA>              1     1-2
## 7438       17663                             <NA>              1     1-2
## 7439       17663                             <NA>              1     1-2
## 7440       17663                             <NA>              1     1-2
## 7441       17663                             <NA>              1     1-2
## 7442       17663                             <NA>              1     1-2
## 7443       17845                             <NA>            138 100-500
## 7444       17845                             <NA>            138 100-500
## 7445       17845                             <NA>            138 100-500
## 7446       17845                             <NA>            138 100-500
## 7447       17845                             <NA>            138 100-500
## 7448       17845                             <NA>            138 100-500
## 7449       17845                             <NA>            138 100-500
## 7450       17845                             <NA>            138 100-500
## 7451       17845                             <NA>            138 100-500
## 7452       17845                             <NA>            138 100-500
## 7453       17845                             <NA>            138 100-500
## 7454       17845                             <NA>            138 100-500
## 7455       17845                             <NA>            138 100-500
## 7456       17845                             <NA>            138 100-500
## 7457       17845                             <NA>            138 100-500
## 7458       17845                             <NA>            138 100-500
## 7459       17845                             <NA>            138 100-500
## 7460       17845                             <NA>            138 100-500
## 7461       17845                             <NA>            138 100-500
## 7462       17845                             <NA>            138 100-500
## 7463       17845                             <NA>            138 100-500
## 7464       17845                             <NA>            138 100-500
## 7465       17845                             <NA>            138 100-500
## 7466       17845                             <NA>            138 100-500
## 7467       17845                             <NA>            138 100-500
## 7468       17845                             <NA>            138 100-500
## 7469       17845                             <NA>            138 100-500
## 7470       17845                             <NA>            138 100-500
## 7471       17845                             <NA>            138 100-500
## 7472       17845                             <NA>            138 100-500
## 7473       17845                             <NA>            138 100-500
## 7474       17845                             <NA>            138 100-500
## 7475       17845                             <NA>            138 100-500
## 7476       17845                             <NA>            138 100-500
## 7477       17845                             <NA>            138 100-500
## 7478       17845                             <NA>            138 100-500
## 7479       17845                             <NA>            138 100-500
## 7480       17845                             <NA>            138 100-500
## 7481       17845                             <NA>            138 100-500
## 7482       17845                             <NA>            138 100-500
## 7483       17845                             <NA>            138 100-500
## 7484       17845                             <NA>            138 100-500
## 7485       17845                             <NA>            138 100-500
## 7486       17845                             <NA>            138 100-500
## 7487       17845                             <NA>            138 100-500
## 7488       17845                             <NA>            138 100-500
## 7489       17845                             <NA>            138 100-500
## 7490       17845                             <NA>            138 100-500
## 7491       17845                             <NA>            138 100-500
## 7492       17845                             <NA>            138 100-500
## 7493       17845                             <NA>            138 100-500
## 7494       17845                             <NA>            138 100-500
## 7495       17845                             <NA>            138 100-500
## 7496       17845                             <NA>            138 100-500
## 7497       17845                             <NA>            138 100-500
## 7498       17845                             <NA>            138 100-500
## 7499       17845                             <NA>            138 100-500
## 7500       17845                             <NA>            138 100-500
## 7501       17845                             <NA>            138 100-500
## 7502       17845                             <NA>            138 100-500
## 7503       17845                             <NA>            138 100-500
## 7504       18195                             <NA>            447 100-500
## 7505       18195                             <NA>            447 100-500
## 7506       18195                             <NA>            447 100-500
## 7507       18195                             <NA>            447 100-500
## 7508       18195                             <NA>            447 100-500
## 7509       18195                             <NA>            447 100-500
## 7510       18195                             <NA>            447 100-500
## 7511       18195                             <NA>            447 100-500
## 7512       18195                             <NA>            447 100-500
## 7513       18195                             <NA>            447 100-500
## 7514       18195                             <NA>            447 100-500
## 7515       18195                             <NA>            447 100-500
## 7516       18195                             <NA>            447 100-500
## 7517       18195                             <NA>            447 100-500
## 7518       18195                             <NA>            447 100-500
## 7519       18195                             <NA>            447 100-500
## 7520       18195                             <NA>            447 100-500
## 7521       18195                             <NA>            447 100-500
## 7522       18195                             <NA>            447 100-500
## 7523       18195                             <NA>            447 100-500
## 7524       18195                             <NA>            447 100-500
## 7525       18195                             <NA>            447 100-500
## 7526       18195                             <NA>            447 100-500
## 7527       18195                             <NA>            447 100-500
## 7528       18195                             <NA>            447 100-500
## 7529       18195                             <NA>            447 100-500
## 7530       18195                             <NA>            447 100-500
## 7531       18195                             <NA>            447 100-500
## 7532       18195                             <NA>            447 100-500
## 7533       18195                             <NA>            447 100-500
## 7534       18195                             <NA>            447 100-500
## 7535       18195                             <NA>            447 100-500
## 7536       18195                             <NA>            447 100-500
## 7537       18195                             <NA>            447 100-500
## 7538       18195                             <NA>            447 100-500
## 7539       18195                             <NA>            447 100-500
## 7540       18195                             <NA>            447 100-500
## 7541       18195                             <NA>            447 100-500
## 7542       18195                             <NA>            447 100-500
## 7543       18195                             <NA>            447 100-500
## 7544       18195                             <NA>            447 100-500
## 7545       18195                             <NA>            447 100-500
## 7546       18195                             <NA>            447 100-500
## 7547       18195                             <NA>            447 100-500
## 7548       18195                             <NA>            447 100-500
## 7549       18195                             <NA>            447 100-500
## 7550       18195                             <NA>            447 100-500
## 7551       18195                             <NA>            447 100-500
## 7552       18195                             <NA>            447 100-500
## 7553       18195                             <NA>            447 100-500
## 7554       18195                             <NA>            447 100-500
## 7555       18195                             <NA>            447 100-500
## 7556       18195                             <NA>            447 100-500
## 7557       18195                             <NA>            447 100-500
## 7558       18195                             <NA>            447 100-500
## 7559       18195                             <NA>            447 100-500
## 7560       18195                             <NA>            447 100-500
## 7561       18195                             <NA>            447 100-500
## 7562       18195                             <NA>            447 100-500
## 7563       18195                             <NA>            447 100-500
## 7564       18195                             <NA>            447 100-500
## 7565       18687                             <NA>            310 100-500
## 7566       18687                             <NA>            310 100-500
## 7567       18687                             <NA>            310 100-500
## 7568       18687                             <NA>            310 100-500
## 7569       18687                             <NA>            310 100-500
## 7570       18687                             <NA>            310 100-500
## 7571       18687                             <NA>            310 100-500
## 7572       18687                             <NA>            310 100-500
## 7573       18687                             <NA>            310 100-500
## 7574       18687                             <NA>            310 100-500
## 7575       18687                             <NA>            310 100-500
## 7576       18687                             <NA>            310 100-500
## 7577       18687                             <NA>            310 100-500
## 7578       18687                             <NA>            310 100-500
## 7579       18687                             <NA>            310 100-500
## 7580       18687                             <NA>            310 100-500
## 7581       18687                             <NA>            310 100-500
## 7582       18687                             <NA>            310 100-500
## 7583       18687                             <NA>            310 100-500
## 7584       18687                             <NA>            310 100-500
## 7585       18687                             <NA>            310 100-500
## 7586       18687                             <NA>            310 100-500
## 7587       18687                             <NA>            310 100-500
## 7588       18687                             <NA>            310 100-500
## 7589       18687                             <NA>            310 100-500
## 7590       18687                             <NA>            310 100-500
## 7591       18687                             <NA>            310 100-500
## 7592       18687                             <NA>            310 100-500
## 7593       18687                             <NA>            310 100-500
## 7594       18687                             <NA>            310 100-500
## 7595       18687                             <NA>            310 100-500
## 7596       18687                             <NA>            310 100-500
## 7597       18687                             <NA>            310 100-500
## 7598       18687                             <NA>            310 100-500
## 7599       18687                             <NA>            310 100-500
## 7600       18687                             <NA>            310 100-500
## 7601       18687                             <NA>            310 100-500
## 7602       18687                             <NA>            310 100-500
## 7603       18687                             <NA>            310 100-500
## 7604       18687                             <NA>            310 100-500
## 7605       18687                             <NA>            310 100-500
## 7606       18687                             <NA>            310 100-500
## 7607       18687                             <NA>            310 100-500
## 7608       18687                             <NA>            310 100-500
## 7609       18687                             <NA>            310 100-500
## 7610       18687                             <NA>            310 100-500
## 7611       18687                             <NA>            310 100-500
## 7612       18687                             <NA>            310 100-500
## 7613       18687                             <NA>            310 100-500
## 7614       18687                             <NA>            310 100-500
## 7615       18687                             <NA>            310 100-500
## 7616       18687                             <NA>            310 100-500
## 7617       18687                             <NA>            310 100-500
## 7618       18687                             <NA>            310 100-500
## 7619       18687                             <NA>            310 100-500
## 7620       18687                             <NA>            310 100-500
## 7621       18687                             <NA>            310 100-500
## 7622       18687                             <NA>            310 100-500
## 7623       18687                             <NA>            310 100-500
## 7624       18687                             <NA>            310 100-500
## 7625       18687                             <NA>            310 100-500
## 7626       18737                             <NA>             52  25-100
## 7627       18737                             <NA>             52  25-100
## 7628       18737                             <NA>             52  25-100
## 7629       18737                             <NA>             52  25-100
## 7630       18737                             <NA>             52  25-100
## 7631       18737                             <NA>             52  25-100
## 7632       18737                             <NA>             52  25-100
## 7633       18737                             <NA>             52  25-100
## 7634       18737                             <NA>             52  25-100
## 7635       18737                             <NA>             52  25-100
## 7636       18737                             <NA>             52  25-100
## 7637       18737                             <NA>             52  25-100
## 7638       18737                             <NA>             52  25-100
## 7639       18737                             <NA>             52  25-100
## 7640       18737                             <NA>             52  25-100
## 7641       18737                             <NA>             52  25-100
## 7642       18737                             <NA>             52  25-100
## 7643       18737                             <NA>             52  25-100
## 7644       18737                             <NA>             52  25-100
## 7645       18737                             <NA>             52  25-100
## 7646       18737                             <NA>             52  25-100
## 7647       18737                             <NA>             52  25-100
## 7648       18737                             <NA>             52  25-100
## 7649       18737                             <NA>             52  25-100
## 7650       18737                             <NA>             52  25-100
## 7651       18737                             <NA>             52  25-100
## 7652       18737                             <NA>             52  25-100
## 7653       18737                             <NA>             52  25-100
## 7654       18737                             <NA>             52  25-100
## 7655       18737                             <NA>             52  25-100
## 7656       18737                             <NA>             52  25-100
## 7657       18737                             <NA>             52  25-100
## 7658       18737                             <NA>             52  25-100
## 7659       18737                             <NA>             52  25-100
## 7660       18737                             <NA>             52  25-100
## 7661       18737                             <NA>             52  25-100
## 7662       18737                             <NA>             52  25-100
## 7663       18737                             <NA>             52  25-100
## 7664       18737                             <NA>             52  25-100
## 7665       18737                             <NA>             52  25-100
## 7666       18737                             <NA>             52  25-100
## 7667       18737                             <NA>             52  25-100
## 7668       18737                             <NA>             52  25-100
## 7669       18737                             <NA>             52  25-100
## 7670       18737                             <NA>             52  25-100
## 7671       18737                             <NA>             52  25-100
## 7672       18737                             <NA>             52  25-100
## 7673       18737                             <NA>             52  25-100
## 7674       18737                             <NA>             52  25-100
## 7675       18737                             <NA>             52  25-100
## 7676       18737                             <NA>             52  25-100
## 7677       18737                             <NA>             52  25-100
## 7678       18737                             <NA>             52  25-100
## 7679       18737                             <NA>             52  25-100
## 7680       18737                             <NA>             52  25-100
## 7681       18737                             <NA>             52  25-100
## 7682       18737                             <NA>             52  25-100
## 7683       18737                             <NA>             52  25-100
## 7684       18737                             <NA>             52  25-100
## 7685       18737                             <NA>             52  25-100
## 7686       18737                             <NA>             52  25-100
## 7687       19169                             <NA>            555    500-
## 7688       19169                             <NA>            555    500-
## 7689       19169                             <NA>            555    500-
## 7690       19169                             <NA>            555    500-
## 7691       19169                             <NA>            555    500-
## 7692       19169                             <NA>            555    500-
## 7693       19169                             <NA>            555    500-
## 7694       19169                             <NA>            555    500-
## 7695       19169                             <NA>            555    500-
## 7696       19169                             <NA>            555    500-
## 7697       19169                             <NA>            555    500-
## 7698       19169                             <NA>            555    500-
## 7699       19169                             <NA>            555    500-
## 7700       19169                             <NA>            555    500-
## 7701       19169                             <NA>            555    500-
## 7702       19169                             <NA>            555    500-
## 7703       19169                             <NA>            555    500-
## 7704       19169                             <NA>            555    500-
## 7705       19169                             <NA>            555    500-
## 7706       19169                             <NA>            555    500-
## 7707       19169                             <NA>            555    500-
## 7708       19169                             <NA>            555    500-
## 7709       19169                             <NA>            555    500-
## 7710       19169                             <NA>            555    500-
## 7711       19169                             <NA>            555    500-
## 7712       19169                             <NA>            555    500-
## 7713       19169                             <NA>            555    500-
## 7714       19169                             <NA>            555    500-
## 7715       19169                             <NA>            555    500-
## 7716       19169                             <NA>            555    500-
## 7717       19169                             <NA>            555    500-
## 7718       19169                             <NA>            555    500-
## 7719       19169                             <NA>            555    500-
## 7720       19169                             <NA>            555    500-
## 7721       19169                             <NA>            555    500-
## 7722       19169                             <NA>            555    500-
## 7723       19169                             <NA>            555    500-
## 7724       19169                             <NA>            555    500-
## 7725       19169                             <NA>            555    500-
## 7726       19169                             <NA>            555    500-
## 7727       19169                             <NA>            555    500-
## 7728       19169                             <NA>            555    500-
## 7729       19169                             <NA>            555    500-
## 7730       19169                             <NA>            555    500-
## 7731       19169                             <NA>            555    500-
## 7732       19169                             <NA>            555    500-
## 7733       19169                             <NA>            555    500-
## 7734       19169                             <NA>            555    500-
## 7735       19169                             <NA>            555    500-
## 7736       19169                             <NA>            555    500-
## 7737       19169                             <NA>            555    500-
## 7738       19169                             <NA>            555    500-
## 7739       19169                             <NA>            555    500-
## 7740       19169                             <NA>            555    500-
## 7741       19169                             <NA>            555    500-
## 7742       19169                             <NA>            555    500-
## 7743       19169                             <NA>            555    500-
## 7744       19169                             <NA>            555    500-
## 7745       19169                             <NA>            555    500-
## 7746       19169                             <NA>            555    500-
## 7747       19169                             <NA>            555    500-
## 7748       19365                             <NA>             29  25-100
## 7749       19365                             <NA>             29  25-100
## 7750       19365                             <NA>             29  25-100
## 7751       19365                             <NA>             29  25-100
## 7752       19365                             <NA>             29  25-100
## 7753       19365                             <NA>             29  25-100
## 7754       19365                             <NA>             29  25-100
## 7755       19365                             <NA>             29  25-100
## 7756       19365                             <NA>             29  25-100
## 7757       19365                             <NA>             29  25-100
## 7758       19365                             <NA>             29  25-100
## 7759       19365                             <NA>             29  25-100
## 7760       19365                             <NA>             29  25-100
## 7761       19365                             <NA>             29  25-100
## 7762       19365                             <NA>             29  25-100
## 7763       19365                             <NA>             29  25-100
## 7764       19365                             <NA>             29  25-100
## 7765       19365                             <NA>             29  25-100
## 7766       19365                             <NA>             29  25-100
## 7767       19365                             <NA>             29  25-100
## 7768       19365                             <NA>             29  25-100
## 7769       19365                             <NA>             29  25-100
## 7770       19365                             <NA>             29  25-100
## 7771       19365                             <NA>             29  25-100
## 7772       19365                             <NA>             29  25-100
## 7773       19365                             <NA>             29  25-100
## 7774       19365                             <NA>             29  25-100
## 7775       19365                             <NA>             29  25-100
## 7776       19365                             <NA>             29  25-100
## 7777       19365                             <NA>             29  25-100
## 7778       19365                             <NA>             29  25-100
## 7779       19365                             <NA>             29  25-100
## 7780       19365                             <NA>             29  25-100
## 7781       19365                             <NA>             29  25-100
## 7782       19365                             <NA>             29  25-100
## 7783       19365                             <NA>             29  25-100
## 7784       19365                             <NA>             29  25-100
## 7785       19365                             <NA>             29  25-100
## 7786       19365                             <NA>             29  25-100
## 7787       19365                             <NA>             29  25-100
## 7788       19365                             <NA>             29  25-100
## 7789       19365                             <NA>             29  25-100
## 7790       19365                             <NA>             29  25-100
## 7791       19365                             <NA>             29  25-100
## 7792       19365                             <NA>             29  25-100
## 7793       19365                             <NA>             29  25-100
## 7794       19365                             <NA>             29  25-100
## 7795       19365                             <NA>             29  25-100
## 7796       19365                             <NA>             29  25-100
## 7797       19365                             <NA>             29  25-100
## 7798       19365                             <NA>             29  25-100
## 7799       19365                             <NA>             29  25-100
## 7800       19365                             <NA>             29  25-100
## 7801       19365                             <NA>             29  25-100
## 7802       19365                             <NA>             29  25-100
## 7803       19365                             <NA>             29  25-100
## 7804       19365                             <NA>             29  25-100
## 7805       19365                             <NA>             29  25-100
## 7806       19365                             <NA>             29  25-100
## 7807       19365                             <NA>             29  25-100
## 7808       19365                             <NA>             29  25-100
## 7809       19763                             <NA>            611    500-
## 7810       19763                             <NA>            611    500-
## 7811       19763                             <NA>            611    500-
## 7812       19763                             <NA>            611    500-
## 7813       19763                             <NA>            611    500-
## 7814       19763                             <NA>            611    500-
## 7815       19763                             <NA>            611    500-
## 7816       19763                             <NA>            611    500-
## 7817       19763                             <NA>            611    500-
## 7818       19763                             <NA>            611    500-
## 7819       19763                             <NA>            611    500-
## 7820       19763                             <NA>            611    500-
## 7821       19763                             <NA>            611    500-
## 7822       19763                             <NA>            611    500-
## 7823       19763                             <NA>            611    500-
## 7824       19763                             <NA>            611    500-
## 7825       19763                             <NA>            611    500-
## 7826       19763                             <NA>            611    500-
## 7827       19763                             <NA>            611    500-
## 7828       19763                             <NA>            611    500-
## 7829       19763                             <NA>            611    500-
## 7830       19763                             <NA>            611    500-
## 7831       19763                             <NA>            611    500-
## 7832       19763                             <NA>            611    500-
## 7833       19763                             <NA>            611    500-
## 7834       19763                             <NA>            611    500-
## 7835       19763                             <NA>            611    500-
## 7836       19763                             <NA>            611    500-
## 7837       19763                             <NA>            611    500-
## 7838       19763                             <NA>            611    500-
## 7839       19763                             <NA>            611    500-
## 7840       19763                             <NA>            611    500-
## 7841       19763                             <NA>            611    500-
## 7842       19763                             <NA>            611    500-
## 7843       19763                             <NA>            611    500-
## 7844       19763                             <NA>            611    500-
## 7845       19763                             <NA>            611    500-
## 7846       19763                             <NA>            611    500-
## 7847       19763                             <NA>            611    500-
## 7848       19763                             <NA>            611    500-
## 7849       19763                             <NA>            611    500-
## 7850       19763                             <NA>            611    500-
## 7851       19763                             <NA>            611    500-
## 7852       19763                             <NA>            611    500-
## 7853       19763                             <NA>            611    500-
## 7854       19763                             <NA>            611    500-
## 7855       19763                             <NA>            611    500-
## 7856       19763                             <NA>            611    500-
## 7857       19763                             <NA>            611    500-
## 7858       19763                             <NA>            611    500-
## 7859       19763                             <NA>            611    500-
## 7860       19763                             <NA>            611    500-
## 7861       19763                             <NA>            611    500-
## 7862       19763                             <NA>            611    500-
## 7863       19763                             <NA>            611    500-
## 7864       19763                             <NA>            611    500-
## 7865       19763                             <NA>            611    500-
## 7866       19763                             <NA>            611    500-
## 7867       19763                             <NA>            611    500-
## 7868       19763                             <NA>            611    500-
## 7869       19763                             <NA>            611    500-
## 7870       19778                             <NA>              2     1-2
## 7871       19778                             <NA>              2     1-2
## 7872       19778                             <NA>              2     1-2
## 7873       19778                             <NA>              2     1-2
## 7874       19778                             <NA>              2     1-2
## 7875       19778                             <NA>              2     1-2
## 7876       19778                             <NA>              2     1-2
## 7877       19778                             <NA>              2     1-2
## 7878       19778                             <NA>              2     1-2
## 7879       19778                             <NA>              2     1-2
## 7880       19778                             <NA>              2     1-2
## 7881       19778                             <NA>              2     1-2
## 7882       19778                             <NA>              2     1-2
## 7883       19778                             <NA>              2     1-2
## 7884       19778                             <NA>              2     1-2
## 7885       19778                             <NA>              2     1-2
## 7886       19778                             <NA>              2     1-2
## 7887       19778                             <NA>              2     1-2
## 7888       19778                             <NA>              2     1-2
## 7889       19778                             <NA>              2     1-2
## 7890       19778                             <NA>              2     1-2
## 7891       19778                             <NA>              2     1-2
## 7892       19778                             <NA>              2     1-2
## 7893       19778                             <NA>              2     1-2
## 7894       19778                             <NA>              2     1-2
## 7895       19778                             <NA>              2     1-2
## 7896       19778                             <NA>              2     1-2
## 7897       19778                             <NA>              2     1-2
## 7898       19778                             <NA>              2     1-2
## 7899       19778                             <NA>              2     1-2
## 7900       19778                             <NA>              2     1-2
## 7901       19778                             <NA>              2     1-2
## 7902       19778                             <NA>              2     1-2
## 7903       19778                             <NA>              2     1-2
## 7904       19778                             <NA>              2     1-2
## 7905       19778                             <NA>              2     1-2
## 7906       19778                             <NA>              2     1-2
## 7907       19778                             <NA>              2     1-2
## 7908       19778                             <NA>              2     1-2
## 7909       19778                             <NA>              2     1-2
## 7910       19778                             <NA>              2     1-2
## 7911       19778                             <NA>              2     1-2
## 7912       19778                             <NA>              2     1-2
## 7913       19778                             <NA>              2     1-2
## 7914       19778                             <NA>              2     1-2
## 7915       19778                             <NA>              2     1-2
## 7916       19778                             <NA>              2     1-2
## 7917       19778                             <NA>              2     1-2
## 7918       19778                             <NA>              2     1-2
## 7919       19778                             <NA>              2     1-2
## 7920       19778                             <NA>              2     1-2
## 7921       19778                             <NA>              2     1-2
## 7922       19778                             <NA>              2     1-2
## 7923       19778                             <NA>              2     1-2
## 7924       19778                             <NA>              2     1-2
## 7925       19778                             <NA>              2     1-2
## 7926       19778                             <NA>              2     1-2
## 7927       19778                             <NA>              2     1-2
## 7928       19778                             <NA>              2     1-2
## 7929       19778                             <NA>              2     1-2
## 7930       19778                             <NA>              2     1-2
## 7931       19803                             <NA>              2     1-2
## 7932       19803                             <NA>              2     1-2
## 7933       19803                             <NA>              2     1-2
## 7934       19803                             <NA>              2     1-2
## 7935       19803                             <NA>              2     1-2
## 7936       19803                             <NA>              2     1-2
## 7937       19803                             <NA>              2     1-2
## 7938       19803                             <NA>              2     1-2
## 7939       19803                             <NA>              2     1-2
## 7940       19803                             <NA>              2     1-2
## 7941       19803                             <NA>              2     1-2
## 7942       19803                             <NA>              2     1-2
## 7943       19803                             <NA>              2     1-2
## 7944       19803                             <NA>              2     1-2
## 7945       19803                             <NA>              2     1-2
## 7946       19803                             <NA>              2     1-2
## 7947       19803                             <NA>              2     1-2
## 7948       19803                             <NA>              2     1-2
## 7949       19803                             <NA>              2     1-2
## 7950       19803                             <NA>              2     1-2
## 7951       19803                             <NA>              2     1-2
## 7952       19803                             <NA>              2     1-2
## 7953       19803                             <NA>              2     1-2
## 7954       19803                             <NA>              2     1-2
## 7955       19803                             <NA>              2     1-2
## 7956       19803                             <NA>              2     1-2
## 7957       19803                             <NA>              2     1-2
## 7958       19803                             <NA>              2     1-2
## 7959       19803                             <NA>              2     1-2
## 7960       19803                             <NA>              2     1-2
## 7961       19803                             <NA>              2     1-2
## 7962       19803                             <NA>              2     1-2
## 7963       19803                             <NA>              2     1-2
## 7964       19803                             <NA>              2     1-2
## 7965       19803                             <NA>              2     1-2
## 7966       19803                             <NA>              2     1-2
## 7967       19803                             <NA>              2     1-2
## 7968       19803                             <NA>              2     1-2
## 7969       19803                             <NA>              2     1-2
## 7970       19803                             <NA>              2     1-2
## 7971       19803                             <NA>              2     1-2
## 7972       19803                             <NA>              2     1-2
## 7973       19803                             <NA>              2     1-2
## 7974       19803                             <NA>              2     1-2
## 7975       19803                             <NA>              2     1-2
## 7976       19803                             <NA>              2     1-2
## 7977       19803                             <NA>              2     1-2
## 7978       19803                             <NA>              2     1-2
## 7979       19803                             <NA>              2     1-2
## 7980       19803                             <NA>              2     1-2
## 7981       19803                             <NA>              2     1-2
## 7982       19803                             <NA>              2     1-2
## 7983       19803                             <NA>              2     1-2
## 7984       19803                             <NA>              2     1-2
## 7985       19803                             <NA>              2     1-2
## 7986       19803                             <NA>              2     1-2
## 7987       19803                             <NA>              2     1-2
## 7988       19803                             <NA>              2     1-2
## 7989       19803                             <NA>              2     1-2
## 7990       19803                             <NA>              2     1-2
## 7991       19803                             <NA>              2     1-2
## 7992       19973                             <NA>             16   10-25
## 7993       19973                             <NA>             16   10-25
## 7994       19973                             <NA>             16   10-25
## 7995       19973                             <NA>             16   10-25
## 7996       19973                             <NA>             16   10-25
## 7997       19973                             <NA>             16   10-25
## 7998       19973                             <NA>             16   10-25
## 7999       19973                             <NA>             16   10-25
## 8000       19973                             <NA>             16   10-25
## 8001       19973                             <NA>             16   10-25
## 8002       19973                             <NA>             16   10-25
## 8003       19973                             <NA>             16   10-25
## 8004       19973                             <NA>             16   10-25
## 8005       19973                             <NA>             16   10-25
## 8006       19973                             <NA>             16   10-25
## 8007       19973                             <NA>             16   10-25
## 8008       19973                             <NA>             16   10-25
## 8009       19973                             <NA>             16   10-25
## 8010       19973                             <NA>             16   10-25
## 8011       19973                             <NA>             16   10-25
## 8012       19973                             <NA>             16   10-25
## 8013       19973                             <NA>             16   10-25
## 8014       19973                             <NA>             16   10-25
## 8015       19973                             <NA>             16   10-25
## 8016       19973                             <NA>             16   10-25
## 8017       19973                             <NA>             16   10-25
## 8018       19973                             <NA>             16   10-25
## 8019       19973                             <NA>             16   10-25
## 8020       19973                             <NA>             16   10-25
## 8021       19973                             <NA>             16   10-25
## 8022       19973                             <NA>             16   10-25
## 8023       19973                             <NA>             16   10-25
## 8024       19973                             <NA>             16   10-25
## 8025       19973                             <NA>             16   10-25
## 8026       19973                             <NA>             16   10-25
## 8027       19973                             <NA>             16   10-25
## 8028       19973                             <NA>             16   10-25
## 8029       19973                             <NA>             16   10-25
## 8030       19973                             <NA>             16   10-25
## 8031       19973                             <NA>             16   10-25
## 8032       19973                             <NA>             16   10-25
## 8033       19973                             <NA>             16   10-25
## 8034       19973                             <NA>             16   10-25
## 8035       19973                             <NA>             16   10-25
## 8036       19973                             <NA>             16   10-25
## 8037       19973                             <NA>             16   10-25
## 8038       19973                             <NA>             16   10-25
## 8039       19973                             <NA>             16   10-25
## 8040       19973                             <NA>             16   10-25
## 8041       19973                             <NA>             16   10-25
## 8042       19973                             <NA>             16   10-25
## 8043       19973                             <NA>             16   10-25
## 8044       19973                             <NA>             16   10-25
## 8045       19973                             <NA>             16   10-25
## 8046       19973                             <NA>             16   10-25
## 8047       19973                             <NA>             16   10-25
## 8048       19973                             <NA>             16   10-25
## 8049       19973                             <NA>             16   10-25
## 8050       19973                             <NA>             16   10-25
## 8051       19973                             <NA>             16   10-25
## 8052       19973                             <NA>             16   10-25
## 8053       20087                             <NA>            442 100-500
## 8054       20087                             <NA>            442 100-500
## 8055       20087                             <NA>            442 100-500
## 8056       20087                             <NA>            442 100-500
## 8057       20087                             <NA>            442 100-500
## 8058       20087                             <NA>            442 100-500
## 8059       20087                             <NA>            442 100-500
## 8060       20087                             <NA>            442 100-500
## 8061       20087                             <NA>            442 100-500
## 8062       20087                             <NA>            442 100-500
## 8063       20087                             <NA>            442 100-500
## 8064       20087                             <NA>            442 100-500
## 8065       20087                             <NA>            442 100-500
## 8066       20087                             <NA>            442 100-500
## 8067       20087                             <NA>            442 100-500
## 8068       20087                             <NA>            442 100-500
## 8069       20087                             <NA>            442 100-500
## 8070       20087                             <NA>            442 100-500
## 8071       20087                             <NA>            442 100-500
## 8072       20087                             <NA>            442 100-500
## 8073       20087                             <NA>            442 100-500
## 8074       20087                             <NA>            442 100-500
## 8075       20087                             <NA>            442 100-500
## 8076       20087                             <NA>            442 100-500
## 8077       20087                             <NA>            442 100-500
## 8078       20087                             <NA>            442 100-500
## 8079       20087                             <NA>            442 100-500
## 8080       20087                             <NA>            442 100-500
## 8081       20087                             <NA>            442 100-500
## 8082       20087                             <NA>            442 100-500
## 8083       20087                             <NA>            442 100-500
## 8084       20087                             <NA>            442 100-500
## 8085       20087                             <NA>            442 100-500
## 8086       20087                             <NA>            442 100-500
## 8087       20087                             <NA>            442 100-500
## 8088       20087                             <NA>            442 100-500
## 8089       20087                             <NA>            442 100-500
## 8090       20087                             <NA>            442 100-500
## 8091       20087                             <NA>            442 100-500
## 8092       20087                             <NA>            442 100-500
## 8093       20087                             <NA>            442 100-500
## 8094       20087                             <NA>            442 100-500
## 8095       20087                             <NA>            442 100-500
## 8096       20087                             <NA>            442 100-500
## 8097       20087                             <NA>            442 100-500
## 8098       20087                             <NA>            442 100-500
## 8099       20087                             <NA>            442 100-500
## 8100       20087                             <NA>            442 100-500
## 8101       20087                             <NA>            442 100-500
## 8102       20087                             <NA>            442 100-500
## 8103       20087                             <NA>            442 100-500
## 8104       20087                             <NA>            442 100-500
## 8105       20087                             <NA>            442 100-500
## 8106       20087                             <NA>            442 100-500
## 8107       20087                             <NA>            442 100-500
## 8108       20087                             <NA>            442 100-500
## 8109       20087                             <NA>            442 100-500
## 8110       20087                             <NA>            442 100-500
## 8111       20087                             <NA>            442 100-500
## 8112       20087                             <NA>            442 100-500
## 8113       20087                             <NA>            442 100-500
## 8114       20095                             <NA>              2     1-2
## 8115       20095                             <NA>              2     1-2
## 8116       20095                             <NA>              2     1-2
## 8117       20095                             <NA>              2     1-2
## 8118       20095                             <NA>              2     1-2
## 8119       20095                             <NA>              2     1-2
## 8120       20095                             <NA>              2     1-2
## 8121       20095                             <NA>              2     1-2
## 8122       20095                             <NA>              2     1-2
## 8123       20095                             <NA>              2     1-2
## 8124       20095                             <NA>              2     1-2
## 8125       20095                             <NA>              2     1-2
## 8126       20095                             <NA>              2     1-2
## 8127       20095                             <NA>              2     1-2
## 8128       20095                             <NA>              2     1-2
## 8129       20095                             <NA>              2     1-2
## 8130       20095                             <NA>              2     1-2
## 8131       20095                             <NA>              2     1-2
## 8132       20095                             <NA>              2     1-2
## 8133       20095                             <NA>              2     1-2
## 8134       20095                             <NA>              2     1-2
## 8135       20095                             <NA>              2     1-2
## 8136       20095                             <NA>              2     1-2
## 8137       20095                             <NA>              2     1-2
## 8138       20095                             <NA>              2     1-2
## 8139       20095                             <NA>              2     1-2
## 8140       20095                             <NA>              2     1-2
## 8141       20095                             <NA>              2     1-2
## 8142       20095                             <NA>              2     1-2
## 8143       20095                             <NA>              2     1-2
## 8144       20095                             <NA>              2     1-2
## 8145       20095                             <NA>              2     1-2
## 8146       20095                             <NA>              2     1-2
## 8147       20095                             <NA>              2     1-2
## 8148       20095                             <NA>              2     1-2
## 8149       20095                             <NA>              2     1-2
## 8150       20095                             <NA>              2     1-2
## 8151       20095                             <NA>              2     1-2
## 8152       20095                             <NA>              2     1-2
## 8153       20095                             <NA>              2     1-2
## 8154       20095                             <NA>              2     1-2
## 8155       20095                             <NA>              2     1-2
## 8156       20095                             <NA>              2     1-2
## 8157       20095                             <NA>              2     1-2
## 8158       20095                             <NA>              2     1-2
## 8159       20095                             <NA>              2     1-2
## 8160       20095                             <NA>              2     1-2
## 8161       20095                             <NA>              2     1-2
## 8162       20095                             <NA>              2     1-2
## 8163       20095                             <NA>              2     1-2
## 8164       20095                             <NA>              2     1-2
## 8165       20095                             <NA>              2     1-2
## 8166       20095                             <NA>              2     1-2
## 8167       20095                             <NA>              2     1-2
## 8168       20095                             <NA>              2     1-2
## 8169       20095                             <NA>              2     1-2
## 8170       20095                             <NA>              2     1-2
## 8171       20095                             <NA>              2     1-2
## 8172       20095                             <NA>              2     1-2
## 8173       20095                             <NA>              2     1-2
## 8174       20095                             <NA>              2     1-2
## 8175       20109                             <NA>              1     1-2
## 8176       20109                             <NA>              1     1-2
## 8177       20109                             <NA>              1     1-2
## 8178       20109                             <NA>              1     1-2
## 8179       20109                             <NA>              1     1-2
## 8180       20109                             <NA>              1     1-2
## 8181       20109                             <NA>              1     1-2
## 8182       20109                             <NA>              1     1-2
## 8183       20109                             <NA>              1     1-2
## 8184       20109                             <NA>              1     1-2
## 8185       20109                             <NA>              1     1-2
## 8186       20109                             <NA>              1     1-2
## 8187       20109                             <NA>              1     1-2
## 8188       20109                             <NA>              1     1-2
## 8189       20109                             <NA>              1     1-2
## 8190       20109                             <NA>              1     1-2
## 8191       20109                             <NA>              1     1-2
## 8192       20109                             <NA>              1     1-2
## 8193       20109                             <NA>              1     1-2
## 8194       20109                             <NA>              1     1-2
## 8195       20109                             <NA>              1     1-2
## 8196       20109                             <NA>              1     1-2
## 8197       20109                             <NA>              1     1-2
## 8198       20109                             <NA>              1     1-2
## 8199       20109                             <NA>              1     1-2
## 8200       20109                             <NA>              1     1-2
## 8201       20109                             <NA>              1     1-2
## 8202       20109                             <NA>              1     1-2
## 8203       20109                             <NA>              1     1-2
## 8204       20109                             <NA>              1     1-2
## 8205       20109                             <NA>              1     1-2
## 8206       20109                             <NA>              1     1-2
## 8207       20109                             <NA>              1     1-2
## 8208       20109                             <NA>              1     1-2
## 8209       20109                             <NA>              1     1-2
## 8210       20109                             <NA>              1     1-2
## 8211       20109                             <NA>              1     1-2
## 8212       20109                             <NA>              1     1-2
## 8213       20109                             <NA>              1     1-2
## 8214       20109                             <NA>              1     1-2
## 8215       20109                             <NA>              1     1-2
## 8216       20109                             <NA>              1     1-2
## 8217       20109                             <NA>              1     1-2
## 8218       20109                             <NA>              1     1-2
## 8219       20109                             <NA>              1     1-2
## 8220       20109                             <NA>              1     1-2
## 8221       20109                             <NA>              1     1-2
## 8222       20109                             <NA>              1     1-2
## 8223       20109                             <NA>              1     1-2
## 8224       20109                             <NA>              1     1-2
## 8225       20109                             <NA>              1     1-2
## 8226       20109                             <NA>              1     1-2
## 8227       20109                             <NA>              1     1-2
## 8228       20109                             <NA>              1     1-2
## 8229       20109                             <NA>              1     1-2
## 8230       20109                             <NA>              1     1-2
## 8231       20109                             <NA>              1     1-2
## 8232       20109                             <NA>              1     1-2
## 8233       20109                             <NA>              1     1-2
## 8234       20109                             <NA>              1     1-2
## 8235       20109                             <NA>              1     1-2
## 8236       20206                 Featured Article           2737    500-
## 8237       20206                 Featured Article           2737    500-
## 8238       20206                 Featured Article           2737    500-
## 8239       20206                 Featured Article           2737    500-
## 8240       20206                 Featured Article           2737    500-
## 8241       20206                 Featured Article           2737    500-
## 8242       20206                 Featured Article           2737    500-
## 8243       20206                 Featured Article           2737    500-
## 8244       20206                 Featured Article           2737    500-
## 8245       20206                 Featured Article           2737    500-
## 8246       20206                 Featured Article           2737    500-
## 8247       20206                 Featured Article           2737    500-
## 8248       20206                 Featured Article           2737    500-
## 8249       20206                 Featured Article           2737    500-
## 8250       20206                 Featured Article           2737    500-
## 8251       20206                 Featured Article           2737    500-
## 8252       20206                 Featured Article           2737    500-
## 8253       20206                 Featured Article           2737    500-
## 8254       20206                 Featured Article           2737    500-
## 8255       20206                 Featured Article           2737    500-
## 8256       20206                 Featured Article           2737    500-
## 8257       20206                 Featured Article           2737    500-
## 8258       20206                 Featured Article           2737    500-
## 8259       20206                 Featured Article           2737    500-
## 8260       20206                 Featured Article           2737    500-
## 8261       20206                 Featured Article           2737    500-
## 8262       20206                 Featured Article           2737    500-
## 8263       20206                 Featured Article           2737    500-
## 8264       20206                 Featured Article           2737    500-
## 8265       20206                 Featured Article           2737    500-
## 8266       20206                 Featured Article           2737    500-
## 8267       20206                 Featured Article           2737    500-
## 8268       20206                 Featured Article           2737    500-
## 8269       20206                 Featured Article           2737    500-
## 8270       20206                 Featured Article           2737    500-
## 8271       20206                 Featured Article           2737    500-
## 8272       20206                 Featured Article           2737    500-
## 8273       20206                 Featured Article           2737    500-
## 8274       20206                 Featured Article           2737    500-
## 8275       20206                 Featured Article           2737    500-
## 8276       20206                 Featured Article           2737    500-
## 8277       20206                 Featured Article           2737    500-
## 8278       20206                 Featured Article           2737    500-
## 8279       20206                 Featured Article           2737    500-
## 8280       20206                 Featured Article           2737    500-
## 8281       20206                 Featured Article           2737    500-
## 8282       20206                 Featured Article           2737    500-
## 8283       20206                 Featured Article           2737    500-
## 8284       20206                 Featured Article           2737    500-
## 8285       20206                 Featured Article           2737    500-
## 8286       20206                 Featured Article           2737    500-
## 8287       20206                 Featured Article           2737    500-
## 8288       20206                 Featured Article           2737    500-
## 8289       20206                 Featured Article           2737    500-
## 8290       20206                 Featured Article           2737    500-
## 8291       20206                 Featured Article           2737    500-
## 8292       20206                 Featured Article           2737    500-
## 8293       20206                 Featured Article           2737    500-
## 8294       20206                 Featured Article           2737    500-
## 8295       20206                 Featured Article           2737    500-
## 8296       20206                 Featured Article           2737    500-
## 8297       20206                           Spoken           2737    500-
## 8298       20206                           Spoken           2737    500-
## 8299       20206                           Spoken           2737    500-
## 8300       20206                           Spoken           2737    500-
## 8301       20206                           Spoken           2737    500-
## 8302       20206                           Spoken           2737    500-
## 8303       20206                           Spoken           2737    500-
## 8304       20206                           Spoken           2737    500-
## 8305       20206                           Spoken           2737    500-
## 8306       20206                           Spoken           2737    500-
## 8307       20206                           Spoken           2737    500-
## 8308       20206                           Spoken           2737    500-
## 8309       20206                           Spoken           2737    500-
## 8310       20206                           Spoken           2737    500-
## 8311       20206                           Spoken           2737    500-
## 8312       20206                           Spoken           2737    500-
## 8313       20206                           Spoken           2737    500-
## 8314       20206                           Spoken           2737    500-
## 8315       20206                           Spoken           2737    500-
## 8316       20206                           Spoken           2737    500-
## 8317       20206                           Spoken           2737    500-
## 8318       20206                           Spoken           2737    500-
## 8319       20206                           Spoken           2737    500-
## 8320       20206                           Spoken           2737    500-
## 8321       20206                           Spoken           2737    500-
## 8322       20206                           Spoken           2737    500-
## 8323       20206                           Spoken           2737    500-
## 8324       20206                           Spoken           2737    500-
## 8325       20206                           Spoken           2737    500-
## 8326       20206                           Spoken           2737    500-
## 8327       20206                           Spoken           2737    500-
## 8328       20206                           Spoken           2737    500-
## 8329       20206                           Spoken           2737    500-
## 8330       20206                           Spoken           2737    500-
## 8331       20206                           Spoken           2737    500-
## 8332       20206                           Spoken           2737    500-
## 8333       20206                           Spoken           2737    500-
## 8334       20206                           Spoken           2737    500-
## 8335       20206                           Spoken           2737    500-
## 8336       20206                           Spoken           2737    500-
## 8337       20206                           Spoken           2737    500-
## 8338       20206                           Spoken           2737    500-
## 8339       20206                           Spoken           2737    500-
## 8340       20206                           Spoken           2737    500-
## 8341       20206                           Spoken           2737    500-
## 8342       20206                           Spoken           2737    500-
## 8343       20206                           Spoken           2737    500-
## 8344       20206                           Spoken           2737    500-
## 8345       20206                           Spoken           2737    500-
## 8346       20206                           Spoken           2737    500-
## 8347       20206                           Spoken           2737    500-
## 8348       20206                           Spoken           2737    500-
## 8349       20206                           Spoken           2737    500-
## 8350       20206                           Spoken           2737    500-
## 8351       20206                           Spoken           2737    500-
## 8352       20206                           Spoken           2737    500-
## 8353       20206                           Spoken           2737    500-
## 8354       20206                           Spoken           2737    500-
## 8355       20206                           Spoken           2737    500-
## 8356       20206                           Spoken           2737    500-
## 8357       20206                           Spoken           2737    500-
## 8358       20286                             <NA>             78  25-100
## 8359       20286                             <NA>             78  25-100
## 8360       20286                             <NA>             78  25-100
## 8361       20286                             <NA>             78  25-100
## 8362       20286                             <NA>             78  25-100
## 8363       20286                             <NA>             78  25-100
## 8364       20286                             <NA>             78  25-100
## 8365       20286                             <NA>             78  25-100
## 8366       20286                             <NA>             78  25-100
## 8367       20286                             <NA>             78  25-100
## 8368       20286                             <NA>             78  25-100
## 8369       20286                             <NA>             78  25-100
## 8370       20286                             <NA>             78  25-100
## 8371       20286                             <NA>             78  25-100
## 8372       20286                             <NA>             78  25-100
## 8373       20286                             <NA>             78  25-100
## 8374       20286                             <NA>             78  25-100
## 8375       20286                             <NA>             78  25-100
## 8376       20286                             <NA>             78  25-100
## 8377       20286                             <NA>             78  25-100
## 8378       20286                             <NA>             78  25-100
## 8379       20286                             <NA>             78  25-100
## 8380       20286                             <NA>             78  25-100
## 8381       20286                             <NA>             78  25-100
## 8382       20286                             <NA>             78  25-100
## 8383       20286                             <NA>             78  25-100
## 8384       20286                             <NA>             78  25-100
## 8385       20286                             <NA>             78  25-100
## 8386       20286                             <NA>             78  25-100
## 8387       20286                             <NA>             78  25-100
## 8388       20286                             <NA>             78  25-100
## 8389       20286                             <NA>             78  25-100
## 8390       20286                             <NA>             78  25-100
## 8391       20286                             <NA>             78  25-100
## 8392       20286                             <NA>             78  25-100
## 8393       20286                             <NA>             78  25-100
## 8394       20286                             <NA>             78  25-100
## 8395       20286                             <NA>             78  25-100
## 8396       20286                             <NA>             78  25-100
## 8397       20286                             <NA>             78  25-100
## 8398       20286                             <NA>             78  25-100
## 8399       20286                             <NA>             78  25-100
## 8400       20286                             <NA>             78  25-100
## 8401       20286                             <NA>             78  25-100
## 8402       20286                             <NA>             78  25-100
## 8403       20286                             <NA>             78  25-100
## 8404       20286                             <NA>             78  25-100
## 8405       20286                             <NA>             78  25-100
## 8406       20286                             <NA>             78  25-100
## 8407       20286                             <NA>             78  25-100
## 8408       20286                             <NA>             78  25-100
## 8409       20286                             <NA>             78  25-100
## 8410       20286                             <NA>             78  25-100
## 8411       20286                             <NA>             78  25-100
## 8412       20286                             <NA>             78  25-100
## 8413       20286                             <NA>             78  25-100
## 8414       20286                             <NA>             78  25-100
## 8415       20286                             <NA>             78  25-100
## 8416       20286                             <NA>             78  25-100
## 8417       20286                             <NA>             78  25-100
## 8418       20286                             <NA>             78  25-100
## 8419       20528    Partially Protected - Default            142 100-500
## 8420       20528    Partially Protected - Default            142 100-500
## 8421       20528    Partially Protected - Default            142 100-500
## 8422       20528    Partially Protected - Default            142 100-500
## 8423       20528    Partially Protected - Default            142 100-500
## 8424       20528    Partially Protected - Default            142 100-500
## 8425       20528    Partially Protected - Default            142 100-500
## 8426       20528    Partially Protected - Default            142 100-500
## 8427       20528    Partially Protected - Default            142 100-500
## 8428       20528    Partially Protected - Default            142 100-500
## 8429       20528    Partially Protected - Default            142 100-500
## 8430       20528    Partially Protected - Default            142 100-500
## 8431       20528    Partially Protected - Default            142 100-500
## 8432       20528    Partially Protected - Default            142 100-500
## 8433       20528    Partially Protected - Default            142 100-500
## 8434       20528    Partially Protected - Default            142 100-500
## 8435       20528    Partially Protected - Default            142 100-500
## 8436       20528    Partially Protected - Default            142 100-500
## 8437       20528    Partially Protected - Default            142 100-500
## 8438       20528    Partially Protected - Default            142 100-500
## 8439       20528    Partially Protected - Default            142 100-500
## 8440       20528    Partially Protected - Default            142 100-500
## 8441       20528    Partially Protected - Default            142 100-500
## 8442       20528    Partially Protected - Default            142 100-500
## 8443       20528    Partially Protected - Default            142 100-500
## 8444       20528    Partially Protected - Default            142 100-500
## 8445       20528    Partially Protected - Default            142 100-500
## 8446       20528    Partially Protected - Default            142 100-500
## 8447       20528    Partially Protected - Default            142 100-500
## 8448       20528    Partially Protected - Default            142 100-500
## 8449       20528    Partially Protected - Default            142 100-500
## 8450       20528    Partially Protected - Default            142 100-500
## 8451       20528    Partially Protected - Default            142 100-500
## 8452       20528    Partially Protected - Default            142 100-500
## 8453       20528    Partially Protected - Default            142 100-500
## 8454       20528    Partially Protected - Default            142 100-500
## 8455       20528    Partially Protected - Default            142 100-500
## 8456       20528    Partially Protected - Default            142 100-500
## 8457       20528    Partially Protected - Default            142 100-500
## 8458       20528    Partially Protected - Default            142 100-500
## 8459       20528    Partially Protected - Default            142 100-500
## 8460       20528    Partially Protected - Default            142 100-500
## 8461       20528    Partially Protected - Default            142 100-500
## 8462       20528    Partially Protected - Default            142 100-500
## 8463       20528    Partially Protected - Default            142 100-500
## 8464       20528    Partially Protected - Default            142 100-500
## 8465       20528    Partially Protected - Default            142 100-500
## 8466       20528    Partially Protected - Default            142 100-500
## 8467       20528    Partially Protected - Default            142 100-500
## 8468       20528    Partially Protected - Default            142 100-500
## 8469       20528    Partially Protected - Default            142 100-500
## 8470       20528    Partially Protected - Default            142 100-500
## 8471       20528    Partially Protected - Default            142 100-500
## 8472       20528    Partially Protected - Default            142 100-500
## 8473       20528    Partially Protected - Default            142 100-500
## 8474       20528    Partially Protected - Default            142 100-500
## 8475       20528    Partially Protected - Default            142 100-500
## 8476       20528    Partially Protected - Default            142 100-500
## 8477       20528    Partially Protected - Default            142 100-500
## 8478       20528    Partially Protected - Default            142 100-500
## 8479       20528    Partially Protected - Default            142 100-500
## 8480       20929                             <NA>              3    3-10
## 8481       20929                             <NA>              3    3-10
## 8482       20929                             <NA>              3    3-10
## 8483       20929                             <NA>              3    3-10
## 8484       20929                             <NA>              3    3-10
## 8485       20929                             <NA>              3    3-10
## 8486       20929                             <NA>              3    3-10
## 8487       20929                             <NA>              3    3-10
## 8488       20929                             <NA>              3    3-10
## 8489       20929                             <NA>              3    3-10
## 8490       20929                             <NA>              3    3-10
## 8491       20929                             <NA>              3    3-10
## 8492       20929                             <NA>              3    3-10
## 8493       20929                             <NA>              3    3-10
## 8494       20929                             <NA>              3    3-10
## 8495       20929                             <NA>              3    3-10
## 8496       20929                             <NA>              3    3-10
## 8497       20929                             <NA>              3    3-10
## 8498       20929                             <NA>              3    3-10
## 8499       20929                             <NA>              3    3-10
## 8500       20929                             <NA>              3    3-10
## 8501       20929                             <NA>              3    3-10
## 8502       20929                             <NA>              3    3-10
## 8503       20929                             <NA>              3    3-10
## 8504       20929                             <NA>              3    3-10
## 8505       20929                             <NA>              3    3-10
## 8506       20929                             <NA>              3    3-10
## 8507       20929                             <NA>              3    3-10
## 8508       20929                             <NA>              3    3-10
## 8509       20929                             <NA>              3    3-10
## 8510       20929                             <NA>              3    3-10
## 8511       20929                             <NA>              3    3-10
## 8512       20929                             <NA>              3    3-10
## 8513       20929                             <NA>              3    3-10
## 8514       20929                             <NA>              3    3-10
## 8515       20929                             <NA>              3    3-10
## 8516       20929                             <NA>              3    3-10
## 8517       20929                             <NA>              3    3-10
## 8518       20929                             <NA>              3    3-10
## 8519       20929                             <NA>              3    3-10
## 8520       20929                             <NA>              3    3-10
## 8521       20929                             <NA>              3    3-10
## 8522       20929                             <NA>              3    3-10
## 8523       20929                             <NA>              3    3-10
## 8524       20929                             <NA>              3    3-10
## 8525       20929                             <NA>              3    3-10
## 8526       20929                             <NA>              3    3-10
## 8527       20929                             <NA>              3    3-10
## 8528       20929                             <NA>              3    3-10
## 8529       20929                             <NA>              3    3-10
## 8530       20929                             <NA>              3    3-10
## 8531       20929                             <NA>              3    3-10
## 8532       20929                             <NA>              3    3-10
## 8533       20929                             <NA>              3    3-10
## 8534       20929                             <NA>              3    3-10
## 8535       20929                             <NA>              3    3-10
## 8536       20929                             <NA>              3    3-10
## 8537       20929                             <NA>              3    3-10
## 8538       20929                             <NA>              3    3-10
## 8539       20929                             <NA>              3    3-10
## 8540       20929                             <NA>              3    3-10
## 8541       21115                             <NA>            295 100-500
## 8542       21115                             <NA>            295 100-500
## 8543       21115                             <NA>            295 100-500
## 8544       21115                             <NA>            295 100-500
## 8545       21115                             <NA>            295 100-500
## 8546       21115                             <NA>            295 100-500
## 8547       21115                             <NA>            295 100-500
## 8548       21115                             <NA>            295 100-500
## 8549       21115                             <NA>            295 100-500
## 8550       21115                             <NA>            295 100-500
## 8551       21115                             <NA>            295 100-500
## 8552       21115                             <NA>            295 100-500
## 8553       21115                             <NA>            295 100-500
## 8554       21115                             <NA>            295 100-500
## 8555       21115                             <NA>            295 100-500
## 8556       21115                             <NA>            295 100-500
## 8557       21115                             <NA>            295 100-500
## 8558       21115                             <NA>            295 100-500
## 8559       21115                             <NA>            295 100-500
## 8560       21115                             <NA>            295 100-500
## 8561       21115                             <NA>            295 100-500
## 8562       21115                             <NA>            295 100-500
## 8563       21115                             <NA>            295 100-500
## 8564       21115                             <NA>            295 100-500
## 8565       21115                             <NA>            295 100-500
## 8566       21115                             <NA>            295 100-500
## 8567       21115                             <NA>            295 100-500
## 8568       21115                             <NA>            295 100-500
## 8569       21115                             <NA>            295 100-500
## 8570       21115                             <NA>            295 100-500
## 8571       21115                             <NA>            295 100-500
## 8572       21115                             <NA>            295 100-500
## 8573       21115                             <NA>            295 100-500
## 8574       21115                             <NA>            295 100-500
## 8575       21115                             <NA>            295 100-500
## 8576       21115                             <NA>            295 100-500
## 8577       21115                             <NA>            295 100-500
## 8578       21115                             <NA>            295 100-500
## 8579       21115                             <NA>            295 100-500
## 8580       21115                             <NA>            295 100-500
## 8581       21115                             <NA>            295 100-500
## 8582       21115                             <NA>            295 100-500
## 8583       21115                             <NA>            295 100-500
## 8584       21115                             <NA>            295 100-500
## 8585       21115                             <NA>            295 100-500
## 8586       21115                             <NA>            295 100-500
## 8587       21115                             <NA>            295 100-500
## 8588       21115                             <NA>            295 100-500
## 8589       21115                             <NA>            295 100-500
## 8590       21115                             <NA>            295 100-500
## 8591       21115                             <NA>            295 100-500
## 8592       21115                             <NA>            295 100-500
## 8593       21115                             <NA>            295 100-500
## 8594       21115                             <NA>            295 100-500
## 8595       21115                             <NA>            295 100-500
## 8596       21115                             <NA>            295 100-500
## 8597       21115                             <NA>            295 100-500
## 8598       21115                             <NA>            295 100-500
## 8599       21115                             <NA>            295 100-500
## 8600       21115                             <NA>            295 100-500
## 8601       21115                             <NA>            295 100-500
## 8602       21206                             <NA>              1     1-2
## 8603       21206                             <NA>              1     1-2
## 8604       21206                             <NA>              1     1-2
## 8605       21206                             <NA>              1     1-2
## 8606       21206                             <NA>              1     1-2
## 8607       21206                             <NA>              1     1-2
## 8608       21206                             <NA>              1     1-2
## 8609       21206                             <NA>              1     1-2
## 8610       21206                             <NA>              1     1-2
## 8611       21206                             <NA>              1     1-2
## 8612       21206                             <NA>              1     1-2
## 8613       21206                             <NA>              1     1-2
## 8614       21206                             <NA>              1     1-2
## 8615       21206                             <NA>              1     1-2
## 8616       21206                             <NA>              1     1-2
## 8617       21206                             <NA>              1     1-2
## 8618       21206                             <NA>              1     1-2
## 8619       21206                             <NA>              1     1-2
## 8620       21206                             <NA>              1     1-2
## 8621       21206                             <NA>              1     1-2
## 8622       21206                             <NA>              1     1-2
## 8623       21206                             <NA>              1     1-2
## 8624       21206                             <NA>              1     1-2
## 8625       21206                             <NA>              1     1-2
## 8626       21206                             <NA>              1     1-2
## 8627       21206                             <NA>              1     1-2
## 8628       21206                             <NA>              1     1-2
## 8629       21206                             <NA>              1     1-2
## 8630       21206                             <NA>              1     1-2
## 8631       21206                             <NA>              1     1-2
## 8632       21206                             <NA>              1     1-2
## 8633       21206                             <NA>              1     1-2
## 8634       21206                             <NA>              1     1-2
## 8635       21206                             <NA>              1     1-2
## 8636       21206                             <NA>              1     1-2
## 8637       21206                             <NA>              1     1-2
## 8638       21206                             <NA>              1     1-2
## 8639       21206                             <NA>              1     1-2
## 8640       21206                             <NA>              1     1-2
## 8641       21206                             <NA>              1     1-2
## 8642       21206                             <NA>              1     1-2
## 8643       21206                             <NA>              1     1-2
## 8644       21206                             <NA>              1     1-2
## 8645       21206                             <NA>              1     1-2
## 8646       21206                             <NA>              1     1-2
## 8647       21206                             <NA>              1     1-2
## 8648       21206                             <NA>              1     1-2
## 8649       21206                             <NA>              1     1-2
## 8650       21206                             <NA>              1     1-2
## 8651       21206                             <NA>              1     1-2
## 8652       21206                             <NA>              1     1-2
## 8653       21206                             <NA>              1     1-2
## 8654       21206                             <NA>              1     1-2
## 8655       21206                             <NA>              1     1-2
## 8656       21206                             <NA>              1     1-2
## 8657       21206                             <NA>              1     1-2
## 8658       21206                             <NA>              1     1-2
## 8659       21206                             <NA>              1     1-2
## 8660       21206                             <NA>              1     1-2
## 8661       21206                             <NA>              1     1-2
## 8662       21206                             <NA>              1     1-2
## 8663       21380                             <NA>             21   10-25
## 8664       21380                             <NA>             21   10-25
## 8665       21380                             <NA>             21   10-25
## 8666       21380                             <NA>             21   10-25
## 8667       21380                             <NA>             21   10-25
## 8668       21380                             <NA>             21   10-25
## 8669       21380                             <NA>             21   10-25
## 8670       21380                             <NA>             21   10-25
## 8671       21380                             <NA>             21   10-25
## 8672       21380                             <NA>             21   10-25
## 8673       21380                             <NA>             21   10-25
## 8674       21380                             <NA>             21   10-25
## 8675       21380                             <NA>             21   10-25
## 8676       21380                             <NA>             21   10-25
## 8677       21380                             <NA>             21   10-25
## 8678       21380                             <NA>             21   10-25
## 8679       21380                             <NA>             21   10-25
## 8680       21380                             <NA>             21   10-25
## 8681       21380                             <NA>             21   10-25
## 8682       21380                             <NA>             21   10-25
## 8683       21380                             <NA>             21   10-25
## 8684       21380                             <NA>             21   10-25
## 8685       21380                             <NA>             21   10-25
## 8686       21380                             <NA>             21   10-25
## 8687       21380                             <NA>             21   10-25
## 8688       21380                             <NA>             21   10-25
## 8689       21380                             <NA>             21   10-25
## 8690       21380                             <NA>             21   10-25
## 8691       21380                             <NA>             21   10-25
## 8692       21380                             <NA>             21   10-25
## 8693       21380                             <NA>             21   10-25
## 8694       21380                             <NA>             21   10-25
## 8695       21380                             <NA>             21   10-25
## 8696       21380                             <NA>             21   10-25
## 8697       21380                             <NA>             21   10-25
## 8698       21380                             <NA>             21   10-25
## 8699       21380                             <NA>             21   10-25
## 8700       21380                             <NA>             21   10-25
## 8701       21380                             <NA>             21   10-25
## 8702       21380                             <NA>             21   10-25
## 8703       21380                             <NA>             21   10-25
## 8704       21380                             <NA>             21   10-25
## 8705       21380                             <NA>             21   10-25
## 8706       21380                             <NA>             21   10-25
## 8707       21380                             <NA>             21   10-25
## 8708       21380                             <NA>             21   10-25
## 8709       21380                             <NA>             21   10-25
## 8710       21380                             <NA>             21   10-25
## 8711       21380                             <NA>             21   10-25
## 8712       21380                             <NA>             21   10-25
## 8713       21380                             <NA>             21   10-25
## 8714       21380                             <NA>             21   10-25
## 8715       21380                             <NA>             21   10-25
## 8716       21380                             <NA>             21   10-25
## 8717       21380                             <NA>             21   10-25
## 8718       21380                             <NA>             21   10-25
## 8719       21380                             <NA>             21   10-25
## 8720       21380                             <NA>             21   10-25
## 8721       21380                             <NA>             21   10-25
## 8722       21380                             <NA>             21   10-25
## 8723       21380                             <NA>             21   10-25
## 8724       21388                             <NA>            178 100-500
## 8725       21388                             <NA>            178 100-500
## 8726       21388                             <NA>            178 100-500
## 8727       21388                             <NA>            178 100-500
## 8728       21388                             <NA>            178 100-500
## 8729       21388                             <NA>            178 100-500
## 8730       21388                             <NA>            178 100-500
## 8731       21388                             <NA>            178 100-500
## 8732       21388                             <NA>            178 100-500
## 8733       21388                             <NA>            178 100-500
## 8734       21388                             <NA>            178 100-500
## 8735       21388                             <NA>            178 100-500
## 8736       21388                             <NA>            178 100-500
## 8737       21388                             <NA>            178 100-500
## 8738       21388                             <NA>            178 100-500
## 8739       21388                             <NA>            178 100-500
## 8740       21388                             <NA>            178 100-500
## 8741       21388                             <NA>            178 100-500
## 8742       21388                             <NA>            178 100-500
## 8743       21388                             <NA>            178 100-500
## 8744       21388                             <NA>            178 100-500
## 8745       21388                             <NA>            178 100-500
## 8746       21388                             <NA>            178 100-500
## 8747       21388                             <NA>            178 100-500
## 8748       21388                             <NA>            178 100-500
## 8749       21388                             <NA>            178 100-500
## 8750       21388                             <NA>            178 100-500
## 8751       21388                             <NA>            178 100-500
## 8752       21388                             <NA>            178 100-500
## 8753       21388                             <NA>            178 100-500
## 8754       21388                             <NA>            178 100-500
## 8755       21388                             <NA>            178 100-500
## 8756       21388                             <NA>            178 100-500
## 8757       21388                             <NA>            178 100-500
## 8758       21388                             <NA>            178 100-500
## 8759       21388                             <NA>            178 100-500
## 8760       21388                             <NA>            178 100-500
## 8761       21388                             <NA>            178 100-500
## 8762       21388                             <NA>            178 100-500
## 8763       21388                             <NA>            178 100-500
## 8764       21388                             <NA>            178 100-500
## 8765       21388                             <NA>            178 100-500
## 8766       21388                             <NA>            178 100-500
## 8767       21388                             <NA>            178 100-500
## 8768       21388                             <NA>            178 100-500
## 8769       21388                             <NA>            178 100-500
## 8770       21388                             <NA>            178 100-500
## 8771       21388                             <NA>            178 100-500
## 8772       21388                             <NA>            178 100-500
## 8773       21388                             <NA>            178 100-500
## 8774       21388                             <NA>            178 100-500
## 8775       21388                             <NA>            178 100-500
## 8776       21388                             <NA>            178 100-500
## 8777       21388                             <NA>            178 100-500
## 8778       21388                             <NA>            178 100-500
## 8779       21388                             <NA>            178 100-500
## 8780       21388                             <NA>            178 100-500
## 8781       21388                             <NA>            178 100-500
## 8782       21388                             <NA>            178 100-500
## 8783       21388                             <NA>            178 100-500
## 8784       21388                             <NA>            178 100-500
## 8785       21407                             <NA>             28  25-100
## 8786       21407                             <NA>             28  25-100
## 8787       21407                             <NA>             28  25-100
## 8788       21407                             <NA>             28  25-100
## 8789       21407                             <NA>             28  25-100
## 8790       21407                             <NA>             28  25-100
## 8791       21407                             <NA>             28  25-100
## 8792       21407                             <NA>             28  25-100
## 8793       21407                             <NA>             28  25-100
## 8794       21407                             <NA>             28  25-100
## 8795       21407                             <NA>             28  25-100
## 8796       21407                             <NA>             28  25-100
## 8797       21407                             <NA>             28  25-100
## 8798       21407                             <NA>             28  25-100
## 8799       21407                             <NA>             28  25-100
## 8800       21407                             <NA>             28  25-100
## 8801       21407                             <NA>             28  25-100
## 8802       21407                             <NA>             28  25-100
## 8803       21407                             <NA>             28  25-100
## 8804       21407                             <NA>             28  25-100
## 8805       21407                             <NA>             28  25-100
## 8806       21407                             <NA>             28  25-100
## 8807       21407                             <NA>             28  25-100
## 8808       21407                             <NA>             28  25-100
## 8809       21407                             <NA>             28  25-100
## 8810       21407                             <NA>             28  25-100
## 8811       21407                             <NA>             28  25-100
## 8812       21407                             <NA>             28  25-100
## 8813       21407                             <NA>             28  25-100
## 8814       21407                             <NA>             28  25-100
## 8815       21407                             <NA>             28  25-100
## 8816       21407                             <NA>             28  25-100
## 8817       21407                             <NA>             28  25-100
## 8818       21407                             <NA>             28  25-100
## 8819       21407                             <NA>             28  25-100
## 8820       21407                             <NA>             28  25-100
## 8821       21407                             <NA>             28  25-100
## 8822       21407                             <NA>             28  25-100
## 8823       21407                             <NA>             28  25-100
## 8824       21407                             <NA>             28  25-100
## 8825       21407                             <NA>             28  25-100
## 8826       21407                             <NA>             28  25-100
## 8827       21407                             <NA>             28  25-100
## 8828       21407                             <NA>             28  25-100
## 8829       21407                             <NA>             28  25-100
## 8830       21407                             <NA>             28  25-100
## 8831       21407                             <NA>             28  25-100
## 8832       21407                             <NA>             28  25-100
## 8833       21407                             <NA>             28  25-100
## 8834       21407                             <NA>             28  25-100
## 8835       21407                             <NA>             28  25-100
## 8836       21407                             <NA>             28  25-100
## 8837       21407                             <NA>             28  25-100
## 8838       21407                             <NA>             28  25-100
## 8839       21407                             <NA>             28  25-100
## 8840       21407                             <NA>             28  25-100
## 8841       21407                             <NA>             28  25-100
## 8842       21407                             <NA>             28  25-100
## 8843       21407                             <NA>             28  25-100
## 8844       21407                             <NA>             28  25-100
## 8845       21407                             <NA>             28  25-100
## 8846       21464                             <NA>              1     1-2
## 8847       21464                             <NA>              1     1-2
## 8848       21464                             <NA>              1     1-2
## 8849       21464                             <NA>              1     1-2
## 8850       21464                             <NA>              1     1-2
## 8851       21464                             <NA>              1     1-2
## 8852       21464                             <NA>              1     1-2
## 8853       21464                             <NA>              1     1-2
## 8854       21464                             <NA>              1     1-2
## 8855       21464                             <NA>              1     1-2
## 8856       21464                             <NA>              1     1-2
## 8857       21464                             <NA>              1     1-2
## 8858       21464                             <NA>              1     1-2
## 8859       21464                             <NA>              1     1-2
## 8860       21464                             <NA>              1     1-2
## 8861       21464                             <NA>              1     1-2
## 8862       21464                             <NA>              1     1-2
## 8863       21464                             <NA>              1     1-2
## 8864       21464                             <NA>              1     1-2
## 8865       21464                             <NA>              1     1-2
## 8866       21464                             <NA>              1     1-2
## 8867       21464                             <NA>              1     1-2
## 8868       21464                             <NA>              1     1-2
## 8869       21464                             <NA>              1     1-2
## 8870       21464                             <NA>              1     1-2
## 8871       21464                             <NA>              1     1-2
## 8872       21464                             <NA>              1     1-2
## 8873       21464                             <NA>              1     1-2
## 8874       21464                             <NA>              1     1-2
## 8875       21464                             <NA>              1     1-2
## 8876       21464                             <NA>              1     1-2
## 8877       21464                             <NA>              1     1-2
## 8878       21464                             <NA>              1     1-2
## 8879       21464                             <NA>              1     1-2
## 8880       21464                             <NA>              1     1-2
## 8881       21464                             <NA>              1     1-2
## 8882       21464                             <NA>              1     1-2
## 8883       21464                             <NA>              1     1-2
## 8884       21464                             <NA>              1     1-2
## 8885       21464                             <NA>              1     1-2
## 8886       21464                             <NA>              1     1-2
## 8887       21464                             <NA>              1     1-2
## 8888       21464                             <NA>              1     1-2
## 8889       21464                             <NA>              1     1-2
## 8890       21464                             <NA>              1     1-2
## 8891       21464                             <NA>              1     1-2
## 8892       21464                             <NA>              1     1-2
## 8893       21464                             <NA>              1     1-2
## 8894       21464                             <NA>              1     1-2
## 8895       21464                             <NA>              1     1-2
## 8896       21464                             <NA>              1     1-2
## 8897       21464                             <NA>              1     1-2
## 8898       21464                             <NA>              1     1-2
## 8899       21464                             <NA>              1     1-2
## 8900       21464                             <NA>              1     1-2
## 8901       21464                             <NA>              1     1-2
## 8902       21464                             <NA>              1     1-2
## 8903       21464                             <NA>              1     1-2
## 8904       21464                             <NA>              1     1-2
## 8905       21464                             <NA>              1     1-2
## 8906       21464                             <NA>              1     1-2
## 8907       21469                             <NA>              4    3-10
## 8908       21469                             <NA>              4    3-10
## 8909       21469                             <NA>              4    3-10
## 8910       21469                             <NA>              4    3-10
## 8911       21469                             <NA>              4    3-10
## 8912       21469                             <NA>              4    3-10
## 8913       21469                             <NA>              4    3-10
## 8914       21469                             <NA>              4    3-10
## 8915       21469                             <NA>              4    3-10
## 8916       21469                             <NA>              4    3-10
## 8917       21469                             <NA>              4    3-10
## 8918       21469                             <NA>              4    3-10
## 8919       21469                             <NA>              4    3-10
## 8920       21469                             <NA>              4    3-10
## 8921       21469                             <NA>              4    3-10
## 8922       21469                             <NA>              4    3-10
## 8923       21469                             <NA>              4    3-10
## 8924       21469                             <NA>              4    3-10
## 8925       21469                             <NA>              4    3-10
## 8926       21469                             <NA>              4    3-10
## 8927       21469                             <NA>              4    3-10
## 8928       21469                             <NA>              4    3-10
## 8929       21469                             <NA>              4    3-10
## 8930       21469                             <NA>              4    3-10
## 8931       21469                             <NA>              4    3-10
## 8932       21469                             <NA>              4    3-10
## 8933       21469                             <NA>              4    3-10
## 8934       21469                             <NA>              4    3-10
## 8935       21469                             <NA>              4    3-10
## 8936       21469                             <NA>              4    3-10
## 8937       21469                             <NA>              4    3-10
## 8938       21469                             <NA>              4    3-10
## 8939       21469                             <NA>              4    3-10
## 8940       21469                             <NA>              4    3-10
## 8941       21469                             <NA>              4    3-10
## 8942       21469                             <NA>              4    3-10
## 8943       21469                             <NA>              4    3-10
## 8944       21469                             <NA>              4    3-10
## 8945       21469                             <NA>              4    3-10
## 8946       21469                             <NA>              4    3-10
## 8947       21469                             <NA>              4    3-10
## 8948       21469                             <NA>              4    3-10
## 8949       21469                             <NA>              4    3-10
## 8950       21469                             <NA>              4    3-10
## 8951       21469                             <NA>              4    3-10
## 8952       21469                             <NA>              4    3-10
## 8953       21469                             <NA>              4    3-10
## 8954       21469                             <NA>              4    3-10
## 8955       21469                             <NA>              4    3-10
## 8956       21469                             <NA>              4    3-10
## 8957       21469                             <NA>              4    3-10
## 8958       21469                             <NA>              4    3-10
## 8959       21469                             <NA>              4    3-10
## 8960       21469                             <NA>              4    3-10
## 8961       21469                             <NA>              4    3-10
## 8962       21469                             <NA>              4    3-10
## 8963       21469                             <NA>              4    3-10
## 8964       21469                             <NA>              4    3-10
## 8965       21469                             <NA>              4    3-10
## 8966       21469                             <NA>              4    3-10
## 8967       21469                             <NA>              4    3-10
## 8968       21609                             <NA>            197 100-500
## 8969       21609                             <NA>            197 100-500
## 8970       21609                             <NA>            197 100-500
## 8971       21609                             <NA>            197 100-500
## 8972       21609                             <NA>            197 100-500
## 8973       21609                             <NA>            197 100-500
## 8974       21609                             <NA>            197 100-500
## 8975       21609                             <NA>            197 100-500
## 8976       21609                             <NA>            197 100-500
## 8977       21609                             <NA>            197 100-500
## 8978       21609                             <NA>            197 100-500
## 8979       21609                             <NA>            197 100-500
## 8980       21609                             <NA>            197 100-500
## 8981       21609                             <NA>            197 100-500
## 8982       21609                             <NA>            197 100-500
## 8983       21609                             <NA>            197 100-500
## 8984       21609                             <NA>            197 100-500
## 8985       21609                             <NA>            197 100-500
## 8986       21609                             <NA>            197 100-500
## 8987       21609                             <NA>            197 100-500
## 8988       21609                             <NA>            197 100-500
## 8989       21609                             <NA>            197 100-500
## 8990       21609                             <NA>            197 100-500
## 8991       21609                             <NA>            197 100-500
## 8992       21609                             <NA>            197 100-500
## 8993       21609                             <NA>            197 100-500
## 8994       21609                             <NA>            197 100-500
## 8995       21609                             <NA>            197 100-500
## 8996       21609                             <NA>            197 100-500
## 8997       21609                             <NA>            197 100-500
## 8998       21609                             <NA>            197 100-500
## 8999       21609                             <NA>            197 100-500
## 9000       21609                             <NA>            197 100-500
## 9001       21609                             <NA>            197 100-500
## 9002       21609                             <NA>            197 100-500
## 9003       21609                             <NA>            197 100-500
## 9004       21609                             <NA>            197 100-500
## 9005       21609                             <NA>            197 100-500
## 9006       21609                             <NA>            197 100-500
## 9007       21609                             <NA>            197 100-500
## 9008       21609                             <NA>            197 100-500
## 9009       21609                             <NA>            197 100-500
## 9010       21609                             <NA>            197 100-500
## 9011       21609                             <NA>            197 100-500
## 9012       21609                             <NA>            197 100-500
## 9013       21609                             <NA>            197 100-500
## 9014       21609                             <NA>            197 100-500
## 9015       21609                             <NA>            197 100-500
## 9016       21609                             <NA>            197 100-500
## 9017       21609                             <NA>            197 100-500
## 9018       21609                             <NA>            197 100-500
## 9019       21609                             <NA>            197 100-500
## 9020       21609                             <NA>            197 100-500
## 9021       21609                             <NA>            197 100-500
## 9022       21609                             <NA>            197 100-500
## 9023       21609                             <NA>            197 100-500
## 9024       21609                             <NA>            197 100-500
## 9025       21609                             <NA>            197 100-500
## 9026       21609                             <NA>            197 100-500
## 9027       21609                             <NA>            197 100-500
## 9028       21609                             <NA>            197 100-500
## 9029       21695                             <NA>             22   10-25
## 9030       21695                             <NA>             22   10-25
## 9031       21695                             <NA>             22   10-25
## 9032       21695                             <NA>             22   10-25
## 9033       21695                             <NA>             22   10-25
## 9034       21695                             <NA>             22   10-25
## 9035       21695                             <NA>             22   10-25
## 9036       21695                             <NA>             22   10-25
## 9037       21695                             <NA>             22   10-25
## 9038       21695                             <NA>             22   10-25
## 9039       21695                             <NA>             22   10-25
## 9040       21695                             <NA>             22   10-25
## 9041       21695                             <NA>             22   10-25
## 9042       21695                             <NA>             22   10-25
## 9043       21695                             <NA>             22   10-25
## 9044       21695                             <NA>             22   10-25
## 9045       21695                             <NA>             22   10-25
## 9046       21695                             <NA>             22   10-25
## 9047       21695                             <NA>             22   10-25
## 9048       21695                             <NA>             22   10-25
## 9049       21695                             <NA>             22   10-25
## 9050       21695                             <NA>             22   10-25
## 9051       21695                             <NA>             22   10-25
## 9052       21695                             <NA>             22   10-25
## 9053       21695                             <NA>             22   10-25
## 9054       21695                             <NA>             22   10-25
## 9055       21695                             <NA>             22   10-25
## 9056       21695                             <NA>             22   10-25
## 9057       21695                             <NA>             22   10-25
## 9058       21695                             <NA>             22   10-25
## 9059       21695                             <NA>             22   10-25
## 9060       21695                             <NA>             22   10-25
## 9061       21695                             <NA>             22   10-25
## 9062       21695                             <NA>             22   10-25
## 9063       21695                             <NA>             22   10-25
## 9064       21695                             <NA>             22   10-25
## 9065       21695                             <NA>             22   10-25
## 9066       21695                             <NA>             22   10-25
## 9067       21695                             <NA>             22   10-25
## 9068       21695                             <NA>             22   10-25
## 9069       21695                             <NA>             22   10-25
## 9070       21695                             <NA>             22   10-25
## 9071       21695                             <NA>             22   10-25
## 9072       21695                             <NA>             22   10-25
## 9073       21695                             <NA>             22   10-25
## 9074       21695                             <NA>             22   10-25
## 9075       21695                             <NA>             22   10-25
## 9076       21695                             <NA>             22   10-25
## 9077       21695                             <NA>             22   10-25
## 9078       21695                             <NA>             22   10-25
## 9079       21695                             <NA>             22   10-25
## 9080       21695                             <NA>             22   10-25
## 9081       21695                             <NA>             22   10-25
## 9082       21695                             <NA>             22   10-25
## 9083       21695                             <NA>             22   10-25
## 9084       21695                             <NA>             22   10-25
## 9085       21695                             <NA>             22   10-25
## 9086       21695                             <NA>             22   10-25
## 9087       21695                             <NA>             22   10-25
## 9088       21695                             <NA>             22   10-25
## 9089       21695                             <NA>             22   10-25
## 9090       21856                             <NA>             34  25-100
## 9091       21856                             <NA>             34  25-100
## 9092       21856                             <NA>             34  25-100
## 9093       21856                             <NA>             34  25-100
## 9094       21856                             <NA>             34  25-100
## 9095       21856                             <NA>             34  25-100
## 9096       21856                             <NA>             34  25-100
## 9097       21856                             <NA>             34  25-100
## 9098       21856                             <NA>             34  25-100
## 9099       21856                             <NA>             34  25-100
## 9100       21856                             <NA>             34  25-100
## 9101       21856                             <NA>             34  25-100
## 9102       21856                             <NA>             34  25-100
## 9103       21856                             <NA>             34  25-100
## 9104       21856                             <NA>             34  25-100
## 9105       21856                             <NA>             34  25-100
## 9106       21856                             <NA>             34  25-100
## 9107       21856                             <NA>             34  25-100
## 9108       21856                             <NA>             34  25-100
## 9109       21856                             <NA>             34  25-100
## 9110       21856                             <NA>             34  25-100
## 9111       21856                             <NA>             34  25-100
## 9112       21856                             <NA>             34  25-100
## 9113       21856                             <NA>             34  25-100
## 9114       21856                             <NA>             34  25-100
## 9115       21856                             <NA>             34  25-100
## 9116       21856                             <NA>             34  25-100
## 9117       21856                             <NA>             34  25-100
## 9118       21856                             <NA>             34  25-100
## 9119       21856                             <NA>             34  25-100
## 9120       21856                             <NA>             34  25-100
## 9121       21856                             <NA>             34  25-100
## 9122       21856                             <NA>             34  25-100
## 9123       21856                             <NA>             34  25-100
## 9124       21856                             <NA>             34  25-100
## 9125       21856                             <NA>             34  25-100
## 9126       21856                             <NA>             34  25-100
## 9127       21856                             <NA>             34  25-100
## 9128       21856                             <NA>             34  25-100
## 9129       21856                             <NA>             34  25-100
## 9130       21856                             <NA>             34  25-100
## 9131       21856                             <NA>             34  25-100
## 9132       21856                             <NA>             34  25-100
## 9133       21856                             <NA>             34  25-100
## 9134       21856                             <NA>             34  25-100
## 9135       21856                             <NA>             34  25-100
## 9136       21856                             <NA>             34  25-100
## 9137       21856                             <NA>             34  25-100
## 9138       21856                             <NA>             34  25-100
## 9139       21856                             <NA>             34  25-100
## 9140       21856                             <NA>             34  25-100
## 9141       21856                             <NA>             34  25-100
## 9142       21856                             <NA>             34  25-100
## 9143       21856                             <NA>             34  25-100
## 9144       21856                             <NA>             34  25-100
## 9145       21856                             <NA>             34  25-100
## 9146       21856                             <NA>             34  25-100
## 9147       21856                             <NA>             34  25-100
## 9148       21856                             <NA>             34  25-100
## 9149       21856                             <NA>             34  25-100
## 9150       21856                             <NA>             34  25-100
## 9151       21914                             <NA>              1     1-2
## 9152       21914                             <NA>              1     1-2
## 9153       21914                             <NA>              1     1-2
## 9154       21914                             <NA>              1     1-2
## 9155       21914                             <NA>              1     1-2
## 9156       21914                             <NA>              1     1-2
## 9157       21914                             <NA>              1     1-2
## 9158       21914                             <NA>              1     1-2
## 9159       21914                             <NA>              1     1-2
## 9160       21914                             <NA>              1     1-2
## 9161       21914                             <NA>              1     1-2
## 9162       21914                             <NA>              1     1-2
## 9163       21914                             <NA>              1     1-2
## 9164       21914                             <NA>              1     1-2
## 9165       21914                             <NA>              1     1-2
## 9166       21914                             <NA>              1     1-2
## 9167       21914                             <NA>              1     1-2
## 9168       21914                             <NA>              1     1-2
## 9169       21914                             <NA>              1     1-2
## 9170       21914                             <NA>              1     1-2
## 9171       21914                             <NA>              1     1-2
## 9172       21914                             <NA>              1     1-2
## 9173       21914                             <NA>              1     1-2
## 9174       21914                             <NA>              1     1-2
## 9175       21914                             <NA>              1     1-2
## 9176       21914                             <NA>              1     1-2
## 9177       21914                             <NA>              1     1-2
## 9178       21914                             <NA>              1     1-2
## 9179       21914                             <NA>              1     1-2
## 9180       21914                             <NA>              1     1-2
## 9181       21914                             <NA>              1     1-2
## 9182       21914                             <NA>              1     1-2
## 9183       21914                             <NA>              1     1-2
## 9184       21914                             <NA>              1     1-2
## 9185       21914                             <NA>              1     1-2
## 9186       21914                             <NA>              1     1-2
## 9187       21914                             <NA>              1     1-2
## 9188       21914                             <NA>              1     1-2
## 9189       21914                             <NA>              1     1-2
## 9190       21914                             <NA>              1     1-2
## 9191       21914                             <NA>              1     1-2
## 9192       21914                             <NA>              1     1-2
## 9193       21914                             <NA>              1     1-2
## 9194       21914                             <NA>              1     1-2
## 9195       21914                             <NA>              1     1-2
## 9196       21914                             <NA>              1     1-2
## 9197       21914                             <NA>              1     1-2
## 9198       21914                             <NA>              1     1-2
## 9199       21914                             <NA>              1     1-2
## 9200       21914                             <NA>              1     1-2
## 9201       21914                             <NA>              1     1-2
## 9202       21914                             <NA>              1     1-2
## 9203       21914                             <NA>              1     1-2
## 9204       21914                             <NA>              1     1-2
## 9205       21914                             <NA>              1     1-2
## 9206       21914                             <NA>              1     1-2
## 9207       21914                             <NA>              1     1-2
## 9208       21914                             <NA>              1     1-2
## 9209       21914                             <NA>              1     1-2
## 9210       21914                             <NA>              1     1-2
## 9211       21914                             <NA>              1     1-2
## 9212       21987                             <NA>             22   10-25
## 9213       21987                             <NA>             22   10-25
## 9214       21987                             <NA>             22   10-25
## 9215       21987                             <NA>             22   10-25
## 9216       21987                             <NA>             22   10-25
## 9217       21987                             <NA>             22   10-25
## 9218       21987                             <NA>             22   10-25
## 9219       21987                             <NA>             22   10-25
## 9220       21987                             <NA>             22   10-25
## 9221       21987                             <NA>             22   10-25
## 9222       21987                             <NA>             22   10-25
## 9223       21987                             <NA>             22   10-25
## 9224       21987                             <NA>             22   10-25
## 9225       21987                             <NA>             22   10-25
## 9226       21987                             <NA>             22   10-25
## 9227       21987                             <NA>             22   10-25
## 9228       21987                             <NA>             22   10-25
## 9229       21987                             <NA>             22   10-25
## 9230       21987                             <NA>             22   10-25
## 9231       21987                             <NA>             22   10-25
## 9232       21987                             <NA>             22   10-25
## 9233       21987                             <NA>             22   10-25
## 9234       21987                             <NA>             22   10-25
## 9235       21987                             <NA>             22   10-25
## 9236       21987                             <NA>             22   10-25
## 9237       21987                             <NA>             22   10-25
## 9238       21987                             <NA>             22   10-25
## 9239       21987                             <NA>             22   10-25
## 9240       21987                             <NA>             22   10-25
## 9241       21987                             <NA>             22   10-25
## 9242       21987                             <NA>             22   10-25
## 9243       21987                             <NA>             22   10-25
## 9244       21987                             <NA>             22   10-25
## 9245       21987                             <NA>             22   10-25
## 9246       21987                             <NA>             22   10-25
## 9247       21987                             <NA>             22   10-25
## 9248       21987                             <NA>             22   10-25
## 9249       21987                             <NA>             22   10-25
## 9250       21987                             <NA>             22   10-25
## 9251       21987                             <NA>             22   10-25
## 9252       21987                             <NA>             22   10-25
## 9253       21987                             <NA>             22   10-25
## 9254       21987                             <NA>             22   10-25
## 9255       21987                             <NA>             22   10-25
## 9256       21987                             <NA>             22   10-25
## 9257       21987                             <NA>             22   10-25
## 9258       21987                             <NA>             22   10-25
## 9259       21987                             <NA>             22   10-25
## 9260       21987                             <NA>             22   10-25
## 9261       21987                             <NA>             22   10-25
## 9262       21987                             <NA>             22   10-25
## 9263       21987                             <NA>             22   10-25
## 9264       21987                             <NA>             22   10-25
## 9265       21987                             <NA>             22   10-25
## 9266       21987                             <NA>             22   10-25
## 9267       21987                             <NA>             22   10-25
## 9268       21987                             <NA>             22   10-25
## 9269       21987                             <NA>             22   10-25
## 9270       21987                             <NA>             22   10-25
## 9271       21987                             <NA>             22   10-25
## 9272       21987                             <NA>             22   10-25
## 9273       22175                             <NA>              2     1-2
## 9274       22175                             <NA>              2     1-2
## 9275       22175                             <NA>              2     1-2
## 9276       22175                             <NA>              2     1-2
## 9277       22175                             <NA>              2     1-2
## 9278       22175                             <NA>              2     1-2
## 9279       22175                             <NA>              2     1-2
## 9280       22175                             <NA>              2     1-2
## 9281       22175                             <NA>              2     1-2
## 9282       22175                             <NA>              2     1-2
## 9283       22175                             <NA>              2     1-2
## 9284       22175                             <NA>              2     1-2
## 9285       22175                             <NA>              2     1-2
## 9286       22175                             <NA>              2     1-2
## 9287       22175                             <NA>              2     1-2
## 9288       22175                             <NA>              2     1-2
## 9289       22175                             <NA>              2     1-2
## 9290       22175                             <NA>              2     1-2
## 9291       22175                             <NA>              2     1-2
## 9292       22175                             <NA>              2     1-2
## 9293       22175                             <NA>              2     1-2
## 9294       22175                             <NA>              2     1-2
## 9295       22175                             <NA>              2     1-2
## 9296       22175                             <NA>              2     1-2
## 9297       22175                             <NA>              2     1-2
## 9298       22175                             <NA>              2     1-2
## 9299       22175                             <NA>              2     1-2
## 9300       22175                             <NA>              2     1-2
## 9301       22175                             <NA>              2     1-2
## 9302       22175                             <NA>              2     1-2
## 9303       22175                             <NA>              2     1-2
## 9304       22175                             <NA>              2     1-2
## 9305       22175                             <NA>              2     1-2
## 9306       22175                             <NA>              2     1-2
## 9307       22175                             <NA>              2     1-2
## 9308       22175                             <NA>              2     1-2
## 9309       22175                             <NA>              2     1-2
## 9310       22175                             <NA>              2     1-2
## 9311       22175                             <NA>              2     1-2
## 9312       22175                             <NA>              2     1-2
## 9313       22175                             <NA>              2     1-2
## 9314       22175                             <NA>              2     1-2
## 9315       22175                             <NA>              2     1-2
## 9316       22175                             <NA>              2     1-2
## 9317       22175                             <NA>              2     1-2
## 9318       22175                             <NA>              2     1-2
## 9319       22175                             <NA>              2     1-2
## 9320       22175                             <NA>              2     1-2
## 9321       22175                             <NA>              2     1-2
## 9322       22175                             <NA>              2     1-2
## 9323       22175                             <NA>              2     1-2
## 9324       22175                             <NA>              2     1-2
## 9325       22175                             <NA>              2     1-2
## 9326       22175                             <NA>              2     1-2
## 9327       22175                             <NA>              2     1-2
## 9328       22175                             <NA>              2     1-2
## 9329       22175                             <NA>              2     1-2
## 9330       22175                             <NA>              2     1-2
## 9331       22175                             <NA>              2     1-2
## 9332       22175                             <NA>              2     1-2
## 9333       22175                             <NA>              2     1-2
## 9334       22178                             <NA>              1     1-2
## 9335       22178                             <NA>              1     1-2
## 9336       22178                             <NA>              1     1-2
## 9337       22178                             <NA>              1     1-2
## 9338       22178                             <NA>              1     1-2
## 9339       22178                             <NA>              1     1-2
## 9340       22178                             <NA>              1     1-2
## 9341       22178                             <NA>              1     1-2
## 9342       22178                             <NA>              1     1-2
## 9343       22178                             <NA>              1     1-2
## 9344       22178                             <NA>              1     1-2
## 9345       22178                             <NA>              1     1-2
## 9346       22178                             <NA>              1     1-2
## 9347       22178                             <NA>              1     1-2
## 9348       22178                             <NA>              1     1-2
## 9349       22178                             <NA>              1     1-2
## 9350       22178                             <NA>              1     1-2
## 9351       22178                             <NA>              1     1-2
## 9352       22178                             <NA>              1     1-2
## 9353       22178                             <NA>              1     1-2
## 9354       22178                             <NA>              1     1-2
## 9355       22178                             <NA>              1     1-2
## 9356       22178                             <NA>              1     1-2
## 9357       22178                             <NA>              1     1-2
## 9358       22178                             <NA>              1     1-2
## 9359       22178                             <NA>              1     1-2
## 9360       22178                             <NA>              1     1-2
## 9361       22178                             <NA>              1     1-2
## 9362       22178                             <NA>              1     1-2
## 9363       22178                             <NA>              1     1-2
## 9364       22178                             <NA>              1     1-2
## 9365       22178                             <NA>              1     1-2
## 9366       22178                             <NA>              1     1-2
## 9367       22178                             <NA>              1     1-2
## 9368       22178                             <NA>              1     1-2
## 9369       22178                             <NA>              1     1-2
## 9370       22178                             <NA>              1     1-2
## 9371       22178                             <NA>              1     1-2
## 9372       22178                             <NA>              1     1-2
## 9373       22178                             <NA>              1     1-2
## 9374       22178                             <NA>              1     1-2
## 9375       22178                             <NA>              1     1-2
## 9376       22178                             <NA>              1     1-2
## 9377       22178                             <NA>              1     1-2
## 9378       22178                             <NA>              1     1-2
## 9379       22178                             <NA>              1     1-2
## 9380       22178                             <NA>              1     1-2
## 9381       22178                             <NA>              1     1-2
## 9382       22178                             <NA>              1     1-2
## 9383       22178                             <NA>              1     1-2
## 9384       22178                             <NA>              1     1-2
## 9385       22178                             <NA>              1     1-2
## 9386       22178                             <NA>              1     1-2
## 9387       22178                             <NA>              1     1-2
## 9388       22178                             <NA>              1     1-2
## 9389       22178                             <NA>              1     1-2
## 9390       22178                             <NA>              1     1-2
## 9391       22178                             <NA>              1     1-2
## 9392       22178                             <NA>              1     1-2
## 9393       22178                             <NA>              1     1-2
## 9394       22178                             <NA>              1     1-2
## 9395       22358                             <NA>             53  25-100
## 9396       22358                             <NA>             53  25-100
## 9397       22358                             <NA>             53  25-100
## 9398       22358                             <NA>             53  25-100
## 9399       22358                             <NA>             53  25-100
## 9400       22358                             <NA>             53  25-100
## 9401       22358                             <NA>             53  25-100
## 9402       22358                             <NA>             53  25-100
## 9403       22358                             <NA>             53  25-100
## 9404       22358                             <NA>             53  25-100
## 9405       22358                             <NA>             53  25-100
## 9406       22358                             <NA>             53  25-100
## 9407       22358                             <NA>             53  25-100
## 9408       22358                             <NA>             53  25-100
## 9409       22358                             <NA>             53  25-100
## 9410       22358                             <NA>             53  25-100
## 9411       22358                             <NA>             53  25-100
## 9412       22358                             <NA>             53  25-100
## 9413       22358                             <NA>             53  25-100
## 9414       22358                             <NA>             53  25-100
## 9415       22358                             <NA>             53  25-100
## 9416       22358                             <NA>             53  25-100
## 9417       22358                             <NA>             53  25-100
## 9418       22358                             <NA>             53  25-100
## 9419       22358                             <NA>             53  25-100
## 9420       22358                             <NA>             53  25-100
## 9421       22358                             <NA>             53  25-100
## 9422       22358                             <NA>             53  25-100
## 9423       22358                             <NA>             53  25-100
## 9424       22358                             <NA>             53  25-100
## 9425       22358                             <NA>             53  25-100
## 9426       22358                             <NA>             53  25-100
## 9427       22358                             <NA>             53  25-100
## 9428       22358                             <NA>             53  25-100
## 9429       22358                             <NA>             53  25-100
## 9430       22358                             <NA>             53  25-100
## 9431       22358                             <NA>             53  25-100
## 9432       22358                             <NA>             53  25-100
## 9433       22358                             <NA>             53  25-100
## 9434       22358                             <NA>             53  25-100
## 9435       22358                             <NA>             53  25-100
## 9436       22358                             <NA>             53  25-100
## 9437       22358                             <NA>             53  25-100
## 9438       22358                             <NA>             53  25-100
## 9439       22358                             <NA>             53  25-100
## 9440       22358                             <NA>             53  25-100
## 9441       22358                             <NA>             53  25-100
## 9442       22358                             <NA>             53  25-100
## 9443       22358                             <NA>             53  25-100
## 9444       22358                             <NA>             53  25-100
## 9445       22358                             <NA>             53  25-100
## 9446       22358                             <NA>             53  25-100
## 9447       22358                             <NA>             53  25-100
## 9448       22358                             <NA>             53  25-100
## 9449       22358                             <NA>             53  25-100
## 9450       22358                             <NA>             53  25-100
## 9451       22358                             <NA>             53  25-100
## 9452       22358                             <NA>             53  25-100
## 9453       22358                             <NA>             53  25-100
## 9454       22358                             <NA>             53  25-100
## 9455       22358                             <NA>             53  25-100
## 9456       22658                             <NA>             10    3-10
## 9457       22658                             <NA>             10    3-10
## 9458       22658                             <NA>             10    3-10
## 9459       22658                             <NA>             10    3-10
## 9460       22658                             <NA>             10    3-10
## 9461       22658                             <NA>             10    3-10
## 9462       22658                             <NA>             10    3-10
## 9463       22658                             <NA>             10    3-10
## 9464       22658                             <NA>             10    3-10
## 9465       22658                             <NA>             10    3-10
## 9466       22658                             <NA>             10    3-10
## 9467       22658                             <NA>             10    3-10
## 9468       22658                             <NA>             10    3-10
## 9469       22658                             <NA>             10    3-10
## 9470       22658                             <NA>             10    3-10
## 9471       22658                             <NA>             10    3-10
## 9472       22658                             <NA>             10    3-10
## 9473       22658                             <NA>             10    3-10
## 9474       22658                             <NA>             10    3-10
## 9475       22658                             <NA>             10    3-10
## 9476       22658                             <NA>             10    3-10
## 9477       22658                             <NA>             10    3-10
## 9478       22658                             <NA>             10    3-10
## 9479       22658                             <NA>             10    3-10
## 9480       22658                             <NA>             10    3-10
## 9481       22658                             <NA>             10    3-10
## 9482       22658                             <NA>             10    3-10
## 9483       22658                             <NA>             10    3-10
## 9484       22658                             <NA>             10    3-10
## 9485       22658                             <NA>             10    3-10
## 9486       22658                             <NA>             10    3-10
## 9487       22658                             <NA>             10    3-10
## 9488       22658                             <NA>             10    3-10
## 9489       22658                             <NA>             10    3-10
## 9490       22658                             <NA>             10    3-10
## 9491       22658                             <NA>             10    3-10
## 9492       22658                             <NA>             10    3-10
## 9493       22658                             <NA>             10    3-10
## 9494       22658                             <NA>             10    3-10
## 9495       22658                             <NA>             10    3-10
## 9496       22658                             <NA>             10    3-10
## 9497       22658                             <NA>             10    3-10
## 9498       22658                             <NA>             10    3-10
## 9499       22658                             <NA>             10    3-10
## 9500       22658                             <NA>             10    3-10
## 9501       22658                             <NA>             10    3-10
## 9502       22658                             <NA>             10    3-10
## 9503       22658                             <NA>             10    3-10
## 9504       22658                             <NA>             10    3-10
## 9505       22658                             <NA>             10    3-10
## 9506       22658                             <NA>             10    3-10
## 9507       22658                             <NA>             10    3-10
## 9508       22658                             <NA>             10    3-10
## 9509       22658                             <NA>             10    3-10
## 9510       22658                             <NA>             10    3-10
## 9511       22658                             <NA>             10    3-10
## 9512       22658                             <NA>             10    3-10
## 9513       22658                             <NA>             10    3-10
## 9514       22658                             <NA>             10    3-10
## 9515       22658                             <NA>             10    3-10
## 9516       22658                             <NA>             10    3-10
## 9517       22984                 Featured Article            630    500-
## 9518       22984                 Featured Article            630    500-
## 9519       22984                 Featured Article            630    500-
## 9520       22984                 Featured Article            630    500-
## 9521       22984                 Featured Article            630    500-
## 9522       22984                 Featured Article            630    500-
## 9523       22984                 Featured Article            630    500-
## 9524       22984                 Featured Article            630    500-
## 9525       22984                 Featured Article            630    500-
## 9526       22984                 Featured Article            630    500-
## 9527       22984                 Featured Article            630    500-
## 9528       22984                 Featured Article            630    500-
## 9529       22984                 Featured Article            630    500-
## 9530       22984                 Featured Article            630    500-
## 9531       22984                 Featured Article            630    500-
## 9532       22984                 Featured Article            630    500-
## 9533       22984                 Featured Article            630    500-
## 9534       22984                 Featured Article            630    500-
## 9535       22984                 Featured Article            630    500-
## 9536       22984                 Featured Article            630    500-
## 9537       22984                 Featured Article            630    500-
## 9538       22984                 Featured Article            630    500-
## 9539       22984                 Featured Article            630    500-
## 9540       22984                 Featured Article            630    500-
## 9541       22984                 Featured Article            630    500-
## 9542       22984                 Featured Article            630    500-
## 9543       22984                 Featured Article            630    500-
## 9544       22984                 Featured Article            630    500-
## 9545       22984                 Featured Article            630    500-
## 9546       22984                 Featured Article            630    500-
## 9547       22984                 Featured Article            630    500-
## 9548       22984                 Featured Article            630    500-
## 9549       22984                 Featured Article            630    500-
## 9550       22984                 Featured Article            630    500-
## 9551       22984                 Featured Article            630    500-
## 9552       22984                 Featured Article            630    500-
## 9553       22984                 Featured Article            630    500-
## 9554       22984                 Featured Article            630    500-
## 9555       22984                 Featured Article            630    500-
## 9556       22984                 Featured Article            630    500-
## 9557       22984                 Featured Article            630    500-
## 9558       22984                 Featured Article            630    500-
## 9559       22984                 Featured Article            630    500-
## 9560       22984                 Featured Article            630    500-
## 9561       22984                 Featured Article            630    500-
## 9562       22984                 Featured Article            630    500-
## 9563       22984                 Featured Article            630    500-
## 9564       22984                 Featured Article            630    500-
## 9565       22984                 Featured Article            630    500-
## 9566       22984                 Featured Article            630    500-
## 9567       22984                 Featured Article            630    500-
## 9568       22984                 Featured Article            630    500-
## 9569       22984                 Featured Article            630    500-
## 9570       22984                 Featured Article            630    500-
## 9571       22984                 Featured Article            630    500-
## 9572       22984                 Featured Article            630    500-
## 9573       22984                 Featured Article            630    500-
## 9574       22984                 Featured Article            630    500-
## 9575       22984                 Featured Article            630    500-
## 9576       22984                 Featured Article            630    500-
## 9577       22984                 Featured Article            630    500-
## 9578       23055                     Good Article            739    500-
## 9579       23055                     Good Article            739    500-
## 9580       23055                     Good Article            739    500-
## 9581       23055                     Good Article            739    500-
## 9582       23055                     Good Article            739    500-
## 9583       23055                     Good Article            739    500-
## 9584       23055                     Good Article            739    500-
## 9585       23055                     Good Article            739    500-
## 9586       23055                     Good Article            739    500-
## 9587       23055                     Good Article            739    500-
## 9588       23055                     Good Article            739    500-
## 9589       23055                     Good Article            739    500-
## 9590       23055                     Good Article            739    500-
## 9591       23055                     Good Article            739    500-
## 9592       23055                     Good Article            739    500-
## 9593       23055                     Good Article            739    500-
## 9594       23055                     Good Article            739    500-
## 9595       23055                     Good Article            739    500-
## 9596       23055                     Good Article            739    500-
## 9597       23055                     Good Article            739    500-
## 9598       23055                     Good Article            739    500-
## 9599       23055                     Good Article            739    500-
## 9600       23055                     Good Article            739    500-
## 9601       23055                     Good Article            739    500-
## 9602       23055                     Good Article            739    500-
## 9603       23055                     Good Article            739    500-
## 9604       23055                     Good Article            739    500-
## 9605       23055                     Good Article            739    500-
## 9606       23055                     Good Article            739    500-
## 9607       23055                     Good Article            739    500-
## 9608       23055                     Good Article            739    500-
## 9609       23055                     Good Article            739    500-
## 9610       23055                     Good Article            739    500-
## 9611       23055                     Good Article            739    500-
## 9612       23055                     Good Article            739    500-
## 9613       23055                     Good Article            739    500-
## 9614       23055                     Good Article            739    500-
## 9615       23055                     Good Article            739    500-
## 9616       23055                     Good Article            739    500-
## 9617       23055                     Good Article            739    500-
## 9618       23055                     Good Article            739    500-
## 9619       23055                     Good Article            739    500-
## 9620       23055                     Good Article            739    500-
## 9621       23055                     Good Article            739    500-
## 9622       23055                     Good Article            739    500-
## 9623       23055                     Good Article            739    500-
## 9624       23055                     Good Article            739    500-
## 9625       23055                     Good Article            739    500-
## 9626       23055                     Good Article            739    500-
## 9627       23055                     Good Article            739    500-
## 9628       23055                     Good Article            739    500-
## 9629       23055                     Good Article            739    500-
## 9630       23055                     Good Article            739    500-
## 9631       23055                     Good Article            739    500-
## 9632       23055                     Good Article            739    500-
## 9633       23055                     Good Article            739    500-
## 9634       23055                     Good Article            739    500-
## 9635       23055                     Good Article            739    500-
## 9636       23055                     Good Article            739    500-
## 9637       23055                     Good Article            739    500-
## 9638       23055                     Good Article            739    500-
## 9639       23328                             <NA>              1     1-2
## 9640       23328                             <NA>              1     1-2
## 9641       23328                             <NA>              1     1-2
## 9642       23328                             <NA>              1     1-2
## 9643       23328                             <NA>              1     1-2
## 9644       23328                             <NA>              1     1-2
## 9645       23328                             <NA>              1     1-2
## 9646       23328                             <NA>              1     1-2
## 9647       23328                             <NA>              1     1-2
## 9648       23328                             <NA>              1     1-2
## 9649       23328                             <NA>              1     1-2
## 9650       23328                             <NA>              1     1-2
## 9651       23328                             <NA>              1     1-2
## 9652       23328                             <NA>              1     1-2
## 9653       23328                             <NA>              1     1-2
## 9654       23328                             <NA>              1     1-2
## 9655       23328                             <NA>              1     1-2
## 9656       23328                             <NA>              1     1-2
## 9657       23328                             <NA>              1     1-2
## 9658       23328                             <NA>              1     1-2
## 9659       23328                             <NA>              1     1-2
## 9660       23328                             <NA>              1     1-2
## 9661       23328                             <NA>              1     1-2
## 9662       23328                             <NA>              1     1-2
## 9663       23328                             <NA>              1     1-2
## 9664       23328                             <NA>              1     1-2
## 9665       23328                             <NA>              1     1-2
## 9666       23328                             <NA>              1     1-2
## 9667       23328                             <NA>              1     1-2
## 9668       23328                             <NA>              1     1-2
## 9669       23328                             <NA>              1     1-2
## 9670       23328                             <NA>              1     1-2
## 9671       23328                             <NA>              1     1-2
## 9672       23328                             <NA>              1     1-2
## 9673       23328                             <NA>              1     1-2
## 9674       23328                             <NA>              1     1-2
## 9675       23328                             <NA>              1     1-2
## 9676       23328                             <NA>              1     1-2
## 9677       23328                             <NA>              1     1-2
## 9678       23328                             <NA>              1     1-2
## 9679       23328                             <NA>              1     1-2
## 9680       23328                             <NA>              1     1-2
## 9681       23328                             <NA>              1     1-2
## 9682       23328                             <NA>              1     1-2
## 9683       23328                             <NA>              1     1-2
## 9684       23328                             <NA>              1     1-2
## 9685       23328                             <NA>              1     1-2
## 9686       23328                             <NA>              1     1-2
## 9687       23328                             <NA>              1     1-2
## 9688       23328                             <NA>              1     1-2
## 9689       23328                             <NA>              1     1-2
## 9690       23328                             <NA>              1     1-2
## 9691       23328                             <NA>              1     1-2
## 9692       23328                             <NA>              1     1-2
## 9693       23328                             <NA>              1     1-2
## 9694       23328                             <NA>              1     1-2
## 9695       23328                             <NA>              1     1-2
## 9696       23328                             <NA>              1     1-2
## 9697       23328                             <NA>              1     1-2
## 9698       23328                             <NA>              1     1-2
## 9699       23328                             <NA>              1     1-2
## 9700       23396                             <NA>             43  25-100
## 9701       23396                             <NA>             43  25-100
## 9702       23396                             <NA>             43  25-100
## 9703       23396                             <NA>             43  25-100
## 9704       23396                             <NA>             43  25-100
## 9705       23396                             <NA>             43  25-100
## 9706       23396                             <NA>             43  25-100
## 9707       23396                             <NA>             43  25-100
## 9708       23396                             <NA>             43  25-100
## 9709       23396                             <NA>             43  25-100
## 9710       23396                             <NA>             43  25-100
## 9711       23396                             <NA>             43  25-100
## 9712       23396                             <NA>             43  25-100
## 9713       23396                             <NA>             43  25-100
## 9714       23396                             <NA>             43  25-100
## 9715       23396                             <NA>             43  25-100
## 9716       23396                             <NA>             43  25-100
## 9717       23396                             <NA>             43  25-100
## 9718       23396                             <NA>             43  25-100
## 9719       23396                             <NA>             43  25-100
## 9720       23396                             <NA>             43  25-100
## 9721       23396                             <NA>             43  25-100
## 9722       23396                             <NA>             43  25-100
## 9723       23396                             <NA>             43  25-100
## 9724       23396                             <NA>             43  25-100
## 9725       23396                             <NA>             43  25-100
## 9726       23396                             <NA>             43  25-100
## 9727       23396                             <NA>             43  25-100
## 9728       23396                             <NA>             43  25-100
## 9729       23396                             <NA>             43  25-100
## 9730       23396                             <NA>             43  25-100
## 9731       23396                             <NA>             43  25-100
## 9732       23396                             <NA>             43  25-100
## 9733       23396                             <NA>             43  25-100
## 9734       23396                             <NA>             43  25-100
## 9735       23396                             <NA>             43  25-100
## 9736       23396                             <NA>             43  25-100
## 9737       23396                             <NA>             43  25-100
## 9738       23396                             <NA>             43  25-100
## 9739       23396                             <NA>             43  25-100
## 9740       23396                             <NA>             43  25-100
## 9741       23396                             <NA>             43  25-100
## 9742       23396                             <NA>             43  25-100
## 9743       23396                             <NA>             43  25-100
## 9744       23396                             <NA>             43  25-100
## 9745       23396                             <NA>             43  25-100
## 9746       23396                             <NA>             43  25-100
## 9747       23396                             <NA>             43  25-100
## 9748       23396                             <NA>             43  25-100
## 9749       23396                             <NA>             43  25-100
## 9750       23396                             <NA>             43  25-100
## 9751       23396                             <NA>             43  25-100
## 9752       23396                             <NA>             43  25-100
## 9753       23396                             <NA>             43  25-100
## 9754       23396                             <NA>             43  25-100
## 9755       23396                             <NA>             43  25-100
## 9756       23396                             <NA>             43  25-100
## 9757       23396                             <NA>             43  25-100
## 9758       23396                             <NA>             43  25-100
## 9759       23396                             <NA>             43  25-100
## 9760       23396                             <NA>             43  25-100
## 9761       23490                             <NA>            585    500-
## 9762       23490                             <NA>            585    500-
## 9763       23490                             <NA>            585    500-
## 9764       23490                             <NA>            585    500-
## 9765       23490                             <NA>            585    500-
## 9766       23490                             <NA>            585    500-
## 9767       23490                             <NA>            585    500-
## 9768       23490                             <NA>            585    500-
## 9769       23490                             <NA>            585    500-
## 9770       23490                             <NA>            585    500-
## 9771       23490                             <NA>            585    500-
## 9772       23490                             <NA>            585    500-
## 9773       23490                             <NA>            585    500-
## 9774       23490                             <NA>            585    500-
## 9775       23490                             <NA>            585    500-
## 9776       23490                             <NA>            585    500-
## 9777       23490                             <NA>            585    500-
## 9778       23490                             <NA>            585    500-
## 9779       23490                             <NA>            585    500-
## 9780       23490                             <NA>            585    500-
## 9781       23490                             <NA>            585    500-
## 9782       23490                             <NA>            585    500-
## 9783       23490                             <NA>            585    500-
## 9784       23490                             <NA>            585    500-
## 9785       23490                             <NA>            585    500-
## 9786       23490                             <NA>            585    500-
## 9787       23490                             <NA>            585    500-
## 9788       23490                             <NA>            585    500-
## 9789       23490                             <NA>            585    500-
## 9790       23490                             <NA>            585    500-
## 9791       23490                             <NA>            585    500-
## 9792       23490                             <NA>            585    500-
## 9793       23490                             <NA>            585    500-
## 9794       23490                             <NA>            585    500-
## 9795       23490                             <NA>            585    500-
## 9796       23490                             <NA>            585    500-
## 9797       23490                             <NA>            585    500-
## 9798       23490                             <NA>            585    500-
## 9799       23490                             <NA>            585    500-
## 9800       23490                             <NA>            585    500-
## 9801       23490                             <NA>            585    500-
## 9802       23490                             <NA>            585    500-
## 9803       23490                             <NA>            585    500-
## 9804       23490                             <NA>            585    500-
## 9805       23490                             <NA>            585    500-
## 9806       23490                             <NA>            585    500-
## 9807       23490                             <NA>            585    500-
## 9808       23490                             <NA>            585    500-
## 9809       23490                             <NA>            585    500-
## 9810       23490                             <NA>            585    500-
## 9811       23490                             <NA>            585    500-
## 9812       23490                             <NA>            585    500-
## 9813       23490                             <NA>            585    500-
## 9814       23490                             <NA>            585    500-
## 9815       23490                             <NA>            585    500-
## 9816       23490                             <NA>            585    500-
## 9817       23490                             <NA>            585    500-
## 9818       23490                             <NA>            585    500-
## 9819       23490                             <NA>            585    500-
## 9820       23490                             <NA>            585    500-
## 9821       23490                             <NA>            585    500-
## 9822       23878    Partially Protected - Default           1980    500-
## 9823       23878    Partially Protected - Default           1980    500-
## 9824       23878    Partially Protected - Default           1980    500-
## 9825       23878    Partially Protected - Default           1980    500-
## 9826       23878    Partially Protected - Default           1980    500-
## 9827       23878    Partially Protected - Default           1980    500-
## 9828       23878    Partially Protected - Default           1980    500-
## 9829       23878    Partially Protected - Default           1980    500-
## 9830       23878    Partially Protected - Default           1980    500-
## 9831       23878    Partially Protected - Default           1980    500-
## 9832       23878    Partially Protected - Default           1980    500-
## 9833       23878    Partially Protected - Default           1980    500-
## 9834       23878    Partially Protected - Default           1980    500-
## 9835       23878    Partially Protected - Default           1980    500-
## 9836       23878    Partially Protected - Default           1980    500-
## 9837       23878    Partially Protected - Default           1980    500-
## 9838       23878    Partially Protected - Default           1980    500-
## 9839       23878    Partially Protected - Default           1980    500-
## 9840       23878    Partially Protected - Default           1980    500-
## 9841       23878    Partially Protected - Default           1980    500-
## 9842       23878    Partially Protected - Default           1980    500-
## 9843       23878    Partially Protected - Default           1980    500-
## 9844       23878    Partially Protected - Default           1980    500-
## 9845       23878    Partially Protected - Default           1980    500-
## 9846       23878    Partially Protected - Default           1980    500-
## 9847       23878    Partially Protected - Default           1980    500-
## 9848       23878    Partially Protected - Default           1980    500-
## 9849       23878    Partially Protected - Default           1980    500-
## 9850       23878    Partially Protected - Default           1980    500-
## 9851       23878    Partially Protected - Default           1980    500-
## 9852       23878    Partially Protected - Default           1980    500-
## 9853       23878    Partially Protected - Default           1980    500-
## 9854       23878    Partially Protected - Default           1980    500-
## 9855       23878    Partially Protected - Default           1980    500-
## 9856       23878    Partially Protected - Default           1980    500-
## 9857       23878    Partially Protected - Default           1980    500-
## 9858       23878    Partially Protected - Default           1980    500-
## 9859       23878    Partially Protected - Default           1980    500-
## 9860       23878    Partially Protected - Default           1980    500-
## 9861       23878    Partially Protected - Default           1980    500-
## 9862       23878    Partially Protected - Default           1980    500-
## 9863       23878    Partially Protected - Default           1980    500-
## 9864       23878    Partially Protected - Default           1980    500-
## 9865       23878    Partially Protected - Default           1980    500-
## 9866       23878    Partially Protected - Default           1980    500-
## 9867       23878    Partially Protected - Default           1980    500-
## 9868       23878    Partially Protected - Default           1980    500-
## 9869       23878    Partially Protected - Default           1980    500-
## 9870       23878    Partially Protected - Default           1980    500-
## 9871       23878    Partially Protected - Default           1980    500-
## 9872       23878    Partially Protected - Default           1980    500-
## 9873       23878    Partially Protected - Default           1980    500-
## 9874       23878    Partially Protected - Default           1980    500-
## 9875       23878    Partially Protected - Default           1980    500-
## 9876       23878    Partially Protected - Default           1980    500-
## 9877       23878    Partially Protected - Default           1980    500-
## 9878       23878    Partially Protected - Default           1980    500-
## 9879       23878    Partially Protected - Default           1980    500-
## 9880       23878    Partially Protected - Default           1980    500-
## 9881       23878    Partially Protected - Default           1980    500-
## 9882       23878    Partially Protected - Default           1980    500-
## 9883       23994                             <NA>            204 100-500
## 9884       23994                             <NA>            204 100-500
## 9885       23994                             <NA>            204 100-500
## 9886       23994                             <NA>            204 100-500
## 9887       23994                             <NA>            204 100-500
## 9888       23994                             <NA>            204 100-500
## 9889       23994                             <NA>            204 100-500
## 9890       23994                             <NA>            204 100-500
## 9891       23994                             <NA>            204 100-500
## 9892       23994                             <NA>            204 100-500
## 9893       23994                             <NA>            204 100-500
## 9894       23994                             <NA>            204 100-500
## 9895       23994                             <NA>            204 100-500
## 9896       23994                             <NA>            204 100-500
## 9897       23994                             <NA>            204 100-500
## 9898       23994                             <NA>            204 100-500
## 9899       23994                             <NA>            204 100-500
## 9900       23994                             <NA>            204 100-500
## 9901       23994                             <NA>            204 100-500
## 9902       23994                             <NA>            204 100-500
## 9903       23994                             <NA>            204 100-500
## 9904       23994                             <NA>            204 100-500
## 9905       23994                             <NA>            204 100-500
## 9906       23994                             <NA>            204 100-500
## 9907       23994                             <NA>            204 100-500
## 9908       23994                             <NA>            204 100-500
## 9909       23994                             <NA>            204 100-500
## 9910       23994                             <NA>            204 100-500
## 9911       23994                             <NA>            204 100-500
## 9912       23994                             <NA>            204 100-500
## 9913       23994                             <NA>            204 100-500
## 9914       23994                             <NA>            204 100-500
## 9915       23994                             <NA>            204 100-500
## 9916       23994                             <NA>            204 100-500
## 9917       23994                             <NA>            204 100-500
## 9918       23994                             <NA>            204 100-500
## 9919       23994                             <NA>            204 100-500
## 9920       23994                             <NA>            204 100-500
## 9921       23994                             <NA>            204 100-500
## 9922       23994                             <NA>            204 100-500
## 9923       23994                             <NA>            204 100-500
## 9924       23994                             <NA>            204 100-500
## 9925       23994                             <NA>            204 100-500
## 9926       23994                             <NA>            204 100-500
## 9927       23994                             <NA>            204 100-500
## 9928       23994                             <NA>            204 100-500
## 9929       23994                             <NA>            204 100-500
## 9930       23994                             <NA>            204 100-500
## 9931       23994                             <NA>            204 100-500
## 9932       23994                             <NA>            204 100-500
## 9933       23994                             <NA>            204 100-500
## 9934       23994                             <NA>            204 100-500
## 9935       23994                             <NA>            204 100-500
## 9936       23994                             <NA>            204 100-500
## 9937       23994                             <NA>            204 100-500
## 9938       23994                             <NA>            204 100-500
## 9939       23994                             <NA>            204 100-500
## 9940       23994                             <NA>            204 100-500
## 9941       23994                             <NA>            204 100-500
## 9942       23994                             <NA>            204 100-500
## 9943       23994                             <NA>            204 100-500
## 9944       24008                             <NA>             63  25-100
## 9945       24008                             <NA>             63  25-100
## 9946       24008                             <NA>             63  25-100
## 9947       24008                             <NA>             63  25-100
## 9948       24008                             <NA>             63  25-100
## 9949       24008                             <NA>             63  25-100
## 9950       24008                             <NA>             63  25-100
## 9951       24008                             <NA>             63  25-100
## 9952       24008                             <NA>             63  25-100
## 9953       24008                             <NA>             63  25-100
## 9954       24008                             <NA>             63  25-100
## 9955       24008                             <NA>             63  25-100
## 9956       24008                             <NA>             63  25-100
## 9957       24008                             <NA>             63  25-100
## 9958       24008                             <NA>             63  25-100
## 9959       24008                             <NA>             63  25-100
## 9960       24008                             <NA>             63  25-100
## 9961       24008                             <NA>             63  25-100
## 9962       24008                             <NA>             63  25-100
## 9963       24008                             <NA>             63  25-100
## 9964       24008                             <NA>             63  25-100
## 9965       24008                             <NA>             63  25-100
## 9966       24008                             <NA>             63  25-100
## 9967       24008                             <NA>             63  25-100
## 9968       24008                             <NA>             63  25-100
## 9969       24008                             <NA>             63  25-100
## 9970       24008                             <NA>             63  25-100
## 9971       24008                             <NA>             63  25-100
## 9972       24008                             <NA>             63  25-100
## 9973       24008                             <NA>             63  25-100
## 9974       24008                             <NA>             63  25-100
## 9975       24008                             <NA>             63  25-100
## 9976       24008                             <NA>             63  25-100
## 9977       24008                             <NA>             63  25-100
## 9978       24008                             <NA>             63  25-100
## 9979       24008                             <NA>             63  25-100
## 9980       24008                             <NA>             63  25-100
## 9981       24008                             <NA>             63  25-100
## 9982       24008                             <NA>             63  25-100
## 9983       24008                             <NA>             63  25-100
## 9984       24008                             <NA>             63  25-100
## 9985       24008                             <NA>             63  25-100
## 9986       24008                             <NA>             63  25-100
## 9987       24008                             <NA>             63  25-100
## 9988       24008                             <NA>             63  25-100
## 9989       24008                             <NA>             63  25-100
## 9990       24008                             <NA>             63  25-100
## 9991       24008                             <NA>             63  25-100
## 9992       24008                             <NA>             63  25-100
## 9993       24008                             <NA>             63  25-100
## 9994       24008                             <NA>             63  25-100
## 9995       24008                             <NA>             63  25-100
## 9996       24008                             <NA>             63  25-100
## 9997       24008                             <NA>             63  25-100
## 9998       24008                             <NA>             63  25-100
## 9999       24008                             <NA>             63  25-100
## 10000      24008                             <NA>             63  25-100
## 10001      24008                             <NA>             63  25-100
## 10002      24008                             <NA>             63  25-100
## 10003      24008                             <NA>             63  25-100
## 10004      24008                             <NA>             63  25-100
## 10005      24227                             <NA>             66  25-100
## 10006      24227                             <NA>             66  25-100
## 10007      24227                             <NA>             66  25-100
## 10008      24227                             <NA>             66  25-100
## 10009      24227                             <NA>             66  25-100
## 10010      24227                             <NA>             66  25-100
## 10011      24227                             <NA>             66  25-100
## 10012      24227                             <NA>             66  25-100
## 10013      24227                             <NA>             66  25-100
## 10014      24227                             <NA>             66  25-100
## 10015      24227                             <NA>             66  25-100
## 10016      24227                             <NA>             66  25-100
## 10017      24227                             <NA>             66  25-100
## 10018      24227                             <NA>             66  25-100
## 10019      24227                             <NA>             66  25-100
## 10020      24227                             <NA>             66  25-100
## 10021      24227                             <NA>             66  25-100
## 10022      24227                             <NA>             66  25-100
## 10023      24227                             <NA>             66  25-100
## 10024      24227                             <NA>             66  25-100
## 10025      24227                             <NA>             66  25-100
## 10026      24227                             <NA>             66  25-100
## 10027      24227                             <NA>             66  25-100
## 10028      24227                             <NA>             66  25-100
## 10029      24227                             <NA>             66  25-100
## 10030      24227                             <NA>             66  25-100
## 10031      24227                             <NA>             66  25-100
## 10032      24227                             <NA>             66  25-100
## 10033      24227                             <NA>             66  25-100
## 10034      24227                             <NA>             66  25-100
## 10035      24227                             <NA>             66  25-100
## 10036      24227                             <NA>             66  25-100
## 10037      24227                             <NA>             66  25-100
## 10038      24227                             <NA>             66  25-100
## 10039      24227                             <NA>             66  25-100
## 10040      24227                             <NA>             66  25-100
## 10041      24227                             <NA>             66  25-100
## 10042      24227                             <NA>             66  25-100
## 10043      24227                             <NA>             66  25-100
## 10044      24227                             <NA>             66  25-100
## 10045      24227                             <NA>             66  25-100
## 10046      24227                             <NA>             66  25-100
## 10047      24227                             <NA>             66  25-100
## 10048      24227                             <NA>             66  25-100
## 10049      24227                             <NA>             66  25-100
## 10050      24227                             <NA>             66  25-100
## 10051      24227                             <NA>             66  25-100
## 10052      24227                             <NA>             66  25-100
## 10053      24227                             <NA>             66  25-100
## 10054      24227                             <NA>             66  25-100
## 10055      24227                             <NA>             66  25-100
## 10056      24227                             <NA>             66  25-100
## 10057      24227                             <NA>             66  25-100
## 10058      24227                             <NA>             66  25-100
## 10059      24227                             <NA>             66  25-100
## 10060      24227                             <NA>             66  25-100
## 10061      24227                             <NA>             66  25-100
## 10062      24227                             <NA>             66  25-100
## 10063      24227                             <NA>             66  25-100
## 10064      24227                             <NA>             66  25-100
## 10065      24227                             <NA>             66  25-100
## 10066      24245                             <NA>            203 100-500
## 10067      24245                             <NA>            203 100-500
## 10068      24245                             <NA>            203 100-500
## 10069      24245                             <NA>            203 100-500
## 10070      24245                             <NA>            203 100-500
## 10071      24245                             <NA>            203 100-500
## 10072      24245                             <NA>            203 100-500
## 10073      24245                             <NA>            203 100-500
## 10074      24245                             <NA>            203 100-500
## 10075      24245                             <NA>            203 100-500
## 10076      24245                             <NA>            203 100-500
## 10077      24245                             <NA>            203 100-500
## 10078      24245                             <NA>            203 100-500
## 10079      24245                             <NA>            203 100-500
## 10080      24245                             <NA>            203 100-500
## 10081      24245                             <NA>            203 100-500
## 10082      24245                             <NA>            203 100-500
## 10083      24245                             <NA>            203 100-500
## 10084      24245                             <NA>            203 100-500
## 10085      24245                             <NA>            203 100-500
## 10086      24245                             <NA>            203 100-500
## 10087      24245                             <NA>            203 100-500
## 10088      24245                             <NA>            203 100-500
## 10089      24245                             <NA>            203 100-500
## 10090      24245                             <NA>            203 100-500
## 10091      24245                             <NA>            203 100-500
## 10092      24245                             <NA>            203 100-500
## 10093      24245                             <NA>            203 100-500
## 10094      24245                             <NA>            203 100-500
## 10095      24245                             <NA>            203 100-500
## 10096      24245                             <NA>            203 100-500
## 10097      24245                             <NA>            203 100-500
## 10098      24245                             <NA>            203 100-500
## 10099      24245                             <NA>            203 100-500
## 10100      24245                             <NA>            203 100-500
## 10101      24245                             <NA>            203 100-500
## 10102      24245                             <NA>            203 100-500
## 10103      24245                             <NA>            203 100-500
## 10104      24245                             <NA>            203 100-500
## 10105      24245                             <NA>            203 100-500
## 10106      24245                             <NA>            203 100-500
## 10107      24245                             <NA>            203 100-500
## 10108      24245                             <NA>            203 100-500
## 10109      24245                             <NA>            203 100-500
## 10110      24245                             <NA>            203 100-500
## 10111      24245                             <NA>            203 100-500
## 10112      24245                             <NA>            203 100-500
## 10113      24245                             <NA>            203 100-500
## 10114      24245                             <NA>            203 100-500
## 10115      24245                             <NA>            203 100-500
## 10116      24245                             <NA>            203 100-500
## 10117      24245                             <NA>            203 100-500
## 10118      24245                             <NA>            203 100-500
## 10119      24245                             <NA>            203 100-500
## 10120      24245                             <NA>            203 100-500
## 10121      24245                             <NA>            203 100-500
## 10122      24245                             <NA>            203 100-500
## 10123      24245                             <NA>            203 100-500
## 10124      24245                             <NA>            203 100-500
## 10125      24245                             <NA>            203 100-500
## 10126      24245                             <NA>            203 100-500
## 10127      24454                             <NA>             94  25-100
## 10128      24454                             <NA>             94  25-100
## 10129      24454                             <NA>             94  25-100
## 10130      24454                             <NA>             94  25-100
## 10131      24454                             <NA>             94  25-100
## 10132      24454                             <NA>             94  25-100
## 10133      24454                             <NA>             94  25-100
## 10134      24454                             <NA>             94  25-100
## 10135      24454                             <NA>             94  25-100
## 10136      24454                             <NA>             94  25-100
## 10137      24454                             <NA>             94  25-100
## 10138      24454                             <NA>             94  25-100
## 10139      24454                             <NA>             94  25-100
## 10140      24454                             <NA>             94  25-100
## 10141      24454                             <NA>             94  25-100
## 10142      24454                             <NA>             94  25-100
## 10143      24454                             <NA>             94  25-100
## 10144      24454                             <NA>             94  25-100
## 10145      24454                             <NA>             94  25-100
## 10146      24454                             <NA>             94  25-100
## 10147      24454                             <NA>             94  25-100
## 10148      24454                             <NA>             94  25-100
## 10149      24454                             <NA>             94  25-100
## 10150      24454                             <NA>             94  25-100
## 10151      24454                             <NA>             94  25-100
## 10152      24454                             <NA>             94  25-100
## 10153      24454                             <NA>             94  25-100
## 10154      24454                             <NA>             94  25-100
## 10155      24454                             <NA>             94  25-100
## 10156      24454                             <NA>             94  25-100
## 10157      24454                             <NA>             94  25-100
## 10158      24454                             <NA>             94  25-100
## 10159      24454                             <NA>             94  25-100
## 10160      24454                             <NA>             94  25-100
## 10161      24454                             <NA>             94  25-100
## 10162      24454                             <NA>             94  25-100
## 10163      24454                             <NA>             94  25-100
## 10164      24454                             <NA>             94  25-100
## 10165      24454                             <NA>             94  25-100
## 10166      24454                             <NA>             94  25-100
## 10167      24454                             <NA>             94  25-100
## 10168      24454                             <NA>             94  25-100
## 10169      24454                             <NA>             94  25-100
## 10170      24454                             <NA>             94  25-100
## 10171      24454                             <NA>             94  25-100
## 10172      24454                             <NA>             94  25-100
## 10173      24454                             <NA>             94  25-100
## 10174      24454                             <NA>             94  25-100
## 10175      24454                             <NA>             94  25-100
## 10176      24454                             <NA>             94  25-100
## 10177      24454                             <NA>             94  25-100
## 10178      24454                             <NA>             94  25-100
## 10179      24454                             <NA>             94  25-100
## 10180      24454                             <NA>             94  25-100
## 10181      24454                             <NA>             94  25-100
## 10182      24454                             <NA>             94  25-100
## 10183      24454                             <NA>             94  25-100
## 10184      24454                             <NA>             94  25-100
## 10185      24454                             <NA>             94  25-100
## 10186      24454                             <NA>             94  25-100
## 10187      24454                             <NA>             94  25-100
## 10188      24508    Partially Protected - Default           1305    500-
## 10189      24508    Partially Protected - Default           1305    500-
## 10190      24508    Partially Protected - Default           1305    500-
## 10191      24508    Partially Protected - Default           1305    500-
## 10192      24508    Partially Protected - Default           1305    500-
## 10193      24508    Partially Protected - Default           1305    500-
## 10194      24508    Partially Protected - Default           1305    500-
## 10195      24508    Partially Protected - Default           1305    500-
## 10196      24508    Partially Protected - Default           1305    500-
## 10197      24508    Partially Protected - Default           1305    500-
## 10198      24508    Partially Protected - Default           1305    500-
## 10199      24508    Partially Protected - Default           1305    500-
## 10200      24508    Partially Protected - Default           1305    500-
## 10201      24508    Partially Protected - Default           1305    500-
## 10202      24508    Partially Protected - Default           1305    500-
## 10203      24508    Partially Protected - Default           1305    500-
## 10204      24508    Partially Protected - Default           1305    500-
## 10205      24508    Partially Protected - Default           1305    500-
## 10206      24508    Partially Protected - Default           1305    500-
## 10207      24508    Partially Protected - Default           1305    500-
## 10208      24508    Partially Protected - Default           1305    500-
## 10209      24508    Partially Protected - Default           1305    500-
## 10210      24508    Partially Protected - Default           1305    500-
## 10211      24508    Partially Protected - Default           1305    500-
## 10212      24508    Partially Protected - Default           1305    500-
## 10213      24508    Partially Protected - Default           1305    500-
## 10214      24508    Partially Protected - Default           1305    500-
## 10215      24508    Partially Protected - Default           1305    500-
## 10216      24508    Partially Protected - Default           1305    500-
## 10217      24508    Partially Protected - Default           1305    500-
## 10218      24508    Partially Protected - Default           1305    500-
## 10219      24508    Partially Protected - Default           1305    500-
## 10220      24508    Partially Protected - Default           1305    500-
## 10221      24508    Partially Protected - Default           1305    500-
## 10222      24508    Partially Protected - Default           1305    500-
## 10223      24508    Partially Protected - Default           1305    500-
## 10224      24508    Partially Protected - Default           1305    500-
## 10225      24508    Partially Protected - Default           1305    500-
## 10226      24508    Partially Protected - Default           1305    500-
## 10227      24508    Partially Protected - Default           1305    500-
## 10228      24508    Partially Protected - Default           1305    500-
## 10229      24508    Partially Protected - Default           1305    500-
## 10230      24508    Partially Protected - Default           1305    500-
## 10231      24508    Partially Protected - Default           1305    500-
## 10232      24508    Partially Protected - Default           1305    500-
## 10233      24508    Partially Protected - Default           1305    500-
## 10234      24508    Partially Protected - Default           1305    500-
## 10235      24508    Partially Protected - Default           1305    500-
## 10236      24508    Partially Protected - Default           1305    500-
## 10237      24508    Partially Protected - Default           1305    500-
## 10238      24508    Partially Protected - Default           1305    500-
## 10239      24508    Partially Protected - Default           1305    500-
## 10240      24508    Partially Protected - Default           1305    500-
## 10241      24508    Partially Protected - Default           1305    500-
## 10242      24508    Partially Protected - Default           1305    500-
## 10243      24508    Partially Protected - Default           1305    500-
## 10244      24508    Partially Protected - Default           1305    500-
## 10245      24508    Partially Protected - Default           1305    500-
## 10246      24508    Partially Protected - Default           1305    500-
## 10247      24508    Partially Protected - Default           1305    500-
## 10248      24508    Partially Protected - Default           1305    500-
## 10249      24512                             <NA>            156 100-500
## 10250      24512                             <NA>            156 100-500
## 10251      24512                             <NA>            156 100-500
## 10252      24512                             <NA>            156 100-500
## 10253      24512                             <NA>            156 100-500
## 10254      24512                             <NA>            156 100-500
## 10255      24512                             <NA>            156 100-500
## 10256      24512                             <NA>            156 100-500
## 10257      24512                             <NA>            156 100-500
## 10258      24512                             <NA>            156 100-500
## 10259      24512                             <NA>            156 100-500
## 10260      24512                             <NA>            156 100-500
## 10261      24512                             <NA>            156 100-500
## 10262      24512                             <NA>            156 100-500
## 10263      24512                             <NA>            156 100-500
## 10264      24512                             <NA>            156 100-500
## 10265      24512                             <NA>            156 100-500
## 10266      24512                             <NA>            156 100-500
## 10267      24512                             <NA>            156 100-500
## 10268      24512                             <NA>            156 100-500
## 10269      24512                             <NA>            156 100-500
## 10270      24512                             <NA>            156 100-500
## 10271      24512                             <NA>            156 100-500
## 10272      24512                             <NA>            156 100-500
## 10273      24512                             <NA>            156 100-500
## 10274      24512                             <NA>            156 100-500
## 10275      24512                             <NA>            156 100-500
## 10276      24512                             <NA>            156 100-500
## 10277      24512                             <NA>            156 100-500
## 10278      24512                             <NA>            156 100-500
## 10279      24512                             <NA>            156 100-500
## 10280      24512                             <NA>            156 100-500
## 10281      24512                             <NA>            156 100-500
## 10282      24512                             <NA>            156 100-500
## 10283      24512                             <NA>            156 100-500
## 10284      24512                             <NA>            156 100-500
## 10285      24512                             <NA>            156 100-500
## 10286      24512                             <NA>            156 100-500
## 10287      24512                             <NA>            156 100-500
## 10288      24512                             <NA>            156 100-500
## 10289      24512                             <NA>            156 100-500
## 10290      24512                             <NA>            156 100-500
## 10291      24512                             <NA>            156 100-500
## 10292      24512                             <NA>            156 100-500
## 10293      24512                             <NA>            156 100-500
## 10294      24512                             <NA>            156 100-500
## 10295      24512                             <NA>            156 100-500
## 10296      24512                             <NA>            156 100-500
## 10297      24512                             <NA>            156 100-500
## 10298      24512                             <NA>            156 100-500
## 10299      24512                             <NA>            156 100-500
## 10300      24512                             <NA>            156 100-500
## 10301      24512                             <NA>            156 100-500
## 10302      24512                             <NA>            156 100-500
## 10303      24512                             <NA>            156 100-500
## 10304      24512                             <NA>            156 100-500
## 10305      24512                             <NA>            156 100-500
## 10306      24512                             <NA>            156 100-500
## 10307      24512                             <NA>            156 100-500
## 10308      24512                             <NA>            156 100-500
## 10309      24512                             <NA>            156 100-500
## 10310      24529                             <NA>             42  25-100
## 10311      24529                             <NA>             42  25-100
## 10312      24529                             <NA>             42  25-100
## 10313      24529                             <NA>             42  25-100
## 10314      24529                             <NA>             42  25-100
## 10315      24529                             <NA>             42  25-100
## 10316      24529                             <NA>             42  25-100
## 10317      24529                             <NA>             42  25-100
## 10318      24529                             <NA>             42  25-100
## 10319      24529                             <NA>             42  25-100
## 10320      24529                             <NA>             42  25-100
## 10321      24529                             <NA>             42  25-100
## 10322      24529                             <NA>             42  25-100
## 10323      24529                             <NA>             42  25-100
## 10324      24529                             <NA>             42  25-100
## 10325      24529                             <NA>             42  25-100
## 10326      24529                             <NA>             42  25-100
## 10327      24529                             <NA>             42  25-100
## 10328      24529                             <NA>             42  25-100
## 10329      24529                             <NA>             42  25-100
## 10330      24529                             <NA>             42  25-100
## 10331      24529                             <NA>             42  25-100
## 10332      24529                             <NA>             42  25-100
## 10333      24529                             <NA>             42  25-100
## 10334      24529                             <NA>             42  25-100
## 10335      24529                             <NA>             42  25-100
## 10336      24529                             <NA>             42  25-100
## 10337      24529                             <NA>             42  25-100
## 10338      24529                             <NA>             42  25-100
## 10339      24529                             <NA>             42  25-100
## 10340      24529                             <NA>             42  25-100
## 10341      24529                             <NA>             42  25-100
## 10342      24529                             <NA>             42  25-100
## 10343      24529                             <NA>             42  25-100
## 10344      24529                             <NA>             42  25-100
## 10345      24529                             <NA>             42  25-100
## 10346      24529                             <NA>             42  25-100
## 10347      24529                             <NA>             42  25-100
## 10348      24529                             <NA>             42  25-100
## 10349      24529                             <NA>             42  25-100
## 10350      24529                             <NA>             42  25-100
## 10351      24529                             <NA>             42  25-100
## 10352      24529                             <NA>             42  25-100
## 10353      24529                             <NA>             42  25-100
## 10354      24529                             <NA>             42  25-100
## 10355      24529                             <NA>             42  25-100
## 10356      24529                             <NA>             42  25-100
## 10357      24529                             <NA>             42  25-100
## 10358      24529                             <NA>             42  25-100
## 10359      24529                             <NA>             42  25-100
## 10360      24529                             <NA>             42  25-100
## 10361      24529                             <NA>             42  25-100
## 10362      24529                             <NA>             42  25-100
## 10363      24529                             <NA>             42  25-100
## 10364      24529                             <NA>             42  25-100
## 10365      24529                             <NA>             42  25-100
## 10366      24529                             <NA>             42  25-100
## 10367      24529                             <NA>             42  25-100
## 10368      24529                             <NA>             42  25-100
## 10369      24529                             <NA>             42  25-100
## 10370      24529                             <NA>             42  25-100
## 10371      24635                             <NA>            125 100-500
## 10372      24635                             <NA>            125 100-500
## 10373      24635                             <NA>            125 100-500
## 10374      24635                             <NA>            125 100-500
## 10375      24635                             <NA>            125 100-500
## 10376      24635                             <NA>            125 100-500
## 10377      24635                             <NA>            125 100-500
## 10378      24635                             <NA>            125 100-500
## 10379      24635                             <NA>            125 100-500
## 10380      24635                             <NA>            125 100-500
## 10381      24635                             <NA>            125 100-500
## 10382      24635                             <NA>            125 100-500
## 10383      24635                             <NA>            125 100-500
## 10384      24635                             <NA>            125 100-500
## 10385      24635                             <NA>            125 100-500
## 10386      24635                             <NA>            125 100-500
## 10387      24635                             <NA>            125 100-500
## 10388      24635                             <NA>            125 100-500
## 10389      24635                             <NA>            125 100-500
## 10390      24635                             <NA>            125 100-500
## 10391      24635                             <NA>            125 100-500
## 10392      24635                             <NA>            125 100-500
## 10393      24635                             <NA>            125 100-500
## 10394      24635                             <NA>            125 100-500
## 10395      24635                             <NA>            125 100-500
## 10396      24635                             <NA>            125 100-500
## 10397      24635                             <NA>            125 100-500
## 10398      24635                             <NA>            125 100-500
## 10399      24635                             <NA>            125 100-500
## 10400      24635                             <NA>            125 100-500
## 10401      24635                             <NA>            125 100-500
## 10402      24635                             <NA>            125 100-500
## 10403      24635                             <NA>            125 100-500
## 10404      24635                             <NA>            125 100-500
## 10405      24635                             <NA>            125 100-500
## 10406      24635                             <NA>            125 100-500
## 10407      24635                             <NA>            125 100-500
## 10408      24635                             <NA>            125 100-500
## 10409      24635                             <NA>            125 100-500
## 10410      24635                             <NA>            125 100-500
## 10411      24635                             <NA>            125 100-500
## 10412      24635                             <NA>            125 100-500
## 10413      24635                             <NA>            125 100-500
## 10414      24635                             <NA>            125 100-500
## 10415      24635                             <NA>            125 100-500
## 10416      24635                             <NA>            125 100-500
## 10417      24635                             <NA>            125 100-500
## 10418      24635                             <NA>            125 100-500
## 10419      24635                             <NA>            125 100-500
## 10420      24635                             <NA>            125 100-500
## 10421      24635                             <NA>            125 100-500
## 10422      24635                             <NA>            125 100-500
## 10423      24635                             <NA>            125 100-500
## 10424      24635                             <NA>            125 100-500
## 10425      24635                             <NA>            125 100-500
## 10426      24635                             <NA>            125 100-500
## 10427      24635                             <NA>            125 100-500
## 10428      24635                             <NA>            125 100-500
## 10429      24635                             <NA>            125 100-500
## 10430      24635                             <NA>            125 100-500
## 10431      24635                             <NA>            125 100-500
## 10432      24780                             <NA>             98  25-100
## 10433      24780                             <NA>             98  25-100
## 10434      24780                             <NA>             98  25-100
## 10435      24780                             <NA>             98  25-100
## 10436      24780                             <NA>             98  25-100
## 10437      24780                             <NA>             98  25-100
## 10438      24780                             <NA>             98  25-100
## 10439      24780                             <NA>             98  25-100
## 10440      24780                             <NA>             98  25-100
## 10441      24780                             <NA>             98  25-100
## 10442      24780                             <NA>             98  25-100
## 10443      24780                             <NA>             98  25-100
## 10444      24780                             <NA>             98  25-100
## 10445      24780                             <NA>             98  25-100
## 10446      24780                             <NA>             98  25-100
## 10447      24780                             <NA>             98  25-100
## 10448      24780                             <NA>             98  25-100
## 10449      24780                             <NA>             98  25-100
## 10450      24780                             <NA>             98  25-100
## 10451      24780                             <NA>             98  25-100
## 10452      24780                             <NA>             98  25-100
## 10453      24780                             <NA>             98  25-100
## 10454      24780                             <NA>             98  25-100
## 10455      24780                             <NA>             98  25-100
## 10456      24780                             <NA>             98  25-100
## 10457      24780                             <NA>             98  25-100
## 10458      24780                             <NA>             98  25-100
## 10459      24780                             <NA>             98  25-100
## 10460      24780                             <NA>             98  25-100
## 10461      24780                             <NA>             98  25-100
## 10462      24780                             <NA>             98  25-100
## 10463      24780                             <NA>             98  25-100
## 10464      24780                             <NA>             98  25-100
## 10465      24780                             <NA>             98  25-100
## 10466      24780                             <NA>             98  25-100
## 10467      24780                             <NA>             98  25-100
## 10468      24780                             <NA>             98  25-100
## 10469      24780                             <NA>             98  25-100
## 10470      24780                             <NA>             98  25-100
## 10471      24780                             <NA>             98  25-100
## 10472      24780                             <NA>             98  25-100
## 10473      24780                             <NA>             98  25-100
## 10474      24780                             <NA>             98  25-100
## 10475      24780                             <NA>             98  25-100
## 10476      24780                             <NA>             98  25-100
## 10477      24780                             <NA>             98  25-100
## 10478      24780                             <NA>             98  25-100
## 10479      24780                             <NA>             98  25-100
## 10480      24780                             <NA>             98  25-100
## 10481      24780                             <NA>             98  25-100
## 10482      24780                             <NA>             98  25-100
## 10483      24780                             <NA>             98  25-100
## 10484      24780                             <NA>             98  25-100
## 10485      24780                             <NA>             98  25-100
## 10486      24780                             <NA>             98  25-100
## 10487      24780                             <NA>             98  25-100
## 10488      24780                             <NA>             98  25-100
## 10489      24780                             <NA>             98  25-100
## 10490      24780                             <NA>             98  25-100
## 10491      24780                             <NA>             98  25-100
## 10492      24780                             <NA>             98  25-100
## 10493      24830                             <NA>            146 100-500
## 10494      24830                             <NA>            146 100-500
## 10495      24830                             <NA>            146 100-500
## 10496      24830                             <NA>            146 100-500
## 10497      24830                             <NA>            146 100-500
## 10498      24830                             <NA>            146 100-500
## 10499      24830                             <NA>            146 100-500
## 10500      24830                             <NA>            146 100-500
## 10501      24830                             <NA>            146 100-500
## 10502      24830                             <NA>            146 100-500
## 10503      24830                             <NA>            146 100-500
## 10504      24830                             <NA>            146 100-500
## 10505      24830                             <NA>            146 100-500
## 10506      24830                             <NA>            146 100-500
## 10507      24830                             <NA>            146 100-500
## 10508      24830                             <NA>            146 100-500
## 10509      24830                             <NA>            146 100-500
## 10510      24830                             <NA>            146 100-500
## 10511      24830                             <NA>            146 100-500
## 10512      24830                             <NA>            146 100-500
## 10513      24830                             <NA>            146 100-500
## 10514      24830                             <NA>            146 100-500
## 10515      24830                             <NA>            146 100-500
## 10516      24830                             <NA>            146 100-500
## 10517      24830                             <NA>            146 100-500
## 10518      24830                             <NA>            146 100-500
## 10519      24830                             <NA>            146 100-500
## 10520      24830                             <NA>            146 100-500
## 10521      24830                             <NA>            146 100-500
## 10522      24830                             <NA>            146 100-500
## 10523      24830                             <NA>            146 100-500
## 10524      24830                             <NA>            146 100-500
## 10525      24830                             <NA>            146 100-500
## 10526      24830                             <NA>            146 100-500
## 10527      24830                             <NA>            146 100-500
## 10528      24830                             <NA>            146 100-500
## 10529      24830                             <NA>            146 100-500
## 10530      24830                             <NA>            146 100-500
## 10531      24830                             <NA>            146 100-500
## 10532      24830                             <NA>            146 100-500
## 10533      24830                             <NA>            146 100-500
## 10534      24830                             <NA>            146 100-500
## 10535      24830                             <NA>            146 100-500
## 10536      24830                             <NA>            146 100-500
## 10537      24830                             <NA>            146 100-500
## 10538      24830                             <NA>            146 100-500
## 10539      24830                             <NA>            146 100-500
## 10540      24830                             <NA>            146 100-500
## 10541      24830                             <NA>            146 100-500
## 10542      24830                             <NA>            146 100-500
## 10543      24830                             <NA>            146 100-500
## 10544      24830                             <NA>            146 100-500
## 10545      24830                             <NA>            146 100-500
## 10546      24830                             <NA>            146 100-500
## 10547      24830                             <NA>            146 100-500
## 10548      24830                             <NA>            146 100-500
## 10549      24830                             <NA>            146 100-500
## 10550      24830                             <NA>            146 100-500
## 10551      24830                             <NA>            146 100-500
## 10552      24830                             <NA>            146 100-500
## 10553      24830                             <NA>            146 100-500
## 10554      24844                             <NA>             29  25-100
## 10555      24844                             <NA>             29  25-100
## 10556      24844                             <NA>             29  25-100
## 10557      24844                             <NA>             29  25-100
## 10558      24844                             <NA>             29  25-100
## 10559      24844                             <NA>             29  25-100
## 10560      24844                             <NA>             29  25-100
## 10561      24844                             <NA>             29  25-100
## 10562      24844                             <NA>             29  25-100
## 10563      24844                             <NA>             29  25-100
## 10564      24844                             <NA>             29  25-100
## 10565      24844                             <NA>             29  25-100
## 10566      24844                             <NA>             29  25-100
## 10567      24844                             <NA>             29  25-100
## 10568      24844                             <NA>             29  25-100
## 10569      24844                             <NA>             29  25-100
## 10570      24844                             <NA>             29  25-100
## 10571      24844                             <NA>             29  25-100
## 10572      24844                             <NA>             29  25-100
## 10573      24844                             <NA>             29  25-100
## 10574      24844                             <NA>             29  25-100
## 10575      24844                             <NA>             29  25-100
## 10576      24844                             <NA>             29  25-100
## 10577      24844                             <NA>             29  25-100
## 10578      24844                             <NA>             29  25-100
## 10579      24844                             <NA>             29  25-100
## 10580      24844                             <NA>             29  25-100
## 10581      24844                             <NA>             29  25-100
## 10582      24844                             <NA>             29  25-100
## 10583      24844                             <NA>             29  25-100
## 10584      24844                             <NA>             29  25-100
## 10585      24844                             <NA>             29  25-100
## 10586      24844                             <NA>             29  25-100
## 10587      24844                             <NA>             29  25-100
## 10588      24844                             <NA>             29  25-100
## 10589      24844                             <NA>             29  25-100
## 10590      24844                             <NA>             29  25-100
## 10591      24844                             <NA>             29  25-100
## 10592      24844                             <NA>             29  25-100
## 10593      24844                             <NA>             29  25-100
## 10594      24844                             <NA>             29  25-100
## 10595      24844                             <NA>             29  25-100
## 10596      24844                             <NA>             29  25-100
## 10597      24844                             <NA>             29  25-100
## 10598      24844                             <NA>             29  25-100
## 10599      24844                             <NA>             29  25-100
## 10600      24844                             <NA>             29  25-100
## 10601      24844                             <NA>             29  25-100
## 10602      24844                             <NA>             29  25-100
## 10603      24844                             <NA>             29  25-100
## 10604      24844                             <NA>             29  25-100
## 10605      24844                             <NA>             29  25-100
## 10606      24844                             <NA>             29  25-100
## 10607      24844                             <NA>             29  25-100
## 10608      24844                             <NA>             29  25-100
## 10609      24844                             <NA>             29  25-100
## 10610      24844                             <NA>             29  25-100
## 10611      24844                             <NA>             29  25-100
## 10612      24844                             <NA>             29  25-100
## 10613      24844                             <NA>             29  25-100
## 10614      24844                             <NA>             29  25-100
## 10615      24934                             <NA>              9    3-10
## 10616      24934                             <NA>              9    3-10
## 10617      24934                             <NA>              9    3-10
## 10618      24934                             <NA>              9    3-10
## 10619      24934                             <NA>              9    3-10
## 10620      24934                             <NA>              9    3-10
## 10621      24934                             <NA>              9    3-10
## 10622      24934                             <NA>              9    3-10
## 10623      24934                             <NA>              9    3-10
## 10624      24934                             <NA>              9    3-10
## 10625      24934                             <NA>              9    3-10
## 10626      24934                             <NA>              9    3-10
## 10627      24934                             <NA>              9    3-10
## 10628      24934                             <NA>              9    3-10
## 10629      24934                             <NA>              9    3-10
## 10630      24934                             <NA>              9    3-10
## 10631      24934                             <NA>              9    3-10
## 10632      24934                             <NA>              9    3-10
## 10633      24934                             <NA>              9    3-10
## 10634      24934                             <NA>              9    3-10
## 10635      24934                             <NA>              9    3-10
## 10636      24934                             <NA>              9    3-10
## 10637      24934                             <NA>              9    3-10
## 10638      24934                             <NA>              9    3-10
## 10639      24934                             <NA>              9    3-10
## 10640      24934                             <NA>              9    3-10
## 10641      24934                             <NA>              9    3-10
## 10642      24934                             <NA>              9    3-10
## 10643      24934                             <NA>              9    3-10
## 10644      24934                             <NA>              9    3-10
## 10645      24934                             <NA>              9    3-10
## 10646      24934                             <NA>              9    3-10
## 10647      24934                             <NA>              9    3-10
## 10648      24934                             <NA>              9    3-10
## 10649      24934                             <NA>              9    3-10
## 10650      24934                             <NA>              9    3-10
## 10651      24934                             <NA>              9    3-10
## 10652      24934                             <NA>              9    3-10
## 10653      24934                             <NA>              9    3-10
## 10654      24934                             <NA>              9    3-10
## 10655      24934                             <NA>              9    3-10
## 10656      24934                             <NA>              9    3-10
## 10657      24934                             <NA>              9    3-10
## 10658      24934                             <NA>              9    3-10
## 10659      24934                             <NA>              9    3-10
## 10660      24934                             <NA>              9    3-10
## 10661      24934                             <NA>              9    3-10
## 10662      24934                             <NA>              9    3-10
## 10663      24934                             <NA>              9    3-10
## 10664      24934                             <NA>              9    3-10
## 10665      24934                             <NA>              9    3-10
## 10666      24934                             <NA>              9    3-10
## 10667      24934                             <NA>              9    3-10
## 10668      24934                             <NA>              9    3-10
## 10669      24934                             <NA>              9    3-10
## 10670      24934                             <NA>              9    3-10
## 10671      24934                             <NA>              9    3-10
## 10672      24934                             <NA>              9    3-10
## 10673      24934                             <NA>              9    3-10
## 10674      24934                             <NA>              9    3-10
## 10675      24934                             <NA>              9    3-10
## 10676      25041                             <NA>            525    500-
## 10677      25041                             <NA>            525    500-
## 10678      25041                             <NA>            525    500-
## 10679      25041                             <NA>            525    500-
## 10680      25041                             <NA>            525    500-
## 10681      25041                             <NA>            525    500-
## 10682      25041                             <NA>            525    500-
## 10683      25041                             <NA>            525    500-
## 10684      25041                             <NA>            525    500-
## 10685      25041                             <NA>            525    500-
## 10686      25041                             <NA>            525    500-
## 10687      25041                             <NA>            525    500-
## 10688      25041                             <NA>            525    500-
## 10689      25041                             <NA>            525    500-
## 10690      25041                             <NA>            525    500-
## 10691      25041                             <NA>            525    500-
## 10692      25041                             <NA>            525    500-
## 10693      25041                             <NA>            525    500-
## 10694      25041                             <NA>            525    500-
## 10695      25041                             <NA>            525    500-
## 10696      25041                             <NA>            525    500-
## 10697      25041                             <NA>            525    500-
## 10698      25041                             <NA>            525    500-
## 10699      25041                             <NA>            525    500-
## 10700      25041                             <NA>            525    500-
## 10701      25041                             <NA>            525    500-
## 10702      25041                             <NA>            525    500-
## 10703      25041                             <NA>            525    500-
## 10704      25041                             <NA>            525    500-
## 10705      25041                             <NA>            525    500-
## 10706      25041                             <NA>            525    500-
## 10707      25041                             <NA>            525    500-
## 10708      25041                             <NA>            525    500-
## 10709      25041                             <NA>            525    500-
## 10710      25041                             <NA>            525    500-
## 10711      25041                             <NA>            525    500-
## 10712      25041                             <NA>            525    500-
## 10713      25041                             <NA>            525    500-
## 10714      25041                             <NA>            525    500-
## 10715      25041                             <NA>            525    500-
## 10716      25041                             <NA>            525    500-
## 10717      25041                             <NA>            525    500-
## 10718      25041                             <NA>            525    500-
## 10719      25041                             <NA>            525    500-
## 10720      25041                             <NA>            525    500-
## 10721      25041                             <NA>            525    500-
## 10722      25041                             <NA>            525    500-
## 10723      25041                             <NA>            525    500-
## 10724      25041                             <NA>            525    500-
## 10725      25041                             <NA>            525    500-
## 10726      25041                             <NA>            525    500-
## 10727      25041                             <NA>            525    500-
## 10728      25041                             <NA>            525    500-
## 10729      25041                             <NA>            525    500-
## 10730      25041                             <NA>            525    500-
## 10731      25041                             <NA>            525    500-
## 10732      25041                             <NA>            525    500-
## 10733      25041                             <NA>            525    500-
## 10734      25041                             <NA>            525    500-
## 10735      25041                             <NA>            525    500-
## 10736      25041                             <NA>            525    500-
## 10737      25150                             <NA>              1     1-2
## 10738      25150                             <NA>              1     1-2
## 10739      25150                             <NA>              1     1-2
## 10740      25150                             <NA>              1     1-2
## 10741      25150                             <NA>              1     1-2
## 10742      25150                             <NA>              1     1-2
## 10743      25150                             <NA>              1     1-2
## 10744      25150                             <NA>              1     1-2
## 10745      25150                             <NA>              1     1-2
## 10746      25150                             <NA>              1     1-2
## 10747      25150                             <NA>              1     1-2
## 10748      25150                             <NA>              1     1-2
## 10749      25150                             <NA>              1     1-2
## 10750      25150                             <NA>              1     1-2
## 10751      25150                             <NA>              1     1-2
## 10752      25150                             <NA>              1     1-2
## 10753      25150                             <NA>              1     1-2
## 10754      25150                             <NA>              1     1-2
## 10755      25150                             <NA>              1     1-2
## 10756      25150                             <NA>              1     1-2
## 10757      25150                             <NA>              1     1-2
## 10758      25150                             <NA>              1     1-2
## 10759      25150                             <NA>              1     1-2
## 10760      25150                             <NA>              1     1-2
## 10761      25150                             <NA>              1     1-2
## 10762      25150                             <NA>              1     1-2
## 10763      25150                             <NA>              1     1-2
## 10764      25150                             <NA>              1     1-2
## 10765      25150                             <NA>              1     1-2
## 10766      25150                             <NA>              1     1-2
## 10767      25150                             <NA>              1     1-2
## 10768      25150                             <NA>              1     1-2
## 10769      25150                             <NA>              1     1-2
## 10770      25150                             <NA>              1     1-2
## 10771      25150                             <NA>              1     1-2
## 10772      25150                             <NA>              1     1-2
## 10773      25150                             <NA>              1     1-2
## 10774      25150                             <NA>              1     1-2
## 10775      25150                             <NA>              1     1-2
## 10776      25150                             <NA>              1     1-2
## 10777      25150                             <NA>              1     1-2
## 10778      25150                             <NA>              1     1-2
## 10779      25150                             <NA>              1     1-2
## 10780      25150                             <NA>              1     1-2
## 10781      25150                             <NA>              1     1-2
## 10782      25150                             <NA>              1     1-2
## 10783      25150                             <NA>              1     1-2
## 10784      25150                             <NA>              1     1-2
## 10785      25150                             <NA>              1     1-2
## 10786      25150                             <NA>              1     1-2
## 10787      25150                             <NA>              1     1-2
## 10788      25150                             <NA>              1     1-2
## 10789      25150                             <NA>              1     1-2
## 10790      25150                             <NA>              1     1-2
## 10791      25150                             <NA>              1     1-2
## 10792      25150                             <NA>              1     1-2
## 10793      25150                             <NA>              1     1-2
## 10794      25150                             <NA>              1     1-2
## 10795      25150                             <NA>              1     1-2
## 10796      25150                             <NA>              1     1-2
## 10797      25150                             <NA>              1     1-2
## 10798      25265                             <NA>            107 100-500
## 10799      25265                             <NA>            107 100-500
## 10800      25265                             <NA>            107 100-500
## 10801      25265                             <NA>            107 100-500
## 10802      25265                             <NA>            107 100-500
## 10803      25265                             <NA>            107 100-500
## 10804      25265                             <NA>            107 100-500
## 10805      25265                             <NA>            107 100-500
## 10806      25265                             <NA>            107 100-500
## 10807      25265                             <NA>            107 100-500
## 10808      25265                             <NA>            107 100-500
## 10809      25265                             <NA>            107 100-500
## 10810      25265                             <NA>            107 100-500
## 10811      25265                             <NA>            107 100-500
## 10812      25265                             <NA>            107 100-500
## 10813      25265                             <NA>            107 100-500
## 10814      25265                             <NA>            107 100-500
## 10815      25265                             <NA>            107 100-500
## 10816      25265                             <NA>            107 100-500
## 10817      25265                             <NA>            107 100-500
## 10818      25265                             <NA>            107 100-500
## 10819      25265                             <NA>            107 100-500
## 10820      25265                             <NA>            107 100-500
## 10821      25265                             <NA>            107 100-500
## 10822      25265                             <NA>            107 100-500
## 10823      25265                             <NA>            107 100-500
## 10824      25265                             <NA>            107 100-500
## 10825      25265                             <NA>            107 100-500
## 10826      25265                             <NA>            107 100-500
## 10827      25265                             <NA>            107 100-500
## 10828      25265                             <NA>            107 100-500
## 10829      25265                             <NA>            107 100-500
## 10830      25265                             <NA>            107 100-500
## 10831      25265                             <NA>            107 100-500
## 10832      25265                             <NA>            107 100-500
## 10833      25265                             <NA>            107 100-500
## 10834      25265                             <NA>            107 100-500
## 10835      25265                             <NA>            107 100-500
## 10836      25265                             <NA>            107 100-500
## 10837      25265                             <NA>            107 100-500
## 10838      25265                             <NA>            107 100-500
## 10839      25265                             <NA>            107 100-500
## 10840      25265                             <NA>            107 100-500
## 10841      25265                             <NA>            107 100-500
## 10842      25265                             <NA>            107 100-500
## 10843      25265                             <NA>            107 100-500
## 10844      25265                             <NA>            107 100-500
## 10845      25265                             <NA>            107 100-500
## 10846      25265                             <NA>            107 100-500
## 10847      25265                             <NA>            107 100-500
## 10848      25265                             <NA>            107 100-500
## 10849      25265                             <NA>            107 100-500
## 10850      25265                             <NA>            107 100-500
## 10851      25265                             <NA>            107 100-500
## 10852      25265                             <NA>            107 100-500
## 10853      25265                             <NA>            107 100-500
## 10854      25265                             <NA>            107 100-500
## 10855      25265                             <NA>            107 100-500
## 10856      25265                             <NA>            107 100-500
## 10857      25265                             <NA>            107 100-500
## 10858      25265                             <NA>            107 100-500
## 10859      25326                             <NA>              6    3-10
## 10860      25326                             <NA>              6    3-10
## 10861      25326                             <NA>              6    3-10
## 10862      25326                             <NA>              6    3-10
## 10863      25326                             <NA>              6    3-10
## 10864      25326                             <NA>              6    3-10
## 10865      25326                             <NA>              6    3-10
## 10866      25326                             <NA>              6    3-10
## 10867      25326                             <NA>              6    3-10
## 10868      25326                             <NA>              6    3-10
## 10869      25326                             <NA>              6    3-10
## 10870      25326                             <NA>              6    3-10
## 10871      25326                             <NA>              6    3-10
## 10872      25326                             <NA>              6    3-10
## 10873      25326                             <NA>              6    3-10
## 10874      25326                             <NA>              6    3-10
## 10875      25326                             <NA>              6    3-10
## 10876      25326                             <NA>              6    3-10
## 10877      25326                             <NA>              6    3-10
## 10878      25326                             <NA>              6    3-10
## 10879      25326                             <NA>              6    3-10
## 10880      25326                             <NA>              6    3-10
## 10881      25326                             <NA>              6    3-10
## 10882      25326                             <NA>              6    3-10
## 10883      25326                             <NA>              6    3-10
## 10884      25326                             <NA>              6    3-10
## 10885      25326                             <NA>              6    3-10
## 10886      25326                             <NA>              6    3-10
## 10887      25326                             <NA>              6    3-10
## 10888      25326                             <NA>              6    3-10
## 10889      25326                             <NA>              6    3-10
## 10890      25326                             <NA>              6    3-10
## 10891      25326                             <NA>              6    3-10
## 10892      25326                             <NA>              6    3-10
## 10893      25326                             <NA>              6    3-10
## 10894      25326                             <NA>              6    3-10
## 10895      25326                             <NA>              6    3-10
## 10896      25326                             <NA>              6    3-10
## 10897      25326                             <NA>              6    3-10
## 10898      25326                             <NA>              6    3-10
## 10899      25326                             <NA>              6    3-10
## 10900      25326                             <NA>              6    3-10
## 10901      25326                             <NA>              6    3-10
## 10902      25326                             <NA>              6    3-10
## 10903      25326                             <NA>              6    3-10
## 10904      25326                             <NA>              6    3-10
## 10905      25326                             <NA>              6    3-10
## 10906      25326                             <NA>              6    3-10
## 10907      25326                             <NA>              6    3-10
## 10908      25326                             <NA>              6    3-10
## 10909      25326                             <NA>              6    3-10
## 10910      25326                             <NA>              6    3-10
## 10911      25326                             <NA>              6    3-10
## 10912      25326                             <NA>              6    3-10
## 10913      25326                             <NA>              6    3-10
## 10914      25326                             <NA>              6    3-10
## 10915      25326                             <NA>              6    3-10
## 10916      25326                             <NA>              6    3-10
## 10917      25326                             <NA>              6    3-10
## 10918      25326                             <NA>              6    3-10
## 10919      25326                             <NA>              6    3-10
## 10920      25431                             <NA>           1910    500-
## 10921      25431                             <NA>           1910    500-
## 10922      25431                             <NA>           1910    500-
## 10923      25431                             <NA>           1910    500-
## 10924      25431                             <NA>           1910    500-
## 10925      25431                             <NA>           1910    500-
## 10926      25431                             <NA>           1910    500-
## 10927      25431                             <NA>           1910    500-
## 10928      25431                             <NA>           1910    500-
## 10929      25431                             <NA>           1910    500-
## 10930      25431                             <NA>           1910    500-
## 10931      25431                             <NA>           1910    500-
## 10932      25431                             <NA>           1910    500-
## 10933      25431                             <NA>           1910    500-
## 10934      25431                             <NA>           1910    500-
## 10935      25431                             <NA>           1910    500-
## 10936      25431                             <NA>           1910    500-
## 10937      25431                             <NA>           1910    500-
## 10938      25431                             <NA>           1910    500-
## 10939      25431                             <NA>           1910    500-
## 10940      25431                             <NA>           1910    500-
## 10941      25431                             <NA>           1910    500-
## 10942      25431                             <NA>           1910    500-
## 10943      25431                             <NA>           1910    500-
## 10944      25431                             <NA>           1910    500-
## 10945      25431                             <NA>           1910    500-
## 10946      25431                             <NA>           1910    500-
## 10947      25431                             <NA>           1910    500-
## 10948      25431                             <NA>           1910    500-
## 10949      25431                             <NA>           1910    500-
## 10950      25431                             <NA>           1910    500-
## 10951      25431                             <NA>           1910    500-
## 10952      25431                             <NA>           1910    500-
## 10953      25431                             <NA>           1910    500-
## 10954      25431                             <NA>           1910    500-
## 10955      25431                             <NA>           1910    500-
## 10956      25431                             <NA>           1910    500-
## 10957      25431                             <NA>           1910    500-
## 10958      25431                             <NA>           1910    500-
## 10959      25431                             <NA>           1910    500-
## 10960      25431                             <NA>           1910    500-
## 10961      25431                             <NA>           1910    500-
## 10962      25431                             <NA>           1910    500-
## 10963      25431                             <NA>           1910    500-
## 10964      25431                             <NA>           1910    500-
## 10965      25431                             <NA>           1910    500-
## 10966      25431                             <NA>           1910    500-
## 10967      25431                             <NA>           1910    500-
## 10968      25431                             <NA>           1910    500-
## 10969      25431                             <NA>           1910    500-
## 10970      25431                             <NA>           1910    500-
## 10971      25431                             <NA>           1910    500-
## 10972      25431                             <NA>           1910    500-
## 10973      25431                             <NA>           1910    500-
## 10974      25431                             <NA>           1910    500-
## 10975      25431                             <NA>           1910    500-
## 10976      25431                             <NA>           1910    500-
## 10977      25431                             <NA>           1910    500-
## 10978      25431                             <NA>           1910    500-
## 10979      25431                             <NA>           1910    500-
## 10980      25431                             <NA>           1910    500-
## 10981      25656    Partially Protected - Default              1     1-2
## 10982      25656    Partially Protected - Default              1     1-2
## 10983      25656    Partially Protected - Default              1     1-2
## 10984      25656    Partially Protected - Default              1     1-2
## 10985      25656    Partially Protected - Default              1     1-2
## 10986      25656    Partially Protected - Default              1     1-2
## 10987      25656    Partially Protected - Default              1     1-2
## 10988      25656    Partially Protected - Default              1     1-2
## 10989      25656    Partially Protected - Default              1     1-2
## 10990      25656    Partially Protected - Default              1     1-2
## 10991      25656    Partially Protected - Default              1     1-2
## 10992      25656    Partially Protected - Default              1     1-2
## 10993      25656    Partially Protected - Default              1     1-2
## 10994      25656    Partially Protected - Default              1     1-2
## 10995      25656    Partially Protected - Default              1     1-2
## 10996      25656    Partially Protected - Default              1     1-2
## 10997      25656    Partially Protected - Default              1     1-2
## 10998      25656    Partially Protected - Default              1     1-2
## 10999      25656    Partially Protected - Default              1     1-2
## 11000      25656    Partially Protected - Default              1     1-2
## 11001      25656    Partially Protected - Default              1     1-2
## 11002      25656    Partially Protected - Default              1     1-2
## 11003      25656    Partially Protected - Default              1     1-2
## 11004      25656    Partially Protected - Default              1     1-2
## 11005      25656    Partially Protected - Default              1     1-2
## 11006      25656    Partially Protected - Default              1     1-2
## 11007      25656    Partially Protected - Default              1     1-2
## 11008      25656    Partially Protected - Default              1     1-2
## 11009      25656    Partially Protected - Default              1     1-2
## 11010      25656    Partially Protected - Default              1     1-2
## 11011      25656    Partially Protected - Default              1     1-2
## 11012      25656    Partially Protected - Default              1     1-2
## 11013      25656    Partially Protected - Default              1     1-2
## 11014      25656    Partially Protected - Default              1     1-2
## 11015      25656    Partially Protected - Default              1     1-2
## 11016      25656    Partially Protected - Default              1     1-2
## 11017      25656    Partially Protected - Default              1     1-2
## 11018      25656    Partially Protected - Default              1     1-2
## 11019      25656    Partially Protected - Default              1     1-2
## 11020      25656    Partially Protected - Default              1     1-2
## 11021      25656    Partially Protected - Default              1     1-2
## 11022      25656    Partially Protected - Default              1     1-2
## 11023      25656    Partially Protected - Default              1     1-2
## 11024      25656    Partially Protected - Default              1     1-2
## 11025      25656    Partially Protected - Default              1     1-2
## 11026      25656    Partially Protected - Default              1     1-2
## 11027      25656    Partially Protected - Default              1     1-2
## 11028      25656    Partially Protected - Default              1     1-2
## 11029      25656    Partially Protected - Default              1     1-2
## 11030      25656    Partially Protected - Default              1     1-2
## 11031      25656    Partially Protected - Default              1     1-2
## 11032      25656    Partially Protected - Default              1     1-2
## 11033      25656    Partially Protected - Default              1     1-2
## 11034      25656    Partially Protected - Default              1     1-2
## 11035      25656    Partially Protected - Default              1     1-2
## 11036      25656    Partially Protected - Default              1     1-2
## 11037      25656    Partially Protected - Default              1     1-2
## 11038      25656    Partially Protected - Default              1     1-2
## 11039      25656    Partially Protected - Default              1     1-2
## 11040      25656    Partially Protected - Default              1     1-2
## 11041      25656    Partially Protected - Default              1     1-2
## 11042      26037                             <NA>            190 100-500
## 11043      26037                             <NA>            190 100-500
## 11044      26037                             <NA>            190 100-500
## 11045      26037                             <NA>            190 100-500
## 11046      26037                             <NA>            190 100-500
## 11047      26037                             <NA>            190 100-500
## 11048      26037                             <NA>            190 100-500
## 11049      26037                             <NA>            190 100-500
## 11050      26037                             <NA>            190 100-500
## 11051      26037                             <NA>            190 100-500
## 11052      26037                             <NA>            190 100-500
## 11053      26037                             <NA>            190 100-500
## 11054      26037                             <NA>            190 100-500
## 11055      26037                             <NA>            190 100-500
## 11056      26037                             <NA>            190 100-500
## 11057      26037                             <NA>            190 100-500
## 11058      26037                             <NA>            190 100-500
## 11059      26037                             <NA>            190 100-500
## 11060      26037                             <NA>            190 100-500
## 11061      26037                             <NA>            190 100-500
## 11062      26037                             <NA>            190 100-500
## 11063      26037                             <NA>            190 100-500
## 11064      26037                             <NA>            190 100-500
## 11065      26037                             <NA>            190 100-500
## 11066      26037                             <NA>            190 100-500
## 11067      26037                             <NA>            190 100-500
## 11068      26037                             <NA>            190 100-500
## 11069      26037                             <NA>            190 100-500
## 11070      26037                             <NA>            190 100-500
## 11071      26037                             <NA>            190 100-500
## 11072      26037                             <NA>            190 100-500
## 11073      26037                             <NA>            190 100-500
## 11074      26037                             <NA>            190 100-500
## 11075      26037                             <NA>            190 100-500
## 11076      26037                             <NA>            190 100-500
## 11077      26037                             <NA>            190 100-500
## 11078      26037                             <NA>            190 100-500
## 11079      26037                             <NA>            190 100-500
## 11080      26037                             <NA>            190 100-500
## 11081      26037                             <NA>            190 100-500
## 11082      26037                             <NA>            190 100-500
## 11083      26037                             <NA>            190 100-500
## 11084      26037                             <NA>            190 100-500
## 11085      26037                             <NA>            190 100-500
## 11086      26037                             <NA>            190 100-500
## 11087      26037                             <NA>            190 100-500
## 11088      26037                             <NA>            190 100-500
## 11089      26037                             <NA>            190 100-500
## 11090      26037                             <NA>            190 100-500
## 11091      26037                             <NA>            190 100-500
## 11092      26037                             <NA>            190 100-500
## 11093      26037                             <NA>            190 100-500
## 11094      26037                             <NA>            190 100-500
## 11095      26037                             <NA>            190 100-500
## 11096      26037                             <NA>            190 100-500
## 11097      26037                             <NA>            190 100-500
## 11098      26037                             <NA>            190 100-500
## 11099      26037                             <NA>            190 100-500
## 11100      26037                             <NA>            190 100-500
## 11101      26037                             <NA>            190 100-500
## 11102      26037                             <NA>            190 100-500
## 11103      26152 Partially Protected - Autoreview           2698    500-
## 11104      26152 Partially Protected - Autoreview           2698    500-
## 11105      26152 Partially Protected - Autoreview           2698    500-
## 11106      26152 Partially Protected - Autoreview           2698    500-
## 11107      26152 Partially Protected - Autoreview           2698    500-
## 11108      26152 Partially Protected - Autoreview           2698    500-
## 11109      26152 Partially Protected - Autoreview           2698    500-
## 11110      26152 Partially Protected - Autoreview           2698    500-
## 11111      26152 Partially Protected - Autoreview           2698    500-
## 11112      26152 Partially Protected - Autoreview           2698    500-
## 11113      26152 Partially Protected - Autoreview           2698    500-
## 11114      26152 Partially Protected - Autoreview           2698    500-
## 11115      26152 Partially Protected - Autoreview           2698    500-
## 11116      26152 Partially Protected - Autoreview           2698    500-
## 11117      26152 Partially Protected - Autoreview           2698    500-
## 11118      26152 Partially Protected - Autoreview           2698    500-
## 11119      26152 Partially Protected - Autoreview           2698    500-
## 11120      26152 Partially Protected - Autoreview           2698    500-
## 11121      26152 Partially Protected - Autoreview           2698    500-
## 11122      26152 Partially Protected - Autoreview           2698    500-
## 11123      26152 Partially Protected - Autoreview           2698    500-
## 11124      26152 Partially Protected - Autoreview           2698    500-
## 11125      26152 Partially Protected - Autoreview           2698    500-
## 11126      26152 Partially Protected - Autoreview           2698    500-
## 11127      26152 Partially Protected - Autoreview           2698    500-
## 11128      26152 Partially Protected - Autoreview           2698    500-
## 11129      26152 Partially Protected - Autoreview           2698    500-
## 11130      26152 Partially Protected - Autoreview           2698    500-
## 11131      26152 Partially Protected - Autoreview           2698    500-
## 11132      26152 Partially Protected - Autoreview           2698    500-
## 11133      26152 Partially Protected - Autoreview           2698    500-
## 11134      26152 Partially Protected - Autoreview           2698    500-
## 11135      26152 Partially Protected - Autoreview           2698    500-
## 11136      26152 Partially Protected - Autoreview           2698    500-
## 11137      26152 Partially Protected - Autoreview           2698    500-
## 11138      26152 Partially Protected - Autoreview           2698    500-
## 11139      26152 Partially Protected - Autoreview           2698    500-
## 11140      26152 Partially Protected - Autoreview           2698    500-
## 11141      26152 Partially Protected - Autoreview           2698    500-
## 11142      26152 Partially Protected - Autoreview           2698    500-
## 11143      26152 Partially Protected - Autoreview           2698    500-
## 11144      26152 Partially Protected - Autoreview           2698    500-
## 11145      26152 Partially Protected - Autoreview           2698    500-
## 11146      26152 Partially Protected - Autoreview           2698    500-
## 11147      26152 Partially Protected - Autoreview           2698    500-
## 11148      26152 Partially Protected - Autoreview           2698    500-
## 11149      26152 Partially Protected - Autoreview           2698    500-
## 11150      26152 Partially Protected - Autoreview           2698    500-
## 11151      26152 Partially Protected - Autoreview           2698    500-
## 11152      26152 Partially Protected - Autoreview           2698    500-
## 11153      26152 Partially Protected - Autoreview           2698    500-
## 11154      26152 Partially Protected - Autoreview           2698    500-
## 11155      26152 Partially Protected - Autoreview           2698    500-
## 11156      26152 Partially Protected - Autoreview           2698    500-
## 11157      26152 Partially Protected - Autoreview           2698    500-
## 11158      26152 Partially Protected - Autoreview           2698    500-
## 11159      26152 Partially Protected - Autoreview           2698    500-
## 11160      26152 Partially Protected - Autoreview           2698    500-
## 11161      26152 Partially Protected - Autoreview           2698    500-
## 11162      26152 Partially Protected - Autoreview           2698    500-
## 11163      26152 Partially Protected - Autoreview           2698    500-
## 11164      26196                             <NA>              2     1-2
## 11165      26196                             <NA>              2     1-2
## 11166      26196                             <NA>              2     1-2
## 11167      26196                             <NA>              2     1-2
## 11168      26196                             <NA>              2     1-2
## 11169      26196                             <NA>              2     1-2
## 11170      26196                             <NA>              2     1-2
## 11171      26196                             <NA>              2     1-2
## 11172      26196                             <NA>              2     1-2
## 11173      26196                             <NA>              2     1-2
## 11174      26196                             <NA>              2     1-2
## 11175      26196                             <NA>              2     1-2
## 11176      26196                             <NA>              2     1-2
## 11177      26196                             <NA>              2     1-2
## 11178      26196                             <NA>              2     1-2
## 11179      26196                             <NA>              2     1-2
## 11180      26196                             <NA>              2     1-2
## 11181      26196                             <NA>              2     1-2
## 11182      26196                             <NA>              2     1-2
## 11183      26196                             <NA>              2     1-2
## 11184      26196                             <NA>              2     1-2
## 11185      26196                             <NA>              2     1-2
## 11186      26196                             <NA>              2     1-2
## 11187      26196                             <NA>              2     1-2
## 11188      26196                             <NA>              2     1-2
## 11189      26196                             <NA>              2     1-2
## 11190      26196                             <NA>              2     1-2
## 11191      26196                             <NA>              2     1-2
## 11192      26196                             <NA>              2     1-2
## 11193      26196                             <NA>              2     1-2
## 11194      26196                             <NA>              2     1-2
## 11195      26196                             <NA>              2     1-2
## 11196      26196                             <NA>              2     1-2
## 11197      26196                             <NA>              2     1-2
## 11198      26196                             <NA>              2     1-2
## 11199      26196                             <NA>              2     1-2
## 11200      26196                             <NA>              2     1-2
## 11201      26196                             <NA>              2     1-2
## 11202      26196                             <NA>              2     1-2
## 11203      26196                             <NA>              2     1-2
## 11204      26196                             <NA>              2     1-2
## 11205      26196                             <NA>              2     1-2
## 11206      26196                             <NA>              2     1-2
## 11207      26196                             <NA>              2     1-2
## 11208      26196                             <NA>              2     1-2
## 11209      26196                             <NA>              2     1-2
## 11210      26196                             <NA>              2     1-2
## 11211      26196                             <NA>              2     1-2
## 11212      26196                             <NA>              2     1-2
## 11213      26196                             <NA>              2     1-2
## 11214      26196                             <NA>              2     1-2
## 11215      26196                             <NA>              2     1-2
## 11216      26196                             <NA>              2     1-2
## 11217      26196                             <NA>              2     1-2
## 11218      26196                             <NA>              2     1-2
## 11219      26196                             <NA>              2     1-2
## 11220      26196                             <NA>              2     1-2
## 11221      26196                             <NA>              2     1-2
## 11222      26196                             <NA>              2     1-2
## 11223      26196                             <NA>              2     1-2
## 11224      26196                             <NA>              2     1-2
## 11225      26345                             <NA>              6    3-10
## 11226      26345                             <NA>              6    3-10
## 11227      26345                             <NA>              6    3-10
## 11228      26345                             <NA>              6    3-10
## 11229      26345                             <NA>              6    3-10
## 11230      26345                             <NA>              6    3-10
## 11231      26345                             <NA>              6    3-10
## 11232      26345                             <NA>              6    3-10
## 11233      26345                             <NA>              6    3-10
## 11234      26345                             <NA>              6    3-10
## 11235      26345                             <NA>              6    3-10
## 11236      26345                             <NA>              6    3-10
## 11237      26345                             <NA>              6    3-10
## 11238      26345                             <NA>              6    3-10
## 11239      26345                             <NA>              6    3-10
## 11240      26345                             <NA>              6    3-10
## 11241      26345                             <NA>              6    3-10
## 11242      26345                             <NA>              6    3-10
## 11243      26345                             <NA>              6    3-10
## 11244      26345                             <NA>              6    3-10
## 11245      26345                             <NA>              6    3-10
## 11246      26345                             <NA>              6    3-10
## 11247      26345                             <NA>              6    3-10
## 11248      26345                             <NA>              6    3-10
## 11249      26345                             <NA>              6    3-10
## 11250      26345                             <NA>              6    3-10
## 11251      26345                             <NA>              6    3-10
## 11252      26345                             <NA>              6    3-10
## 11253      26345                             <NA>              6    3-10
## 11254      26345                             <NA>              6    3-10
## 11255      26345                             <NA>              6    3-10
## 11256      26345                             <NA>              6    3-10
## 11257      26345                             <NA>              6    3-10
## 11258      26345                             <NA>              6    3-10
## 11259      26345                             <NA>              6    3-10
## 11260      26345                             <NA>              6    3-10
## 11261      26345                             <NA>              6    3-10
## 11262      26345                             <NA>              6    3-10
## 11263      26345                             <NA>              6    3-10
## 11264      26345                             <NA>              6    3-10
## 11265      26345                             <NA>              6    3-10
## 11266      26345                             <NA>              6    3-10
## 11267      26345                             <NA>              6    3-10
## 11268      26345                             <NA>              6    3-10
## 11269      26345                             <NA>              6    3-10
## 11270      26345                             <NA>              6    3-10
## 11271      26345                             <NA>              6    3-10
## 11272      26345                             <NA>              6    3-10
## 11273      26345                             <NA>              6    3-10
## 11274      26345                             <NA>              6    3-10
## 11275      26345                             <NA>              6    3-10
## 11276      26345                             <NA>              6    3-10
## 11277      26345                             <NA>              6    3-10
## 11278      26345                             <NA>              6    3-10
## 11279      26345                             <NA>              6    3-10
## 11280      26345                             <NA>              6    3-10
## 11281      26345                             <NA>              6    3-10
## 11282      26345                             <NA>              6    3-10
## 11283      26345                             <NA>              6    3-10
## 11284      26345                             <NA>              6    3-10
## 11285      26345                             <NA>              6    3-10
## 11286      26719                             <NA>              3    3-10
## 11287      26719                             <NA>              3    3-10
## 11288      26719                             <NA>              3    3-10
## 11289      26719                             <NA>              3    3-10
## 11290      26719                             <NA>              3    3-10
## 11291      26719                             <NA>              3    3-10
## 11292      26719                             <NA>              3    3-10
## 11293      26719                             <NA>              3    3-10
## 11294      26719                             <NA>              3    3-10
## 11295      26719                             <NA>              3    3-10
## 11296      26719                             <NA>              3    3-10
## 11297      26719                             <NA>              3    3-10
## 11298      26719                             <NA>              3    3-10
## 11299      26719                             <NA>              3    3-10
## 11300      26719                             <NA>              3    3-10
## 11301      26719                             <NA>              3    3-10
## 11302      26719                             <NA>              3    3-10
## 11303      26719                             <NA>              3    3-10
## 11304      26719                             <NA>              3    3-10
## 11305      26719                             <NA>              3    3-10
## 11306      26719                             <NA>              3    3-10
## 11307      26719                             <NA>              3    3-10
## 11308      26719                             <NA>              3    3-10
## 11309      26719                             <NA>              3    3-10
## 11310      26719                             <NA>              3    3-10
## 11311      26719                             <NA>              3    3-10
## 11312      26719                             <NA>              3    3-10
## 11313      26719                             <NA>              3    3-10
## 11314      26719                             <NA>              3    3-10
## 11315      26719                             <NA>              3    3-10
## 11316      26719                             <NA>              3    3-10
## 11317      26719                             <NA>              3    3-10
## 11318      26719                             <NA>              3    3-10
## 11319      26719                             <NA>              3    3-10
## 11320      26719                             <NA>              3    3-10
## 11321      26719                             <NA>              3    3-10
## 11322      26719                             <NA>              3    3-10
## 11323      26719                             <NA>              3    3-10
## 11324      26719                             <NA>              3    3-10
## 11325      26719                             <NA>              3    3-10
## 11326      26719                             <NA>              3    3-10
## 11327      26719                             <NA>              3    3-10
## 11328      26719                             <NA>              3    3-10
## 11329      26719                             <NA>              3    3-10
## 11330      26719                             <NA>              3    3-10
## 11331      26719                             <NA>              3    3-10
## 11332      26719                             <NA>              3    3-10
## 11333      26719                             <NA>              3    3-10
## 11334      26719                             <NA>              3    3-10
## 11335      26719                             <NA>              3    3-10
## 11336      26719                             <NA>              3    3-10
## 11337      26719                             <NA>              3    3-10
## 11338      26719                             <NA>              3    3-10
## 11339      26719                             <NA>              3    3-10
## 11340      26719                             <NA>              3    3-10
## 11341      26719                             <NA>              3    3-10
## 11342      26719                             <NA>              3    3-10
## 11343      26719                             <NA>              3    3-10
## 11344      26719                             <NA>              3    3-10
## 11345      26719                             <NA>              3    3-10
## 11346      26719                             <NA>              3    3-10
## 11347      26964                             <NA>            848    500-
## 11348      26964                             <NA>            848    500-
## 11349      26964                             <NA>            848    500-
## 11350      26964                             <NA>            848    500-
## 11351      26964                             <NA>            848    500-
## 11352      26964                             <NA>            848    500-
## 11353      26964                             <NA>            848    500-
## 11354      26964                             <NA>            848    500-
## 11355      26964                             <NA>            848    500-
## 11356      26964                             <NA>            848    500-
## 11357      26964                             <NA>            848    500-
## 11358      26964                             <NA>            848    500-
## 11359      26964                             <NA>            848    500-
## 11360      26964                             <NA>            848    500-
## 11361      26964                             <NA>            848    500-
## 11362      26964                             <NA>            848    500-
## 11363      26964                             <NA>            848    500-
## 11364      26964                             <NA>            848    500-
## 11365      26964                             <NA>            848    500-
## 11366      26964                             <NA>            848    500-
## 11367      26964                             <NA>            848    500-
## 11368      26964                             <NA>            848    500-
## 11369      26964                             <NA>            848    500-
## 11370      26964                             <NA>            848    500-
## 11371      26964                             <NA>            848    500-
## 11372      26964                             <NA>            848    500-
## 11373      26964                             <NA>            848    500-
## 11374      26964                             <NA>            848    500-
## 11375      26964                             <NA>            848    500-
## 11376      26964                             <NA>            848    500-
## 11377      26964                             <NA>            848    500-
## 11378      26964                             <NA>            848    500-
## 11379      26964                             <NA>            848    500-
## 11380      26964                             <NA>            848    500-
## 11381      26964                             <NA>            848    500-
## 11382      26964                             <NA>            848    500-
## 11383      26964                             <NA>            848    500-
## 11384      26964                             <NA>            848    500-
## 11385      26964                             <NA>            848    500-
## 11386      26964                             <NA>            848    500-
## 11387      26964                             <NA>            848    500-
## 11388      26964                             <NA>            848    500-
## 11389      26964                             <NA>            848    500-
## 11390      26964                             <NA>            848    500-
## 11391      26964                             <NA>            848    500-
## 11392      26964                             <NA>            848    500-
## 11393      26964                             <NA>            848    500-
## 11394      26964                             <NA>            848    500-
## 11395      26964                             <NA>            848    500-
## 11396      26964                             <NA>            848    500-
## 11397      26964                             <NA>            848    500-
## 11398      26964                             <NA>            848    500-
## 11399      26964                             <NA>            848    500-
## 11400      26964                             <NA>            848    500-
## 11401      26964                             <NA>            848    500-
## 11402      26964                             <NA>            848    500-
## 11403      26964                             <NA>            848    500-
## 11404      26964                             <NA>            848    500-
## 11405      26964                             <NA>            848    500-
## 11406      26964                             <NA>            848    500-
## 11407      26964                             <NA>            848    500-
## 11408      26984                     Good Article            763    500-
## 11409      26984                     Good Article            763    500-
## 11410      26984                     Good Article            763    500-
## 11411      26984                     Good Article            763    500-
## 11412      26984                     Good Article            763    500-
## 11413      26984                     Good Article            763    500-
## 11414      26984                     Good Article            763    500-
## 11415      26984                     Good Article            763    500-
## 11416      26984                     Good Article            763    500-
## 11417      26984                     Good Article            763    500-
## 11418      26984                     Good Article            763    500-
## 11419      26984                     Good Article            763    500-
## 11420      26984                     Good Article            763    500-
## 11421      26984                     Good Article            763    500-
## 11422      26984                     Good Article            763    500-
## 11423      26984                     Good Article            763    500-
## 11424      26984                     Good Article            763    500-
## 11425      26984                     Good Article            763    500-
## 11426      26984                     Good Article            763    500-
## 11427      26984                     Good Article            763    500-
## 11428      26984                     Good Article            763    500-
## 11429      26984                     Good Article            763    500-
## 11430      26984                     Good Article            763    500-
## 11431      26984                     Good Article            763    500-
## 11432      26984                     Good Article            763    500-
## 11433      26984                     Good Article            763    500-
## 11434      26984                     Good Article            763    500-
## 11435      26984                     Good Article            763    500-
## 11436      26984                     Good Article            763    500-
## 11437      26984                     Good Article            763    500-
## 11438      26984                     Good Article            763    500-
## 11439      26984                     Good Article            763    500-
## 11440      26984                     Good Article            763    500-
## 11441      26984                     Good Article            763    500-
## 11442      26984                     Good Article            763    500-
## 11443      26984                     Good Article            763    500-
## 11444      26984                     Good Article            763    500-
## 11445      26984                     Good Article            763    500-
## 11446      26984                     Good Article            763    500-
## 11447      26984                     Good Article            763    500-
## 11448      26984                     Good Article            763    500-
## 11449      26984                     Good Article            763    500-
## 11450      26984                     Good Article            763    500-
## 11451      26984                     Good Article            763    500-
## 11452      26984                     Good Article            763    500-
## 11453      26984                     Good Article            763    500-
## 11454      26984                     Good Article            763    500-
## 11455      26984                     Good Article            763    500-
## 11456      26984                     Good Article            763    500-
## 11457      26984                     Good Article            763    500-
## 11458      26984                     Good Article            763    500-
## 11459      26984                     Good Article            763    500-
## 11460      26984                     Good Article            763    500-
## 11461      26984                     Good Article            763    500-
## 11462      26984                     Good Article            763    500-
## 11463      26984                     Good Article            763    500-
## 11464      26984                     Good Article            763    500-
## 11465      26984                     Good Article            763    500-
## 11466      26984                     Good Article            763    500-
## 11467      26984                     Good Article            763    500-
## 11468      26984                     Good Article            763    500-
## 11469      27001                             <NA>            111 100-500
## 11470      27001                             <NA>            111 100-500
## 11471      27001                             <NA>            111 100-500
## 11472      27001                             <NA>            111 100-500
## 11473      27001                             <NA>            111 100-500
## 11474      27001                             <NA>            111 100-500
## 11475      27001                             <NA>            111 100-500
## 11476      27001                             <NA>            111 100-500
## 11477      27001                             <NA>            111 100-500
## 11478      27001                             <NA>            111 100-500
## 11479      27001                             <NA>            111 100-500
## 11480      27001                             <NA>            111 100-500
## 11481      27001                             <NA>            111 100-500
## 11482      27001                             <NA>            111 100-500
## 11483      27001                             <NA>            111 100-500
## 11484      27001                             <NA>            111 100-500
## 11485      27001                             <NA>            111 100-500
## 11486      27001                             <NA>            111 100-500
## 11487      27001                             <NA>            111 100-500
## 11488      27001                             <NA>            111 100-500
## 11489      27001                             <NA>            111 100-500
## 11490      27001                             <NA>            111 100-500
## 11491      27001                             <NA>            111 100-500
## 11492      27001                             <NA>            111 100-500
## 11493      27001                             <NA>            111 100-500
## 11494      27001                             <NA>            111 100-500
## 11495      27001                             <NA>            111 100-500
## 11496      27001                             <NA>            111 100-500
## 11497      27001                             <NA>            111 100-500
## 11498      27001                             <NA>            111 100-500
## 11499      27001                             <NA>            111 100-500
## 11500      27001                             <NA>            111 100-500
## 11501      27001                             <NA>            111 100-500
## 11502      27001                             <NA>            111 100-500
## 11503      27001                             <NA>            111 100-500
## 11504      27001                             <NA>            111 100-500
## 11505      27001                             <NA>            111 100-500
## 11506      27001                             <NA>            111 100-500
## 11507      27001                             <NA>            111 100-500
## 11508      27001                             <NA>            111 100-500
## 11509      27001                             <NA>            111 100-500
## 11510      27001                             <NA>            111 100-500
## 11511      27001                             <NA>            111 100-500
## 11512      27001                             <NA>            111 100-500
## 11513      27001                             <NA>            111 100-500
## 11514      27001                             <NA>            111 100-500
## 11515      27001                             <NA>            111 100-500
## 11516      27001                             <NA>            111 100-500
## 11517      27001                             <NA>            111 100-500
## 11518      27001                             <NA>            111 100-500
## 11519      27001                             <NA>            111 100-500
## 11520      27001                             <NA>            111 100-500
## 11521      27001                             <NA>            111 100-500
## 11522      27001                             <NA>            111 100-500
## 11523      27001                             <NA>            111 100-500
## 11524      27001                             <NA>            111 100-500
## 11525      27001                             <NA>            111 100-500
## 11526      27001                             <NA>            111 100-500
## 11527      27001                             <NA>            111 100-500
## 11528      27001                             <NA>            111 100-500
## 11529      27001                             <NA>            111 100-500
## 11530      27090                             <NA>            287 100-500
## 11531      27090                             <NA>            287 100-500
## 11532      27090                             <NA>            287 100-500
## 11533      27090                             <NA>            287 100-500
## 11534      27090                             <NA>            287 100-500
## 11535      27090                             <NA>            287 100-500
## 11536      27090                             <NA>            287 100-500
## 11537      27090                             <NA>            287 100-500
## 11538      27090                             <NA>            287 100-500
## 11539      27090                             <NA>            287 100-500
## 11540      27090                             <NA>            287 100-500
## 11541      27090                             <NA>            287 100-500
## 11542      27090                             <NA>            287 100-500
## 11543      27090                             <NA>            287 100-500
## 11544      27090                             <NA>            287 100-500
## 11545      27090                             <NA>            287 100-500
## 11546      27090                             <NA>            287 100-500
## 11547      27090                             <NA>            287 100-500
## 11548      27090                             <NA>            287 100-500
## 11549      27090                             <NA>            287 100-500
## 11550      27090                             <NA>            287 100-500
## 11551      27090                             <NA>            287 100-500
## 11552      27090                             <NA>            287 100-500
## 11553      27090                             <NA>            287 100-500
## 11554      27090                             <NA>            287 100-500
## 11555      27090                             <NA>            287 100-500
## 11556      27090                             <NA>            287 100-500
## 11557      27090                             <NA>            287 100-500
## 11558      27090                             <NA>            287 100-500
## 11559      27090                             <NA>            287 100-500
## 11560      27090                             <NA>            287 100-500
## 11561      27090                             <NA>            287 100-500
## 11562      27090                             <NA>            287 100-500
## 11563      27090                             <NA>            287 100-500
## 11564      27090                             <NA>            287 100-500
## 11565      27090                             <NA>            287 100-500
## 11566      27090                             <NA>            287 100-500
## 11567      27090                             <NA>            287 100-500
## 11568      27090                             <NA>            287 100-500
## 11569      27090                             <NA>            287 100-500
## 11570      27090                             <NA>            287 100-500
## 11571      27090                             <NA>            287 100-500
## 11572      27090                             <NA>            287 100-500
## 11573      27090                             <NA>            287 100-500
## 11574      27090                             <NA>            287 100-500
## 11575      27090                             <NA>            287 100-500
## 11576      27090                             <NA>            287 100-500
## 11577      27090                             <NA>            287 100-500
## 11578      27090                             <NA>            287 100-500
## 11579      27090                             <NA>            287 100-500
## 11580      27090                             <NA>            287 100-500
## 11581      27090                             <NA>            287 100-500
## 11582      27090                             <NA>            287 100-500
## 11583      27090                             <NA>            287 100-500
## 11584      27090                             <NA>            287 100-500
## 11585      27090                             <NA>            287 100-500
## 11586      27090                             <NA>            287 100-500
## 11587      27090                             <NA>            287 100-500
## 11588      27090                             <NA>            287 100-500
## 11589      27090                             <NA>            287 100-500
## 11590      27090                             <NA>            287 100-500
## 11591      27228                             <NA>            353 100-500
## 11592      27228                             <NA>            353 100-500
## 11593      27228                             <NA>            353 100-500
## 11594      27228                             <NA>            353 100-500
## 11595      27228                             <NA>            353 100-500
## 11596      27228                             <NA>            353 100-500
## 11597      27228                             <NA>            353 100-500
## 11598      27228                             <NA>            353 100-500
## 11599      27228                             <NA>            353 100-500
## 11600      27228                             <NA>            353 100-500
## 11601      27228                             <NA>            353 100-500
## 11602      27228                             <NA>            353 100-500
## 11603      27228                             <NA>            353 100-500
## 11604      27228                             <NA>            353 100-500
## 11605      27228                             <NA>            353 100-500
## 11606      27228                             <NA>            353 100-500
## 11607      27228                             <NA>            353 100-500
## 11608      27228                             <NA>            353 100-500
## 11609      27228                             <NA>            353 100-500
## 11610      27228                             <NA>            353 100-500
## 11611      27228                             <NA>            353 100-500
## 11612      27228                             <NA>            353 100-500
## 11613      27228                             <NA>            353 100-500
## 11614      27228                             <NA>            353 100-500
## 11615      27228                             <NA>            353 100-500
## 11616      27228                             <NA>            353 100-500
## 11617      27228                             <NA>            353 100-500
## 11618      27228                             <NA>            353 100-500
## 11619      27228                             <NA>            353 100-500
## 11620      27228                             <NA>            353 100-500
## 11621      27228                             <NA>            353 100-500
## 11622      27228                             <NA>            353 100-500
## 11623      27228                             <NA>            353 100-500
## 11624      27228                             <NA>            353 100-500
## 11625      27228                             <NA>            353 100-500
## 11626      27228                             <NA>            353 100-500
## 11627      27228                             <NA>            353 100-500
## 11628      27228                             <NA>            353 100-500
## 11629      27228                             <NA>            353 100-500
## 11630      27228                             <NA>            353 100-500
## 11631      27228                             <NA>            353 100-500
## 11632      27228                             <NA>            353 100-500
## 11633      27228                             <NA>            353 100-500
## 11634      27228                             <NA>            353 100-500
## 11635      27228                             <NA>            353 100-500
## 11636      27228                             <NA>            353 100-500
## 11637      27228                             <NA>            353 100-500
## 11638      27228                             <NA>            353 100-500
## 11639      27228                             <NA>            353 100-500
## 11640      27228                             <NA>            353 100-500
## 11641      27228                             <NA>            353 100-500
## 11642      27228                             <NA>            353 100-500
## 11643      27228                             <NA>            353 100-500
## 11644      27228                             <NA>            353 100-500
## 11645      27228                             <NA>            353 100-500
## 11646      27228                             <NA>            353 100-500
## 11647      27228                             <NA>            353 100-500
## 11648      27228                             <NA>            353 100-500
## 11649      27228                             <NA>            353 100-500
## 11650      27228                             <NA>            353 100-500
## 11651      27228                             <NA>            353 100-500
## 11652      27418                             <NA>            120 100-500
## 11653      27418                             <NA>            120 100-500
## 11654      27418                             <NA>            120 100-500
## 11655      27418                             <NA>            120 100-500
## 11656      27418                             <NA>            120 100-500
## 11657      27418                             <NA>            120 100-500
## 11658      27418                             <NA>            120 100-500
## 11659      27418                             <NA>            120 100-500
## 11660      27418                             <NA>            120 100-500
## 11661      27418                             <NA>            120 100-500
## 11662      27418                             <NA>            120 100-500
## 11663      27418                             <NA>            120 100-500
## 11664      27418                             <NA>            120 100-500
## 11665      27418                             <NA>            120 100-500
## 11666      27418                             <NA>            120 100-500
## 11667      27418                             <NA>            120 100-500
## 11668      27418                             <NA>            120 100-500
## 11669      27418                             <NA>            120 100-500
## 11670      27418                             <NA>            120 100-500
## 11671      27418                             <NA>            120 100-500
## 11672      27418                             <NA>            120 100-500
## 11673      27418                             <NA>            120 100-500
## 11674      27418                             <NA>            120 100-500
## 11675      27418                             <NA>            120 100-500
## 11676      27418                             <NA>            120 100-500
## 11677      27418                             <NA>            120 100-500
## 11678      27418                             <NA>            120 100-500
## 11679      27418                             <NA>            120 100-500
## 11680      27418                             <NA>            120 100-500
## 11681      27418                             <NA>            120 100-500
## 11682      27418                             <NA>            120 100-500
## 11683      27418                             <NA>            120 100-500
## 11684      27418                             <NA>            120 100-500
## 11685      27418                             <NA>            120 100-500
## 11686      27418                             <NA>            120 100-500
## 11687      27418                             <NA>            120 100-500
## 11688      27418                             <NA>            120 100-500
## 11689      27418                             <NA>            120 100-500
## 11690      27418                             <NA>            120 100-500
## 11691      27418                             <NA>            120 100-500
## 11692      27418                             <NA>            120 100-500
## 11693      27418                             <NA>            120 100-500
## 11694      27418                             <NA>            120 100-500
## 11695      27418                             <NA>            120 100-500
## 11696      27418                             <NA>            120 100-500
## 11697      27418                             <NA>            120 100-500
## 11698      27418                             <NA>            120 100-500
## 11699      27418                             <NA>            120 100-500
## 11700      27418                             <NA>            120 100-500
## 11701      27418                             <NA>            120 100-500
## 11702      27418                             <NA>            120 100-500
## 11703      27418                             <NA>            120 100-500
## 11704      27418                             <NA>            120 100-500
## 11705      27418                             <NA>            120 100-500
## 11706      27418                             <NA>            120 100-500
## 11707      27418                             <NA>            120 100-500
## 11708      27418                             <NA>            120 100-500
## 11709      27418                             <NA>            120 100-500
## 11710      27418                             <NA>            120 100-500
## 11711      27418                             <NA>            120 100-500
## 11712      27418                             <NA>            120 100-500
## 11713      27456                             <NA>             42  25-100
## 11714      27456                             <NA>             42  25-100
## 11715      27456                             <NA>             42  25-100
## 11716      27456                             <NA>             42  25-100
## 11717      27456                             <NA>             42  25-100
## 11718      27456                             <NA>             42  25-100
## 11719      27456                             <NA>             42  25-100
## 11720      27456                             <NA>             42  25-100
## 11721      27456                             <NA>             42  25-100
## 11722      27456                             <NA>             42  25-100
## 11723      27456                             <NA>             42  25-100
## 11724      27456                             <NA>             42  25-100
## 11725      27456                             <NA>             42  25-100
## 11726      27456                             <NA>             42  25-100
## 11727      27456                             <NA>             42  25-100
## 11728      27456                             <NA>             42  25-100
## 11729      27456                             <NA>             42  25-100
## 11730      27456                             <NA>             42  25-100
## 11731      27456                             <NA>             42  25-100
## 11732      27456                             <NA>             42  25-100
## 11733      27456                             <NA>             42  25-100
## 11734      27456                             <NA>             42  25-100
## 11735      27456                             <NA>             42  25-100
## 11736      27456                             <NA>             42  25-100
## 11737      27456                             <NA>             42  25-100
## 11738      27456                             <NA>             42  25-100
## 11739      27456                             <NA>             42  25-100
## 11740      27456                             <NA>             42  25-100
## 11741      27456                             <NA>             42  25-100
## 11742      27456                             <NA>             42  25-100
## 11743      27456                             <NA>             42  25-100
## 11744      27456                             <NA>             42  25-100
## 11745      27456                             <NA>             42  25-100
## 11746      27456                             <NA>             42  25-100
## 11747      27456                             <NA>             42  25-100
## 11748      27456                             <NA>             42  25-100
## 11749      27456                             <NA>             42  25-100
## 11750      27456                             <NA>             42  25-100
## 11751      27456                             <NA>             42  25-100
## 11752      27456                             <NA>             42  25-100
## 11753      27456                             <NA>             42  25-100
## 11754      27456                             <NA>             42  25-100
## 11755      27456                             <NA>             42  25-100
## 11756      27456                             <NA>             42  25-100
## 11757      27456                             <NA>             42  25-100
## 11758      27456                             <NA>             42  25-100
## 11759      27456                             <NA>             42  25-100
## 11760      27456                             <NA>             42  25-100
## 11761      27456                             <NA>             42  25-100
## 11762      27456                             <NA>             42  25-100
## 11763      27456                             <NA>             42  25-100
## 11764      27456                             <NA>             42  25-100
## 11765      27456                             <NA>             42  25-100
## 11766      27456                             <NA>             42  25-100
## 11767      27456                             <NA>             42  25-100
## 11768      27456                             <NA>             42  25-100
## 11769      27456                             <NA>             42  25-100
## 11770      27456                             <NA>             42  25-100
## 11771      27456                             <NA>             42  25-100
## 11772      27456                             <NA>             42  25-100
## 11773      27456                             <NA>             42  25-100
## 11774      27651 Partially Protected - Autoreview            790    500-
## 11775      27651 Partially Protected - Autoreview            790    500-
## 11776      27651 Partially Protected - Autoreview            790    500-
## 11777      27651 Partially Protected - Autoreview            790    500-
## 11778      27651 Partially Protected - Autoreview            790    500-
## 11779      27651 Partially Protected - Autoreview            790    500-
## 11780      27651 Partially Protected - Autoreview            790    500-
## 11781      27651 Partially Protected - Autoreview            790    500-
## 11782      27651 Partially Protected - Autoreview            790    500-
## 11783      27651 Partially Protected - Autoreview            790    500-
## 11784      27651 Partially Protected - Autoreview            790    500-
## 11785      27651 Partially Protected - Autoreview            790    500-
## 11786      27651 Partially Protected - Autoreview            790    500-
## 11787      27651 Partially Protected - Autoreview            790    500-
## 11788      27651 Partially Protected - Autoreview            790    500-
## 11789      27651 Partially Protected - Autoreview            790    500-
## 11790      27651 Partially Protected - Autoreview            790    500-
## 11791      27651 Partially Protected - Autoreview            790    500-
## 11792      27651 Partially Protected - Autoreview            790    500-
## 11793      27651 Partially Protected - Autoreview            790    500-
## 11794      27651 Partially Protected - Autoreview            790    500-
## 11795      27651 Partially Protected - Autoreview            790    500-
## 11796      27651 Partially Protected - Autoreview            790    500-
## 11797      27651 Partially Protected - Autoreview            790    500-
## 11798      27651 Partially Protected - Autoreview            790    500-
## 11799      27651 Partially Protected - Autoreview            790    500-
## 11800      27651 Partially Protected - Autoreview            790    500-
## 11801      27651 Partially Protected - Autoreview            790    500-
## 11802      27651 Partially Protected - Autoreview            790    500-
## 11803      27651 Partially Protected - Autoreview            790    500-
## 11804      27651 Partially Protected - Autoreview            790    500-
## 11805      27651 Partially Protected - Autoreview            790    500-
## 11806      27651 Partially Protected - Autoreview            790    500-
## 11807      27651 Partially Protected - Autoreview            790    500-
## 11808      27651 Partially Protected - Autoreview            790    500-
## 11809      27651 Partially Protected - Autoreview            790    500-
## 11810      27651 Partially Protected - Autoreview            790    500-
## 11811      27651 Partially Protected - Autoreview            790    500-
## 11812      27651 Partially Protected - Autoreview            790    500-
## 11813      27651 Partially Protected - Autoreview            790    500-
## 11814      27651 Partially Protected - Autoreview            790    500-
## 11815      27651 Partially Protected - Autoreview            790    500-
## 11816      27651 Partially Protected - Autoreview            790    500-
## 11817      27651 Partially Protected - Autoreview            790    500-
## 11818      27651 Partially Protected - Autoreview            790    500-
## 11819      27651 Partially Protected - Autoreview            790    500-
## 11820      27651 Partially Protected - Autoreview            790    500-
## 11821      27651 Partially Protected - Autoreview            790    500-
## 11822      27651 Partially Protected - Autoreview            790    500-
## 11823      27651 Partially Protected - Autoreview            790    500-
## 11824      27651 Partially Protected - Autoreview            790    500-
## 11825      27651 Partially Protected - Autoreview            790    500-
## 11826      27651 Partially Protected - Autoreview            790    500-
## 11827      27651 Partially Protected - Autoreview            790    500-
## 11828      27651 Partially Protected - Autoreview            790    500-
## 11829      27651 Partially Protected - Autoreview            790    500-
## 11830      27651 Partially Protected - Autoreview            790    500-
## 11831      27651 Partially Protected - Autoreview            790    500-
## 11832      27651 Partially Protected - Autoreview            790    500-
## 11833      27651 Partially Protected - Autoreview            790    500-
## 11834      27651 Partially Protected - Autoreview            790    500-
## 11835      27659                             <NA>            145 100-500
## 11836      27659                             <NA>            145 100-500
## 11837      27659                             <NA>            145 100-500
## 11838      27659                             <NA>            145 100-500
## 11839      27659                             <NA>            145 100-500
## 11840      27659                             <NA>            145 100-500
## 11841      27659                             <NA>            145 100-500
## 11842      27659                             <NA>            145 100-500
## 11843      27659                             <NA>            145 100-500
## 11844      27659                             <NA>            145 100-500
## 11845      27659                             <NA>            145 100-500
## 11846      27659                             <NA>            145 100-500
## 11847      27659                             <NA>            145 100-500
## 11848      27659                             <NA>            145 100-500
## 11849      27659                             <NA>            145 100-500
## 11850      27659                             <NA>            145 100-500
## 11851      27659                             <NA>            145 100-500
## 11852      27659                             <NA>            145 100-500
## 11853      27659                             <NA>            145 100-500
## 11854      27659                             <NA>            145 100-500
## 11855      27659                             <NA>            145 100-500
## 11856      27659                             <NA>            145 100-500
## 11857      27659                             <NA>            145 100-500
## 11858      27659                             <NA>            145 100-500
## 11859      27659                             <NA>            145 100-500
## 11860      27659                             <NA>            145 100-500
## 11861      27659                             <NA>            145 100-500
## 11862      27659                             <NA>            145 100-500
## 11863      27659                             <NA>            145 100-500
## 11864      27659                             <NA>            145 100-500
## 11865      27659                             <NA>            145 100-500
## 11866      27659                             <NA>            145 100-500
## 11867      27659                             <NA>            145 100-500
## 11868      27659                             <NA>            145 100-500
## 11869      27659                             <NA>            145 100-500
## 11870      27659                             <NA>            145 100-500
## 11871      27659                             <NA>            145 100-500
## 11872      27659                             <NA>            145 100-500
## 11873      27659                             <NA>            145 100-500
## 11874      27659                             <NA>            145 100-500
## 11875      27659                             <NA>            145 100-500
## 11876      27659                             <NA>            145 100-500
## 11877      27659                             <NA>            145 100-500
## 11878      27659                             <NA>            145 100-500
## 11879      27659                             <NA>            145 100-500
## 11880      27659                             <NA>            145 100-500
## 11881      27659                             <NA>            145 100-500
## 11882      27659                             <NA>            145 100-500
## 11883      27659                             <NA>            145 100-500
## 11884      27659                             <NA>            145 100-500
## 11885      27659                             <NA>            145 100-500
## 11886      27659                             <NA>            145 100-500
## 11887      27659                             <NA>            145 100-500
## 11888      27659                             <NA>            145 100-500
## 11889      27659                             <NA>            145 100-500
## 11890      27659                             <NA>            145 100-500
## 11891      27659                             <NA>            145 100-500
## 11892      27659                             <NA>            145 100-500
## 11893      27659                             <NA>            145 100-500
## 11894      27659                             <NA>            145 100-500
## 11895      27659                             <NA>            145 100-500
## 11896      27802                             <NA>            103 100-500
## 11897      27802                             <NA>            103 100-500
## 11898      27802                             <NA>            103 100-500
## 11899      27802                             <NA>            103 100-500
## 11900      27802                             <NA>            103 100-500
## 11901      27802                             <NA>            103 100-500
## 11902      27802                             <NA>            103 100-500
## 11903      27802                             <NA>            103 100-500
## 11904      27802                             <NA>            103 100-500
## 11905      27802                             <NA>            103 100-500
## 11906      27802                             <NA>            103 100-500
## 11907      27802                             <NA>            103 100-500
## 11908      27802                             <NA>            103 100-500
## 11909      27802                             <NA>            103 100-500
## 11910      27802                             <NA>            103 100-500
## 11911      27802                             <NA>            103 100-500
## 11912      27802                             <NA>            103 100-500
## 11913      27802                             <NA>            103 100-500
## 11914      27802                             <NA>            103 100-500
## 11915      27802                             <NA>            103 100-500
## 11916      27802                             <NA>            103 100-500
## 11917      27802                             <NA>            103 100-500
## 11918      27802                             <NA>            103 100-500
## 11919      27802                             <NA>            103 100-500
## 11920      27802                             <NA>            103 100-500
## 11921      27802                             <NA>            103 100-500
## 11922      27802                             <NA>            103 100-500
## 11923      27802                             <NA>            103 100-500
## 11924      27802                             <NA>            103 100-500
## 11925      27802                             <NA>            103 100-500
## 11926      27802                             <NA>            103 100-500
## 11927      27802                             <NA>            103 100-500
## 11928      27802                             <NA>            103 100-500
## 11929      27802                             <NA>            103 100-500
## 11930      27802                             <NA>            103 100-500
## 11931      27802                             <NA>            103 100-500
## 11932      27802                             <NA>            103 100-500
## 11933      27802                             <NA>            103 100-500
## 11934      27802                             <NA>            103 100-500
## 11935      27802                             <NA>            103 100-500
## 11936      27802                             <NA>            103 100-500
## 11937      27802                             <NA>            103 100-500
## 11938      27802                             <NA>            103 100-500
## 11939      27802                             <NA>            103 100-500
## 11940      27802                             <NA>            103 100-500
## 11941      27802                             <NA>            103 100-500
## 11942      27802                             <NA>            103 100-500
## 11943      27802                             <NA>            103 100-500
## 11944      27802                             <NA>            103 100-500
## 11945      27802                             <NA>            103 100-500
## 11946      27802                             <NA>            103 100-500
## 11947      27802                             <NA>            103 100-500
## 11948      27802                             <NA>            103 100-500
## 11949      27802                             <NA>            103 100-500
## 11950      27802                             <NA>            103 100-500
## 11951      27802                             <NA>            103 100-500
## 11952      27802                             <NA>            103 100-500
## 11953      27802                             <NA>            103 100-500
## 11954      27802                             <NA>            103 100-500
## 11955      27802                             <NA>            103 100-500
## 11956      27802                             <NA>            103 100-500
## 11957      28009                             <NA>             70  25-100
## 11958      28009                             <NA>             70  25-100
## 11959      28009                             <NA>             70  25-100
## 11960      28009                             <NA>             70  25-100
## 11961      28009                             <NA>             70  25-100
## 11962      28009                             <NA>             70  25-100
## 11963      28009                             <NA>             70  25-100
## 11964      28009                             <NA>             70  25-100
## 11965      28009                             <NA>             70  25-100
## 11966      28009                             <NA>             70  25-100
## 11967      28009                             <NA>             70  25-100
## 11968      28009                             <NA>             70  25-100
## 11969      28009                             <NA>             70  25-100
## 11970      28009                             <NA>             70  25-100
## 11971      28009                             <NA>             70  25-100
## 11972      28009                             <NA>             70  25-100
## 11973      28009                             <NA>             70  25-100
## 11974      28009                             <NA>             70  25-100
## 11975      28009                             <NA>             70  25-100
## 11976      28009                             <NA>             70  25-100
## 11977      28009                             <NA>             70  25-100
## 11978      28009                             <NA>             70  25-100
## 11979      28009                             <NA>             70  25-100
## 11980      28009                             <NA>             70  25-100
## 11981      28009                             <NA>             70  25-100
## 11982      28009                             <NA>             70  25-100
## 11983      28009                             <NA>             70  25-100
## 11984      28009                             <NA>             70  25-100
## 11985      28009                             <NA>             70  25-100
## 11986      28009                             <NA>             70  25-100
## 11987      28009                             <NA>             70  25-100
## 11988      28009                             <NA>             70  25-100
## 11989      28009                             <NA>             70  25-100
## 11990      28009                             <NA>             70  25-100
## 11991      28009                             <NA>             70  25-100
## 11992      28009                             <NA>             70  25-100
## 11993      28009                             <NA>             70  25-100
## 11994      28009                             <NA>             70  25-100
## 11995      28009                             <NA>             70  25-100
## 11996      28009                             <NA>             70  25-100
## 11997      28009                             <NA>             70  25-100
## 11998      28009                             <NA>             70  25-100
## 11999      28009                             <NA>             70  25-100
## 12000      28009                             <NA>             70  25-100
## 12001      28009                             <NA>             70  25-100
## 12002      28009                             <NA>             70  25-100
## 12003      28009                             <NA>             70  25-100
## 12004      28009                             <NA>             70  25-100
## 12005      28009                             <NA>             70  25-100
## 12006      28009                             <NA>             70  25-100
## 12007      28009                             <NA>             70  25-100
## 12008      28009                             <NA>             70  25-100
## 12009      28009                             <NA>             70  25-100
## 12010      28009                             <NA>             70  25-100
## 12011      28009                             <NA>             70  25-100
## 12012      28009                             <NA>             70  25-100
## 12013      28009                             <NA>             70  25-100
## 12014      28009                             <NA>             70  25-100
## 12015      28009                             <NA>             70  25-100
## 12016      28009                             <NA>             70  25-100
## 12017      28009                             <NA>             70  25-100
## 12018      28326                             <NA>              8    3-10
## 12019      28326                             <NA>              8    3-10
## 12020      28326                             <NA>              8    3-10
## 12021      28326                             <NA>              8    3-10
## 12022      28326                             <NA>              8    3-10
## 12023      28326                             <NA>              8    3-10
## 12024      28326                             <NA>              8    3-10
## 12025      28326                             <NA>              8    3-10
## 12026      28326                             <NA>              8    3-10
## 12027      28326                             <NA>              8    3-10
## 12028      28326                             <NA>              8    3-10
## 12029      28326                             <NA>              8    3-10
## 12030      28326                             <NA>              8    3-10
## 12031      28326                             <NA>              8    3-10
## 12032      28326                             <NA>              8    3-10
## 12033      28326                             <NA>              8    3-10
## 12034      28326                             <NA>              8    3-10
## 12035      28326                             <NA>              8    3-10
## 12036      28326                             <NA>              8    3-10
## 12037      28326                             <NA>              8    3-10
## 12038      28326                             <NA>              8    3-10
## 12039      28326                             <NA>              8    3-10
## 12040      28326                             <NA>              8    3-10
## 12041      28326                             <NA>              8    3-10
## 12042      28326                             <NA>              8    3-10
## 12043      28326                             <NA>              8    3-10
## 12044      28326                             <NA>              8    3-10
## 12045      28326                             <NA>              8    3-10
## 12046      28326                             <NA>              8    3-10
## 12047      28326                             <NA>              8    3-10
## 12048      28326                             <NA>              8    3-10
## 12049      28326                             <NA>              8    3-10
## 12050      28326                             <NA>              8    3-10
## 12051      28326                             <NA>              8    3-10
## 12052      28326                             <NA>              8    3-10
## 12053      28326                             <NA>              8    3-10
## 12054      28326                             <NA>              8    3-10
## 12055      28326                             <NA>              8    3-10
## 12056      28326                             <NA>              8    3-10
## 12057      28326                             <NA>              8    3-10
## 12058      28326                             <NA>              8    3-10
## 12059      28326                             <NA>              8    3-10
## 12060      28326                             <NA>              8    3-10
## 12061      28326                             <NA>              8    3-10
## 12062      28326                             <NA>              8    3-10
## 12063      28326                             <NA>              8    3-10
## 12064      28326                             <NA>              8    3-10
## 12065      28326                             <NA>              8    3-10
## 12066      28326                             <NA>              8    3-10
## 12067      28326                             <NA>              8    3-10
## 12068      28326                             <NA>              8    3-10
## 12069      28326                             <NA>              8    3-10
## 12070      28326                             <NA>              8    3-10
## 12071      28326                             <NA>              8    3-10
## 12072      28326                             <NA>              8    3-10
## 12073      28326                             <NA>              8    3-10
## 12074      28326                             <NA>              8    3-10
## 12075      28326                             <NA>              8    3-10
## 12076      28326                             <NA>              8    3-10
## 12077      28326                             <NA>              8    3-10
## 12078      28326                             <NA>              8    3-10
## 12079      28387                             <NA>            605    500-
## 12080      28387                             <NA>            605    500-
## 12081      28387                             <NA>            605    500-
## 12082      28387                             <NA>            605    500-
## 12083      28387                             <NA>            605    500-
## 12084      28387                             <NA>            605    500-
## 12085      28387                             <NA>            605    500-
## 12086      28387                             <NA>            605    500-
## 12087      28387                             <NA>            605    500-
## 12088      28387                             <NA>            605    500-
## 12089      28387                             <NA>            605    500-
## 12090      28387                             <NA>            605    500-
## 12091      28387                             <NA>            605    500-
## 12092      28387                             <NA>            605    500-
## 12093      28387                             <NA>            605    500-
## 12094      28387                             <NA>            605    500-
## 12095      28387                             <NA>            605    500-
## 12096      28387                             <NA>            605    500-
## 12097      28387                             <NA>            605    500-
## 12098      28387                             <NA>            605    500-
## 12099      28387                             <NA>            605    500-
## 12100      28387                             <NA>            605    500-
## 12101      28387                             <NA>            605    500-
## 12102      28387                             <NA>            605    500-
## 12103      28387                             <NA>            605    500-
## 12104      28387                             <NA>            605    500-
## 12105      28387                             <NA>            605    500-
## 12106      28387                             <NA>            605    500-
## 12107      28387                             <NA>            605    500-
## 12108      28387                             <NA>            605    500-
## 12109      28387                             <NA>            605    500-
## 12110      28387                             <NA>            605    500-
## 12111      28387                             <NA>            605    500-
## 12112      28387                             <NA>            605    500-
## 12113      28387                             <NA>            605    500-
## 12114      28387                             <NA>            605    500-
## 12115      28387                             <NA>            605    500-
## 12116      28387                             <NA>            605    500-
## 12117      28387                             <NA>            605    500-
## 12118      28387                             <NA>            605    500-
## 12119      28387                             <NA>            605    500-
## 12120      28387                             <NA>            605    500-
## 12121      28387                             <NA>            605    500-
## 12122      28387                             <NA>            605    500-
## 12123      28387                             <NA>            605    500-
## 12124      28387                             <NA>            605    500-
## 12125      28387                             <NA>            605    500-
## 12126      28387                             <NA>            605    500-
## 12127      28387                             <NA>            605    500-
## 12128      28387                             <NA>            605    500-
## 12129      28387                             <NA>            605    500-
## 12130      28387                             <NA>            605    500-
## 12131      28387                             <NA>            605    500-
## 12132      28387                             <NA>            605    500-
## 12133      28387                             <NA>            605    500-
## 12134      28387                             <NA>            605    500-
## 12135      28387                             <NA>            605    500-
## 12136      28387                             <NA>            605    500-
## 12137      28387                             <NA>            605    500-
## 12138      28387                             <NA>            605    500-
## 12139      28387                             <NA>            605    500-
## 12140      28423                             <NA>             33  25-100
## 12141      28423                             <NA>             33  25-100
## 12142      28423                             <NA>             33  25-100
## 12143      28423                             <NA>             33  25-100
## 12144      28423                             <NA>             33  25-100
## 12145      28423                             <NA>             33  25-100
## 12146      28423                             <NA>             33  25-100
## 12147      28423                             <NA>             33  25-100
## 12148      28423                             <NA>             33  25-100
## 12149      28423                             <NA>             33  25-100
## 12150      28423                             <NA>             33  25-100
## 12151      28423                             <NA>             33  25-100
## 12152      28423                             <NA>             33  25-100
## 12153      28423                             <NA>             33  25-100
## 12154      28423                             <NA>             33  25-100
## 12155      28423                             <NA>             33  25-100
## 12156      28423                             <NA>             33  25-100
## 12157      28423                             <NA>             33  25-100
## 12158      28423                             <NA>             33  25-100
## 12159      28423                             <NA>             33  25-100
## 12160      28423                             <NA>             33  25-100
## 12161      28423                             <NA>             33  25-100
## 12162      28423                             <NA>             33  25-100
## 12163      28423                             <NA>             33  25-100
## 12164      28423                             <NA>             33  25-100
## 12165      28423                             <NA>             33  25-100
## 12166      28423                             <NA>             33  25-100
## 12167      28423                             <NA>             33  25-100
## 12168      28423                             <NA>             33  25-100
## 12169      28423                             <NA>             33  25-100
## 12170      28423                             <NA>             33  25-100
## 12171      28423                             <NA>             33  25-100
## 12172      28423                             <NA>             33  25-100
## 12173      28423                             <NA>             33  25-100
## 12174      28423                             <NA>             33  25-100
## 12175      28423                             <NA>             33  25-100
## 12176      28423                             <NA>             33  25-100
## 12177      28423                             <NA>             33  25-100
## 12178      28423                             <NA>             33  25-100
## 12179      28423                             <NA>             33  25-100
## 12180      28423                             <NA>             33  25-100
## 12181      28423                             <NA>             33  25-100
## 12182      28423                             <NA>             33  25-100
## 12183      28423                             <NA>             33  25-100
## 12184      28423                             <NA>             33  25-100
## 12185      28423                             <NA>             33  25-100
## 12186      28423                             <NA>             33  25-100
## 12187      28423                             <NA>             33  25-100
## 12188      28423                             <NA>             33  25-100
## 12189      28423                             <NA>             33  25-100
## 12190      28423                             <NA>             33  25-100
## 12191      28423                             <NA>             33  25-100
## 12192      28423                             <NA>             33  25-100
## 12193      28423                             <NA>             33  25-100
## 12194      28423                             <NA>             33  25-100
## 12195      28423                             <NA>             33  25-100
## 12196      28423                             <NA>             33  25-100
## 12197      28423                             <NA>             33  25-100
## 12198      28423                             <NA>             33  25-100
## 12199      28423                             <NA>             33  25-100
## 12200      28423                             <NA>             33  25-100
## 12201      28432                             <NA>              4    3-10
## 12202      28432                             <NA>              4    3-10
## 12203      28432                             <NA>              4    3-10
## 12204      28432                             <NA>              4    3-10
## 12205      28432                             <NA>              4    3-10
## 12206      28432                             <NA>              4    3-10
## 12207      28432                             <NA>              4    3-10
## 12208      28432                             <NA>              4    3-10
## 12209      28432                             <NA>              4    3-10
## 12210      28432                             <NA>              4    3-10
## 12211      28432                             <NA>              4    3-10
## 12212      28432                             <NA>              4    3-10
## 12213      28432                             <NA>              4    3-10
## 12214      28432                             <NA>              4    3-10
## 12215      28432                             <NA>              4    3-10
## 12216      28432                             <NA>              4    3-10
## 12217      28432                             <NA>              4    3-10
## 12218      28432                             <NA>              4    3-10
## 12219      28432                             <NA>              4    3-10
## 12220      28432                             <NA>              4    3-10
## 12221      28432                             <NA>              4    3-10
## 12222      28432                             <NA>              4    3-10
## 12223      28432                             <NA>              4    3-10
## 12224      28432                             <NA>              4    3-10
## 12225      28432                             <NA>              4    3-10
## 12226      28432                             <NA>              4    3-10
## 12227      28432                             <NA>              4    3-10
## 12228      28432                             <NA>              4    3-10
## 12229      28432                             <NA>              4    3-10
## 12230      28432                             <NA>              4    3-10
## 12231      28432                             <NA>              4    3-10
## 12232      28432                             <NA>              4    3-10
## 12233      28432                             <NA>              4    3-10
## 12234      28432                             <NA>              4    3-10
## 12235      28432                             <NA>              4    3-10
## 12236      28432                             <NA>              4    3-10
## 12237      28432                             <NA>              4    3-10
## 12238      28432                             <NA>              4    3-10
## 12239      28432                             <NA>              4    3-10
## 12240      28432                             <NA>              4    3-10
## 12241      28432                             <NA>              4    3-10
## 12242      28432                             <NA>              4    3-10
## 12243      28432                             <NA>              4    3-10
## 12244      28432                             <NA>              4    3-10
## 12245      28432                             <NA>              4    3-10
## 12246      28432                             <NA>              4    3-10
## 12247      28432                             <NA>              4    3-10
## 12248      28432                             <NA>              4    3-10
## 12249      28432                             <NA>              4    3-10
## 12250      28432                             <NA>              4    3-10
## 12251      28432                             <NA>              4    3-10
## 12252      28432                             <NA>              4    3-10
## 12253      28432                             <NA>              4    3-10
## 12254      28432                             <NA>              4    3-10
## 12255      28432                             <NA>              4    3-10
## 12256      28432                             <NA>              4    3-10
## 12257      28432                             <NA>              4    3-10
## 12258      28432                             <NA>              4    3-10
## 12259      28432                             <NA>              4    3-10
## 12260      28432                             <NA>              4    3-10
## 12261      28432                             <NA>              4    3-10
## 12262      28457                             <NA>              2     1-2
## 12263      28457                             <NA>              2     1-2
## 12264      28457                             <NA>              2     1-2
## 12265      28457                             <NA>              2     1-2
## 12266      28457                             <NA>              2     1-2
## 12267      28457                             <NA>              2     1-2
## 12268      28457                             <NA>              2     1-2
## 12269      28457                             <NA>              2     1-2
## 12270      28457                             <NA>              2     1-2
## 12271      28457                             <NA>              2     1-2
## 12272      28457                             <NA>              2     1-2
## 12273      28457                             <NA>              2     1-2
## 12274      28457                             <NA>              2     1-2
## 12275      28457                             <NA>              2     1-2
## 12276      28457                             <NA>              2     1-2
## 12277      28457                             <NA>              2     1-2
## 12278      28457                             <NA>              2     1-2
## 12279      28457                             <NA>              2     1-2
## 12280      28457                             <NA>              2     1-2
## 12281      28457                             <NA>              2     1-2
## 12282      28457                             <NA>              2     1-2
## 12283      28457                             <NA>              2     1-2
## 12284      28457                             <NA>              2     1-2
## 12285      28457                             <NA>              2     1-2
## 12286      28457                             <NA>              2     1-2
## 12287      28457                             <NA>              2     1-2
## 12288      28457                             <NA>              2     1-2
## 12289      28457                             <NA>              2     1-2
## 12290      28457                             <NA>              2     1-2
## 12291      28457                             <NA>              2     1-2
## 12292      28457                             <NA>              2     1-2
## 12293      28457                             <NA>              2     1-2
## 12294      28457                             <NA>              2     1-2
## 12295      28457                             <NA>              2     1-2
## 12296      28457                             <NA>              2     1-2
## 12297      28457                             <NA>              2     1-2
## 12298      28457                             <NA>              2     1-2
## 12299      28457                             <NA>              2     1-2
## 12300      28457                             <NA>              2     1-2
## 12301      28457                             <NA>              2     1-2
## 12302      28457                             <NA>              2     1-2
## 12303      28457                             <NA>              2     1-2
## 12304      28457                             <NA>              2     1-2
## 12305      28457                             <NA>              2     1-2
## 12306      28457                             <NA>              2     1-2
## 12307      28457                             <NA>              2     1-2
## 12308      28457                             <NA>              2     1-2
## 12309      28457                             <NA>              2     1-2
## 12310      28457                             <NA>              2     1-2
## 12311      28457                             <NA>              2     1-2
## 12312      28457                             <NA>              2     1-2
## 12313      28457                             <NA>              2     1-2
## 12314      28457                             <NA>              2     1-2
## 12315      28457                             <NA>              2     1-2
## 12316      28457                             <NA>              2     1-2
## 12317      28457                             <NA>              2     1-2
## 12318      28457                             <NA>              2     1-2
## 12319      28457                             <NA>              2     1-2
## 12320      28457                             <NA>              2     1-2
## 12321      28457                             <NA>              2     1-2
## 12322      28457                             <NA>              2     1-2
## 12323      28491                             <NA>            241 100-500
## 12324      28491                             <NA>            241 100-500
## 12325      28491                             <NA>            241 100-500
## 12326      28491                             <NA>            241 100-500
## 12327      28491                             <NA>            241 100-500
## 12328      28491                             <NA>            241 100-500
## 12329      28491                             <NA>            241 100-500
## 12330      28491                             <NA>            241 100-500
## 12331      28491                             <NA>            241 100-500
## 12332      28491                             <NA>            241 100-500
## 12333      28491                             <NA>            241 100-500
## 12334      28491                             <NA>            241 100-500
## 12335      28491                             <NA>            241 100-500
## 12336      28491                             <NA>            241 100-500
## 12337      28491                             <NA>            241 100-500
## 12338      28491                             <NA>            241 100-500
## 12339      28491                             <NA>            241 100-500
## 12340      28491                             <NA>            241 100-500
## 12341      28491                             <NA>            241 100-500
## 12342      28491                             <NA>            241 100-500
## 12343      28491                             <NA>            241 100-500
## 12344      28491                             <NA>            241 100-500
## 12345      28491                             <NA>            241 100-500
## 12346      28491                             <NA>            241 100-500
## 12347      28491                             <NA>            241 100-500
## 12348      28491                             <NA>            241 100-500
## 12349      28491                             <NA>            241 100-500
## 12350      28491                             <NA>            241 100-500
## 12351      28491                             <NA>            241 100-500
## 12352      28491                             <NA>            241 100-500
## 12353      28491                             <NA>            241 100-500
## 12354      28491                             <NA>            241 100-500
## 12355      28491                             <NA>            241 100-500
## 12356      28491                             <NA>            241 100-500
## 12357      28491                             <NA>            241 100-500
## 12358      28491                             <NA>            241 100-500
## 12359      28491                             <NA>            241 100-500
## 12360      28491                             <NA>            241 100-500
## 12361      28491                             <NA>            241 100-500
## 12362      28491                             <NA>            241 100-500
## 12363      28491                             <NA>            241 100-500
## 12364      28491                             <NA>            241 100-500
## 12365      28491                             <NA>            241 100-500
## 12366      28491                             <NA>            241 100-500
## 12367      28491                             <NA>            241 100-500
## 12368      28491                             <NA>            241 100-500
## 12369      28491                             <NA>            241 100-500
## 12370      28491                             <NA>            241 100-500
## 12371      28491                             <NA>            241 100-500
## 12372      28491                             <NA>            241 100-500
## 12373      28491                             <NA>            241 100-500
## 12374      28491                             <NA>            241 100-500
## 12375      28491                             <NA>            241 100-500
## 12376      28491                             <NA>            241 100-500
## 12377      28491                             <NA>            241 100-500
## 12378      28491                             <NA>            241 100-500
## 12379      28491                             <NA>            241 100-500
## 12380      28491                             <NA>            241 100-500
## 12381      28491                             <NA>            241 100-500
## 12382      28491                             <NA>            241 100-500
## 12383      28491                             <NA>            241 100-500
## 12384      28526                             <NA>             19   10-25
## 12385      28526                             <NA>             19   10-25
## 12386      28526                             <NA>             19   10-25
## 12387      28526                             <NA>             19   10-25
## 12388      28526                             <NA>             19   10-25
## 12389      28526                             <NA>             19   10-25
## 12390      28526                             <NA>             19   10-25
## 12391      28526                             <NA>             19   10-25
## 12392      28526                             <NA>             19   10-25
## 12393      28526                             <NA>             19   10-25
## 12394      28526                             <NA>             19   10-25
## 12395      28526                             <NA>             19   10-25
## 12396      28526                             <NA>             19   10-25
## 12397      28526                             <NA>             19   10-25
## 12398      28526                             <NA>             19   10-25
## 12399      28526                             <NA>             19   10-25
## 12400      28526                             <NA>             19   10-25
## 12401      28526                             <NA>             19   10-25
## 12402      28526                             <NA>             19   10-25
## 12403      28526                             <NA>             19   10-25
## 12404      28526                             <NA>             19   10-25
## 12405      28526                             <NA>             19   10-25
## 12406      28526                             <NA>             19   10-25
## 12407      28526                             <NA>             19   10-25
## 12408      28526                             <NA>             19   10-25
## 12409      28526                             <NA>             19   10-25
## 12410      28526                             <NA>             19   10-25
## 12411      28526                             <NA>             19   10-25
## 12412      28526                             <NA>             19   10-25
## 12413      28526                             <NA>             19   10-25
## 12414      28526                             <NA>             19   10-25
## 12415      28526                             <NA>             19   10-25
## 12416      28526                             <NA>             19   10-25
## 12417      28526                             <NA>             19   10-25
## 12418      28526                             <NA>             19   10-25
## 12419      28526                             <NA>             19   10-25
## 12420      28526                             <NA>             19   10-25
## 12421      28526                             <NA>             19   10-25
## 12422      28526                             <NA>             19   10-25
## 12423      28526                             <NA>             19   10-25
## 12424      28526                             <NA>             19   10-25
## 12425      28526                             <NA>             19   10-25
## 12426      28526                             <NA>             19   10-25
## 12427      28526                             <NA>             19   10-25
## 12428      28526                             <NA>             19   10-25
## 12429      28526                             <NA>             19   10-25
## 12430      28526                             <NA>             19   10-25
## 12431      28526                             <NA>             19   10-25
## 12432      28526                             <NA>             19   10-25
## 12433      28526                             <NA>             19   10-25
## 12434      28526                             <NA>             19   10-25
## 12435      28526                             <NA>             19   10-25
## 12436      28526                             <NA>             19   10-25
## 12437      28526                             <NA>             19   10-25
## 12438      28526                             <NA>             19   10-25
## 12439      28526                             <NA>             19   10-25
## 12440      28526                             <NA>             19   10-25
## 12441      28526                             <NA>             19   10-25
## 12442      28526                             <NA>             19   10-25
## 12443      28526                             <NA>             19   10-25
## 12444      28526                             <NA>             19   10-25
## 12445      28782                             <NA>             53  25-100
## 12446      28782                             <NA>             53  25-100
## 12447      28782                             <NA>             53  25-100
## 12448      28782                             <NA>             53  25-100
## 12449      28782                             <NA>             53  25-100
## 12450      28782                             <NA>             53  25-100
## 12451      28782                             <NA>             53  25-100
## 12452      28782                             <NA>             53  25-100
## 12453      28782                             <NA>             53  25-100
## 12454      28782                             <NA>             53  25-100
## 12455      28782                             <NA>             53  25-100
## 12456      28782                             <NA>             53  25-100
## 12457      28782                             <NA>             53  25-100
## 12458      28782                             <NA>             53  25-100
## 12459      28782                             <NA>             53  25-100
## 12460      28782                             <NA>             53  25-100
## 12461      28782                             <NA>             53  25-100
## 12462      28782                             <NA>             53  25-100
## 12463      28782                             <NA>             53  25-100
## 12464      28782                             <NA>             53  25-100
## 12465      28782                             <NA>             53  25-100
## 12466      28782                             <NA>             53  25-100
## 12467      28782                             <NA>             53  25-100
## 12468      28782                             <NA>             53  25-100
## 12469      28782                             <NA>             53  25-100
## 12470      28782                             <NA>             53  25-100
## 12471      28782                             <NA>             53  25-100
## 12472      28782                             <NA>             53  25-100
## 12473      28782                             <NA>             53  25-100
## 12474      28782                             <NA>             53  25-100
## 12475      28782                             <NA>             53  25-100
## 12476      28782                             <NA>             53  25-100
## 12477      28782                             <NA>             53  25-100
## 12478      28782                             <NA>             53  25-100
## 12479      28782                             <NA>             53  25-100
## 12480      28782                             <NA>             53  25-100
## 12481      28782                             <NA>             53  25-100
## 12482      28782                             <NA>             53  25-100
## 12483      28782                             <NA>             53  25-100
## 12484      28782                             <NA>             53  25-100
## 12485      28782                             <NA>             53  25-100
## 12486      28782                             <NA>             53  25-100
## 12487      28782                             <NA>             53  25-100
## 12488      28782                             <NA>             53  25-100
## 12489      28782                             <NA>             53  25-100
## 12490      28782                             <NA>             53  25-100
## 12491      28782                             <NA>             53  25-100
## 12492      28782                             <NA>             53  25-100
## 12493      28782                             <NA>             53  25-100
## 12494      28782                             <NA>             53  25-100
## 12495      28782                             <NA>             53  25-100
## 12496      28782                             <NA>             53  25-100
## 12497      28782                             <NA>             53  25-100
## 12498      28782                             <NA>             53  25-100
## 12499      28782                             <NA>             53  25-100
##       quarter   first variable        value
## 1      2001.4 2001-11        6 0.0039318480
## 2      2001.4 2001-11       40 0.0144167759
## 3      2001.4 2001-11       52 0.0366972477
## 4      2001.4 2001-11        4 0.0039318480
## 5      2001.4 2001-11       45 0.0445609436
## 6      2001.4 2001-11       25 0.0131061599
## 7      2001.4 2001-11       22 0.0065530799
## 8      2001.4 2001-11       32 0.0104849279
## 9      2001.4 2001-11       54 0.0406290957
## 10     2001.4 2001-11       58 0.0366972477
## 11     2001.4 2001-11       11 0.0013106160
## 12     2001.4 2001-11       12 0.0026212320
## 13     2001.4 2001-11       15 0.0039318480
## 14     2001.4 2001-11       57 0.0327653997
## 15     2001.4 2001-11       42 0.0275229358
## 16     2001.4 2001-11       55 0.0314547837
## 17     2001.4 2001-11        3 0.0000000000
## 18     2001.4 2001-11       37 0.0065530799
## 19     2001.4 2001-11       13 0.0000000000
## 20     2001.4 2001-11       44 0.0353866317
## 21     2001.4 2001-11       31 0.0065530799
## 22     2001.4 2001-11       14 0.0078636959
## 23     2001.4 2001-11       10 0.0026212320
## 24     2001.4 2001-11        8 0.0039318480
## 25     2001.4 2001-11       24 0.0039318480
## 26     2001.4 2001-11       38 0.0052424640
## 27     2001.4 2001-11       27 0.0078636959
## 28     2001.4 2001-11       36 0.0065530799
## 29     2001.4 2001-11       17 0.0039318480
## 30     2001.4 2001-11       43 0.0576671035
## 31     2001.4 2001-11       61 0.0969855832
## 32     2001.4 2001-11       48 0.0104849279
## 33     2001.4 2001-11       30 0.0104849279
## 34     2001.4 2001-11       59 0.0498034076
## 35     2001.4 2001-11       50 0.0249017038
## 36     2001.4 2001-11       49 0.0275229358
## 37     2001.4 2001-11       47 0.0157273919
## 38     2001.4 2001-11       23 0.0065530799
## 39     2001.4 2001-11        1 0.0013106160
## 40     2001.4 2001-11       29 0.0078636959
## 41     2001.4 2001-11       21 0.0078636959
## 42     2001.4 2001-11       26 0.0078636959
## 43     2001.4 2001-11       39 0.0249017038
## 44     2001.4 2001-11        9 0.0000000000
## 45     2001.4 2001-11       28 0.0091743119
## 46     2001.4 2001-11       51 0.0209698558
## 47     2001.4 2001-11       35 0.0039318480
## 48     2001.4 2001-11        2 0.0275229358
## 49     2001.4 2001-11       53 0.0380078637
## 50     2001.4 2001-11       33 0.0039318480
## 51     2001.4 2001-11       16 0.0026212320
## 52     2001.4 2001-11        5 0.0026212320
## 53     2001.4 2001-11       46 0.0275229358
## 54     2001.4 2001-11       19 0.0013106160
## 55     2001.4 2001-11       60 0.0511140236
## 56     2001.4 2001-11       34 0.0117955439
## 57     2001.4 2001-11       20 0.0026212320
## 58     2001.4 2001-11       56 0.0262123198
## 59     2001.4 2001-11       41 0.0104849279
## 60     2001.4 2001-11       18 0.0026212320
## 61     2001.4 2001-11        7 0.0065530799
## 62     2001.3 2001-08        1 0.0344827586
## 63     2001.3 2001-08        2 0.0000000000
## 64     2001.3 2001-08        3 0.0000000000
## 65     2001.3 2001-08        4 0.0000000000
## 66     2001.3 2001-08        5 0.0000000000
## 67     2001.3 2001-08        6 0.0000000000
## 68     2001.3 2001-08        7 0.0000000000
## 69     2001.3 2001-08        8 0.0172413793
## 70     2001.3 2001-08        9 0.0172413793
## 71     2001.3 2001-08       10 0.0000000000
## 72     2001.3 2001-08       11 0.0000000000
## 73     2001.3 2001-08       12 0.0000000000
## 74     2001.3 2001-08       13 0.0000000000
## 75     2001.3 2001-08       14 0.0344827586
## 76     2001.3 2001-08       15 0.0000000000
## 77     2001.3 2001-08       16 0.0517241379
## 78     2001.3 2001-08       17 0.0000000000
## 79     2001.3 2001-08       18 0.0000000000
## 80     2001.3 2001-08       19 0.0517241379
## 81     2001.3 2001-08       20 0.0172413793
## 82     2001.3 2001-08       21 0.0000000000
## 83     2001.3 2001-08       22 0.0172413793
## 84     2001.3 2001-08       23 0.0000000000
## 85     2001.3 2001-08       24 0.0517241379
## 86     2001.3 2001-08       25 0.0000000000
## 87     2001.3 2001-08       26 0.0000000000
## 88     2001.3 2001-08       27 0.0000000000
## 89     2001.3 2001-08       28 0.0172413793
## 90     2001.3 2001-08       29 0.0000000000
## 91     2001.3 2001-08       30 0.0172413793
## 92     2001.3 2001-08       31 0.0000000000
## 93     2001.3 2001-08       32 0.0344827586
## 94     2001.3 2001-08       33 0.0172413793
## 95     2001.3 2001-08       34 0.0000000000
## 96     2001.3 2001-08       35 0.0000000000
## 97     2001.3 2001-08       36 0.0344827586
## 98     2001.3 2001-08       37 0.0172413793
## 99     2001.3 2001-08       38 0.0000000000
## 100    2001.3 2001-08       39 0.0517241379
## 101    2001.3 2001-08       40 0.0000000000
## 102    2001.3 2001-08       41 0.0344827586
## 103    2001.3 2001-08       42 0.0000000000
## 104    2001.3 2001-08       43 0.0172413793
## 105    2001.3 2001-08       44 0.0000000000
## 106    2001.3 2001-08       45 0.0000000000
## 107    2001.3 2001-08       46 0.0344827586
## 108    2001.3 2001-08       47 0.0172413793
## 109    2001.3 2001-08       48 0.0172413793
## 110    2001.3 2001-08       49 0.0172413793
## 111    2001.3 2001-08       50 0.0344827586
## 112    2001.3 2001-08       51 0.0689655172
## 113    2001.3 2001-08       52 0.0000000000
## 114    2001.3 2001-08       53 0.0689655172
## 115    2001.3 2001-08       54 0.0000000000
## 116    2001.3 2001-08       55 0.0344827586
## 117    2001.3 2001-08       56 0.0344827586
## 118    2001.3 2001-08       57 0.0344827586
## 119    2001.3 2001-08       59 0.0172413793
## 120    2001.3 2001-08       58 0.0517241379
## 121    2001.3 2001-08       61 0.0000000000
## 122    2001.3 2001-08       60 0.0344827586
## 123    2001.3 2001-08        1 0.1250000000
## 124    2001.3 2001-08        2 0.0000000000
## 125    2001.3 2001-08        3 0.0000000000
## 126    2001.3 2001-08        4 0.0000000000
## 127    2001.3 2001-08        5 0.0000000000
## 128    2001.3 2001-08        6 0.0000000000
## 129    2001.3 2001-08        7 0.1250000000
## 130    2001.3 2001-08        8 0.0000000000
## 131    2001.3 2001-08        9 0.1250000000
## 132    2001.3 2001-08       10 0.0000000000
## 133    2001.3 2001-08       11 0.0000000000
## 134    2001.3 2001-08       12 0.1250000000
## 135    2001.3 2001-08       13 0.0000000000
## 136    2001.3 2001-08       14 0.0000000000
## 137    2001.3 2001-08       15 0.0000000000
## 138    2001.3 2001-08       16 0.0000000000
## 139    2001.3 2001-08       17 0.0000000000
## 140    2001.3 2001-08       18 0.0000000000
## 141    2001.3 2001-08       19 0.5000000000
## 142    2001.3 2001-08       20 0.0000000000
## 143    2001.3 2001-08       21 0.0000000000
## 144    2001.3 2001-08       22 0.0000000000
## 145    2001.3 2001-08       23 0.0000000000
## 146    2001.3 2001-08       24 0.0000000000
## 147    2001.3 2001-08       25 0.0000000000
## 148    2001.3 2001-08       26 0.0000000000
## 149    2001.3 2001-08       27 0.0000000000
## 150    2001.3 2001-08       28 0.0000000000
## 151    2001.3 2001-08       29 0.0000000000
## 152    2001.3 2001-08       30 0.0000000000
## 153    2001.3 2001-08       31 0.0000000000
## 154    2001.3 2001-08       32 0.0000000000
## 155    2001.3 2001-08       33 0.0000000000
## 156    2001.3 2001-08       34 0.0000000000
## 157    2001.3 2001-08       35 0.0000000000
## 158    2001.3 2001-08       36 0.0000000000
## 159    2001.3 2001-08       37 0.0000000000
## 160    2001.3 2001-08       38 0.0000000000
## 161    2001.3 2001-08       39 0.0000000000
## 162    2001.3 2001-08       40 0.0000000000
## 163    2001.3 2001-08       41 0.0000000000
## 164    2001.3 2001-08       42 0.0000000000
## 165    2001.3 2001-08       43 0.0000000000
## 166    2001.3 2001-08       44 0.0000000000
## 167    2001.3 2001-08       45 0.0000000000
## 168    2001.3 2001-08       46 0.0000000000
## 169    2001.3 2001-08       47 0.0000000000
## 170    2001.3 2001-08       48 0.0000000000
## 171    2001.3 2001-08       49 0.0000000000
## 172    2001.3 2001-08       50 0.0000000000
## 173    2001.3 2001-08       51 0.0000000000
## 174    2001.3 2001-08       52 0.0000000000
## 175    2001.3 2001-08       59 0.0000000000
## 176    2001.3 2001-08       56 0.0000000000
## 177    2001.3 2001-08       53 0.0000000000
## 178    2001.3 2001-08       60 0.0000000000
## 179    2001.3 2001-08       57 0.0000000000
## 180    2001.3 2001-08       54 0.0000000000
## 181    2001.3 2001-08       61 0.0000000000
## 182    2001.3 2001-08       58 0.0000000000
## 183    2001.3 2001-08       55 0.0000000000
## 184    2001.2 2001-05       50 0.0090497738
## 185    2001.2 2001-05       19 0.0045248869
## 186    2001.2 2001-05        9 0.0000000000
## 187    2001.2 2001-05       33 0.0000000000
## 188    2001.2 2001-05       21 0.0045248869
## 189    2001.2 2001-05       38 0.0090497738
## 190    2001.2 2001-05        7 0.0000000000
## 191    2001.2 2001-05       25 0.0090497738
## 192    2001.2 2001-05       12 0.0000000000
## 193    2001.2 2001-05       44 0.0226244344
## 194    2001.2 2001-05       24 0.0135746606
## 195    2001.2 2001-05       56 0.0497737557
## 196    2001.2 2001-05       49 0.0271493213
## 197    2001.2 2001-05       57 0.0588235294
## 198    2001.2 2001-05       20 0.0090497738
## 199    2001.2 2001-05       10 0.0045248869
## 200    2001.2 2001-05       58 0.0723981900
## 201    2001.2 2001-05       47 0.0361990950
## 202    2001.2 2001-05       37 0.0180995475
## 203    2001.2 2001-05        3 0.0000000000
## 204    2001.2 2001-05       11 0.0000000000
## 205    2001.2 2001-05       15 0.0045248869
## 206    2001.2 2001-05       31 0.0090497738
## 207    2001.2 2001-05       22 0.0000000000
## 208    2001.2 2001-05       29 0.0090497738
## 209    2001.2 2001-05       27 0.0090497738
## 210    2001.2 2001-05       32 0.0045248869
## 211    2001.2 2001-05       60 0.0316742081
## 212    2001.2 2001-05       59 0.0497737557
## 213    2001.2 2001-05       61 0.0452488688
## 214    2001.2 2001-05       34 0.0180995475
## 215    2001.2 2001-05       45 0.0135746606
## 216    2001.2 2001-05        1 0.0045248869
## 217    2001.2 2001-05       53 0.0180995475
## 218    2001.2 2001-05       46 0.0135746606
## 219    2001.2 2001-05       23 0.0000000000
## 220    2001.2 2001-05        8 0.0000000000
## 221    2001.2 2001-05       48 0.0045248869
## 222    2001.2 2001-05        2 0.0000000000
## 223    2001.2 2001-05       41 0.0361990950
## 224    2001.2 2001-05       39 0.0226244344
## 225    2001.2 2001-05        6 0.0000000000
## 226    2001.2 2001-05       55 0.0633484163
## 227    2001.2 2001-05       35 0.0226244344
## 228    2001.2 2001-05        5 0.0000000000
## 229    2001.2 2001-05        4 0.0000000000
## 230    2001.2 2001-05       36 0.0226244344
## 231    2001.2 2001-05       51 0.0407239819
## 232    2001.2 2001-05       54 0.0271493213
## 233    2001.2 2001-05       43 0.0497737557
## 234    2001.2 2001-05       28 0.0090497738
## 235    2001.2 2001-05       30 0.0045248869
## 236    2001.2 2001-05       16 0.0045248869
## 237    2001.2 2001-05       40 0.0271493213
## 238    2001.2 2001-05       18 0.0090497738
## 239    2001.2 2001-05       42 0.0135746606
## 240    2001.2 2001-05       14 0.0000000000
## 241    2001.2 2001-05       26 0.0045248869
## 242    2001.2 2001-05       13 0.0000000000
## 243    2001.2 2001-05       17 0.0180995475
## 244    2001.2 2001-05       52 0.0407239819
## 245    2001.4 2001-10       47 0.0398505604
## 246    2001.4 2001-10       50 0.0273972603
## 247    2001.4 2001-10       37 0.0099626401
## 248    2001.4 2001-10       33 0.0087173101
## 249    2001.4 2001-10       20 0.0049813200
## 250    2001.4 2001-10       49 0.0361145704
## 251    2001.4 2001-10       21 0.0024906600
## 252    2001.4 2001-10        5 0.0012453300
## 253    2001.4 2001-10       19 0.0236612702
## 254    2001.4 2001-10       34 0.0174346202
## 255    2001.4 2001-10       59 0.0373599004
## 256    2001.4 2001-10        9 0.0000000000
## 257    2001.4 2001-10       61 0.0261519303
## 258    2001.4 2001-10        8 0.0000000000
## 259    2001.4 2001-10       44 0.0124533001
## 260    2001.4 2001-10       23 0.0012453300
## 261    2001.4 2001-10       46 0.0286425903
## 262    2001.4 2001-10        7 0.0087173101
## 263    2001.4 2001-10       60 0.0273972603
## 264    2001.4 2001-10        6 0.0000000000
## 265    2001.4 2001-10       43 0.0410958904
## 266    2001.4 2001-10        4 0.0024906600
## 267    2001.4 2001-10       32 0.0099626401
## 268    2001.4 2001-10       38 0.0136986301
## 269    2001.4 2001-10       58 0.0336239103
## 270    2001.4 2001-10       24 0.0012453300
## 271    2001.4 2001-10       11 0.0012453300
## 272    2001.4 2001-10       31 0.0224159402
## 273    2001.4 2001-10        3 0.0012453300
## 274    2001.4 2001-10       18 0.0037359900
## 275    2001.4 2001-10       45 0.0149439601
## 276    2001.4 2001-10       14 0.0012453300
## 277    2001.4 2001-10       25 0.0000000000
## 278    2001.4 2001-10       48 0.0199252802
## 279    2001.4 2001-10       35 0.0174346202
## 280    2001.4 2001-10       22 0.0037359900
## 281    2001.4 2001-10       15 0.0012453300
## 282    2001.4 2001-10       28 0.0037359900
## 283    2001.4 2001-10       56 0.0535491905
## 284    2001.4 2001-10       57 0.0311332503
## 285    2001.4 2001-10       16 0.0062266501
## 286    2001.4 2001-10       10 0.0024906600
## 287    2001.4 2001-10       12 0.0024906600
## 288    2001.4 2001-10       41 0.0024906600
## 289    2001.4 2001-10        2 0.0000000000
## 290    2001.4 2001-10       26 0.0074719801
## 291    2001.4 2001-10       42 0.0074719801
## 292    2001.4 2001-10       55 0.1058530511
## 293    2001.4 2001-10       17 0.0024906600
## 294    2001.4 2001-10       53 0.1095890411
## 295    2001.4 2001-10       51 0.0224159402
## 296    2001.4 2001-10       54 0.0535491905
## 297    2001.4 2001-10       39 0.0074719801
## 298    2001.4 2001-10       52 0.0386052304
## 299    2001.4 2001-10       36 0.0074719801
## 300    2001.4 2001-10       40 0.0074719801
## 301    2001.4 2001-10       27 0.0049813200
## 302    2001.4 2001-10       29 0.0074719801
## 303    2001.4 2001-10       30 0.0112079701
## 304    2001.4 2001-10       13 0.0000000000
## 305    2001.4 2001-10        1 0.0012453300
## 306    2002.2 2002-06        1 1.0000000000
## 307    2002.2 2002-06        2 0.0000000000
## 308    2002.2 2002-06        3 0.0000000000
## 309    2002.2 2002-06        4 0.0000000000
## 310    2002.2 2002-06        5 0.0000000000
## 311    2002.2 2002-06        6 0.0000000000
## 312    2002.2 2002-06        7 0.0000000000
## 313    2002.2 2002-06        8 0.0000000000
## 314    2002.2 2002-06        9 0.0000000000
## 315    2002.2 2002-06       10 0.0000000000
## 316    2002.2 2002-06       11 0.0000000000
## 317    2002.2 2002-06       12 0.0000000000
## 318    2002.2 2002-06       13 0.0000000000
## 319    2002.2 2002-06       14 0.0000000000
## 320    2002.2 2002-06       15 0.0000000000
## 321    2002.2 2002-06       16 0.0000000000
## 322    2002.2 2002-06       17 0.0000000000
## 323    2002.2 2002-06       18 0.0000000000
## 324    2002.2 2002-06       19 0.0000000000
## 325    2002.2 2002-06       20 0.0000000000
## 326    2002.2 2002-06       21 0.0000000000
## 327    2002.2 2002-06       22 0.0000000000
## 328    2002.2 2002-06       23 0.0000000000
## 329    2002.2 2002-06       24 0.0000000000
## 330    2002.2 2002-06       25 0.0000000000
## 331    2002.2 2002-06       26 0.0000000000
## 332    2002.2 2002-06       27 0.0000000000
## 333    2002.2 2002-06       28 0.0000000000
## 334    2002.2 2002-06       29 0.0000000000
## 335    2002.2 2002-06       30 0.0000000000
## 336    2002.2 2002-06       31 0.0000000000
## 337    2002.2 2002-06       32 0.0000000000
## 338    2002.2 2002-06       33 0.0000000000
## 339    2002.2 2002-06       34 0.0000000000
## 340    2002.2 2002-06       35 0.0000000000
## 341    2002.2 2002-06       36 0.0000000000
## 342    2002.2 2002-06       37 0.0000000000
## 343    2002.2 2002-06       38 0.0000000000
## 344    2002.2 2002-06       39 0.0000000000
## 345    2002.2 2002-06       40 0.0000000000
## 346    2002.2 2002-06       41 0.0000000000
## 347    2002.2 2002-06       42 0.0000000000
## 348    2002.2 2002-06       43 0.0000000000
## 349    2002.2 2002-06       44 0.0000000000
## 350    2002.2 2002-06       45 0.0000000000
## 351    2002.2 2002-06       46 0.0000000000
## 352    2002.2 2002-06       47 0.0000000000
## 353    2002.2 2002-06       48 0.0000000000
## 354    2002.2 2002-06       49 0.0000000000
## 355    2002.2 2002-06       50 0.0000000000
## 356    2002.2 2002-06       51 0.0000000000
## 357    2002.2 2002-06       52 0.0000000000
## 358    2002.2 2002-06       53 0.0000000000
## 359    2002.2 2002-06       54 0.0000000000
## 360    2002.2 2002-06       55 0.0000000000
## 361    2002.2 2002-06       56 0.0000000000
## 362    2002.2 2002-06       57 0.0000000000
## 363    2002.2 2002-06       59 0.0000000000
## 364    2002.2 2002-06       58 0.0000000000
## 365    2002.2 2002-06       61 0.0000000000
## 366    2002.2 2002-06       60 0.0000000000
## 367    2002.1 2002-02        1 0.5000000000
## 368    2002.1 2002-02       11 0.0000000000
## 369    2002.1 2002-02        2 0.0000000000
## 370    2002.1 2002-02       12 0.0000000000
## 371    2002.1 2002-02        3 0.0000000000
## 372    2002.1 2002-02       13 0.0000000000
## 373    2002.1 2002-02        4 0.0000000000
## 374    2002.1 2002-02       14 0.0000000000
## 375    2002.1 2002-02        5 0.5000000000
## 376    2002.1 2002-02       15 0.0000000000
## 377    2002.1 2002-02        6 0.0000000000
## 378    2002.1 2002-02       16 0.0000000000
## 379    2002.1 2002-02        7 0.0000000000
## 380    2002.1 2002-02       17 0.0000000000
## 381    2002.1 2002-02        8 0.0000000000
## 382    2002.1 2002-02       18 0.0000000000
## 383    2002.1 2002-02        9 0.0000000000
## 384    2002.1 2002-02       19 0.0000000000
## 385    2002.1 2002-02       10 0.0000000000
## 386    2002.1 2002-02       20 0.0000000000
## 387    2002.1 2002-02       21 0.0000000000
## 388    2002.1 2002-02       22 0.0000000000
## 389    2002.1 2002-02       23 0.0000000000
## 390    2002.1 2002-02       24 0.0000000000
## 391    2002.1 2002-02       25 0.0000000000
## 392    2002.1 2002-02       26 0.0000000000
## 393    2002.1 2002-02       27 0.0000000000
## 394    2002.1 2002-02       28 0.0000000000
## 395    2002.1 2002-02       29 0.0000000000
## 396    2002.1 2002-02       30 0.0000000000
## 397    2002.1 2002-02       31 0.0000000000
## 398    2002.1 2002-02       32 0.0000000000
## 399    2002.1 2002-02       33 0.0000000000
## 400    2002.1 2002-02       34 0.0000000000
## 401    2002.1 2002-02       35 0.0000000000
## 402    2002.1 2002-02       36 0.0000000000
## 403    2002.1 2002-02       37 0.0000000000
## 404    2002.1 2002-02       38 0.0000000000
## 405    2002.1 2002-02       39 0.0000000000
## 406    2002.1 2002-02       40 0.0000000000
## 407    2002.1 2002-02       41 0.0000000000
## 408    2002.1 2002-02       42 0.0000000000
## 409    2002.1 2002-02       43 0.0000000000
## 410    2002.1 2002-02       44 0.0000000000
## 411    2002.1 2002-02       45 0.0000000000
## 412    2002.1 2002-02       46 0.0000000000
## 413    2002.1 2002-02       47 0.0000000000
## 414    2002.1 2002-02       48 0.0000000000
## 415    2002.1 2002-02       49 0.0000000000
## 416    2002.1 2002-02       50 0.0000000000
## 417    2002.1 2002-02       51 0.0000000000
## 418    2002.1 2002-02       52 0.0000000000
## 419    2002.1 2002-02       53 0.0000000000
## 420    2002.1 2002-02       54 0.0000000000
## 421    2002.1 2002-02       55 0.0000000000
## 422    2002.1 2002-02       56 0.0000000000
## 423    2002.1 2002-02       57 0.0000000000
## 424    2002.1 2002-02       58 0.0000000000
## 425    2002.1 2002-02       59 0.0000000000
## 426    2002.1 2002-02       60 0.0000000000
## 427    2002.1 2002-02       61 0.0000000000
## 428    2001.4 2001-11        9 0.0021390374
## 429    2001.4 2001-11       28 0.0114973262
## 430    2001.4 2001-11       31 0.0120320856
## 431    2001.4 2001-11       27 0.0184491979
## 432    2001.4 2001-11       11 0.0050802139
## 433    2001.4 2001-11       40 0.0224598930
## 434    2001.4 2001-11       42 0.0235294118
## 435    2001.4 2001-11        8 0.0021390374
## 436    2001.4 2001-11       39 0.0254010695
## 437    2001.4 2001-11       57 0.0328877005
## 438    2001.4 2001-11       19 0.0109625668
## 439    2001.4 2001-11       59 0.0302139037
## 440    2001.4 2001-11       43 0.0120320856
## 441    2001.4 2001-11       41 0.0181818182
## 442    2001.4 2001-11       21 0.0005347594
## 443    2001.4 2001-11       60 0.0395721925
## 444    2001.4 2001-11       26 0.0045454545
## 445    2001.4 2001-11       44 0.0251336898
## 446    2001.4 2001-11        7 0.0021390374
## 447    2001.4 2001-11        5 0.0002673797
## 448    2001.4 2001-11       12 0.0002673797
## 449    2001.4 2001-11       54 0.0358288770
## 450    2001.4 2001-11       22 0.0050802139
## 451    2001.4 2001-11       10 0.0053475936
## 452    2001.4 2001-11        6 0.0000000000
## 453    2001.4 2001-11       30 0.0171122995
## 454    2001.4 2001-11       38 0.0106951872
## 455    2001.4 2001-11       29 0.0058823529
## 456    2001.4 2001-11        4 0.0002673797
## 457    2001.4 2001-11       13 0.0016042781
## 458    2001.4 2001-11       49 0.0211229947
## 459    2001.4 2001-11        2 0.0029411765
## 460    2001.4 2001-11       15 0.0122994652
## 461    2001.4 2001-11       52 0.0283422460
## 462    2001.4 2001-11       36 0.0149732620
## 463    2001.4 2001-11       61 0.0719251337
## 464    2001.4 2001-11       16 0.0032085561
## 465    2001.4 2001-11       20 0.0018716578
## 466    2001.4 2001-11       14 0.0008021390
## 467    2001.4 2001-11        1 0.0002673797
## 468    2001.4 2001-11       37 0.0139037433
## 469    2001.4 2001-11       58 0.0312834225
## 470    2001.4 2001-11       48 0.0216577540
## 471    2001.4 2001-11       45 0.0470588235
## 472    2001.4 2001-11       24 0.0168449198
## 473    2001.4 2001-11       51 0.0342245989
## 474    2001.4 2001-11       55 0.0224598930
## 475    2001.4 2001-11       25 0.0184491979
## 476    2001.4 2001-11       47 0.0355614973
## 477    2001.4 2001-11       56 0.0227272727
## 478    2001.4 2001-11       34 0.0122994652
## 479    2001.4 2001-11       46 0.0422459893
## 480    2001.4 2001-11       32 0.0192513369
## 481    2001.4 2001-11       35 0.0080213904
## 482    2001.4 2001-11       18 0.0024064171
## 483    2001.4 2001-11        3 0.0002673797
## 484    2001.4 2001-11       23 0.0056149733
## 485    2001.4 2001-11       50 0.0352941176
## 486    2001.4 2001-11       17 0.0024064171
## 487    2001.4 2001-11       53 0.0446524064
## 488    2001.4 2001-11       33 0.0243315508
## 489    2002.1 2002-02        1 1.0000000000
## 490    2002.1 2002-02        2 0.0000000000
## 491    2002.1 2002-02        3 0.0000000000
## 492    2002.1 2002-02        4 0.0000000000
## 493    2002.1 2002-02        5 0.0000000000
## 494    2002.1 2002-02        6 0.0000000000
## 495    2002.1 2002-02        7 0.0000000000
## 496    2002.1 2002-02        8 0.0000000000
## 497    2002.1 2002-02        9 0.0000000000
## 498    2002.1 2002-02       10 0.0000000000
## 499    2002.1 2002-02       11 0.0000000000
## 500    2002.1 2002-02       12 0.0000000000
## 501    2002.1 2002-02       13 0.0000000000
## 502    2002.1 2002-02       14 0.0000000000
## 503    2002.1 2002-02       15 0.0000000000
## 504    2002.1 2002-02       16 0.0000000000
## 505    2002.1 2002-02       17 0.0000000000
## 506    2002.1 2002-02       18 0.0000000000
## 507    2002.1 2002-02       19 0.0000000000
## 508    2002.1 2002-02       20 0.0000000000
## 509    2002.1 2002-02       21 0.0000000000
## 510    2002.1 2002-02       22 0.0000000000
## 511    2002.1 2002-02       23 0.0000000000
## 512    2002.1 2002-02       24 0.0000000000
## 513    2002.1 2002-02       25 0.0000000000
## 514    2002.1 2002-02       26 0.0000000000
## 515    2002.1 2002-02       27 0.0000000000
## 516    2002.1 2002-02       28 0.0000000000
## 517    2002.1 2002-02       29 0.0000000000
## 518    2002.1 2002-02       30 0.0000000000
## 519    2002.1 2002-02       31 0.0000000000
## 520    2002.1 2002-02       32 0.0000000000
## 521    2002.1 2002-02       33 0.0000000000
## 522    2002.1 2002-02       34 0.0000000000
## 523    2002.1 2002-02       35 0.0000000000
## 524    2002.1 2002-02       36 0.0000000000
## 525    2002.1 2002-02       37 0.0000000000
## 526    2002.1 2002-02       38 0.0000000000
## 527    2002.1 2002-02       39 0.0000000000
## 528    2002.1 2002-02       40 0.0000000000
## 529    2002.1 2002-02       41 0.0000000000
## 530    2002.1 2002-02       42 0.0000000000
## 531    2002.1 2002-02       43 0.0000000000
## 532    2002.1 2002-02       44 0.0000000000
## 533    2002.1 2002-02       45 0.0000000000
## 534    2002.1 2002-02       46 0.0000000000
## 535    2002.1 2002-02       47 0.0000000000
## 536    2002.1 2002-02       48 0.0000000000
## 537    2002.1 2002-02       49 0.0000000000
## 538    2002.1 2002-02       50 0.0000000000
## 539    2002.1 2002-02       51 0.0000000000
## 540    2002.1 2002-02       52 0.0000000000
## 541    2002.1 2002-02       53 0.0000000000
## 542    2002.1 2002-02       54 0.0000000000
## 543    2002.1 2002-02       59 0.0000000000
## 544    2002.1 2002-02       55 0.0000000000
## 545    2002.1 2002-02       60 0.0000000000
## 546    2002.1 2002-02       57 0.0000000000
## 547    2002.1 2002-02       56 0.0000000000
## 548    2002.1 2002-02       61 0.0000000000
## 549    2002.1 2002-02       58 0.0000000000
## 550    2001.4 2001-10        1 0.0222222222
## 551    2001.4 2001-10        2 0.0000000000
## 552    2001.4 2001-10        3 0.0000000000
## 553    2001.4 2001-10        4 0.0000000000
## 554    2001.4 2001-10        5 0.0222222222
## 555    2001.4 2001-10        6 0.0000000000
## 556    2001.4 2001-10        7 0.0222222222
## 557    2001.4 2001-10        8 0.0666666667
## 558    2001.4 2001-10        9 0.0000000000
## 559    2001.4 2001-10       10 0.0000000000
## 560    2001.4 2001-10       11 0.0222222222
## 561    2001.4 2001-10       12 0.0666666667
## 562    2001.4 2001-10       13 0.0222222222
## 563    2001.4 2001-10       14 0.0000000000
## 564    2001.4 2001-10       15 0.0000000000
## 565    2001.4 2001-10       16 0.0000000000
## 566    2001.4 2001-10       17 0.0000000000
## 567    2001.4 2001-10       18 0.0000000000
## 568    2001.4 2001-10       19 0.0000000000
## 569    2001.4 2001-10       20 0.1111111111
## 570    2001.4 2001-10       21 0.0000000000
## 571    2001.4 2001-10       22 0.0000000000
## 572    2001.4 2001-10       23 0.0000000000
## 573    2001.4 2001-10       24 0.0000000000
## 574    2001.4 2001-10       25 0.0000000000
## 575    2001.4 2001-10       26 0.0000000000
## 576    2001.4 2001-10       27 0.0000000000
## 577    2001.4 2001-10       28 0.0000000000
## 578    2001.4 2001-10       29 0.0000000000
## 579    2001.4 2001-10       30 0.0000000000
## 580    2001.4 2001-10       31 0.0000000000
## 581    2001.4 2001-10       32 0.0000000000
## 582    2001.4 2001-10       33 0.0222222222
## 583    2001.4 2001-10       34 0.0000000000
## 584    2001.4 2001-10       35 0.0666666667
## 585    2001.4 2001-10       36 0.0222222222
## 586    2001.4 2001-10       37 0.0000000000
## 587    2001.4 2001-10       38 0.0000000000
## 588    2001.4 2001-10       39 0.0222222222
## 589    2001.4 2001-10       40 0.0000000000
## 590    2001.4 2001-10       41 0.0000000000
## 591    2001.4 2001-10       42 0.0000000000
## 592    2001.4 2001-10       43 0.0444444444
## 593    2001.4 2001-10       44 0.0222222222
## 594    2001.4 2001-10       45 0.0222222222
## 595    2001.4 2001-10       46 0.0222222222
## 596    2001.4 2001-10       47 0.0222222222
## 597    2001.4 2001-10       48 0.0222222222
## 598    2001.4 2001-10       49 0.0222222222
## 599    2001.4 2001-10       50 0.0222222222
## 600    2001.4 2001-10       51 0.0444444444
## 601    2001.4 2001-10       52 0.0222222222
## 602    2001.4 2001-10       53 0.0000000000
## 603    2001.4 2001-10       54 0.1111111111
## 604    2001.4 2001-10       55 0.0222222222
## 605    2001.4 2001-10       56 0.0444444444
## 606    2001.4 2001-10       57 0.0000000000
## 607    2001.4 2001-10       61 0.0000000000
## 608    2001.4 2001-10       60 0.0444444444
## 609    2001.4 2001-10       58 0.0222222222
## 610    2001.4 2001-10       59 0.0000000000
## 611    2001.4 2001-10        1 0.0013123360
## 612    2001.4 2001-10        2 0.0000000000
## 613    2001.4 2001-10        3 0.0013123360
## 614    2001.4 2001-10        4 0.0000000000
## 615    2001.4 2001-10        5 0.0013123360
## 616    2001.4 2001-10        6 0.0000000000
## 617    2001.4 2001-10        7 0.0013123360
## 618    2001.4 2001-10        8 0.0039370079
## 619    2001.4 2001-10        9 0.0013123360
## 620    2001.4 2001-10       10 0.0000000000
## 621    2001.4 2001-10       11 0.0052493438
## 622    2001.4 2001-10       12 0.0026246719
## 623    2001.4 2001-10       13 0.0013123360
## 624    2001.4 2001-10       14 0.0013123360
## 625    2001.4 2001-10       15 0.0026246719
## 626    2001.4 2001-10       16 0.0026246719
## 627    2001.4 2001-10       17 0.0000000000
## 628    2001.4 2001-10       18 0.0052493438
## 629    2001.4 2001-10       19 0.0078740157
## 630    2001.4 2001-10       20 0.0144356955
## 631    2001.4 2001-10       21 0.0039370079
## 632    2001.4 2001-10       22 0.0013123360
## 633    2001.4 2001-10       23 0.0039370079
## 634    2001.4 2001-10       24 0.0013123360
## 635    2001.4 2001-10       25 0.0013123360
## 636    2001.4 2001-10       26 0.0013123360
## 637    2001.4 2001-10       27 0.0052493438
## 638    2001.4 2001-10       28 0.0000000000
## 639    2001.4 2001-10       29 0.0078740157
## 640    2001.4 2001-10       30 0.0000000000
## 641    2001.4 2001-10       31 0.0078740157
## 642    2001.4 2001-10       32 0.0091863517
## 643    2001.4 2001-10       33 0.0078740157
## 644    2001.4 2001-10       34 0.0039370079
## 645    2001.4 2001-10       35 0.0170603675
## 646    2001.4 2001-10       36 0.0196850394
## 647    2001.4 2001-10       37 0.0419947507
## 648    2001.4 2001-10       38 0.0183727034
## 649    2001.4 2001-10       39 0.0341207349
## 650    2001.4 2001-10       40 0.0170603675
## 651    2001.4 2001-10       41 0.0065616798
## 652    2001.4 2001-10       42 0.0236220472
## 653    2001.4 2001-10       43 0.0118110236
## 654    2001.4 2001-10       44 0.0118110236
## 655    2001.4 2001-10       45 0.0367454068
## 656    2001.4 2001-10       46 0.0328083990
## 657    2001.4 2001-10       47 0.0590551181
## 658    2001.4 2001-10       48 0.0314960630
## 659    2001.4 2001-10       49 0.0341207349
## 660    2001.4 2001-10       50 0.0498687664
## 661    2001.4 2001-10       51 0.0170603675
## 662    2001.4 2001-10       52 0.0275590551
## 663    2001.4 2001-10       53 0.0354330709
## 664    2001.4 2001-10       54 0.0590551181
## 665    2001.4 2001-10       55 0.0813648294
## 666    2001.4 2001-10       56 0.0643044619
## 667    2001.4 2001-10       61 0.0577427822
## 668    2001.4 2001-10       60 0.0393700787
## 669    2001.4 2001-10       58 0.0078740157
## 670    2001.4 2001-10       57 0.0433070866
## 671    2001.4 2001-10       59 0.0118110236
## 672    2002.1 2002-02       40 0.0000000000
## 673    2002.1 2002-02       54 0.0000000000
## 674    2002.1 2002-02       12 0.0000000000
## 675    2002.1 2002-02        7 0.0000000000
## 676    2002.1 2002-02        3 0.0000000000
## 677    2002.1 2002-02       28 0.0000000000
## 678    2002.1 2002-02       49 0.0000000000
## 679    2002.1 2002-02       26 0.0000000000
## 680    2002.1 2002-02       38 0.0000000000
## 681    2002.1 2002-02       13 0.0000000000
## 682    2002.1 2002-02       22 0.0000000000
## 683    2002.1 2002-02        4 0.0000000000
## 684    2002.1 2002-02       52 0.0000000000
## 685    2002.1 2002-02        1 0.1666666667
## 686    2002.1 2002-02       41 0.0000000000
## 687    2002.1 2002-02       57 0.0000000000
## 688    2002.1 2002-02       61 0.0000000000
## 689    2002.1 2002-02       10 0.0000000000
## 690    2002.1 2002-02       59 0.0000000000
## 691    2002.1 2002-02       31 0.0000000000
## 692    2002.1 2002-02       51 0.0000000000
## 693    2002.1 2002-02       35 0.0000000000
## 694    2002.1 2002-02       19 0.0000000000
## 695    2002.1 2002-02       25 0.0000000000
## 696    2002.1 2002-02       15 0.0000000000
## 697    2002.1 2002-02       14 0.0000000000
## 698    2002.1 2002-02        2 0.0000000000
## 699    2002.1 2002-02       39 0.0000000000
## 700    2002.1 2002-02       30 0.0000000000
## 701    2002.1 2002-02       46 0.1666666667
## 702    2002.1 2002-02       48 0.0000000000
## 703    2002.1 2002-02       47 0.6666666667
## 704    2002.1 2002-02       32 0.0000000000
## 705    2002.1 2002-02        9 0.0000000000
## 706    2002.1 2002-02       11 0.0000000000
## 707    2002.1 2002-02       50 0.0000000000
## 708    2002.1 2002-02       27 0.0000000000
## 709    2002.1 2002-02       17 0.0000000000
## 710    2002.1 2002-02       45 0.0000000000
## 711    2002.1 2002-02       53 0.0000000000
## 712    2002.1 2002-02       20 0.0000000000
## 713    2002.1 2002-02       42 0.0000000000
## 714    2002.1 2002-02       34 0.0000000000
## 715    2002.1 2002-02        8 0.0000000000
## 716    2002.1 2002-02       36 0.0000000000
## 717    2002.1 2002-02       33 0.0000000000
## 718    2002.1 2002-02       24 0.0000000000
## 719    2002.1 2002-02       18 0.0000000000
## 720    2002.1 2002-02       43 0.0000000000
## 721    2002.1 2002-02       37 0.0000000000
## 722    2002.1 2002-02       55 0.0000000000
## 723    2002.1 2002-02        6 0.0000000000
## 724    2002.1 2002-02       44 0.0000000000
## 725    2002.1 2002-02       21 0.0000000000
## 726    2002.1 2002-02       60 0.0000000000
## 727    2002.1 2002-02        5 0.0000000000
## 728    2002.1 2002-02       56 0.0000000000
## 729    2002.1 2002-02       23 0.0000000000
## 730    2002.1 2002-02       58 0.0000000000
## 731    2002.1 2002-02       16 0.0000000000
## 732    2002.1 2002-02       29 0.0000000000
## 733    2001.3 2001-08        1 0.0357142857
## 734    2001.3 2001-08        2 0.0000000000
## 735    2001.3 2001-08        3 0.0000000000
## 736    2001.3 2001-08        4 0.0357142857
## 737    2001.3 2001-08        5 0.0000000000
## 738    2001.3 2001-08        6 0.0000000000
## 739    2001.3 2001-08        7 0.0357142857
## 740    2001.3 2001-08        8 0.0000000000
## 741    2001.3 2001-08        9 0.0000000000
## 742    2001.3 2001-08       10 0.0000000000
## 743    2001.3 2001-08       11 0.0000000000
## 744    2001.3 2001-08       21 0.0000000000
## 745    2001.3 2001-08       12 0.0000000000
## 746    2001.3 2001-08       22 0.0000000000
## 747    2001.3 2001-08       13 0.0000000000
## 748    2001.3 2001-08       23 0.0357142857
## 749    2001.3 2001-08       14 0.0000000000
## 750    2001.3 2001-08       24 0.0357142857
## 751    2001.3 2001-08       15 0.0000000000
## 752    2001.3 2001-08       25 0.0000000000
## 753    2001.3 2001-08       16 0.0000000000
## 754    2001.3 2001-08       26 0.0357142857
## 755    2001.3 2001-08       17 0.0000000000
## 756    2001.3 2001-08       27 0.0357142857
## 757    2001.3 2001-08       18 0.0000000000
## 758    2001.3 2001-08       28 0.0000000000
## 759    2001.3 2001-08       19 0.0000000000
## 760    2001.3 2001-08       29 0.0000000000
## 761    2001.3 2001-08       20 0.0000000000
## 762    2001.3 2001-08       30 0.0000000000
## 763    2001.3 2001-08       31 0.0000000000
## 764    2001.3 2001-08       32 0.0357142857
## 765    2001.3 2001-08       33 0.0000000000
## 766    2001.3 2001-08       34 0.0000000000
## 767    2001.3 2001-08       35 0.0714285714
## 768    2001.3 2001-08       36 0.0714285714
## 769    2001.3 2001-08       37 0.0357142857
## 770    2001.3 2001-08       38 0.0000000000
## 771    2001.3 2001-08       39 0.0000000000
## 772    2001.3 2001-08       40 0.0000000000
## 773    2001.3 2001-08       41 0.0000000000
## 774    2001.3 2001-08       42 0.0357142857
## 775    2001.3 2001-08       43 0.0000000000
## 776    2001.3 2001-08       44 0.0000000000
## 777    2001.3 2001-08       45 0.0000000000
## 778    2001.3 2001-08       46 0.0000000000
## 779    2001.3 2001-08       47 0.0000000000
## 780    2001.3 2001-08       48 0.0357142857
## 781    2001.3 2001-08       49 0.0714285714
## 782    2001.3 2001-08       50 0.0000000000
## 783    2001.3 2001-08       51 0.0357142857
## 784    2001.3 2001-08       61 0.0000000000
## 785    2001.3 2001-08       52 0.0000000000
## 786    2001.3 2001-08       53 0.0357142857
## 787    2001.3 2001-08       54 0.0714285714
## 788    2001.3 2001-08       55 0.0000000000
## 789    2001.3 2001-08       56 0.1428571429
## 790    2001.3 2001-08       57 0.0357142857
## 791    2001.3 2001-08       58 0.0357142857
## 792    2001.3 2001-08       59 0.0000000000
## 793    2001.3 2001-08       60 0.0357142857
## 794    2001.4 2001-10       29 0.0119047619
## 795    2001.4 2001-10        2 0.0000000000
## 796    2001.4 2001-10       42 0.0119047619
## 797    2001.4 2001-10       36 0.0119047619
## 798    2001.4 2001-10       41 0.0000000000
## 799    2001.4 2001-10        7 0.0000000000
## 800    2001.4 2001-10       54 0.0476190476
## 801    2001.4 2001-10       14 0.0000000000
## 802    2001.4 2001-10       35 0.0000000000
## 803    2001.4 2001-10       55 0.0833333333
## 804    2001.4 2001-10       48 0.0119047619
## 805    2001.4 2001-10       28 0.0119047619
## 806    2001.4 2001-10        6 0.0238095238
## 807    2001.4 2001-10       10 0.0000000000
## 808    2001.4 2001-10        1 0.0119047619
## 809    2001.4 2001-10       11 0.0000000000
## 810    2001.4 2001-10       33 0.0357142857
## 811    2001.4 2001-10       38 0.0357142857
## 812    2001.4 2001-10        3 0.0000000000
## 813    2001.4 2001-10       53 0.0476190476
## 814    2001.4 2001-10       26 0.0119047619
## 815    2001.4 2001-10       15 0.0238095238
## 816    2001.4 2001-10       46 0.0119047619
## 817    2001.4 2001-10       23 0.0000000000
## 818    2001.4 2001-10       40 0.0119047619
## 819    2001.4 2001-10       21 0.0000000000
## 820    2001.4 2001-10       49 0.0119047619
## 821    2001.4 2001-10       37 0.0714285714
## 822    2001.4 2001-10       61 0.0000000000
## 823    2001.4 2001-10       24 0.0238095238
## 824    2001.4 2001-10       13 0.0357142857
## 825    2001.4 2001-10       27 0.0119047619
## 826    2001.4 2001-10       39 0.0000000000
## 827    2001.4 2001-10       52 0.0119047619
## 828    2001.4 2001-10       59 0.0357142857
## 829    2001.4 2001-10       32 0.0000000000
## 830    2001.4 2001-10       34 0.0119047619
## 831    2001.4 2001-10        8 0.0000000000
## 832    2001.4 2001-10       22 0.0119047619
## 833    2001.4 2001-10       50 0.0238095238
## 834    2001.4 2001-10       47 0.0476190476
## 835    2001.4 2001-10       25 0.0119047619
## 836    2001.4 2001-10       12 0.0119047619
## 837    2001.4 2001-10       51 0.0000000000
## 838    2001.4 2001-10       43 0.0119047619
## 839    2001.4 2001-10        4 0.0000000000
## 840    2001.4 2001-10       20 0.0000000000
## 841    2001.4 2001-10       58 0.0119047619
## 842    2001.4 2001-10       17 0.0000000000
## 843    2001.4 2001-10       45 0.0000000000
## 844    2001.4 2001-10        9 0.0000000000
## 845    2001.4 2001-10       19 0.0000000000
## 846    2001.4 2001-10       18 0.0000000000
## 847    2001.4 2001-10       57 0.0238095238
## 848    2001.4 2001-10       44 0.0238095238
## 849    2001.4 2001-10       60 0.0000000000
## 850    2001.4 2001-10       16 0.0000000000
## 851    2001.4 2001-10       31 0.0000000000
## 852    2001.4 2001-10        5 0.0119047619
## 853    2001.4 2001-10       30 0.0238095238
## 854    2001.4 2001-10       56 0.1666666667
## 855    2001.3 2001-08        1 0.1111111111
## 856    2001.3 2001-08        2 0.0000000000
## 857    2001.3 2001-08        3 0.0000000000
## 858    2001.3 2001-08        4 0.0000000000
## 859    2001.3 2001-08        5 0.0000000000
## 860    2001.3 2001-08        6 0.0000000000
## 861    2001.3 2001-08        7 0.0555555556
## 862    2001.3 2001-08        8 0.0000000000
## 863    2001.3 2001-08        9 0.0000000000
## 864    2001.3 2001-08       10 0.0000000000
## 865    2001.3 2001-08       11 0.0000000000
## 866    2001.3 2001-08       12 0.0000000000
## 867    2001.3 2001-08       13 0.0000000000
## 868    2001.3 2001-08       14 0.0000000000
## 869    2001.3 2001-08       15 0.0555555556
## 870    2001.3 2001-08       16 0.0000000000
## 871    2001.3 2001-08       17 0.0000000000
## 872    2001.3 2001-08       18 0.0000000000
## 873    2001.3 2001-08       19 0.0000000000
## 874    2001.3 2001-08       20 0.0000000000
## 875    2001.3 2001-08       21 0.0000000000
## 876    2001.3 2001-08       22 0.0000000000
## 877    2001.3 2001-08       23 0.0000000000
## 878    2001.3 2001-08       24 0.0000000000
## 879    2001.3 2001-08       25 0.0000000000
## 880    2001.3 2001-08       26 0.0000000000
## 881    2001.3 2001-08       27 0.0000000000
## 882    2001.3 2001-08       28 0.0000000000
## 883    2001.3 2001-08       29 0.0000000000
## 884    2001.3 2001-08       30 0.0000000000
## 885    2001.3 2001-08       31 0.0000000000
## 886    2001.3 2001-08       32 0.0000000000
## 887    2001.3 2001-08       33 0.0000000000
## 888    2001.3 2001-08       34 0.0000000000
## 889    2001.3 2001-08       35 0.0000000000
## 890    2001.3 2001-08       36 0.0000000000
## 891    2001.3 2001-08       37 0.0555555556
## 892    2001.3 2001-08       38 0.1111111111
## 893    2001.3 2001-08       39 0.0000000000
## 894    2001.3 2001-08       40 0.0000000000
## 895    2001.3 2001-08       41 0.0000000000
## 896    2001.3 2001-08       42 0.0000000000
## 897    2001.3 2001-08       43 0.0555555556
## 898    2001.3 2001-08       44 0.0000000000
## 899    2001.3 2001-08       45 0.0000000000
## 900    2001.3 2001-08       46 0.0555555556
## 901    2001.3 2001-08       47 0.0000000000
## 902    2001.3 2001-08       48 0.0000000000
## 903    2001.3 2001-08       49 0.0000000000
## 904    2001.3 2001-08       50 0.1111111111
## 905    2001.3 2001-08       51 0.0000000000
## 906    2001.3 2001-08       61 0.1111111111
## 907    2001.3 2001-08       52 0.0555555556
## 908    2001.3 2001-08       54 0.0000000000
## 909    2001.3 2001-08       53 0.0555555556
## 910    2001.3 2001-08       55 0.0000000000
## 911    2001.3 2001-08       59 0.0000000000
## 912    2001.3 2001-08       56 0.0555555556
## 913    2001.3 2001-08       60 0.0000000000
## 914    2001.3 2001-08       57 0.0000000000
## 915    2001.3 2001-08       58 0.1111111111
## 916    2001.3 2001-08        1 0.0666666667
## 917    2001.3 2001-08        2 0.0000000000
## 918    2001.3 2001-08        3 0.0000000000
## 919    2001.3 2001-08        4 0.0000000000
## 920    2001.3 2001-08        5 0.0000000000
## 921    2001.3 2001-08        6 0.0000000000
## 922    2001.3 2001-08        7 0.0666666667
## 923    2001.3 2001-08        8 0.0000000000
## 924    2001.3 2001-08        9 0.0000000000
## 925    2001.3 2001-08       10 0.0000000000
## 926    2001.3 2001-08       11 0.0000000000
## 927    2001.3 2001-08       12 0.0000000000
## 928    2001.3 2001-08       13 0.0000000000
## 929    2001.3 2001-08       14 0.0000000000
## 930    2001.3 2001-08       15 0.1333333333
## 931    2001.3 2001-08       16 0.0000000000
## 932    2001.3 2001-08       17 0.0000000000
## 933    2001.3 2001-08       18 0.0000000000
## 934    2001.3 2001-08       19 0.0000000000
## 935    2001.3 2001-08       20 0.0000000000
## 936    2001.3 2001-08       21 0.0000000000
## 937    2001.3 2001-08       22 0.0000000000
## 938    2001.3 2001-08       23 0.0000000000
## 939    2001.3 2001-08       24 0.0000000000
## 940    2001.3 2001-08       25 0.0000000000
## 941    2001.3 2001-08       26 0.0000000000
## 942    2001.3 2001-08       27 0.0000000000
## 943    2001.3 2001-08       28 0.0000000000
## 944    2001.3 2001-08       29 0.0000000000
## 945    2001.3 2001-08       30 0.0000000000
## 946    2001.3 2001-08       31 0.0000000000
## 947    2001.3 2001-08       32 0.0000000000
## 948    2001.3 2001-08       33 0.0000000000
## 949    2001.3 2001-08       34 0.0000000000
## 950    2001.3 2001-08       35 0.0000000000
## 951    2001.3 2001-08       36 0.0666666667
## 952    2001.3 2001-08       37 0.0000000000
## 953    2001.3 2001-08       38 0.2000000000
## 954    2001.3 2001-08       39 0.0000000000
## 955    2001.3 2001-08       40 0.0000000000
## 956    2001.3 2001-08       41 0.0000000000
## 957    2001.3 2001-08       42 0.0000000000
## 958    2001.3 2001-08       43 0.0000000000
## 959    2001.3 2001-08       44 0.0000000000
## 960    2001.3 2001-08       45 0.0666666667
## 961    2001.3 2001-08       46 0.0000000000
## 962    2001.3 2001-08       47 0.0000000000
## 963    2001.3 2001-08       48 0.0000000000
## 964    2001.3 2001-08       49 0.0000000000
## 965    2001.3 2001-08       50 0.0000000000
## 966    2001.3 2001-08       51 0.0000000000
## 967    2001.3 2001-08       52 0.0666666667
## 968    2001.3 2001-08       53 0.0000000000
## 969    2001.3 2001-08       54 0.0000000000
## 970    2001.3 2001-08       55 0.0666666667
## 971    2001.3 2001-08       56 0.0666666667
## 972    2001.3 2001-08       61 0.0000000000
## 973    2001.3 2001-08       57 0.0666666667
## 974    2001.3 2001-08       60 0.0000000000
## 975    2001.3 2001-08       58 0.0000000000
## 976    2001.3 2001-08       59 0.1333333333
## 977    2002.1 2002-02        1 0.0050251256
## 978    2002.1 2002-02        2 0.0100502513
## 979    2002.1 2002-02        3 0.0000000000
## 980    2002.1 2002-02        4 0.0251256281
## 981    2002.1 2002-02        5 0.0050251256
## 982    2002.1 2002-02        6 0.0000000000
## 983    2002.1 2002-02        7 0.0050251256
## 984    2002.1 2002-02        8 0.0000000000
## 985    2002.1 2002-02        9 0.0000000000
## 986    2002.1 2002-02       10 0.0050251256
## 987    2002.1 2002-02       11 0.0000000000
## 988    2002.1 2002-02       12 0.0050251256
## 989    2002.1 2002-02       13 0.0251256281
## 990    2002.1 2002-02       14 0.0150753769
## 991    2002.1 2002-02       15 0.0050251256
## 992    2002.1 2002-02       16 0.0000000000
## 993    2002.1 2002-02       17 0.0050251256
## 994    2002.1 2002-02       18 0.0000000000
## 995    2002.1 2002-02       19 0.0000000000
## 996    2002.1 2002-02       20 0.0000000000
## 997    2002.1 2002-02       21 0.0000000000
## 998    2002.1 2002-02       31 0.0050251256
## 999    2002.1 2002-02       22 0.0351758794
## 1000   2002.1 2002-02       32 0.0050251256
## 1001   2002.1 2002-02       23 0.0000000000
## 1002   2002.1 2002-02       33 0.0000000000
## 1003   2002.1 2002-02       24 0.0201005025
## 1004   2002.1 2002-02       34 0.0100502513
## 1005   2002.1 2002-02       25 0.0301507538
## 1006   2002.1 2002-02       35 0.0000000000
## 1007   2002.1 2002-02       26 0.0452261307
## 1008   2002.1 2002-02       36 0.0050251256
## 1009   2002.1 2002-02       27 0.0000000000
## 1010   2002.1 2002-02       37 0.0150753769
## 1011   2002.1 2002-02       28 0.0150753769
## 1012   2002.1 2002-02       38 0.0150753769
## 1013   2002.1 2002-02       29 0.0000000000
## 1014   2002.1 2002-02       39 0.0100502513
## 1015   2002.1 2002-02       30 0.0000000000
## 1016   2002.1 2002-02       40 0.0000000000
## 1017   2002.1 2002-02       41 0.0000000000
## 1018   2002.1 2002-02       42 0.0452261307
## 1019   2002.1 2002-02       43 0.0201005025
## 1020   2002.1 2002-02       44 0.0502512563
## 1021   2002.1 2002-02       45 0.0000000000
## 1022   2002.1 2002-02       46 0.0502512563
## 1023   2002.1 2002-02       47 0.0100502513
## 1024   2002.1 2002-02       48 0.2110552764
## 1025   2002.1 2002-02       49 0.0954773869
## 1026   2002.1 2002-02       50 0.0150753769
## 1027   2002.1 2002-02       51 0.0050251256
## 1028   2002.1 2002-02       61 0.0301507538
## 1029   2002.1 2002-02       52 0.0201005025
## 1030   2002.1 2002-02       53 0.0251256281
## 1031   2002.1 2002-02       54 0.0251256281
## 1032   2002.1 2002-02       55 0.0050251256
## 1033   2002.1 2002-02       56 0.0000000000
## 1034   2002.1 2002-02       57 0.0301507538
## 1035   2002.1 2002-02       58 0.0050251256
## 1036   2002.1 2002-02       59 0.0000000000
## 1037   2002.1 2002-02       60 0.0351758794
## 1038   2001.3 2001-09        1 0.0144927536
## 1039   2001.3 2001-09        2 0.0000000000
## 1040   2001.3 2001-09        3 0.0000000000
## 1041   2001.3 2001-09        4 0.0000000000
## 1042   2001.3 2001-09        5 0.0000000000
## 1043   2001.3 2001-09        6 0.0144927536
## 1044   2001.3 2001-09        7 0.0000000000
## 1045   2001.3 2001-09        8 0.0000000000
## 1046   2001.3 2001-09        9 0.0000000000
## 1047   2001.3 2001-09       10 0.0000000000
## 1048   2001.3 2001-09       11 0.0000000000
## 1049   2001.3 2001-09       12 0.0000000000
## 1050   2001.3 2001-09       13 0.0000000000
## 1051   2001.3 2001-09       14 0.0000000000
## 1052   2001.3 2001-09       15 0.0000000000
## 1053   2001.3 2001-09       16 0.0434782609
## 1054   2001.3 2001-09       17 0.0000000000
## 1055   2001.3 2001-09       18 0.0000000000
## 1056   2001.3 2001-09       19 0.0000000000
## 1057   2001.3 2001-09       20 0.0000000000
## 1058   2001.3 2001-09       21 0.0000000000
## 1059   2001.3 2001-09       22 0.0579710145
## 1060   2001.3 2001-09       23 0.0000000000
## 1061   2001.3 2001-09       24 0.0000000000
## 1062   2001.3 2001-09       25 0.0000000000
## 1063   2001.3 2001-09       26 0.0000000000
## 1064   2001.3 2001-09       27 0.0000000000
## 1065   2001.3 2001-09       28 0.0000000000
## 1066   2001.3 2001-09       29 0.0000000000
## 1067   2001.3 2001-09       30 0.0144927536
## 1068   2001.3 2001-09       31 0.0000000000
## 1069   2001.3 2001-09       41 0.0144927536
## 1070   2001.3 2001-09       32 0.0000000000
## 1071   2001.3 2001-09       42 0.0000000000
## 1072   2001.3 2001-09       33 0.0724637681
## 1073   2001.3 2001-09       43 0.0000000000
## 1074   2001.3 2001-09       34 0.0144927536
## 1075   2001.3 2001-09       44 0.0000000000
## 1076   2001.3 2001-09       35 0.0289855072
## 1077   2001.3 2001-09       45 0.0144927536
## 1078   2001.3 2001-09       36 0.0144927536
## 1079   2001.3 2001-09       46 0.0000000000
## 1080   2001.3 2001-09       37 0.0000000000
## 1081   2001.3 2001-09       47 0.0144927536
## 1082   2001.3 2001-09       38 0.0579710145
## 1083   2001.3 2001-09       48 0.0579710145
## 1084   2001.3 2001-09       39 0.0000000000
## 1085   2001.3 2001-09       49 0.0000000000
## 1086   2001.3 2001-09       40 0.0000000000
## 1087   2001.3 2001-09       50 0.0144927536
## 1088   2001.3 2001-09       51 0.0289855072
## 1089   2001.3 2001-09       52 0.0579710145
## 1090   2001.3 2001-09       53 0.0000000000
## 1091   2001.3 2001-09       54 0.0434782609
## 1092   2001.3 2001-09       55 0.2028985507
## 1093   2001.3 2001-09       56 0.0434782609
## 1094   2001.3 2001-09       57 0.0144927536
## 1095   2001.3 2001-09       58 0.0724637681
## 1096   2001.3 2001-09       59 0.0434782609
## 1097   2001.3 2001-09       60 0.0434782609
## 1098   2001.3 2001-09       61 0.0000000000
## 1099   2002.1 2002-02        1 0.1333333333
## 1100   2002.1 2002-02        2 0.0000000000
## 1101   2002.1 2002-02        3 0.1333333333
## 1102   2002.1 2002-02        4 0.0000000000
## 1103   2002.1 2002-02        5 0.0000000000
## 1104   2002.1 2002-02        6 0.0666666667
## 1105   2002.1 2002-02        7 0.0000000000
## 1106   2002.1 2002-02        8 0.0000000000
## 1107   2002.1 2002-02        9 0.0000000000
## 1108   2002.1 2002-02       10 0.0000000000
## 1109   2002.1 2002-02       11 0.0000000000
## 1110   2002.1 2002-02       12 0.0000000000
## 1111   2002.1 2002-02       13 0.0000000000
## 1112   2002.1 2002-02       14 0.0000000000
## 1113   2002.1 2002-02       15 0.0000000000
## 1114   2002.1 2002-02       16 0.0000000000
## 1115   2002.1 2002-02       17 0.0000000000
## 1116   2002.1 2002-02       18 0.0000000000
## 1117   2002.1 2002-02       19 0.0000000000
## 1118   2002.1 2002-02       20 0.0000000000
## 1119   2002.1 2002-02       21 0.0000000000
## 1120   2002.1 2002-02       22 0.0000000000
## 1121   2002.1 2002-02       23 0.0000000000
## 1122   2002.1 2002-02       24 0.0000000000
## 1123   2002.1 2002-02       25 0.0000000000
## 1124   2002.1 2002-02       26 0.2000000000
## 1125   2002.1 2002-02       27 0.0000000000
## 1126   2002.1 2002-02       28 0.0000000000
## 1127   2002.1 2002-02       29 0.1333333333
## 1128   2002.1 2002-02       30 0.0000000000
## 1129   2002.1 2002-02       31 0.0000000000
## 1130   2002.1 2002-02       32 0.0000000000
## 1131   2002.1 2002-02       33 0.0000000000
## 1132   2002.1 2002-02       34 0.0000000000
## 1133   2002.1 2002-02       35 0.2666666667
## 1134   2002.1 2002-02       36 0.0000000000
## 1135   2002.1 2002-02       37 0.0000000000
## 1136   2002.1 2002-02       38 0.0000000000
## 1137   2002.1 2002-02       39 0.0666666667
## 1138   2002.1 2002-02       40 0.0000000000
## 1139   2002.1 2002-02       41 0.0000000000
## 1140   2002.1 2002-02       42 0.0000000000
## 1141   2002.1 2002-02       43 0.0000000000
## 1142   2002.1 2002-02       44 0.0000000000
## 1143   2002.1 2002-02       45 0.0000000000
## 1144   2002.1 2002-02       46 0.0000000000
## 1145   2002.1 2002-02       47 0.0000000000
## 1146   2002.1 2002-02       48 0.0000000000
## 1147   2002.1 2002-02       49 0.0000000000
## 1148   2002.1 2002-02       50 0.0000000000
## 1149   2002.1 2002-02       51 0.0000000000
## 1150   2002.1 2002-02       52 0.0000000000
## 1151   2002.1 2002-02       53 0.0000000000
## 1152   2002.1 2002-02       54 0.0000000000
## 1153   2002.1 2002-02       55 0.0000000000
## 1154   2002.1 2002-02       56 0.0000000000
## 1155   2002.1 2002-02       58 0.0000000000
## 1156   2002.1 2002-02       57 0.0000000000
## 1157   2002.1 2002-02       61 0.0000000000
## 1158   2002.1 2002-02       59 0.0000000000
## 1159   2002.1 2002-02       60 0.0000000000
## 1160   2001.4 2001-10        1 0.0026178010
## 1161   2001.4 2001-10       11 0.0000000000
## 1162   2001.4 2001-10        2 0.0000000000
## 1163   2001.4 2001-10       12 0.0026178010
## 1164   2001.4 2001-10        3 0.0026178010
## 1165   2001.4 2001-10       13 0.0026178010
## 1166   2001.4 2001-10        4 0.0000000000
## 1167   2001.4 2001-10       14 0.0000000000
## 1168   2001.4 2001-10        5 0.0052356021
## 1169   2001.4 2001-10       15 0.0026178010
## 1170   2001.4 2001-10        6 0.0000000000
## 1171   2001.4 2001-10       16 0.0026178010
## 1172   2001.4 2001-10        7 0.0000000000
## 1173   2001.4 2001-10       17 0.0026178010
## 1174   2001.4 2001-10        8 0.0026178010
## 1175   2001.4 2001-10       18 0.0000000000
## 1176   2001.4 2001-10        9 0.0000000000
## 1177   2001.4 2001-10       19 0.0078534031
## 1178   2001.4 2001-10       10 0.0000000000
## 1179   2001.4 2001-10       20 0.0026178010
## 1180   2001.4 2001-10       21 0.0052356021
## 1181   2001.4 2001-10       22 0.0052356021
## 1182   2001.4 2001-10       23 0.0130890052
## 1183   2001.4 2001-10       24 0.0026178010
## 1184   2001.4 2001-10       25 0.0052356021
## 1185   2001.4 2001-10       26 0.0078534031
## 1186   2001.4 2001-10       27 0.0026178010
## 1187   2001.4 2001-10       28 0.0052356021
## 1188   2001.4 2001-10       29 0.0000000000
## 1189   2001.4 2001-10       30 0.0078534031
## 1190   2001.4 2001-10       31 0.0104712042
## 1191   2001.4 2001-10       32 0.0026178010
## 1192   2001.4 2001-10       33 0.0000000000
## 1193   2001.4 2001-10       34 0.0078534031
## 1194   2001.4 2001-10       35 0.0130890052
## 1195   2001.4 2001-10       36 0.0026178010
## 1196   2001.4 2001-10       37 0.0078534031
## 1197   2001.4 2001-10       38 0.0314136126
## 1198   2001.4 2001-10       39 0.0157068063
## 1199   2001.4 2001-10       40 0.0314136126
## 1200   2001.4 2001-10       41 0.0104712042
## 1201   2001.4 2001-10       42 0.0314136126
## 1202   2001.4 2001-10       43 0.0104712042
## 1203   2001.4 2001-10       44 0.0078534031
## 1204   2001.4 2001-10       45 0.0130890052
## 1205   2001.4 2001-10       46 0.0340314136
## 1206   2001.4 2001-10       47 0.0235602094
## 1207   2001.4 2001-10       48 0.0418848168
## 1208   2001.4 2001-10       49 0.0261780105
## 1209   2001.4 2001-10       50 0.0471204188
## 1210   2001.4 2001-10       51 0.0523560209
## 1211   2001.4 2001-10       61 0.0130890052
## 1212   2001.4 2001-10       52 0.0575916230
## 1213   2001.4 2001-10       53 0.0366492147
## 1214   2001.4 2001-10       54 0.0759162304
## 1215   2001.4 2001-10       55 0.0366492147
## 1216   2001.4 2001-10       56 0.0445026178
## 1217   2001.4 2001-10       57 0.0575916230
## 1218   2001.4 2001-10       58 0.0732984293
## 1219   2001.4 2001-10       59 0.0785340314
## 1220   2001.4 2001-10       60 0.0130890052
## 1221   2001.3 2001-09        1 0.0069930070
## 1222   2001.3 2001-09        2 0.0000000000
## 1223   2001.3 2001-09        3 0.0000000000
## 1224   2001.3 2001-09        4 0.0000000000
## 1225   2001.3 2001-09        5 0.0000000000
## 1226   2001.3 2001-09        6 0.0104895105
## 1227   2001.3 2001-09        7 0.0000000000
## 1228   2001.3 2001-09        8 0.0000000000
## 1229   2001.3 2001-09        9 0.0000000000
## 1230   2001.3 2001-09       10 0.0034965035
## 1231   2001.3 2001-09       11 0.0000000000
## 1232   2001.3 2001-09       12 0.0000000000
## 1233   2001.3 2001-09       13 0.0104895105
## 1234   2001.3 2001-09       14 0.0069930070
## 1235   2001.3 2001-09       15 0.0000000000
## 1236   2001.3 2001-09       16 0.0034965035
## 1237   2001.3 2001-09       17 0.0000000000
## 1238   2001.3 2001-09       18 0.0034965035
## 1239   2001.3 2001-09       19 0.0000000000
## 1240   2001.3 2001-09       20 0.0000000000
## 1241   2001.3 2001-09       21 0.0034965035
## 1242   2001.3 2001-09       22 0.0034965035
## 1243   2001.3 2001-09       23 0.0069930070
## 1244   2001.3 2001-09       24 0.0034965035
## 1245   2001.3 2001-09       25 0.0034965035
## 1246   2001.3 2001-09       26 0.0034965035
## 1247   2001.3 2001-09       27 0.0034965035
## 1248   2001.3 2001-09       28 0.0069930070
## 1249   2001.3 2001-09       29 0.0000000000
## 1250   2001.3 2001-09       30 0.0069930070
## 1251   2001.3 2001-09       31 0.0069930070
## 1252   2001.3 2001-09       32 0.0104895105
## 1253   2001.3 2001-09       33 0.0034965035
## 1254   2001.3 2001-09       34 0.0034965035
## 1255   2001.3 2001-09       35 0.0244755245
## 1256   2001.3 2001-09       36 0.0104895105
## 1257   2001.3 2001-09       37 0.0000000000
## 1258   2001.3 2001-09       38 0.0314685315
## 1259   2001.3 2001-09       39 0.0000000000
## 1260   2001.3 2001-09       40 0.0139860140
## 1261   2001.3 2001-09       41 0.0034965035
## 1262   2001.3 2001-09       42 0.0034965035
## 1263   2001.3 2001-09       43 0.0000000000
## 1264   2001.3 2001-09       44 0.0034965035
## 1265   2001.3 2001-09       45 0.0104895105
## 1266   2001.3 2001-09       46 0.0279720280
## 1267   2001.3 2001-09       47 0.1538461538
## 1268   2001.3 2001-09       48 0.0524475524
## 1269   2001.3 2001-09       49 0.0069930070
## 1270   2001.3 2001-09       50 0.0349650350
## 1271   2001.3 2001-09       51 0.0524475524
## 1272   2001.3 2001-09       52 0.0419580420
## 1273   2001.3 2001-09       53 0.0349650350
## 1274   2001.3 2001-09       54 0.0104895105
## 1275   2001.3 2001-09       55 0.0874125874
## 1276   2001.3 2001-09       56 0.0629370629
## 1277   2001.3 2001-09       61 0.0174825175
## 1278   2001.3 2001-09       57 0.0419580420
## 1279   2001.3 2001-09       60 0.0419580420
## 1280   2001.3 2001-09       58 0.0489510490
## 1281   2001.3 2001-09       59 0.0699300699
## 1282   2002.1 2002-02        1 0.0270270270
## 1283   2002.1 2002-02       11 0.0000000000
## 1284   2002.1 2002-02        2 0.0000000000
## 1285   2002.1 2002-02       12 0.0000000000
## 1286   2002.1 2002-02        3 0.0000000000
## 1287   2002.1 2002-02       13 0.0000000000
## 1288   2002.1 2002-02        4 0.0000000000
## 1289   2002.1 2002-02       14 0.0000000000
## 1290   2002.1 2002-02        5 0.0000000000
## 1291   2002.1 2002-02       15 0.0000000000
## 1292   2002.1 2002-02        6 0.0000000000
## 1293   2002.1 2002-02       16 0.0000000000
## 1294   2002.1 2002-02        7 0.0000000000
## 1295   2002.1 2002-02       17 0.0270270270
## 1296   2002.1 2002-02        8 0.0000000000
## 1297   2002.1 2002-02       18 0.0000000000
## 1298   2002.1 2002-02        9 0.0000000000
## 1299   2002.1 2002-02       19 0.0000000000
## 1300   2002.1 2002-02       10 0.0000000000
## 1301   2002.1 2002-02       20 0.0000000000
## 1302   2002.1 2002-02       21 0.0000000000
## 1303   2002.1 2002-02       22 0.0000000000
## 1304   2002.1 2002-02       23 0.0000000000
## 1305   2002.1 2002-02       24 0.0270270270
## 1306   2002.1 2002-02       25 0.0270270270
## 1307   2002.1 2002-02       26 0.0270270270
## 1308   2002.1 2002-02       27 0.0000000000
## 1309   2002.1 2002-02       28 0.0000000000
## 1310   2002.1 2002-02       29 0.1081081081
## 1311   2002.1 2002-02       30 0.0270270270
## 1312   2002.1 2002-02       31 0.0000000000
## 1313   2002.1 2002-02       32 0.0270270270
## 1314   2002.1 2002-02       33 0.0000000000
## 1315   2002.1 2002-02       34 0.0000000000
## 1316   2002.1 2002-02       35 0.0000000000
## 1317   2002.1 2002-02       36 0.0000000000
## 1318   2002.1 2002-02       37 0.1351351351
## 1319   2002.1 2002-02       38 0.0540540541
## 1320   2002.1 2002-02       39 0.0000000000
## 1321   2002.1 2002-02       40 0.0540540541
## 1322   2002.1 2002-02       41 0.1081081081
## 1323   2002.1 2002-02       42 0.0270270270
## 1324   2002.1 2002-02       43 0.1081081081
## 1325   2002.1 2002-02       44 0.0000000000
## 1326   2002.1 2002-02       45 0.0000000000
## 1327   2002.1 2002-02       46 0.0000000000
## 1328   2002.1 2002-02       47 0.0270270270
## 1329   2002.1 2002-02       48 0.0000000000
## 1330   2002.1 2002-02       49 0.0000000000
## 1331   2002.1 2002-02       50 0.0540540541
## 1332   2002.1 2002-02       51 0.0270270270
## 1333   2002.1 2002-02       52 0.0000000000
## 1334   2002.1 2002-02       53 0.0000000000
## 1335   2002.1 2002-02       54 0.1081081081
## 1336   2002.1 2002-02       55 0.0000000000
## 1337   2002.1 2002-02       56 0.0000000000
## 1338   2002.1 2002-02       57 0.0000000000
## 1339   2002.1 2002-02       58 0.0000000000
## 1340   2002.1 2002-02       59 0.0000000000
## 1341   2002.1 2002-02       60 0.0000000000
## 1342   2002.1 2002-02       61 0.0000000000
## 1343   2002.1 2002-02        1 0.0015649452
## 1344   2002.1 2002-02        2 0.0000000000
## 1345   2002.1 2002-02        3 0.0000000000
## 1346   2002.1 2002-02        4 0.0031298905
## 1347   2002.1 2002-02        5 0.0000000000
## 1348   2002.1 2002-02        6 0.0000000000
## 1349   2002.1 2002-02        7 0.0000000000
## 1350   2002.1 2002-02        8 0.0093896714
## 1351   2002.1 2002-02        9 0.0031298905
## 1352   2002.1 2002-02       10 0.0000000000
## 1353   2002.1 2002-02       11 0.0000000000
## 1354   2002.1 2002-02       12 0.0015649452
## 1355   2002.1 2002-02       13 0.0000000000
## 1356   2002.1 2002-02       14 0.0000000000
## 1357   2002.1 2002-02       15 0.0015649452
## 1358   2002.1 2002-02       16 0.0031298905
## 1359   2002.1 2002-02       17 0.0015649452
## 1360   2002.1 2002-02       18 0.0015649452
## 1361   2002.1 2002-02       19 0.0062597809
## 1362   2002.1 2002-02       20 0.0046948357
## 1363   2002.1 2002-02       21 0.0109546166
## 1364   2002.1 2002-02       22 0.0015649452
## 1365   2002.1 2002-02       23 0.0046948357
## 1366   2002.1 2002-02       24 0.0000000000
## 1367   2002.1 2002-02       25 0.0046948357
## 1368   2002.1 2002-02       26 0.0046948357
## 1369   2002.1 2002-02       27 0.0125195618
## 1370   2002.1 2002-02       28 0.0046948357
## 1371   2002.1 2002-02       29 0.0046948357
## 1372   2002.1 2002-02       30 0.0078247261
## 1373   2002.1 2002-02       31 0.0093896714
## 1374   2002.1 2002-02       32 0.0125195618
## 1375   2002.1 2002-02       33 0.0062597809
## 1376   2002.1 2002-02       34 0.0109546166
## 1377   2002.1 2002-02       35 0.0234741784
## 1378   2002.1 2002-02       36 0.0078247261
## 1379   2002.1 2002-02       37 0.0031298905
## 1380   2002.1 2002-02       38 0.0125195618
## 1381   2002.1 2002-02       39 0.0078247261
## 1382   2002.1 2002-02       40 0.0140845070
## 1383   2002.1 2002-02       41 0.0031298905
## 1384   2002.1 2002-02       42 0.0469483568
## 1385   2002.1 2002-02       43 0.0140845070
## 1386   2002.1 2002-02       44 0.0156494523
## 1387   2002.1 2002-02       45 0.0532081377
## 1388   2002.1 2002-02       46 0.0813771518
## 1389   2002.1 2002-02       47 0.0469483568
## 1390   2002.1 2002-02       48 0.0406885759
## 1391   2002.1 2002-02       49 0.0375586854
## 1392   2002.1 2002-02       50 0.0312989045
## 1393   2002.1 2002-02       51 0.0234741784
## 1394   2002.1 2002-02       52 0.0234741784
## 1395   2002.1 2002-02       53 0.0250391236
## 1396   2002.1 2002-02       55 0.0234741784
## 1397   2002.1 2002-02       54 0.0156494523
## 1398   2002.1 2002-02       56 0.0266040689
## 1399   2002.1 2002-02       58 0.0610328638
## 1400   2002.1 2002-02       57 0.0250391236
## 1401   2002.1 2002-02       60 0.1017214397
## 1402   2002.1 2002-02       59 0.0719874804
## 1403   2002.1 2002-02       61 0.0297339593
## 1404   2001.4 2001-11       17 0.0000000000
## 1405   2001.4 2001-11       42 0.0394736842
## 1406   2001.4 2001-11       58 0.0131578947
## 1407   2001.4 2001-11        6 0.0263157895
## 1408   2001.4 2001-11       56 0.0921052632
## 1409   2001.4 2001-11       20 0.0000000000
## 1410   2001.4 2001-11       30 0.0000000000
## 1411   2001.4 2001-11       45 0.0131578947
## 1412   2001.4 2001-11       23 0.0000000000
## 1413   2001.4 2001-11       26 0.0000000000
## 1414   2001.4 2001-11       18 0.0000000000
## 1415   2001.4 2001-11       16 0.0000000000
## 1416   2001.4 2001-11        5 0.0000000000
## 1417   2001.4 2001-11       19 0.0000000000
## 1418   2001.4 2001-11       46 0.0131578947
## 1419   2001.4 2001-11       39 0.0000000000
## 1420   2001.4 2001-11       33 0.0526315789
## 1421   2001.4 2001-11        7 0.0000000000
## 1422   2001.4 2001-11       32 0.0000000000
## 1423   2001.4 2001-11       60 0.0131578947
## 1424   2001.4 2001-11       14 0.0000000000
## 1425   2001.4 2001-11       27 0.0526315789
## 1426   2001.4 2001-11       36 0.0000000000
## 1427   2001.4 2001-11       13 0.0000000000
## 1428   2001.4 2001-11       57 0.0000000000
## 1429   2001.4 2001-11        3 0.0000000000
## 1430   2001.4 2001-11       52 0.0131578947
## 1431   2001.4 2001-11       43 0.0263157895
## 1432   2001.4 2001-11       59 0.0526315789
## 1433   2001.4 2001-11       44 0.0131578947
## 1434   2001.4 2001-11        8 0.0000000000
## 1435   2001.4 2001-11       34 0.0263157895
## 1436   2001.4 2001-11       37 0.0394736842
## 1437   2001.4 2001-11       53 0.0131578947
## 1438   2001.4 2001-11        1 0.0263157895
## 1439   2001.4 2001-11       49 0.0394736842
## 1440   2001.4 2001-11       40 0.0131578947
## 1441   2001.4 2001-11       28 0.0000000000
## 1442   2001.4 2001-11       15 0.0000000000
## 1443   2001.4 2001-11       41 0.0131578947
## 1444   2001.4 2001-11       55 0.0131578947
## 1445   2001.4 2001-11       29 0.0526315789
## 1446   2001.4 2001-11        4 0.0131578947
## 1447   2001.4 2001-11       51 0.0657894737
## 1448   2001.4 2001-11       21 0.0000000000
## 1449   2001.4 2001-11       10 0.0000000000
## 1450   2001.4 2001-11       47 0.0789473684
## 1451   2001.4 2001-11       50 0.0000000000
## 1452   2001.4 2001-11       38 0.0394736842
## 1453   2001.4 2001-11       54 0.0394736842
## 1454   2001.4 2001-11       61 0.0526315789
## 1455   2001.4 2001-11        2 0.0000000000
## 1456   2001.4 2001-11       25 0.0131578947
## 1457   2001.4 2001-11       24 0.0000000000
## 1458   2001.4 2001-11        9 0.0000000000
## 1459   2001.4 2001-11       35 0.0000000000
## 1460   2001.4 2001-11       22 0.0000000000
## 1461   2001.4 2001-11       12 0.0000000000
## 1462   2001.4 2001-11       31 0.0000000000
## 1463   2001.4 2001-11       48 0.0394736842
## 1464   2001.4 2001-11       11 0.0000000000
## 1465   2001.4 2001-11        1 0.0571428571
## 1466   2001.4 2001-11        2 0.0000000000
## 1467   2001.4 2001-11        3 0.0285714286
## 1468   2001.4 2001-11        4 0.0285714286
## 1469   2001.4 2001-11        5 0.0000000000
## 1470   2001.4 2001-11        6 0.1428571429
## 1471   2001.4 2001-11        7 0.0285714286
## 1472   2001.4 2001-11        8 0.0000000000
## 1473   2001.4 2001-11        9 0.0000000000
## 1474   2001.4 2001-11       10 0.0000000000
## 1475   2001.4 2001-11       11 0.0000000000
## 1476   2001.4 2001-11       21 0.0000000000
## 1477   2001.4 2001-11       12 0.0000000000
## 1478   2001.4 2001-11       22 0.0000000000
## 1479   2001.4 2001-11       13 0.0000000000
## 1480   2001.4 2001-11       23 0.0000000000
## 1481   2001.4 2001-11       14 0.0000000000
## 1482   2001.4 2001-11       24 0.0000000000
## 1483   2001.4 2001-11       15 0.0000000000
## 1484   2001.4 2001-11       25 0.0000000000
## 1485   2001.4 2001-11       16 0.0000000000
## 1486   2001.4 2001-11       26 0.0000000000
## 1487   2001.4 2001-11       17 0.0000000000
## 1488   2001.4 2001-11       27 0.0000000000
## 1489   2001.4 2001-11       18 0.0285714286
## 1490   2001.4 2001-11       28 0.0000000000
## 1491   2001.4 2001-11       19 0.0000000000
## 1492   2001.4 2001-11       29 0.0285714286
## 1493   2001.4 2001-11       20 0.0000000000
## 1494   2001.4 2001-11       30 0.0285714286
## 1495   2001.4 2001-11       31 0.0000000000
## 1496   2001.4 2001-11       32 0.0285714286
## 1497   2001.4 2001-11       33 0.0000000000
## 1498   2001.4 2001-11       34 0.0000000000
## 1499   2001.4 2001-11       35 0.0000000000
## 1500   2001.4 2001-11       36 0.0000000000
## 1501   2001.4 2001-11       37 0.0285714286
## 1502   2001.4 2001-11       38 0.0000000000
## 1503   2001.4 2001-11       39 0.0000000000
## 1504   2001.4 2001-11       40 0.0000000000
## 1505   2001.4 2001-11       41 0.0285714286
## 1506   2001.4 2001-11       42 0.0285714286
## 1507   2001.4 2001-11       43 0.0571428571
## 1508   2001.4 2001-11       44 0.0000000000
## 1509   2001.4 2001-11       45 0.0285714286
## 1510   2001.4 2001-11       46 0.0285714286
## 1511   2001.4 2001-11       47 0.0571428571
## 1512   2001.4 2001-11       48 0.0000000000
## 1513   2001.4 2001-11       49 0.0571428571
## 1514   2001.4 2001-11       50 0.0000000000
## 1515   2001.4 2001-11       51 0.0571428571
## 1516   2001.4 2001-11       52 0.0285714286
## 1517   2001.4 2001-11       53 0.0285714286
## 1518   2001.4 2001-11       54 0.0285714286
## 1519   2001.4 2001-11       55 0.0285714286
## 1520   2001.4 2001-11       56 0.0000000000
## 1521   2001.4 2001-11       57 0.0000000000
## 1522   2001.4 2001-11       58 0.0000000000
## 1523   2001.4 2001-11       59 0.0000000000
## 1524   2001.4 2001-11       60 0.0571428571
## 1525   2001.4 2001-11       61 0.0571428571
## 1526   2002.1 2002-02        1 0.0303030303
## 1527   2002.1 2002-02        2 0.0000000000
## 1528   2002.1 2002-02        3 0.0303030303
## 1529   2002.1 2002-02        4 0.0000000000
## 1530   2002.1 2002-02        5 0.0303030303
## 1531   2002.1 2002-02        6 0.0000000000
## 1532   2002.1 2002-02        7 0.0000000000
## 1533   2002.1 2002-02        8 0.0000000000
## 1534   2002.1 2002-02        9 0.0606060606
## 1535   2002.1 2002-02       10 0.0000000000
## 1536   2002.1 2002-02       11 0.0000000000
## 1537   2002.1 2002-02       12 0.0303030303
## 1538   2002.1 2002-02       13 0.0303030303
## 1539   2002.1 2002-02       14 0.0000000000
## 1540   2002.1 2002-02       15 0.0000000000
## 1541   2002.1 2002-02       16 0.0000000000
## 1542   2002.1 2002-02       17 0.0000000000
## 1543   2002.1 2002-02       18 0.0000000000
## 1544   2002.1 2002-02       19 0.0000000000
## 1545   2002.1 2002-02       20 0.0606060606
## 1546   2002.1 2002-02       21 0.0000000000
## 1547   2002.1 2002-02       22 0.0000000000
## 1548   2002.1 2002-02       23 0.0303030303
## 1549   2002.1 2002-02       24 0.0000000000
## 1550   2002.1 2002-02       25 0.0000000000
## 1551   2002.1 2002-02       26 0.0000000000
## 1552   2002.1 2002-02       27 0.0000000000
## 1553   2002.1 2002-02       28 0.0000000000
## 1554   2002.1 2002-02       29 0.0000000000
## 1555   2002.1 2002-02       30 0.0000000000
## 1556   2002.1 2002-02       31 0.0000000000
## 1557   2002.1 2002-02       32 0.0000000000
## 1558   2002.1 2002-02       33 0.0303030303
## 1559   2002.1 2002-02       34 0.0000000000
## 1560   2002.1 2002-02       35 0.0303030303
## 1561   2002.1 2002-02       36 0.0000000000
## 1562   2002.1 2002-02       37 0.0000000000
## 1563   2002.1 2002-02       38 0.0000000000
## 1564   2002.1 2002-02       39 0.0000000000
## 1565   2002.1 2002-02       40 0.0000000000
## 1566   2002.1 2002-02       41 0.0000000000
## 1567   2002.1 2002-02       42 0.0000000000
## 1568   2002.1 2002-02       43 0.0000000000
## 1569   2002.1 2002-02       44 0.1515151515
## 1570   2002.1 2002-02       45 0.0000000000
## 1571   2002.1 2002-02       46 0.0000000000
## 1572   2002.1 2002-02       47 0.0000000000
## 1573   2002.1 2002-02       48 0.0000000000
## 1574   2002.1 2002-02       49 0.0000000000
## 1575   2002.1 2002-02       50 0.2121212121
## 1576   2002.1 2002-02       51 0.0000000000
## 1577   2002.1 2002-02       52 0.0000000000
## 1578   2002.1 2002-02       53 0.0000000000
## 1579   2002.1 2002-02       54 0.0000000000
## 1580   2002.1 2002-02       55 0.1212121212
## 1581   2002.1 2002-02       57 0.0000000000
## 1582   2002.1 2002-02       56 0.0000000000
## 1583   2002.1 2002-02       59 0.0303030303
## 1584   2002.1 2002-02       58 0.1212121212
## 1585   2002.1 2002-02       61 0.0000000000
## 1586   2002.1 2002-02       60 0.0000000000
## 1587   2001.4 2001-12        1 0.0096153846
## 1588   2001.4 2001-12       11 0.0000000000
## 1589   2001.4 2001-12        2 0.0000000000
## 1590   2001.4 2001-12       12 0.0000000000
## 1591   2001.4 2001-12        3 0.0096153846
## 1592   2001.4 2001-12       13 0.0000000000
## 1593   2001.4 2001-12        4 0.0000000000
## 1594   2001.4 2001-12       14 0.0000000000
## 1595   2001.4 2001-12        5 0.0000000000
## 1596   2001.4 2001-12       15 0.0000000000
## 1597   2001.4 2001-12        6 0.0000000000
## 1598   2001.4 2001-12       16 0.0000000000
## 1599   2001.4 2001-12        7 0.0096153846
## 1600   2001.4 2001-12       17 0.0288461538
## 1601   2001.4 2001-12        8 0.0192307692
## 1602   2001.4 2001-12       18 0.0000000000
## 1603   2001.4 2001-12        9 0.0096153846
## 1604   2001.4 2001-12       19 0.0000000000
## 1605   2001.4 2001-12       10 0.0000000000
## 1606   2001.4 2001-12       20 0.0000000000
## 1607   2001.4 2001-12       21 0.0673076923
## 1608   2001.4 2001-12       22 0.0000000000
## 1609   2001.4 2001-12       23 0.0000000000
## 1610   2001.4 2001-12       24 0.0000000000
## 1611   2001.4 2001-12       25 0.0000000000
## 1612   2001.4 2001-12       26 0.0000000000
## 1613   2001.4 2001-12       27 0.0096153846
## 1614   2001.4 2001-12       28 0.0000000000
## 1615   2001.4 2001-12       29 0.0000000000
## 1616   2001.4 2001-12       30 0.0000000000
## 1617   2001.4 2001-12       31 0.0673076923
## 1618   2001.4 2001-12       32 0.0288461538
## 1619   2001.4 2001-12       33 0.0192307692
## 1620   2001.4 2001-12       34 0.0288461538
## 1621   2001.4 2001-12       35 0.0096153846
## 1622   2001.4 2001-12       36 0.0096153846
## 1623   2001.4 2001-12       37 0.0000000000
## 1624   2001.4 2001-12       38 0.0000000000
## 1625   2001.4 2001-12       39 0.0480769231
## 1626   2001.4 2001-12       40 0.0384615385
## 1627   2001.4 2001-12       41 0.0000000000
## 1628   2001.4 2001-12       42 0.0096153846
## 1629   2001.4 2001-12       43 0.0000000000
## 1630   2001.4 2001-12       44 0.0096153846
## 1631   2001.4 2001-12       45 0.0288461538
## 1632   2001.4 2001-12       46 0.0288461538
## 1633   2001.4 2001-12       47 0.0576923077
## 1634   2001.4 2001-12       48 0.0384615385
## 1635   2001.4 2001-12       49 0.0192307692
## 1636   2001.4 2001-12       50 0.0288461538
## 1637   2001.4 2001-12       51 0.0096153846
## 1638   2001.4 2001-12       52 0.0096153846
## 1639   2001.4 2001-12       53 0.0384615385
## 1640   2001.4 2001-12       54 0.1153846154
## 1641   2001.4 2001-12       55 0.0384615385
## 1642   2001.4 2001-12       56 0.0288461538
## 1643   2001.4 2001-12       57 0.0096153846
## 1644   2001.4 2001-12       58 0.0192307692
## 1645   2001.4 2001-12       59 0.0000000000
## 1646   2001.4 2001-12       60 0.0288461538
## 1647   2001.4 2001-12       61 0.0673076923
## 1648   2002.1 2002-01        1 0.0054347826
## 1649   2002.1 2002-01        2 0.0108695652
## 1650   2002.1 2002-01        3 0.0000000000
## 1651   2002.1 2002-01        4 0.0000000000
## 1652   2002.1 2002-01        5 0.0000000000
## 1653   2002.1 2002-01        6 0.0054347826
## 1654   2002.1 2002-01        7 0.0054347826
## 1655   2002.1 2002-01        8 0.0000000000
## 1656   2002.1 2002-01        9 0.0108695652
## 1657   2002.1 2002-01       10 0.0000000000
## 1658   2002.1 2002-01       11 0.0000000000
## 1659   2002.1 2002-01       12 0.0000000000
## 1660   2002.1 2002-01       13 0.0000000000
## 1661   2002.1 2002-01       14 0.0000000000
## 1662   2002.1 2002-01       15 0.0000000000
## 1663   2002.1 2002-01       16 0.0054347826
## 1664   2002.1 2002-01       17 0.0163043478
## 1665   2002.1 2002-01       18 0.0000000000
## 1666   2002.1 2002-01       19 0.0000000000
## 1667   2002.1 2002-01       20 0.0000000000
## 1668   2002.1 2002-01       21 0.0000000000
## 1669   2002.1 2002-01       22 0.0000000000
## 1670   2002.1 2002-01       23 0.0000000000
## 1671   2002.1 2002-01       24 0.0000000000
## 1672   2002.1 2002-01       25 0.0000000000
## 1673   2002.1 2002-01       26 0.0054347826
## 1674   2002.1 2002-01       27 0.0054347826
## 1675   2002.1 2002-01       28 0.0163043478
## 1676   2002.1 2002-01       29 0.0108695652
## 1677   2002.1 2002-01       30 0.0054347826
## 1678   2002.1 2002-01       31 0.0434782609
## 1679   2002.1 2002-01       32 0.0217391304
## 1680   2002.1 2002-01       33 0.0597826087
## 1681   2002.1 2002-01       34 0.0380434783
## 1682   2002.1 2002-01       35 0.0217391304
## 1683   2002.1 2002-01       36 0.0108695652
## 1684   2002.1 2002-01       37 0.0054347826
## 1685   2002.1 2002-01       38 0.0163043478
## 1686   2002.1 2002-01       39 0.0271739130
## 1687   2002.1 2002-01       40 0.0108695652
## 1688   2002.1 2002-01       41 0.0326086957
## 1689   2002.1 2002-01       42 0.0271739130
## 1690   2002.1 2002-01       43 0.0271739130
## 1691   2002.1 2002-01       44 0.0326086957
## 1692   2002.1 2002-01       45 0.0163043478
## 1693   2002.1 2002-01       46 0.0326086957
## 1694   2002.1 2002-01       47 0.0923913043
## 1695   2002.1 2002-01       48 0.0380434783
## 1696   2002.1 2002-01       49 0.0434782609
## 1697   2002.1 2002-01       50 0.0217391304
## 1698   2002.1 2002-01       51 0.0271739130
## 1699   2002.1 2002-01       52 0.0326086957
## 1700   2002.1 2002-01       53 0.0108695652
## 1701   2002.1 2002-01       54 0.0163043478
## 1702   2002.1 2002-01       55 0.0108695652
## 1703   2002.1 2002-01       59 0.0054347826
## 1704   2002.1 2002-01       56 0.0434782609
## 1705   2002.1 2002-01       60 0.0271739130
## 1706   2002.1 2002-01       57 0.0217391304
## 1707   2002.1 2002-01       61 0.0217391304
## 1708   2002.1 2002-01       58 0.0597826087
## 1709   2001.1 2001-01        1 0.5000000000
## 1710   2001.1 2001-01        2 0.0000000000
## 1711   2001.1 2001-01        3 0.0000000000
## 1712   2001.1 2001-01        4 0.0000000000
## 1713   2001.1 2001-01        5 0.0000000000
## 1714   2001.1 2001-01        6 0.0000000000
## 1715   2001.1 2001-01        7 0.0000000000
## 1716   2001.1 2001-01        8 0.0000000000
## 1717   2001.1 2001-01        9 0.5000000000
## 1718   2001.1 2001-01       10 0.0000000000
## 1719   2001.1 2001-01       11 0.0000000000
## 1720   2001.1 2001-01       12 0.0000000000
## 1721   2001.1 2001-01       13 0.0000000000
## 1722   2001.1 2001-01       14 0.0000000000
## 1723   2001.1 2001-01       15 0.0000000000
## 1724   2001.1 2001-01       16 0.0000000000
## 1725   2001.1 2001-01       17 0.0000000000
## 1726   2001.1 2001-01       18 0.0000000000
## 1727   2001.1 2001-01       19 0.0000000000
## 1728   2001.1 2001-01       20 0.0000000000
## 1729   2001.1 2001-01       21 0.0000000000
## 1730   2001.1 2001-01       22 0.0000000000
## 1731   2001.1 2001-01       23 0.0000000000
## 1732   2001.1 2001-01       24 0.0000000000
## 1733   2001.1 2001-01       25 0.0000000000
## 1734   2001.1 2001-01       26 0.0000000000
## 1735   2001.1 2001-01       27 0.0000000000
## 1736   2001.1 2001-01       28 0.0000000000
## 1737   2001.1 2001-01       29 0.0000000000
## 1738   2001.1 2001-01       30 0.0000000000
## 1739   2001.1 2001-01       31 0.0000000000
## 1740   2001.1 2001-01       32 0.0000000000
## 1741   2001.1 2001-01       33 0.0000000000
## 1742   2001.1 2001-01       34 0.0000000000
## 1743   2001.1 2001-01       35 0.0000000000
## 1744   2001.1 2001-01       36 0.0000000000
## 1745   2001.1 2001-01       37 0.0000000000
## 1746   2001.1 2001-01       38 0.0000000000
## 1747   2001.1 2001-01       39 0.0000000000
## 1748   2001.1 2001-01       40 0.0000000000
## 1749   2001.1 2001-01       41 0.0000000000
## 1750   2001.1 2001-01       42 0.0000000000
## 1751   2001.1 2001-01       43 0.0000000000
## 1752   2001.1 2001-01       44 0.0000000000
## 1753   2001.1 2001-01       45 0.0000000000
## 1754   2001.1 2001-01       49 0.0000000000
## 1755   2001.1 2001-01       46 0.0000000000
## 1756   2001.1 2001-01       50 0.0000000000
## 1757   2001.1 2001-01       47 0.0000000000
## 1758   2001.1 2001-01       51 0.0000000000
## 1759   2001.1 2001-01       48 0.0000000000
## 1760   2001.1 2001-01       52 0.0000000000
## 1761   2001.1 2001-01       56 0.0000000000
## 1762   2001.1 2001-01       53 0.0000000000
## 1763   2001.1 2001-01       57 0.0000000000
## 1764   2001.1 2001-01       54 0.0000000000
## 1765   2001.1 2001-01       58 0.0000000000
## 1766   2001.1 2001-01       55 0.0000000000
## 1767   2001.1 2001-01       59 0.0000000000
## 1768   2001.1 2001-01       60 0.0000000000
## 1769   2001.1 2001-01       61 0.0000000000
## 1770   2002.1 2002-02        1 0.1111111111
## 1771   2002.1 2002-02        2 0.0000000000
## 1772   2002.1 2002-02        3 0.0000000000
## 1773   2002.1 2002-02        4 0.0000000000
## 1774   2002.1 2002-02        5 0.0000000000
## 1775   2002.1 2002-02        6 0.0000000000
## 1776   2002.1 2002-02        7 0.0000000000
## 1777   2002.1 2002-02        8 0.0000000000
## 1778   2002.1 2002-02        9 0.0000000000
## 1779   2002.1 2002-02       10 0.0000000000
## 1780   2002.1 2002-02       11 0.0000000000
## 1781   2002.1 2002-02       12 0.0000000000
## 1782   2002.1 2002-02       13 0.0000000000
## 1783   2002.1 2002-02       14 0.0000000000
## 1784   2002.1 2002-02       15 0.0000000000
## 1785   2002.1 2002-02       16 0.0000000000
## 1786   2002.1 2002-02       17 0.1111111111
## 1787   2002.1 2002-02       18 0.0000000000
## 1788   2002.1 2002-02       19 0.0000000000
## 1789   2002.1 2002-02       20 0.0000000000
## 1790   2002.1 2002-02       21 0.0000000000
## 1791   2002.1 2002-02       22 0.0000000000
## 1792   2002.1 2002-02       23 0.0000000000
## 1793   2002.1 2002-02       24 0.0000000000
## 1794   2002.1 2002-02       25 0.0000000000
## 1795   2002.1 2002-02       26 0.3333333333
## 1796   2002.1 2002-02       27 0.0000000000
## 1797   2002.1 2002-02       28 0.0000000000
## 1798   2002.1 2002-02       29 0.0000000000
## 1799   2002.1 2002-02       30 0.1111111111
## 1800   2002.1 2002-02       31 0.2222222222
## 1801   2002.1 2002-02       32 0.1111111111
## 1802   2002.1 2002-02       33 0.0000000000
## 1803   2002.1 2002-02       34 0.0000000000
## 1804   2002.1 2002-02       35 0.0000000000
## 1805   2002.1 2002-02       36 0.0000000000
## 1806   2002.1 2002-02       37 0.0000000000
## 1807   2002.1 2002-02       38 0.0000000000
## 1808   2002.1 2002-02       39 0.0000000000
## 1809   2002.1 2002-02       40 0.0000000000
## 1810   2002.1 2002-02       41 0.0000000000
## 1811   2002.1 2002-02       42 0.0000000000
## 1812   2002.1 2002-02       43 0.0000000000
## 1813   2002.1 2002-02       44 0.0000000000
## 1814   2002.1 2002-02       45 0.0000000000
## 1815   2002.1 2002-02       46 0.0000000000
## 1816   2002.1 2002-02       47 0.0000000000
## 1817   2002.1 2002-02       48 0.0000000000
## 1818   2002.1 2002-02       49 0.0000000000
## 1819   2002.1 2002-02       50 0.0000000000
## 1820   2002.1 2002-02       51 0.0000000000
## 1821   2002.1 2002-02       52 0.0000000000
## 1822   2002.1 2002-02       53 0.0000000000
## 1823   2002.1 2002-02       54 0.0000000000
## 1824   2002.1 2002-02       55 0.0000000000
## 1825   2002.1 2002-02       56 0.0000000000
## 1826   2002.1 2002-02       57 0.0000000000
## 1827   2002.1 2002-02       61 0.0000000000
## 1828   2002.1 2002-02       58 0.0000000000
## 1829   2002.1 2002-02       60 0.0000000000
## 1830   2002.1 2002-02       59 0.0000000000
## 1831   2001.2 2001-04        1 0.0031250000
## 1832   2001.2 2001-04        2 0.0000000000
## 1833   2001.2 2001-04        3 0.0000000000
## 1834   2001.2 2001-04        4 0.0000000000
## 1835   2001.2 2001-04        5 0.0031250000
## 1836   2001.2 2001-04        6 0.0000000000
## 1837   2001.2 2001-04        7 0.0000000000
## 1838   2001.2 2001-04        8 0.0000000000
## 1839   2001.2 2001-04        9 0.0000000000
## 1840   2001.2 2001-04       10 0.0000000000
## 1841   2001.2 2001-04       11 0.0031250000
## 1842   2001.2 2001-04       12 0.0062500000
## 1843   2001.2 2001-04       13 0.0000000000
## 1844   2001.2 2001-04       14 0.0000000000
## 1845   2001.2 2001-04       15 0.0000000000
## 1846   2001.2 2001-04       16 0.0000000000
## 1847   2001.2 2001-04       17 0.0093750000
## 1848   2001.2 2001-04       18 0.0000000000
## 1849   2001.2 2001-04       19 0.0000000000
## 1850   2001.2 2001-04       20 0.0031250000
## 1851   2001.2 2001-04       21 0.0000000000
## 1852   2001.2 2001-04       22 0.0000000000
## 1853   2001.2 2001-04       23 0.0031250000
## 1854   2001.2 2001-04       24 0.0000000000
## 1855   2001.2 2001-04       25 0.0062500000
## 1856   2001.2 2001-04       26 0.0031250000
## 1857   2001.2 2001-04       27 0.0000000000
## 1858   2001.2 2001-04       28 0.0031250000
## 1859   2001.2 2001-04       29 0.0000000000
## 1860   2001.2 2001-04       30 0.0031250000
## 1861   2001.2 2001-04       31 0.0062500000
## 1862   2001.2 2001-04       32 0.0093750000
## 1863   2001.2 2001-04       33 0.0031250000
## 1864   2001.2 2001-04       34 0.0031250000
## 1865   2001.2 2001-04       35 0.0187500000
## 1866   2001.2 2001-04       36 0.0343750000
## 1867   2001.2 2001-04       37 0.0062500000
## 1868   2001.2 2001-04       38 0.0187500000
## 1869   2001.2 2001-04       39 0.0125000000
## 1870   2001.2 2001-04       40 0.0093750000
## 1871   2001.2 2001-04       41 0.0156250000
## 1872   2001.2 2001-04       42 0.0281250000
## 1873   2001.2 2001-04       43 0.0062500000
## 1874   2001.2 2001-04       44 0.0218750000
## 1875   2001.2 2001-04       45 0.0125000000
## 1876   2001.2 2001-04       46 0.0406250000
## 1877   2001.2 2001-04       47 0.0468750000
## 1878   2001.2 2001-04       48 0.0593750000
## 1879   2001.2 2001-04       49 0.0843750000
## 1880   2001.2 2001-04       50 0.0093750000
## 1881   2001.2 2001-04       51 0.0500000000
## 1882   2001.2 2001-04       52 0.0500000000
## 1883   2001.2 2001-04       56 0.0031250000
## 1884   2001.2 2001-04       53 0.0437500000
## 1885   2001.2 2001-04       57 0.0656250000
## 1886   2001.2 2001-04       54 0.0281250000
## 1887   2001.2 2001-04       58 0.0312500000
## 1888   2001.2 2001-04       55 0.0250000000
## 1889   2001.2 2001-04       61 0.0781250000
## 1890   2001.2 2001-04       60 0.0875000000
## 1891   2001.2 2001-04       59 0.0437500000
## 1892   2001.4 2001-11        1 0.0141843972
## 1893   2001.4 2001-11        2 0.0000000000
## 1894   2001.4 2001-11        3 0.0000000000
## 1895   2001.4 2001-11        4 0.0070921986
## 1896   2001.4 2001-11        5 0.0000000000
## 1897   2001.4 2001-11        6 0.0000000000
## 1898   2001.4 2001-11        7 0.0000000000
## 1899   2001.4 2001-11        8 0.0000000000
## 1900   2001.4 2001-11        9 0.0000000000
## 1901   2001.4 2001-11       10 0.0000000000
## 1902   2001.4 2001-11       11 0.0000000000
## 1903   2001.4 2001-11       12 0.0212765957
## 1904   2001.4 2001-11       13 0.0000000000
## 1905   2001.4 2001-11       14 0.0000000000
## 1906   2001.4 2001-11       15 0.0000000000
## 1907   2001.4 2001-11       16 0.0000000000
## 1908   2001.4 2001-11       17 0.0000000000
## 1909   2001.4 2001-11       18 0.0000000000
## 1910   2001.4 2001-11       19 0.0000000000
## 1911   2001.4 2001-11       20 0.0212765957
## 1912   2001.4 2001-11       21 0.0000000000
## 1913   2001.4 2001-11       22 0.0000000000
## 1914   2001.4 2001-11       23 0.0141843972
## 1915   2001.4 2001-11       24 0.0212765957
## 1916   2001.4 2001-11       25 0.0000000000
## 1917   2001.4 2001-11       26 0.0000000000
## 1918   2001.4 2001-11       27 0.0000000000
## 1919   2001.4 2001-11       28 0.0000000000
## 1920   2001.4 2001-11       29 0.0000000000
## 1921   2001.4 2001-11       30 0.0000000000
## 1922   2001.4 2001-11       31 0.0212765957
## 1923   2001.4 2001-11       32 0.0070921986
## 1924   2001.4 2001-11       33 0.0000000000
## 1925   2001.4 2001-11       34 0.0141843972
## 1926   2001.4 2001-11       35 0.0000000000
## 1927   2001.4 2001-11       36 0.0921985816
## 1928   2001.4 2001-11       37 0.0070921986
## 1929   2001.4 2001-11       38 0.0000000000
## 1930   2001.4 2001-11       39 0.0000000000
## 1931   2001.4 2001-11       40 0.0496453901
## 1932   2001.4 2001-11       41 0.0070921986
## 1933   2001.4 2001-11       42 0.0000000000
## 1934   2001.4 2001-11       43 0.0000000000
## 1935   2001.4 2001-11       44 0.0070921986
## 1936   2001.4 2001-11       45 0.0000000000
## 1937   2001.4 2001-11       46 0.0070921986
## 1938   2001.4 2001-11       47 0.0000000000
## 1939   2001.4 2001-11       48 0.0921985816
## 1940   2001.4 2001-11       49 0.0283687943
## 1941   2001.4 2001-11       50 0.0212765957
## 1942   2001.4 2001-11       51 0.0567375887
## 1943   2001.4 2001-11       52 0.0354609929
## 1944   2001.4 2001-11       53 0.0283687943
## 1945   2001.4 2001-11       54 0.0141843972
## 1946   2001.4 2001-11       61 0.0141843972
## 1947   2001.4 2001-11       59 0.0070921986
## 1948   2001.4 2001-11       55 0.0000000000
## 1949   2001.4 2001-11       60 0.3120567376
## 1950   2001.4 2001-11       57 0.0000000000
## 1951   2001.4 2001-11       56 0.0283687943
## 1952   2001.4 2001-11       58 0.0496453901
## 1953   2002.1 2002-02        1 0.0087719298
## 1954   2002.1 2002-02       11 0.0000000000
## 1955   2002.1 2002-02        2 0.0000000000
## 1956   2002.1 2002-02       12 0.0087719298
## 1957   2002.1 2002-02        3 0.0000000000
## 1958   2002.1 2002-02       13 0.0087719298
## 1959   2002.1 2002-02        4 0.0000000000
## 1960   2002.1 2002-02       14 0.0000000000
## 1961   2002.1 2002-02        5 0.0000000000
## 1962   2002.1 2002-02       15 0.0000000000
## 1963   2002.1 2002-02        6 0.0000000000
## 1964   2002.1 2002-02       16 0.0087719298
## 1965   2002.1 2002-02        7 0.0000000000
## 1966   2002.1 2002-02       17 0.0000000000
## 1967   2002.1 2002-02        8 0.0000000000
## 1968   2002.1 2002-02       18 0.0175438596
## 1969   2002.1 2002-02        9 0.0000000000
## 1970   2002.1 2002-02       19 0.0000000000
## 1971   2002.1 2002-02       10 0.0000000000
## 1972   2002.1 2002-02       20 0.0263157895
## 1973   2002.1 2002-02       21 0.0000000000
## 1974   2002.1 2002-02       22 0.0000000000
## 1975   2002.1 2002-02       23 0.0000000000
## 1976   2002.1 2002-02       24 0.0087719298
## 1977   2002.1 2002-02       25 0.0000000000
## 1978   2002.1 2002-02       26 0.0000000000
## 1979   2002.1 2002-02       27 0.0175438596
## 1980   2002.1 2002-02       28 0.0087719298
## 1981   2002.1 2002-02       29 0.0175438596
## 1982   2002.1 2002-02       30 0.0175438596
## 1983   2002.1 2002-02       31 0.0087719298
## 1984   2002.1 2002-02       32 0.0087719298
## 1985   2002.1 2002-02       33 0.0175438596
## 1986   2002.1 2002-02       34 0.0087719298
## 1987   2002.1 2002-02       35 0.0087719298
## 1988   2002.1 2002-02       36 0.0087719298
## 1989   2002.1 2002-02       37 0.0000000000
## 1990   2002.1 2002-02       38 0.0000000000
## 1991   2002.1 2002-02       39 0.0438596491
## 1992   2002.1 2002-02       40 0.0000000000
## 1993   2002.1 2002-02       41 0.0263157895
## 1994   2002.1 2002-02       42 0.0175438596
## 1995   2002.1 2002-02       43 0.0175438596
## 1996   2002.1 2002-02       44 0.0263157895
## 1997   2002.1 2002-02       45 0.0000000000
## 1998   2002.1 2002-02       46 0.0000000000
## 1999   2002.1 2002-02       47 0.0263157895
## 2000   2002.1 2002-02       48 0.0614035088
## 2001   2002.1 2002-02       49 0.0350877193
## 2002   2002.1 2002-02       50 0.0614035088
## 2003   2002.1 2002-02       51 0.0087719298
## 2004   2002.1 2002-02       61 0.0614035088
## 2005   2002.1 2002-02       52 0.0175438596
## 2006   2002.1 2002-02       53 0.0087719298
## 2007   2002.1 2002-02       54 0.0701754386
## 2008   2002.1 2002-02       55 0.0701754386
## 2009   2002.1 2002-02       56 0.0701754386
## 2010   2002.1 2002-02       57 0.0438596491
## 2011   2002.1 2002-02       58 0.0438596491
## 2012   2002.1 2002-02       59 0.0263157895
## 2013   2002.1 2002-02       60 0.0526315789
## 2014   2001.4 2001-11        1 0.0024630542
## 2015   2001.4 2001-11        2 0.0024630542
## 2016   2001.4 2001-11        3 0.0000000000
## 2017   2001.4 2001-11        4 0.0024630542
## 2018   2001.4 2001-11        5 0.0024630542
## 2019   2001.4 2001-11        6 0.0000000000
## 2020   2001.4 2001-11        7 0.0000000000
## 2021   2001.4 2001-11        8 0.0049261084
## 2022   2001.4 2001-11        9 0.0000000000
## 2023   2001.4 2001-11       10 0.0000000000
## 2024   2001.4 2001-11       11 0.0024630542
## 2025   2001.4 2001-11       12 0.0049261084
## 2026   2001.4 2001-11       13 0.0000000000
## 2027   2001.4 2001-11       14 0.0098522167
## 2028   2001.4 2001-11       15 0.0024630542
## 2029   2001.4 2001-11       16 0.0049261084
## 2030   2001.4 2001-11       17 0.0000000000
## 2031   2001.4 2001-11       18 0.0024630542
## 2032   2001.4 2001-11       19 0.0000000000
## 2033   2001.4 2001-11       20 0.0024630542
## 2034   2001.4 2001-11       21 0.0049261084
## 2035   2001.4 2001-11       22 0.0197044335
## 2036   2001.4 2001-11       23 0.0147783251
## 2037   2001.4 2001-11       24 0.0000000000
## 2038   2001.4 2001-11       25 0.0172413793
## 2039   2001.4 2001-11       26 0.0073891626
## 2040   2001.4 2001-11       27 0.0024630542
## 2041   2001.4 2001-11       28 0.0123152709
## 2042   2001.4 2001-11       29 0.0221674877
## 2043   2001.4 2001-11       30 0.0098522167
## 2044   2001.4 2001-11       31 0.0197044335
## 2045   2001.4 2001-11       32 0.0098522167
## 2046   2001.4 2001-11       33 0.0246305419
## 2047   2001.4 2001-11       34 0.0049261084
## 2048   2001.4 2001-11       35 0.0073891626
## 2049   2001.4 2001-11       36 0.0147783251
## 2050   2001.4 2001-11       37 0.0049261084
## 2051   2001.4 2001-11       38 0.0049261084
## 2052   2001.4 2001-11       39 0.0270935961
## 2053   2001.4 2001-11       40 0.0073891626
## 2054   2001.4 2001-11       41 0.0344827586
## 2055   2001.4 2001-11       42 0.0172413793
## 2056   2001.4 2001-11       43 0.0147783251
## 2057   2001.4 2001-11       44 0.0098522167
## 2058   2001.4 2001-11       45 0.0073891626
## 2059   2001.4 2001-11       46 0.0123152709
## 2060   2001.4 2001-11       47 0.0738916256
## 2061   2001.4 2001-11       48 0.0147783251
## 2062   2001.4 2001-11       49 0.0246305419
## 2063   2001.4 2001-11       50 0.0566502463
## 2064   2001.4 2001-11       51 0.0517241379
## 2065   2001.4 2001-11       52 0.0246305419
## 2066   2001.4 2001-11       53 0.0197044335
## 2067   2001.4 2001-11       54 0.0197044335
## 2068   2001.4 2001-11       55 0.0541871921
## 2069   2001.4 2001-11       56 0.0517241379
## 2070   2001.4 2001-11       60 0.0418719212
## 2071   2001.4 2001-11       59 0.0418719212
## 2072   2001.4 2001-11       58 0.0344827586
## 2073   2001.4 2001-11       57 0.0394088670
## 2074   2001.4 2001-11       61 0.0738916256
## 2075   2002.1 2002-02       23 0.0000000000
## 2076   2002.1 2002-02       58 0.0977777778
## 2077   2002.1 2002-02       36 0.0044444444
## 2078   2002.1 2002-02       55 0.0577777778
## 2079   2002.1 2002-02        9 0.0000000000
## 2080   2002.1 2002-02       47 0.0266666667
## 2081   2002.1 2002-02       46 0.0044444444
## 2082   2002.1 2002-02       22 0.0000000000
## 2083   2002.1 2002-02       10 0.0000000000
## 2084   2002.1 2002-02       52 0.0666666667
## 2085   2002.1 2002-02       20 0.0000000000
## 2086   2002.1 2002-02       59 0.0222222222
## 2087   2002.1 2002-02       21 0.0000000000
## 2088   2002.1 2002-02       49 0.0533333333
## 2089   2002.1 2002-02        8 0.0044444444
## 2090   2002.1 2002-02       35 0.0000000000
## 2091   2002.1 2002-02       60 0.0622222222
## 2092   2002.1 2002-02       18 0.0000000000
## 2093   2002.1 2002-02       42 0.0266666667
## 2094   2002.1 2002-02       39 0.0266666667
## 2095   2002.1 2002-02        5 0.0000000000
## 2096   2002.1 2002-02       56 0.0177777778
## 2097   2002.1 2002-02       30 0.0266666667
## 2098   2002.1 2002-02       34 0.0044444444
## 2099   2002.1 2002-02       57 0.0622222222
## 2100   2002.1 2002-02        7 0.0000000000
## 2101   2002.1 2002-02       29 0.0044444444
## 2102   2002.1 2002-02        4 0.0000000000
## 2103   2002.1 2002-02       31 0.0088888889
## 2104   2002.1 2002-02       51 0.0400000000
## 2105   2002.1 2002-02       61 0.1066666667
## 2106   2002.1 2002-02       12 0.0088888889
## 2107   2002.1 2002-02       41 0.0222222222
## 2108   2002.1 2002-02       33 0.0088888889
## 2109   2002.1 2002-02       44 0.0088888889
## 2110   2002.1 2002-02       54 0.0311111111
## 2111   2002.1 2002-02       50 0.0400000000
## 2112   2002.1 2002-02        3 0.0000000000
## 2113   2002.1 2002-02       16 0.0000000000
## 2114   2002.1 2002-02       13 0.0000000000
## 2115   2002.1 2002-02       43 0.0266666667
## 2116   2002.1 2002-02       17 0.0000000000
## 2117   2002.1 2002-02       25 0.0000000000
## 2118   2002.1 2002-02       45 0.0088888889
## 2119   2002.1 2002-02        6 0.0044444444
## 2120   2002.1 2002-02        1 0.0044444444
## 2121   2002.1 2002-02       32 0.0044444444
## 2122   2002.1 2002-02       14 0.0044444444
## 2123   2002.1 2002-02       26 0.0000000000
## 2124   2002.1 2002-02       37 0.0133333333
## 2125   2002.1 2002-02       48 0.0266666667
## 2126   2002.1 2002-02       15 0.0000000000
## 2127   2002.1 2002-02       53 0.0355555556
## 2128   2002.1 2002-02       38 0.0000000000
## 2129   2002.1 2002-02        2 0.0000000000
## 2130   2002.1 2002-02       11 0.0000000000
## 2131   2002.1 2002-02       27 0.0133333333
## 2132   2002.1 2002-02       40 0.0088888889
## 2133   2002.1 2002-02       28 0.0044444444
## 2134   2002.1 2002-02       24 0.0000000000
## 2135   2002.1 2002-02       19 0.0000000000
## 2136   2001.4 2001-10        1 0.0099009901
## 2137   2001.4 2001-10        2 0.0000000000
## 2138   2001.4 2001-10        3 0.0000000000
## 2139   2001.4 2001-10        4 0.0000000000
## 2140   2001.4 2001-10        5 0.0198019802
## 2141   2001.4 2001-10        6 0.0000000000
## 2142   2001.4 2001-10        7 0.0000000000
## 2143   2001.4 2001-10        8 0.0000000000
## 2144   2001.4 2001-10        9 0.0000000000
## 2145   2001.4 2001-10       10 0.0000000000
## 2146   2001.4 2001-10       11 0.0000000000
## 2147   2001.4 2001-10       12 0.0099009901
## 2148   2001.4 2001-10       13 0.0000000000
## 2149   2001.4 2001-10       14 0.0099009901
## 2150   2001.4 2001-10       15 0.0594059406
## 2151   2001.4 2001-10       16 0.0000000000
## 2152   2001.4 2001-10       17 0.0000000000
## 2153   2001.4 2001-10       18 0.0000000000
## 2154   2001.4 2001-10       19 0.0000000000
## 2155   2001.4 2001-10       20 0.0099009901
## 2156   2001.4 2001-10       21 0.0000000000
## 2157   2001.4 2001-10       22 0.0099009901
## 2158   2001.4 2001-10       23 0.0000000000
## 2159   2001.4 2001-10       24 0.0000000000
## 2160   2001.4 2001-10       25 0.0000000000
## 2161   2001.4 2001-10       26 0.0000000000
## 2162   2001.4 2001-10       27 0.0099009901
## 2163   2001.4 2001-10       28 0.0000000000
## 2164   2001.4 2001-10       29 0.0000000000
## 2165   2001.4 2001-10       30 0.0000000000
## 2166   2001.4 2001-10       31 0.0099009901
## 2167   2001.4 2001-10       32 0.0000000000
## 2168   2001.4 2001-10       33 0.0099009901
## 2169   2001.4 2001-10       34 0.0396039604
## 2170   2001.4 2001-10       35 0.0000000000
## 2171   2001.4 2001-10       36 0.0000000000
## 2172   2001.4 2001-10       37 0.0495049505
## 2173   2001.4 2001-10       38 0.0198019802
## 2174   2001.4 2001-10       39 0.0099009901
## 2175   2001.4 2001-10       40 0.0198019802
## 2176   2001.4 2001-10       41 0.0693069307
## 2177   2001.4 2001-10       42 0.0000000000
## 2178   2001.4 2001-10       43 0.0000000000
## 2179   2001.4 2001-10       44 0.0297029703
## 2180   2001.4 2001-10       45 0.0099009901
## 2181   2001.4 2001-10       46 0.0099009901
## 2182   2001.4 2001-10       47 0.0198019802
## 2183   2001.4 2001-10       48 0.0099009901
## 2184   2001.4 2001-10       49 0.0099009901
## 2185   2001.4 2001-10       50 0.0099009901
## 2186   2001.4 2001-10       51 0.0792079208
## 2187   2001.4 2001-10       52 0.0099009901
## 2188   2001.4 2001-10       53 0.1188118812
## 2189   2001.4 2001-10       54 0.0990099010
## 2190   2001.4 2001-10       55 0.0495049505
## 2191   2001.4 2001-10       61 0.0594059406
## 2192   2001.4 2001-10       56 0.0891089109
## 2193   2001.4 2001-10       57 0.0000000000
## 2194   2001.4 2001-10       58 0.0198019802
## 2195   2001.4 2001-10       60 0.0000000000
## 2196   2001.4 2001-10       59 0.0099009901
## 2197   2001.4 2001-11        1 0.1000000000
## 2198   2001.4 2001-11        2 0.0000000000
## 2199   2001.4 2001-11        3 0.0000000000
## 2200   2001.4 2001-11        4 0.0500000000
## 2201   2001.4 2001-11        5 0.0000000000
## 2202   2001.4 2001-11        6 0.0000000000
## 2203   2001.4 2001-11        7 0.0000000000
## 2204   2001.4 2001-11        8 0.0000000000
## 2205   2001.4 2001-11        9 0.0000000000
## 2206   2001.4 2001-11       10 0.0000000000
## 2207   2001.4 2001-11       11 0.0000000000
## 2208   2001.4 2001-11       21 0.0000000000
## 2209   2001.4 2001-11       12 0.0000000000
## 2210   2001.4 2001-11       22 0.1000000000
## 2211   2001.4 2001-11       13 0.0000000000
## 2212   2001.4 2001-11       23 0.0500000000
## 2213   2001.4 2001-11       14 0.0000000000
## 2214   2001.4 2001-11       24 0.0000000000
## 2215   2001.4 2001-11       15 0.0000000000
## 2216   2001.4 2001-11       25 0.0000000000
## 2217   2001.4 2001-11       16 0.0000000000
## 2218   2001.4 2001-11       26 0.0000000000
## 2219   2001.4 2001-11       17 0.0000000000
## 2220   2001.4 2001-11       27 0.0000000000
## 2221   2001.4 2001-11       18 0.0000000000
## 2222   2001.4 2001-11       28 0.0500000000
## 2223   2001.4 2001-11       19 0.0000000000
## 2224   2001.4 2001-11       29 0.0000000000
## 2225   2001.4 2001-11       20 0.0500000000
## 2226   2001.4 2001-11       30 0.0000000000
## 2227   2001.4 2001-11       31 0.0500000000
## 2228   2001.4 2001-11       32 0.0000000000
## 2229   2001.4 2001-11       33 0.0500000000
## 2230   2001.4 2001-11       34 0.0000000000
## 2231   2001.4 2001-11       35 0.0500000000
## 2232   2001.4 2001-11       36 0.0000000000
## 2233   2001.4 2001-11       37 0.0000000000
## 2234   2001.4 2001-11       38 0.0000000000
## 2235   2001.4 2001-11       39 0.0000000000
## 2236   2001.4 2001-11       40 0.0000000000
## 2237   2001.4 2001-11       41 0.0000000000
## 2238   2001.4 2001-11       42 0.0000000000
## 2239   2001.4 2001-11       43 0.0500000000
## 2240   2001.4 2001-11       44 0.0500000000
## 2241   2001.4 2001-11       45 0.1000000000
## 2242   2001.4 2001-11       46 0.0500000000
## 2243   2001.4 2001-11       47 0.0000000000
## 2244   2001.4 2001-11       48 0.0000000000
## 2245   2001.4 2001-11       49 0.0000000000
## 2246   2001.4 2001-11       50 0.0000000000
## 2247   2001.4 2001-11       51 0.0500000000
## 2248   2001.4 2001-11       61 0.0000000000
## 2249   2001.4 2001-11       52 0.0000000000
## 2250   2001.4 2001-11       53 0.1000000000
## 2251   2001.4 2001-11       54 0.0000000000
## 2252   2001.4 2001-11       55 0.0000000000
## 2253   2001.4 2001-11       56 0.0000000000
## 2254   2001.4 2001-11       57 0.0000000000
## 2255   2001.4 2001-11       58 0.0000000000
## 2256   2001.4 2001-11       59 0.0500000000
## 2257   2001.4 2001-11       60 0.0000000000
## 2258   2001.4 2001-11        1 0.0614035088
## 2259   2001.4 2001-11        2 0.0000000000
## 2260   2001.4 2001-11        3 0.0000000000
## 2261   2001.4 2001-11        4 0.0087719298
## 2262   2001.4 2001-11        5 0.0000000000
## 2263   2001.4 2001-11        6 0.0000000000
## 2264   2001.4 2001-11        7 0.0000000000
## 2265   2001.4 2001-11        8 0.0000000000
## 2266   2001.4 2001-11        9 0.0000000000
## 2267   2001.4 2001-11       10 0.0000000000
## 2268   2001.4 2001-11       11 0.0000000000
## 2269   2001.4 2001-11       12 0.0000000000
## 2270   2001.4 2001-11       13 0.0000000000
## 2271   2001.4 2001-11       14 0.0000000000
## 2272   2001.4 2001-11       15 0.0000000000
## 2273   2001.4 2001-11       16 0.0000000000
## 2274   2001.4 2001-11       17 0.0087719298
## 2275   2001.4 2001-11       18 0.0000000000
## 2276   2001.4 2001-11       19 0.0000000000
## 2277   2001.4 2001-11       20 0.0000000000
## 2278   2001.4 2001-11       21 0.0087719298
## 2279   2001.4 2001-11       22 0.0175438596
## 2280   2001.4 2001-11       23 0.0087719298
## 2281   2001.4 2001-11       24 0.0000000000
## 2282   2001.4 2001-11       25 0.0000000000
## 2283   2001.4 2001-11       26 0.0000000000
## 2284   2001.4 2001-11       27 0.0000000000
## 2285   2001.4 2001-11       28 0.0087719298
## 2286   2001.4 2001-11       29 0.0175438596
## 2287   2001.4 2001-11       30 0.0000000000
## 2288   2001.4 2001-11       31 0.0175438596
## 2289   2001.4 2001-11       32 0.0087719298
## 2290   2001.4 2001-11       33 0.0087719298
## 2291   2001.4 2001-11       34 0.0000000000
## 2292   2001.4 2001-11       35 0.0614035088
## 2293   2001.4 2001-11       36 0.0087719298
## 2294   2001.4 2001-11       37 0.0000000000
## 2295   2001.4 2001-11       38 0.0087719298
## 2296   2001.4 2001-11       39 0.0350877193
## 2297   2001.4 2001-11       40 0.0000000000
## 2298   2001.4 2001-11       41 0.0000000000
## 2299   2001.4 2001-11       42 0.0000000000
## 2300   2001.4 2001-11       43 0.0087719298
## 2301   2001.4 2001-11       44 0.0087719298
## 2302   2001.4 2001-11       45 0.0175438596
## 2303   2001.4 2001-11       46 0.0087719298
## 2304   2001.4 2001-11       47 0.0263157895
## 2305   2001.4 2001-11       48 0.0350877193
## 2306   2001.4 2001-11       49 0.0350877193
## 2307   2001.4 2001-11       50 0.0087719298
## 2308   2001.4 2001-11       51 0.0701754386
## 2309   2001.4 2001-11       52 0.0701754386
## 2310   2001.4 2001-11       56 0.0087719298
## 2311   2001.4 2001-11       53 0.0175438596
## 2312   2001.4 2001-11       57 0.0438596491
## 2313   2001.4 2001-11       54 0.0087719298
## 2314   2001.4 2001-11       58 0.0438596491
## 2315   2001.4 2001-11       55 0.0350877193
## 2316   2001.4 2001-11       59 0.0877192982
## 2317   2001.4 2001-11       60 0.0263157895
## 2318   2001.4 2001-11       61 0.1491228070
## 2319   2001.4 2001-12        1 0.0238095238
## 2320   2001.4 2001-12        2 0.0000000000
## 2321   2001.4 2001-12        3 0.0119047619
## 2322   2001.4 2001-12        4 0.0000000000
## 2323   2001.4 2001-12        5 0.0000000000
## 2324   2001.4 2001-12        6 0.0000000000
## 2325   2001.4 2001-12        7 0.0000000000
## 2326   2001.4 2001-12        8 0.0000000000
## 2327   2001.4 2001-12        9 0.0000000000
## 2328   2001.4 2001-12       10 0.0000000000
## 2329   2001.4 2001-12       11 0.0000000000
## 2330   2001.4 2001-12       12 0.0000000000
## 2331   2001.4 2001-12       13 0.0357142857
## 2332   2001.4 2001-12       14 0.0000000000
## 2333   2001.4 2001-12       15 0.0119047619
## 2334   2001.4 2001-12       16 0.0000000000
## 2335   2001.4 2001-12       17 0.0000000000
## 2336   2001.4 2001-12       18 0.0000000000
## 2337   2001.4 2001-12       19 0.0000000000
## 2338   2001.4 2001-12       20 0.0000000000
## 2339   2001.4 2001-12       21 0.0000000000
## 2340   2001.4 2001-12       22 0.0000000000
## 2341   2001.4 2001-12       23 0.0000000000
## 2342   2001.4 2001-12       24 0.0000000000
## 2343   2001.4 2001-12       25 0.0000000000
## 2344   2001.4 2001-12       26 0.0000000000
## 2345   2001.4 2001-12       27 0.0119047619
## 2346   2001.4 2001-12       28 0.0119047619
## 2347   2001.4 2001-12       29 0.0119047619
## 2348   2001.4 2001-12       30 0.0000000000
## 2349   2001.4 2001-12       31 0.0000000000
## 2350   2001.4 2001-12       32 0.1071428571
## 2351   2001.4 2001-12       33 0.0119047619
## 2352   2001.4 2001-12       34 0.0119047619
## 2353   2001.4 2001-12       35 0.0476190476
## 2354   2001.4 2001-12       36 0.0595238095
## 2355   2001.4 2001-12       37 0.0238095238
## 2356   2001.4 2001-12       38 0.0119047619
## 2357   2001.4 2001-12       39 0.0000000000
## 2358   2001.4 2001-12       40 0.0357142857
## 2359   2001.4 2001-12       41 0.0000000000
## 2360   2001.4 2001-12       42 0.0119047619
## 2361   2001.4 2001-12       43 0.0238095238
## 2362   2001.4 2001-12       44 0.0238095238
## 2363   2001.4 2001-12       45 0.0238095238
## 2364   2001.4 2001-12       46 0.0000000000
## 2365   2001.4 2001-12       47 0.0000000000
## 2366   2001.4 2001-12       48 0.0238095238
## 2367   2001.4 2001-12       49 0.0357142857
## 2368   2001.4 2001-12       50 0.0714285714
## 2369   2001.4 2001-12       51 0.0119047619
## 2370   2001.4 2001-12       52 0.0238095238
## 2371   2001.4 2001-12       56 0.0714285714
## 2372   2001.4 2001-12       53 0.0357142857
## 2373   2001.4 2001-12       57 0.0357142857
## 2374   2001.4 2001-12       54 0.0357142857
## 2375   2001.4 2001-12       58 0.0357142857
## 2376   2001.4 2001-12       55 0.0238095238
## 2377   2001.4 2001-12       60 0.0000000000
## 2378   2001.4 2001-12       59 0.0476190476
## 2379   2001.4 2001-12       61 0.0357142857
## 2380   2002.1 2002-02        1 0.1428571429
## 2381   2002.1 2002-02        2 0.0000000000
## 2382   2002.1 2002-02        3 0.0000000000
## 2383   2002.1 2002-02        4 0.0000000000
## 2384   2002.1 2002-02        5 0.0000000000
## 2385   2002.1 2002-02        6 0.0000000000
## 2386   2002.1 2002-02        7 0.0000000000
## 2387   2002.1 2002-02        8 0.1428571429
## 2388   2002.1 2002-02        9 0.0000000000
## 2389   2002.1 2002-02       10 0.0000000000
## 2390   2002.1 2002-02       11 0.0000000000
## 2391   2002.1 2002-02       12 0.0000000000
## 2392   2002.1 2002-02       13 0.0000000000
## 2393   2002.1 2002-02       14 0.0000000000
## 2394   2002.1 2002-02       15 0.0000000000
## 2395   2002.1 2002-02       16 0.0000000000
## 2396   2002.1 2002-02       17 0.0000000000
## 2397   2002.1 2002-02       18 0.0000000000
## 2398   2002.1 2002-02       19 0.0000000000
## 2399   2002.1 2002-02       20 0.1428571429
## 2400   2002.1 2002-02       21 0.0000000000
## 2401   2002.1 2002-02       22 0.0000000000
## 2402   2002.1 2002-02       23 0.0000000000
## 2403   2002.1 2002-02       24 0.0000000000
## 2404   2002.1 2002-02       25 0.0000000000
## 2405   2002.1 2002-02       26 0.0000000000
## 2406   2002.1 2002-02       27 0.0000000000
## 2407   2002.1 2002-02       28 0.0000000000
## 2408   2002.1 2002-02       29 0.0000000000
## 2409   2002.1 2002-02       30 0.0000000000
## 2410   2002.1 2002-02       31 0.0000000000
## 2411   2002.1 2002-02       32 0.5714285714
## 2412   2002.1 2002-02       33 0.0000000000
## 2413   2002.1 2002-02       34 0.0000000000
## 2414   2002.1 2002-02       35 0.0000000000
## 2415   2002.1 2002-02       36 0.0000000000
## 2416   2002.1 2002-02       37 0.0000000000
## 2417   2002.1 2002-02       38 0.0000000000
## 2418   2002.1 2002-02       39 0.0000000000
## 2419   2002.1 2002-02       40 0.0000000000
## 2420   2002.1 2002-02       41 0.0000000000
## 2421   2002.1 2002-02       42 0.0000000000
## 2422   2002.1 2002-02       43 0.0000000000
## 2423   2002.1 2002-02       44 0.0000000000
## 2424   2002.1 2002-02       45 0.0000000000
## 2425   2002.1 2002-02       46 0.0000000000
## 2426   2002.1 2002-02       47 0.0000000000
## 2427   2002.1 2002-02       48 0.0000000000
## 2428   2002.1 2002-02       49 0.0000000000
## 2429   2002.1 2002-02       50 0.0000000000
## 2430   2002.1 2002-02       51 0.0000000000
## 2431   2002.1 2002-02       52 0.0000000000
## 2432   2002.1 2002-02       53 0.0000000000
## 2433   2002.1 2002-02       54 0.0000000000
## 2434   2002.1 2002-02       55 0.0000000000
## 2435   2002.1 2002-02       56 0.0000000000
## 2436   2002.1 2002-02       60 0.0000000000
## 2437   2002.1 2002-02       59 0.0000000000
## 2438   2002.1 2002-02       58 0.0000000000
## 2439   2002.1 2002-02       57 0.0000000000
## 2440   2002.1 2002-02       61 0.0000000000
## 2441   2001.4 2001-11       37 0.0000000000
## 2442   2001.4 2001-11       26 0.0000000000
## 2443   2001.4 2001-11       53 0.0000000000
## 2444   2001.4 2001-11        1 0.2500000000
## 2445   2001.4 2001-11       38 0.0000000000
## 2446   2001.4 2001-11       50 0.0000000000
## 2447   2001.4 2001-11       13 0.0000000000
## 2448   2001.4 2001-11       40 0.0000000000
## 2449   2001.4 2001-11       52 0.0000000000
## 2450   2001.4 2001-11       29 0.0000000000
## 2451   2001.4 2001-11       15 0.0000000000
## 2452   2001.4 2001-11        3 0.0000000000
## 2453   2001.4 2001-11       11 0.0000000000
## 2454   2001.4 2001-11       19 0.0000000000
## 2455   2001.4 2001-11       23 0.0000000000
## 2456   2001.4 2001-11       33 0.0000000000
## 2457   2001.4 2001-11        9 0.0000000000
## 2458   2001.4 2001-11       48 0.0000000000
## 2459   2001.4 2001-11       28 0.0000000000
## 2460   2001.4 2001-11        7 0.0000000000
## 2461   2001.4 2001-11       51 0.0000000000
## 2462   2001.4 2001-11       25 0.0000000000
## 2463   2001.4 2001-11       17 0.0000000000
## 2464   2001.4 2001-11        4 0.2500000000
## 2465   2001.4 2001-11       18 0.0000000000
## 2466   2001.4 2001-11       58 0.0000000000
## 2467   2001.4 2001-11       27 0.0000000000
## 2468   2001.4 2001-11       61 0.0000000000
## 2469   2001.4 2001-11       16 0.0000000000
## 2470   2001.4 2001-11       10 0.0000000000
## 2471   2001.4 2001-11       30 0.0000000000
## 2472   2001.4 2001-11        2 0.0000000000
## 2473   2001.4 2001-11       45 0.0000000000
## 2474   2001.4 2001-11       36 0.0000000000
## 2475   2001.4 2001-11       24 0.0000000000
## 2476   2001.4 2001-11        5 0.5000000000
## 2477   2001.4 2001-11       49 0.0000000000
## 2478   2001.4 2001-11       55 0.0000000000
## 2479   2001.4 2001-11       56 0.0000000000
## 2480   2001.4 2001-11       39 0.0000000000
## 2481   2001.4 2001-11       46 0.0000000000
## 2482   2001.4 2001-11       54 0.0000000000
## 2483   2001.4 2001-11       14 0.0000000000
## 2484   2001.4 2001-11       31 0.0000000000
## 2485   2001.4 2001-11       22 0.0000000000
## 2486   2001.4 2001-11       21 0.0000000000
## 2487   2001.4 2001-11       43 0.0000000000
## 2488   2001.4 2001-11       35 0.0000000000
## 2489   2001.4 2001-11       12 0.0000000000
## 2490   2001.4 2001-11       59 0.0000000000
## 2491   2001.4 2001-11       32 0.0000000000
## 2492   2001.4 2001-11       42 0.0000000000
## 2493   2001.4 2001-11       60 0.0000000000
## 2494   2001.4 2001-11       47 0.0000000000
## 2495   2001.4 2001-11       44 0.0000000000
## 2496   2001.4 2001-11        8 0.0000000000
## 2497   2001.4 2001-11       41 0.0000000000
## 2498   2001.4 2001-11        6 0.0000000000
## 2499   2001.4 2001-11       34 0.0000000000
## 2500   2001.4 2001-11       57 0.0000000000
## 2501   2001.4 2001-11       20 0.0000000000
## 2502   2001.3 2001-08       40 0.0389610390
## 2503   2001.3 2001-08       49 0.0389610390
## 2504   2001.3 2001-08       35 0.0000000000
## 2505   2001.3 2001-08       50 0.0000000000
## 2506   2001.3 2001-08       10 0.0000000000
## 2507   2001.3 2001-08       60 0.0649350649
## 2508   2001.3 2001-08       24 0.0129870130
## 2509   2001.3 2001-08       37 0.0259740260
## 2510   2001.3 2001-08       26 0.0000000000
## 2511   2001.3 2001-08       47 0.0519480519
## 2512   2001.3 2001-08       34 0.0000000000
## 2513   2001.3 2001-08       61 0.1038961039
## 2514   2001.3 2001-08       30 0.0000000000
## 2515   2001.3 2001-08       21 0.0129870130
## 2516   2001.3 2001-08       36 0.0000000000
## 2517   2001.3 2001-08       59 0.0259740260
## 2518   2001.3 2001-08       54 0.0000000000
## 2519   2001.3 2001-08       14 0.0000000000
## 2520   2001.3 2001-08       58 0.1168831169
## 2521   2001.3 2001-08        1 0.0129870130
## 2522   2001.3 2001-08        8 0.0000000000
## 2523   2001.3 2001-08       22 0.0000000000
## 2524   2001.3 2001-08       53 0.0519480519
## 2525   2001.3 2001-08       48 0.0000000000
## 2526   2001.3 2001-08       20 0.0000000000
## 2527   2001.3 2001-08       43 0.0129870130
## 2528   2001.3 2001-08        9 0.0000000000
## 2529   2001.3 2001-08       51 0.0259740260
## 2530   2001.3 2001-08       41 0.0129870130
## 2531   2001.3 2001-08       12 0.0000000000
## 2532   2001.3 2001-08       27 0.0000000000
## 2533   2001.3 2001-08       33 0.0389610390
## 2534   2001.3 2001-08       23 0.0129870130
## 2535   2001.3 2001-08       11 0.0000000000
## 2536   2001.3 2001-08       44 0.0129870130
## 2537   2001.3 2001-08        2 0.0000000000
## 2538   2001.3 2001-08       15 0.0000000000
## 2539   2001.3 2001-08       45 0.0649350649
## 2540   2001.3 2001-08       38 0.0259740260
## 2541   2001.3 2001-08       32 0.0259740260
## 2542   2001.3 2001-08       19 0.0000000000
## 2543   2001.3 2001-08       28 0.0000000000
## 2544   2001.3 2001-08       18 0.0000000000
## 2545   2001.3 2001-08       25 0.0000000000
## 2546   2001.3 2001-08       13 0.0129870130
## 2547   2001.3 2001-08       31 0.0000000000
## 2548   2001.3 2001-08       46 0.0389610390
## 2549   2001.3 2001-08       57 0.0389610390
## 2550   2001.3 2001-08        5 0.0000000000
## 2551   2001.3 2001-08        4 0.0000000000
## 2552   2001.3 2001-08       52 0.0129870130
## 2553   2001.3 2001-08       16 0.0129870130
## 2554   2001.3 2001-08       17 0.0000000000
## 2555   2001.3 2001-08       55 0.0519480519
## 2556   2001.3 2001-08        7 0.0129870130
## 2557   2001.3 2001-08       42 0.0000000000
## 2558   2001.3 2001-08       56 0.0259740260
## 2559   2001.3 2001-08        3 0.0000000000
## 2560   2001.3 2001-08        6 0.0000000000
## 2561   2001.3 2001-08       29 0.0000000000
## 2562   2001.3 2001-08       39 0.0000000000
## 2563   2001.2 2001-04        1 0.0156250000
## 2564   2001.2 2001-04        2 0.0000000000
## 2565   2001.2 2001-04        3 0.0000000000
## 2566   2001.2 2001-04        4 0.0000000000
## 2567   2001.2 2001-04        5 0.0000000000
## 2568   2001.2 2001-04        6 0.0156250000
## 2569   2001.2 2001-04        7 0.0000000000
## 2570   2001.2 2001-04        8 0.0000000000
## 2571   2001.2 2001-04        9 0.0000000000
## 2572   2001.2 2001-04       10 0.0000000000
## 2573   2001.2 2001-04       11 0.0000000000
## 2574   2001.2 2001-04       12 0.0000000000
## 2575   2001.2 2001-04       13 0.0000000000
## 2576   2001.2 2001-04       14 0.0000000000
## 2577   2001.2 2001-04       15 0.0312500000
## 2578   2001.2 2001-04       16 0.0000000000
## 2579   2001.2 2001-04       17 0.0156250000
## 2580   2001.2 2001-04       18 0.0000000000
## 2581   2001.2 2001-04       19 0.0000000000
## 2582   2001.2 2001-04       20 0.0000000000
## 2583   2001.2 2001-04       21 0.0000000000
## 2584   2001.2 2001-04       22 0.0000000000
## 2585   2001.2 2001-04       23 0.0000000000
## 2586   2001.2 2001-04       24 0.0156250000
## 2587   2001.2 2001-04       25 0.0000000000
## 2588   2001.2 2001-04       26 0.0000000000
## 2589   2001.2 2001-04       27 0.0156250000
## 2590   2001.2 2001-04       28 0.0000000000
## 2591   2001.2 2001-04       29 0.0000000000
## 2592   2001.2 2001-04       30 0.0000000000
## 2593   2001.2 2001-04       31 0.0625000000
## 2594   2001.2 2001-04       32 0.0000000000
## 2595   2001.2 2001-04       33 0.0156250000
## 2596   2001.2 2001-04       34 0.0000000000
## 2597   2001.2 2001-04       35 0.0156250000
## 2598   2001.2 2001-04       36 0.0156250000
## 2599   2001.2 2001-04       37 0.0000000000
## 2600   2001.2 2001-04       38 0.0000000000
## 2601   2001.2 2001-04       39 0.0468750000
## 2602   2001.2 2001-04       40 0.0156250000
## 2603   2001.2 2001-04       41 0.1093750000
## 2604   2001.2 2001-04       42 0.0468750000
## 2605   2001.2 2001-04       43 0.0156250000
## 2606   2001.2 2001-04       44 0.1093750000
## 2607   2001.2 2001-04       45 0.0312500000
## 2608   2001.2 2001-04       46 0.0156250000
## 2609   2001.2 2001-04       47 0.0156250000
## 2610   2001.2 2001-04       48 0.0000000000
## 2611   2001.2 2001-04       49 0.0000000000
## 2612   2001.2 2001-04       50 0.0468750000
## 2613   2001.2 2001-04       51 0.0312500000
## 2614   2001.2 2001-04       61 0.0625000000
## 2615   2001.2 2001-04       52 0.0000000000
## 2616   2001.2 2001-04       59 0.0156250000
## 2617   2001.2 2001-04       56 0.0312500000
## 2618   2001.2 2001-04       54 0.0312500000
## 2619   2001.2 2001-04       53 0.0000000000
## 2620   2001.2 2001-04       60 0.0468750000
## 2621   2001.2 2001-04       57 0.0156250000
## 2622   2001.2 2001-04       55 0.0156250000
## 2623   2001.2 2001-04       58 0.0781250000
## 2624   2001.4 2001-11        1 0.0005350455
## 2625   2001.4 2001-11        2 0.0053504548
## 2626   2001.4 2001-11        3 0.0000000000
## 2627   2001.4 2001-11        4 0.0010700910
## 2628   2001.4 2001-11        5 0.0005350455
## 2629   2001.4 2001-11        6 0.0021401819
## 2630   2001.4 2001-11        7 0.0005350455
## 2631   2001.4 2001-11        8 0.0016051364
## 2632   2001.4 2001-11        9 0.0000000000
## 2633   2001.4 2001-11       10 0.0026752274
## 2634   2001.4 2001-11       11 0.0064205457
## 2635   2001.4 2001-11       12 0.0037453184
## 2636   2001.4 2001-11       13 0.0016051364
## 2637   2001.4 2001-11       14 0.0042803638
## 2638   2001.4 2001-11       15 0.0048154093
## 2639   2001.4 2001-11       16 0.0005350455
## 2640   2001.4 2001-11       17 0.0037453184
## 2641   2001.4 2001-11       18 0.0090957731
## 2642   2001.4 2001-11       19 0.0037453184
## 2643   2001.4 2001-11       20 0.0064205457
## 2644   2001.4 2001-11       21 0.0053504548
## 2645   2001.4 2001-11       22 0.0016051364
## 2646   2001.4 2001-11       23 0.0064205457
## 2647   2001.4 2001-11       24 0.0016051364
## 2648   2001.4 2001-11       25 0.0048154093
## 2649   2001.4 2001-11       26 0.0069555912
## 2650   2001.4 2001-11       27 0.0117710005
## 2651   2001.4 2001-11       28 0.0080256822
## 2652   2001.4 2001-11       29 0.0123060460
## 2653   2001.4 2001-11       30 0.0101658641
## 2654   2001.4 2001-11       31 0.0144462279
## 2655   2001.4 2001-11       32 0.0053504548
## 2656   2001.4 2001-11       33 0.0139111825
## 2657   2001.4 2001-11       34 0.0074906367
## 2658   2001.4 2001-11       35 0.0144462279
## 2659   2001.4 2001-11       36 0.0123060460
## 2660   2001.4 2001-11       37 0.0123060460
## 2661   2001.4 2001-11       38 0.0262172285
## 2662   2001.4 2001-11       39 0.0144462279
## 2663   2001.4 2001-11       40 0.0155163189
## 2664   2001.4 2001-11       41 0.0208667737
## 2665   2001.4 2001-11       42 0.0438737293
## 2666   2001.4 2001-11       43 0.0197966827
## 2667   2001.4 2001-11       44 0.0176565008
## 2668   2001.4 2001-11       45 0.0117710005
## 2669   2001.4 2001-11       46 0.0235420011
## 2670   2001.4 2001-11       47 0.0230069556
## 2671   2001.4 2001-11       48 0.0315676833
## 2672   2001.4 2001-11       49 0.0401284109
## 2673   2001.4 2001-11       50 0.0417335474
## 2674   2001.4 2001-11       51 0.0288924559
## 2675   2001.4 2001-11       52 0.0342429106
## 2676   2001.4 2001-11       53 0.0711610487
## 2677   2001.4 2001-11       54 0.0401284109
## 2678   2001.4 2001-11       55 0.0176565008
## 2679   2001.4 2001-11       56 0.0288924559
## 2680   2001.4 2001-11       61 0.0786516854
## 2681   2001.4 2001-11       57 0.0353130016
## 2682   2001.4 2001-11       60 0.0481540931
## 2683   2001.4 2001-11       59 0.0299625468
## 2684   2001.4 2001-11       58 0.0486891386
## 2685   2001.3 2001-09        1 0.0025575448
## 2686   2001.3 2001-09        2 0.0000000000
## 2687   2001.3 2001-09        3 0.0000000000
## 2688   2001.3 2001-09        4 0.0025575448
## 2689   2001.3 2001-09        5 0.0000000000
## 2690   2001.3 2001-09        6 0.0025575448
## 2691   2001.3 2001-09        7 0.0025575448
## 2692   2001.3 2001-09        8 0.0025575448
## 2693   2001.3 2001-09        9 0.0076726343
## 2694   2001.3 2001-09       10 0.0000000000
## 2695   2001.3 2001-09       11 0.0000000000
## 2696   2001.3 2001-09       21 0.0051150895
## 2697   2001.3 2001-09       12 0.0000000000
## 2698   2001.3 2001-09       22 0.0025575448
## 2699   2001.3 2001-09       13 0.0000000000
## 2700   2001.3 2001-09       23 0.0025575448
## 2701   2001.3 2001-09       14 0.0025575448
## 2702   2001.3 2001-09       24 0.0025575448
## 2703   2001.3 2001-09       15 0.0025575448
## 2704   2001.3 2001-09       25 0.0076726343
## 2705   2001.3 2001-09       16 0.0000000000
## 2706   2001.3 2001-09       26 0.0281329923
## 2707   2001.3 2001-09       17 0.0000000000
## 2708   2001.3 2001-09       27 0.0102301790
## 2709   2001.3 2001-09       18 0.0000000000
## 2710   2001.3 2001-09       28 0.0000000000
## 2711   2001.3 2001-09       19 0.0051150895
## 2712   2001.3 2001-09       29 0.0000000000
## 2713   2001.3 2001-09       20 0.0000000000
## 2714   2001.3 2001-09       30 0.0179028133
## 2715   2001.3 2001-09       31 0.0000000000
## 2716   2001.3 2001-09       32 0.0025575448
## 2717   2001.3 2001-09       33 0.0076726343
## 2718   2001.3 2001-09       34 0.0153452685
## 2719   2001.3 2001-09       35 0.0051150895
## 2720   2001.3 2001-09       36 0.0000000000
## 2721   2001.3 2001-09       37 0.0076726343
## 2722   2001.3 2001-09       38 0.0076726343
## 2723   2001.3 2001-09       39 0.0127877238
## 2724   2001.3 2001-09       40 0.0127877238
## 2725   2001.3 2001-09       41 0.0127877238
## 2726   2001.3 2001-09       42 0.0153452685
## 2727   2001.3 2001-09       43 0.0153452685
## 2728   2001.3 2001-09       44 0.0127877238
## 2729   2001.3 2001-09       45 0.0051150895
## 2730   2001.3 2001-09       46 0.0076726343
## 2731   2001.3 2001-09       47 0.0281329923
## 2732   2001.3 2001-09       48 0.0255754476
## 2733   2001.3 2001-09       49 0.0409207161
## 2734   2001.3 2001-09       50 0.0102301790
## 2735   2001.3 2001-09       51 0.0767263427
## 2736   2001.3 2001-09       52 0.0332480818
## 2737   2001.3 2001-09       53 0.0306905371
## 2738   2001.3 2001-09       54 0.0358056266
## 2739   2001.3 2001-09       55 0.0997442455
## 2740   2001.3 2001-09       56 0.0255754476
## 2741   2001.3 2001-09       57 0.0332480818
## 2742   2001.3 2001-09       58 0.0664961637
## 2743   2001.3 2001-09       59 0.0741687980
## 2744   2001.3 2001-09       60 0.0690537084
## 2745   2001.3 2001-09       61 0.1023017903
## 2746   2001.3 2001-07        1 0.0033003300
## 2747   2001.3 2001-07        2 0.0033003300
## 2748   2001.3 2001-07        3 0.0000000000
## 2749   2001.3 2001-07        4 0.0000000000
## 2750   2001.3 2001-07        5 0.0000000000
## 2751   2001.3 2001-07        6 0.0000000000
## 2752   2001.3 2001-07        7 0.0000000000
## 2753   2001.3 2001-07        8 0.0033003300
## 2754   2001.3 2001-07        9 0.0066006601
## 2755   2001.3 2001-07       10 0.0033003300
## 2756   2001.3 2001-07       11 0.0000000000
## 2757   2001.3 2001-07       12 0.0000000000
## 2758   2001.3 2001-07       13 0.0000000000
## 2759   2001.3 2001-07       14 0.0033003300
## 2760   2001.3 2001-07       15 0.0000000000
## 2761   2001.3 2001-07       16 0.0000000000
## 2762   2001.3 2001-07       17 0.0000000000
## 2763   2001.3 2001-07       18 0.0000000000
## 2764   2001.3 2001-07       19 0.0000000000
## 2765   2001.3 2001-07       20 0.0000000000
## 2766   2001.3 2001-07       21 0.0000000000
## 2767   2001.3 2001-07       22 0.0000000000
## 2768   2001.3 2001-07       23 0.0033003300
## 2769   2001.3 2001-07       24 0.0033003300
## 2770   2001.3 2001-07       25 0.0099009901
## 2771   2001.3 2001-07       26 0.0000000000
## 2772   2001.3 2001-07       27 0.0297029703
## 2773   2001.3 2001-07       28 0.0000000000
## 2774   2001.3 2001-07       29 0.0000000000
## 2775   2001.3 2001-07       30 0.0000000000
## 2776   2001.3 2001-07       31 0.0000000000
## 2777   2001.3 2001-07       32 0.0000000000
## 2778   2001.3 2001-07       33 0.0000000000
## 2779   2001.3 2001-07       34 0.0000000000
## 2780   2001.3 2001-07       35 0.0198019802
## 2781   2001.3 2001-07       36 0.0066006601
## 2782   2001.3 2001-07       37 0.0066006601
## 2783   2001.3 2001-07       38 0.0264026403
## 2784   2001.3 2001-07       39 0.0033003300
## 2785   2001.3 2001-07       40 0.0000000000
## 2786   2001.3 2001-07       41 0.0000000000
## 2787   2001.3 2001-07       42 0.0561056106
## 2788   2001.3 2001-07       43 0.0132013201
## 2789   2001.3 2001-07       44 0.0099009901
## 2790   2001.3 2001-07       45 0.0000000000
## 2791   2001.3 2001-07       46 0.0033003300
## 2792   2001.3 2001-07       47 0.0099009901
## 2793   2001.3 2001-07       48 0.0165016502
## 2794   2001.3 2001-07       49 0.0264026403
## 2795   2001.3 2001-07       50 0.0033003300
## 2796   2001.3 2001-07       51 0.0198019802
## 2797   2001.3 2001-07       52 0.0198019802
## 2798   2001.3 2001-07       53 0.0594059406
## 2799   2001.3 2001-07       55 0.0726072607
## 2800   2001.3 2001-07       54 0.0396039604
## 2801   2001.3 2001-07       56 0.0561056106
## 2802   2001.3 2001-07       57 0.1551155116
## 2803   2001.3 2001-07       61 0.0759075908
## 2804   2001.3 2001-07       60 0.0693069307
## 2805   2001.3 2001-07       58 0.0726072607
## 2806   2001.3 2001-07       59 0.0891089109
## 2807   2001.3 2001-08        1 0.0116279070
## 2808   2001.3 2001-08        2 0.0000000000
## 2809   2001.3 2001-08        3 0.0000000000
## 2810   2001.3 2001-08        4 0.0000000000
## 2811   2001.3 2001-08        5 0.0000000000
## 2812   2001.3 2001-08        6 0.0000000000
## 2813   2001.3 2001-08        7 0.0116279070
## 2814   2001.3 2001-08        8 0.0000000000
## 2815   2001.3 2001-08        9 0.0000000000
## 2816   2001.3 2001-08       10 0.0000000000
## 2817   2001.3 2001-08       11 0.0000000000
## 2818   2001.3 2001-08       12 0.0116279070
## 2819   2001.3 2001-08       13 0.0000000000
## 2820   2001.3 2001-08       14 0.0000000000
## 2821   2001.3 2001-08       15 0.0000000000
## 2822   2001.3 2001-08       16 0.0000000000
## 2823   2001.3 2001-08       17 0.0000000000
## 2824   2001.3 2001-08       18 0.0116279070
## 2825   2001.3 2001-08       19 0.0000000000
## 2826   2001.3 2001-08       20 0.0000000000
## 2827   2001.3 2001-08       21 0.0000000000
## 2828   2001.3 2001-08       22 0.0232558140
## 2829   2001.3 2001-08       23 0.0000000000
## 2830   2001.3 2001-08       24 0.0000000000
## 2831   2001.3 2001-08       25 0.0000000000
## 2832   2001.3 2001-08       26 0.0116279070
## 2833   2001.3 2001-08       27 0.0232558140
## 2834   2001.3 2001-08       28 0.0116279070
## 2835   2001.3 2001-08       29 0.0000000000
## 2836   2001.3 2001-08       30 0.0000000000
## 2837   2001.3 2001-08       31 0.0000000000
## 2838   2001.3 2001-08       32 0.0813953488
## 2839   2001.3 2001-08       33 0.0000000000
## 2840   2001.3 2001-08       34 0.0116279070
## 2841   2001.3 2001-08       35 0.0116279070
## 2842   2001.3 2001-08       36 0.0116279070
## 2843   2001.3 2001-08       37 0.0000000000
## 2844   2001.3 2001-08       38 0.0000000000
## 2845   2001.3 2001-08       39 0.0232558140
## 2846   2001.3 2001-08       40 0.0232558140
## 2847   2001.3 2001-08       41 0.0348837209
## 2848   2001.3 2001-08       42 0.0348837209
## 2849   2001.3 2001-08       43 0.0000000000
## 2850   2001.3 2001-08       44 0.0232558140
## 2851   2001.3 2001-08       45 0.0465116279
## 2852   2001.3 2001-08       46 0.0232558140
## 2853   2001.3 2001-08       47 0.0116279070
## 2854   2001.3 2001-08       48 0.0348837209
## 2855   2001.3 2001-08       49 0.0000000000
## 2856   2001.3 2001-08       50 0.0000000000
## 2857   2001.3 2001-08       60 0.0232558140
## 2858   2001.3 2001-08       51 0.0232558140
## 2859   2001.3 2001-08       61 0.0000000000
## 2860   2001.3 2001-08       52 0.0581395349
## 2861   2001.3 2001-08       53 0.0116279070
## 2862   2001.3 2001-08       54 0.0116279070
## 2863   2001.3 2001-08       55 0.0116279070
## 2864   2001.3 2001-08       57 0.0000000000
## 2865   2001.3 2001-08       56 0.1511627907
## 2866   2001.3 2001-08       58 0.0116279070
## 2867   2001.3 2001-08       59 0.2093023256
## 2868   2001.4 2001-12        1 0.0909090909
## 2869   2001.4 2001-12        2 0.4545454545
## 2870   2001.4 2001-12        3 0.0909090909
## 2871   2001.4 2001-12        4 0.0000000000
## 2872   2001.4 2001-12        5 0.0000000000
## 2873   2001.4 2001-12        6 0.0909090909
## 2874   2001.4 2001-12        7 0.0000000000
## 2875   2001.4 2001-12        8 0.0000000000
## 2876   2001.4 2001-12        9 0.0000000000
## 2877   2001.4 2001-12       10 0.0000000000
## 2878   2001.4 2001-12       11 0.0000000000
## 2879   2001.4 2001-12       12 0.0000000000
## 2880   2001.4 2001-12       13 0.0000000000
## 2881   2001.4 2001-12       14 0.0000000000
## 2882   2001.4 2001-12       15 0.0000000000
## 2883   2001.4 2001-12       16 0.0000000000
## 2884   2001.4 2001-12       17 0.0000000000
## 2885   2001.4 2001-12       18 0.0000000000
## 2886   2001.4 2001-12       19 0.0000000000
## 2887   2001.4 2001-12       20 0.0909090909
## 2888   2001.4 2001-12       21 0.0000000000
## 2889   2001.4 2001-12       22 0.0000000000
## 2890   2001.4 2001-12       23 0.0909090909
## 2891   2001.4 2001-12       24 0.0000000000
## 2892   2001.4 2001-12       25 0.0000000000
## 2893   2001.4 2001-12       26 0.0000000000
## 2894   2001.4 2001-12       27 0.0000000000
## 2895   2001.4 2001-12       28 0.0000000000
## 2896   2001.4 2001-12       29 0.0909090909
## 2897   2001.4 2001-12       30 0.0000000000
## 2898   2001.4 2001-12       31 0.0000000000
## 2899   2001.4 2001-12       32 0.0000000000
## 2900   2001.4 2001-12       33 0.0000000000
## 2901   2001.4 2001-12       34 0.0000000000
## 2902   2001.4 2001-12       35 0.0000000000
## 2903   2001.4 2001-12       36 0.0000000000
## 2904   2001.4 2001-12       37 0.0000000000
## 2905   2001.4 2001-12       38 0.0000000000
## 2906   2001.4 2001-12       39 0.0000000000
## 2907   2001.4 2001-12       40 0.0000000000
## 2908   2001.4 2001-12       41 0.0000000000
## 2909   2001.4 2001-12       42 0.0000000000
## 2910   2001.4 2001-12       43 0.0000000000
## 2911   2001.4 2001-12       44 0.0000000000
## 2912   2001.4 2001-12       45 0.0000000000
## 2913   2001.4 2001-12       46 0.0000000000
## 2914   2001.4 2001-12       47 0.0000000000
## 2915   2001.4 2001-12       48 0.0000000000
## 2916   2001.4 2001-12       49 0.0000000000
## 2917   2001.4 2001-12       50 0.0000000000
## 2918   2001.4 2001-12       51 0.0000000000
## 2919   2001.4 2001-12       52 0.0000000000
## 2920   2001.4 2001-12       53 0.0000000000
## 2921   2001.4 2001-12       54 0.0000000000
## 2922   2001.4 2001-12       55 0.0000000000
## 2923   2001.4 2001-12       56 0.0000000000
## 2924   2001.4 2001-12       57 0.0000000000
## 2925   2001.4 2001-12       61 0.0000000000
## 2926   2001.4 2001-12       58 0.0000000000
## 2927   2001.4 2001-12       59 0.0000000000
## 2928   2001.4 2001-12       60 0.0000000000
## 2929   2001.3 2001-08        1 1.0000000000
## 2930   2001.3 2001-08        2 0.0000000000
## 2931   2001.3 2001-08        3 0.0000000000
## 2932   2001.3 2001-08        4 0.0000000000
## 2933   2001.3 2001-08        5 0.0000000000
## 2934   2001.3 2001-08        6 0.0000000000
## 2935   2001.3 2001-08        7 0.0000000000
## 2936   2001.3 2001-08        8 0.0000000000
## 2937   2001.3 2001-08        9 0.0000000000
## 2938   2001.3 2001-08       10 0.0000000000
## 2939   2001.3 2001-08       11 0.0000000000
## 2940   2001.3 2001-08       12 0.0000000000
## 2941   2001.3 2001-08       13 0.0000000000
## 2942   2001.3 2001-08       14 0.0000000000
## 2943   2001.3 2001-08       15 0.0000000000
## 2944   2001.3 2001-08       16 0.0000000000
## 2945   2001.3 2001-08       17 0.0000000000
## 2946   2001.3 2001-08       18 0.0000000000
## 2947   2001.3 2001-08       19 0.0000000000
## 2948   2001.3 2001-08       20 0.0000000000
## 2949   2001.3 2001-08       21 0.0000000000
## 2950   2001.3 2001-08       22 0.0000000000
## 2951   2001.3 2001-08       23 0.0000000000
## 2952   2001.3 2001-08       24 0.0000000000
## 2953   2001.3 2001-08       25 0.0000000000
## 2954   2001.3 2001-08       26 0.0000000000
## 2955   2001.3 2001-08       27 0.0000000000
## 2956   2001.3 2001-08       28 0.0000000000
## 2957   2001.3 2001-08       29 0.0000000000
## 2958   2001.3 2001-08       30 0.0000000000
## 2959   2001.3 2001-08       31 0.0000000000
## 2960   2001.3 2001-08       32 0.0000000000
## 2961   2001.3 2001-08       33 0.0000000000
## 2962   2001.3 2001-08       34 0.0000000000
## 2963   2001.3 2001-08       35 0.0000000000
## 2964   2001.3 2001-08       36 0.0000000000
## 2965   2001.3 2001-08       37 0.0000000000
## 2966   2001.3 2001-08       38 0.0000000000
## 2967   2001.3 2001-08       39 0.0000000000
## 2968   2001.3 2001-08       40 0.0000000000
## 2969   2001.3 2001-08       41 0.0000000000
## 2970   2001.3 2001-08       42 0.0000000000
## 2971   2001.3 2001-08       43 0.0000000000
## 2972   2001.3 2001-08       44 0.0000000000
## 2973   2001.3 2001-08       45 0.0000000000
## 2974   2001.3 2001-08       46 0.0000000000
## 2975   2001.3 2001-08       47 0.0000000000
## 2976   2001.3 2001-08       48 0.0000000000
## 2977   2001.3 2001-08       49 0.0000000000
## 2978   2001.3 2001-08       50 0.0000000000
## 2979   2001.3 2001-08       51 0.0000000000
## 2980   2001.3 2001-08       52 0.0000000000
## 2981   2001.3 2001-08       53 0.0000000000
## 2982   2001.3 2001-08       54 0.0000000000
## 2983   2001.3 2001-08       55 0.0000000000
## 2984   2001.3 2001-08       56 0.0000000000
## 2985   2001.3 2001-08       57 0.0000000000
## 2986   2001.3 2001-08       58 0.0000000000
## 2987   2001.3 2001-08       60 0.0000000000
## 2988   2001.3 2001-08       61 0.0000000000
## 2989   2001.3 2001-08       59 0.0000000000
## 2990   2002.1 2002-02        1 0.5000000000
## 2991   2002.1 2002-02        2 0.0000000000
## 2992   2002.1 2002-02        3 0.0000000000
## 2993   2002.1 2002-02        4 0.5000000000
## 2994   2002.1 2002-02        5 0.0000000000
## 2995   2002.1 2002-02        6 0.0000000000
## 2996   2002.1 2002-02        7 0.0000000000
## 2997   2002.1 2002-02        8 0.0000000000
## 2998   2002.1 2002-02        9 0.0000000000
## 2999   2002.1 2002-02       10 0.0000000000
## 3000   2002.1 2002-02       11 0.0000000000
## 3001   2002.1 2002-02       12 0.0000000000
## 3002   2002.1 2002-02       13 0.0000000000
## 3003   2002.1 2002-02       14 0.0000000000
## 3004   2002.1 2002-02       15 0.0000000000
## 3005   2002.1 2002-02       16 0.0000000000
## 3006   2002.1 2002-02       17 0.0000000000
## 3007   2002.1 2002-02       18 0.0000000000
## 3008   2002.1 2002-02       19 0.0000000000
## 3009   2002.1 2002-02       20 0.0000000000
## 3010   2002.1 2002-02       21 0.0000000000
## 3011   2002.1 2002-02       22 0.0000000000
## 3012   2002.1 2002-02       23 0.0000000000
## 3013   2002.1 2002-02       24 0.0000000000
## 3014   2002.1 2002-02       25 0.0000000000
## 3015   2002.1 2002-02       26 0.0000000000
## 3016   2002.1 2002-02       27 0.0000000000
## 3017   2002.1 2002-02       28 0.0000000000
## 3018   2002.1 2002-02       29 0.0000000000
## 3019   2002.1 2002-02       30 0.0000000000
## 3020   2002.1 2002-02       31 0.0000000000
## 3021   2002.1 2002-02       32 0.0000000000
## 3022   2002.1 2002-02       33 0.0000000000
## 3023   2002.1 2002-02       34 0.0000000000
## 3024   2002.1 2002-02       35 0.0000000000
## 3025   2002.1 2002-02       36 0.0000000000
## 3026   2002.1 2002-02       37 0.0000000000
## 3027   2002.1 2002-02       38 0.0000000000
## 3028   2002.1 2002-02       39 0.0000000000
## 3029   2002.1 2002-02       40 0.0000000000
## 3030   2002.1 2002-02       41 0.0000000000
## 3031   2002.1 2002-02       42 0.0000000000
## 3032   2002.1 2002-02       43 0.0000000000
## 3033   2002.1 2002-02       44 0.0000000000
## 3034   2002.1 2002-02       45 0.0000000000
## 3035   2002.1 2002-02       49 0.0000000000
## 3036   2002.1 2002-02       46 0.0000000000
## 3037   2002.1 2002-02       50 0.0000000000
## 3038   2002.1 2002-02       47 0.0000000000
## 3039   2002.1 2002-02       51 0.0000000000
## 3040   2002.1 2002-02       48 0.0000000000
## 3041   2002.1 2002-02       52 0.0000000000
## 3042   2002.1 2002-02       53 0.0000000000
## 3043   2002.1 2002-02       60 0.0000000000
## 3044   2002.1 2002-02       54 0.0000000000
## 3045   2002.1 2002-02       61 0.0000000000
## 3046   2002.1 2002-02       55 0.0000000000
## 3047   2002.1 2002-02       56 0.0000000000
## 3048   2002.1 2002-02       57 0.0000000000
## 3049   2002.1 2002-02       58 0.0000000000
## 3050   2002.1 2002-02       59 0.0000000000
## 3051   2001.4 2001-12        1 1.0000000000
## 3052   2001.4 2001-12        2 0.0000000000
## 3053   2001.4 2001-12        3 0.0000000000
## 3054   2001.4 2001-12        4 0.0000000000
## 3055   2001.4 2001-12        5 0.0000000000
## 3056   2001.4 2001-12        6 0.0000000000
## 3057   2001.4 2001-12        7 0.0000000000
## 3058   2001.4 2001-12        8 0.0000000000
## 3059   2001.4 2001-12        9 0.0000000000
## 3060   2001.4 2001-12       10 0.0000000000
## 3061   2001.4 2001-12       11 0.0000000000
## 3062   2001.4 2001-12       12 0.0000000000
## 3063   2001.4 2001-12       13 0.0000000000
## 3064   2001.4 2001-12       14 0.0000000000
## 3065   2001.4 2001-12       15 0.0000000000
## 3066   2001.4 2001-12       16 0.0000000000
## 3067   2001.4 2001-12       17 0.0000000000
## 3068   2001.4 2001-12       18 0.0000000000
## 3069   2001.4 2001-12       19 0.0000000000
## 3070   2001.4 2001-12       20 0.0000000000
## 3071   2001.4 2001-12       21 0.0000000000
## 3072   2001.4 2001-12       22 0.0000000000
## 3073   2001.4 2001-12       23 0.0000000000
## 3074   2001.4 2001-12       24 0.0000000000
## 3075   2001.4 2001-12       25 0.0000000000
## 3076   2001.4 2001-12       26 0.0000000000
## 3077   2001.4 2001-12       27 0.0000000000
## 3078   2001.4 2001-12       28 0.0000000000
## 3079   2001.4 2001-12       29 0.0000000000
## 3080   2001.4 2001-12       30 0.0000000000
## 3081   2001.4 2001-12       31 0.0000000000
## 3082   2001.4 2001-12       32 0.0000000000
## 3083   2001.4 2001-12       33 0.0000000000
## 3084   2001.4 2001-12       34 0.0000000000
## 3085   2001.4 2001-12       35 0.0000000000
## 3086   2001.4 2001-12       36 0.0000000000
## 3087   2001.4 2001-12       37 0.0000000000
## 3088   2001.4 2001-12       38 0.0000000000
## 3089   2001.4 2001-12       39 0.0000000000
## 3090   2001.4 2001-12       40 0.0000000000
## 3091   2001.4 2001-12       41 0.0000000000
## 3092   2001.4 2001-12       42 0.0000000000
## 3093   2001.4 2001-12       43 0.0000000000
## 3094   2001.4 2001-12       44 0.0000000000
## 3095   2001.4 2001-12       45 0.0000000000
## 3096   2001.4 2001-12       46 0.0000000000
## 3097   2001.4 2001-12       47 0.0000000000
## 3098   2001.4 2001-12       48 0.0000000000
## 3099   2001.4 2001-12       49 0.0000000000
## 3100   2001.4 2001-12       50 0.0000000000
## 3101   2001.4 2001-12       60 0.0000000000
## 3102   2001.4 2001-12       51 0.0000000000
## 3103   2001.4 2001-12       61 0.0000000000
## 3104   2001.4 2001-12       52 0.0000000000
## 3105   2001.4 2001-12       54 0.0000000000
## 3106   2001.4 2001-12       53 0.0000000000
## 3107   2001.4 2001-12       55 0.0000000000
## 3108   2001.4 2001-12       57 0.0000000000
## 3109   2001.4 2001-12       56 0.0000000000
## 3110   2001.4 2001-12       58 0.0000000000
## 3111   2001.4 2001-12       59 0.0000000000
## 3112   2001.3 2001-09        1 0.0056818182
## 3113   2001.3 2001-09        2 0.0000000000
## 3114   2001.3 2001-09        3 0.0000000000
## 3115   2001.3 2001-09        4 0.0170454545
## 3116   2001.3 2001-09        5 0.0113636364
## 3117   2001.3 2001-09        6 0.0056818182
## 3118   2001.3 2001-09        7 0.0056818182
## 3119   2001.3 2001-09        8 0.0000000000
## 3120   2001.3 2001-09        9 0.0000000000
## 3121   2001.3 2001-09       10 0.0000000000
## 3122   2001.3 2001-09       11 0.0056818182
## 3123   2001.3 2001-09       12 0.0000000000
## 3124   2001.3 2001-09       13 0.0000000000
## 3125   2001.3 2001-09       14 0.0056818182
## 3126   2001.3 2001-09       15 0.0000000000
## 3127   2001.3 2001-09       16 0.0000000000
## 3128   2001.3 2001-09       17 0.0000000000
## 3129   2001.3 2001-09       18 0.0056818182
## 3130   2001.3 2001-09       19 0.0000000000
## 3131   2001.3 2001-09       20 0.0000000000
## 3132   2001.3 2001-09       21 0.0000000000
## 3133   2001.3 2001-09       22 0.0000000000
## 3134   2001.3 2001-09       23 0.0000000000
## 3135   2001.3 2001-09       24 0.0000000000
## 3136   2001.3 2001-09       25 0.0000000000
## 3137   2001.3 2001-09       26 0.0000000000
## 3138   2001.3 2001-09       27 0.0170454545
## 3139   2001.3 2001-09       28 0.0000000000
## 3140   2001.3 2001-09       29 0.0000000000
## 3141   2001.3 2001-09       30 0.0000000000
## 3142   2001.3 2001-09       31 0.0113636364
## 3143   2001.3 2001-09       32 0.0000000000
## 3144   2001.3 2001-09       33 0.0227272727
## 3145   2001.3 2001-09       34 0.0056818182
## 3146   2001.3 2001-09       35 0.0113636364
## 3147   2001.3 2001-09       36 0.0113636364
## 3148   2001.3 2001-09       37 0.0056818182
## 3149   2001.3 2001-09       38 0.0056818182
## 3150   2001.3 2001-09       39 0.0397727273
## 3151   2001.3 2001-09       40 0.0056818182
## 3152   2001.3 2001-09       41 0.0056818182
## 3153   2001.3 2001-09       42 0.0284090909
## 3154   2001.3 2001-09       43 0.0284090909
## 3155   2001.3 2001-09       44 0.0340909091
## 3156   2001.3 2001-09       45 0.0000000000
## 3157   2001.3 2001-09       46 0.0000000000
## 3158   2001.3 2001-09       47 0.0113636364
## 3159   2001.3 2001-09       48 0.0284090909
## 3160   2001.3 2001-09       49 0.0284090909
## 3161   2001.3 2001-09       50 0.0738636364
## 3162   2001.3 2001-09       51 0.0454545455
## 3163   2001.3 2001-09       52 0.1022727273
## 3164   2001.3 2001-09       54 0.0965909091
## 3165   2001.3 2001-09       53 0.0738636364
## 3166   2001.3 2001-09       55 0.0227272727
## 3167   2001.3 2001-09       59 0.0227272727
## 3168   2001.3 2001-09       56 0.0397727273
## 3169   2001.3 2001-09       60 0.0113636364
## 3170   2001.3 2001-09       57 0.0340909091
## 3171   2001.3 2001-09       61 0.0795454545
## 3172   2001.3 2001-09       58 0.0340909091
## 3173   2001.3 2001-09        1 0.0070422535
## 3174   2001.3 2001-09        2 0.0000000000
## 3175   2001.3 2001-09        3 0.0000000000
## 3176   2001.3 2001-09        4 0.0070422535
## 3177   2001.3 2001-09        5 0.0000000000
## 3178   2001.3 2001-09        6 0.0070422535
## 3179   2001.3 2001-09        7 0.0000000000
## 3180   2001.3 2001-09        8 0.0000000000
## 3181   2001.3 2001-09        9 0.0000000000
## 3182   2001.3 2001-09       10 0.0000000000
## 3183   2001.3 2001-09       11 0.0000000000
## 3184   2001.3 2001-09       12 0.0000000000
## 3185   2001.3 2001-09       13 0.0070422535
## 3186   2001.3 2001-09       14 0.0000000000
## 3187   2001.3 2001-09       15 0.0070422535
## 3188   2001.3 2001-09       16 0.0070422535
## 3189   2001.3 2001-09       17 0.0000000000
## 3190   2001.3 2001-09       18 0.0563380282
## 3191   2001.3 2001-09       19 0.0070422535
## 3192   2001.3 2001-09       20 0.0281690141
## 3193   2001.3 2001-09       21 0.0000000000
## 3194   2001.3 2001-09       22 0.0140845070
## 3195   2001.3 2001-09       23 0.0281690141
## 3196   2001.3 2001-09       24 0.0211267606
## 3197   2001.3 2001-09       25 0.0140845070
## 3198   2001.3 2001-09       26 0.0070422535
## 3199   2001.3 2001-09       27 0.0140845070
## 3200   2001.3 2001-09       28 0.0000000000
## 3201   2001.3 2001-09       29 0.0281690141
## 3202   2001.3 2001-09       30 0.0140845070
## 3203   2001.3 2001-09       31 0.0140845070
## 3204   2001.3 2001-09       32 0.0000000000
## 3205   2001.3 2001-09       33 0.0140845070
## 3206   2001.3 2001-09       34 0.0281690141
## 3207   2001.3 2001-09       35 0.0000000000
## 3208   2001.3 2001-09       36 0.0000000000
## 3209   2001.3 2001-09       37 0.0492957746
## 3210   2001.3 2001-09       38 0.0070422535
## 3211   2001.3 2001-09       39 0.0211267606
## 3212   2001.3 2001-09       40 0.0352112676
## 3213   2001.3 2001-09       41 0.0352112676
## 3214   2001.3 2001-09       42 0.0140845070
## 3215   2001.3 2001-09       43 0.0140845070
## 3216   2001.3 2001-09       44 0.0000000000
## 3217   2001.3 2001-09       45 0.0352112676
## 3218   2001.3 2001-09       46 0.0281690141
## 3219   2001.3 2001-09       47 0.0211267606
## 3220   2001.3 2001-09       48 0.0281690141
## 3221   2001.3 2001-09       49 0.0211267606
## 3222   2001.3 2001-09       50 0.0070422535
## 3223   2001.3 2001-09       51 0.0563380282
## 3224   2001.3 2001-09       52 0.0422535211
## 3225   2001.3 2001-09       59 0.0070422535
## 3226   2001.3 2001-09       56 0.0211267606
## 3227   2001.3 2001-09       54 0.0140845070
## 3228   2001.3 2001-09       53 0.0211267606
## 3229   2001.3 2001-09       60 0.0211267606
## 3230   2001.3 2001-09       57 0.0774647887
## 3231   2001.3 2001-09       55 0.0000000000
## 3232   2001.3 2001-09       61 0.0563380282
## 3233   2001.3 2001-09       58 0.0352112676
## 3234   2001.4 2001-10        1 0.0500000000
## 3235   2001.4 2001-10        2 0.0000000000
## 3236   2001.4 2001-10        3 0.0000000000
## 3237   2001.4 2001-10        4 0.0000000000
## 3238   2001.4 2001-10        5 0.0250000000
## 3239   2001.4 2001-10        6 0.0000000000
## 3240   2001.4 2001-10        7 0.0000000000
## 3241   2001.4 2001-10        8 0.0000000000
## 3242   2001.4 2001-10        9 0.0250000000
## 3243   2001.4 2001-10       10 0.0000000000
## 3244   2001.4 2001-10       11 0.0000000000
## 3245   2001.4 2001-10       12 0.0000000000
## 3246   2001.4 2001-10       13 0.0000000000
## 3247   2001.4 2001-10       14 0.0000000000
## 3248   2001.4 2001-10       15 0.0000000000
## 3249   2001.4 2001-10       16 0.0000000000
## 3250   2001.4 2001-10       17 0.0000000000
## 3251   2001.4 2001-10       18 0.0000000000
## 3252   2001.4 2001-10       19 0.0000000000
## 3253   2001.4 2001-10       20 0.0000000000
## 3254   2001.4 2001-10       21 0.0000000000
## 3255   2001.4 2001-10       22 0.0000000000
## 3256   2001.4 2001-10       23 0.0000000000
## 3257   2001.4 2001-10       24 0.0000000000
## 3258   2001.4 2001-10       25 0.0000000000
## 3259   2001.4 2001-10       26 0.0500000000
## 3260   2001.4 2001-10       27 0.0000000000
## 3261   2001.4 2001-10       28 0.0000000000
## 3262   2001.4 2001-10       29 0.0250000000
## 3263   2001.4 2001-10       30 0.0250000000
## 3264   2001.4 2001-10       31 0.0000000000
## 3265   2001.4 2001-10       32 0.0000000000
## 3266   2001.4 2001-10       33 0.0000000000
## 3267   2001.4 2001-10       34 0.0750000000
## 3268   2001.4 2001-10       35 0.0500000000
## 3269   2001.4 2001-10       36 0.0000000000
## 3270   2001.4 2001-10       37 0.0000000000
## 3271   2001.4 2001-10       38 0.0250000000
## 3272   2001.4 2001-10       39 0.0000000000
## 3273   2001.4 2001-10       40 0.0000000000
## 3274   2001.4 2001-10       41 0.0000000000
## 3275   2001.4 2001-10       42 0.0000000000
## 3276   2001.4 2001-10       43 0.0250000000
## 3277   2001.4 2001-10       44 0.0250000000
## 3278   2001.4 2001-10       45 0.0250000000
## 3279   2001.4 2001-10       49 0.0000000000
## 3280   2001.4 2001-10       46 0.0000000000
## 3281   2001.4 2001-10       50 0.0250000000
## 3282   2001.4 2001-10       60 0.0250000000
## 3283   2001.4 2001-10       47 0.0000000000
## 3284   2001.4 2001-10       51 0.0000000000
## 3285   2001.4 2001-10       61 0.0000000000
## 3286   2001.4 2001-10       48 0.0000000000
## 3287   2001.4 2001-10       52 0.0000000000
## 3288   2001.4 2001-10       53 0.0000000000
## 3289   2001.4 2001-10       54 0.4000000000
## 3290   2001.4 2001-10       55 0.0750000000
## 3291   2001.4 2001-10       56 0.0000000000
## 3292   2001.4 2001-10       57 0.0250000000
## 3293   2001.4 2001-10       58 0.0250000000
## 3294   2001.4 2001-10       59 0.0000000000
## 3295   2001.4 2001-10        1 0.0086956522
## 3296   2001.4 2001-10        2 0.0000000000
## 3297   2001.4 2001-10        3 0.0260869565
## 3298   2001.4 2001-10        4 0.0000000000
## 3299   2001.4 2001-10        5 0.0086956522
## 3300   2001.4 2001-10        6 0.0000000000
## 3301   2001.4 2001-10        7 0.0000000000
## 3302   2001.4 2001-10        8 0.0347826087
## 3303   2001.4 2001-10        9 0.0173913043
## 3304   2001.4 2001-10       10 0.0086956522
## 3305   2001.4 2001-10       11 0.0086956522
## 3306   2001.4 2001-10       12 0.0086956522
## 3307   2001.4 2001-10       13 0.0000000000
## 3308   2001.4 2001-10       14 0.0000000000
## 3309   2001.4 2001-10       15 0.0086956522
## 3310   2001.4 2001-10       16 0.0000000000
## 3311   2001.4 2001-10       17 0.0086956522
## 3312   2001.4 2001-10       18 0.0086956522
## 3313   2001.4 2001-10       19 0.0000000000
## 3314   2001.4 2001-10       20 0.0173913043
## 3315   2001.4 2001-10       21 0.0521739130
## 3316   2001.4 2001-10       22 0.0260869565
## 3317   2001.4 2001-10       23 0.0000000000
## 3318   2001.4 2001-10       24 0.0086956522
## 3319   2001.4 2001-10       25 0.0000000000
## 3320   2001.4 2001-10       26 0.0000000000
## 3321   2001.4 2001-10       27 0.0086956522
## 3322   2001.4 2001-10       28 0.0000000000
## 3323   2001.4 2001-10       29 0.0000000000
## 3324   2001.4 2001-10       30 0.0086956522
## 3325   2001.4 2001-10       31 0.0260869565
## 3326   2001.4 2001-10       32 0.0000000000
## 3327   2001.4 2001-10       33 0.0347826087
## 3328   2001.4 2001-10       34 0.0000000000
## 3329   2001.4 2001-10       35 0.0260869565
## 3330   2001.4 2001-10       36 0.0086956522
## 3331   2001.4 2001-10       37 0.0086956522
## 3332   2001.4 2001-10       38 0.0000000000
## 3333   2001.4 2001-10       39 0.0086956522
## 3334   2001.4 2001-10       40 0.0086956522
## 3335   2001.4 2001-10       41 0.0000000000
## 3336   2001.4 2001-10       42 0.0000000000
## 3337   2001.4 2001-10       43 0.0347826087
## 3338   2001.4 2001-10       44 0.0086956522
## 3339   2001.4 2001-10       45 0.0434782609
## 3340   2001.4 2001-10       46 0.0000000000
## 3341   2001.4 2001-10       47 0.0173913043
## 3342   2001.4 2001-10       48 0.0086956522
## 3343   2001.4 2001-10       49 0.0000000000
## 3344   2001.4 2001-10       50 0.0000000000
## 3345   2001.4 2001-10       51 0.0086956522
## 3346   2001.4 2001-10       52 0.0000000000
## 3347   2001.4 2001-10       53 0.0608695652
## 3348   2001.4 2001-10       54 0.0173913043
## 3349   2001.4 2001-10       55 0.0173913043
## 3350   2001.4 2001-10       59 0.0260869565
## 3351   2001.4 2001-10       57 0.0782608696
## 3352   2001.4 2001-10       56 0.0347826087
## 3353   2001.4 2001-10       60 0.0782608696
## 3354   2001.4 2001-10       58 0.1043478261
## 3355   2001.4 2001-10       61 0.0695652174
## 3356   2001.4 2001-10       49 0.0337909187
## 3357   2001.4 2001-10        6 0.0031678986
## 3358   2001.4 2001-10        7 0.0000000000
## 3359   2001.4 2001-10       23 0.0052798310
## 3360   2001.4 2001-10       17 0.0105596621
## 3361   2001.4 2001-10       16 0.0021119324
## 3362   2001.4 2001-10       20 0.0042238648
## 3363   2001.4 2001-10       59 0.0464625132
## 3364   2001.4 2001-10       35 0.0042238648
## 3365   2001.4 2001-10       48 0.0242872228
## 3366   2001.4 2001-10       45 0.0105596621
## 3367   2001.4 2001-10       36 0.0126715945
## 3368   2001.4 2001-10       22 0.0010559662
## 3369   2001.4 2001-10       56 0.0422386484
## 3370   2001.4 2001-10       10 0.0000000000
## 3371   2001.4 2001-10        5 0.0010559662
## 3372   2001.4 2001-10       41 0.0063357973
## 3373   2001.4 2001-10       32 0.0021119324
## 3374   2001.4 2001-10       61 0.1108764520
## 3375   2001.4 2001-10       53 0.0612460401
## 3376   2001.4 2001-10       18 0.0031678986
## 3377   2001.4 2001-10        1 0.0010559662
## 3378   2001.4 2001-10       13 0.0021119324
## 3379   2001.4 2001-10       43 0.0147835269
## 3380   2001.4 2001-10       55 0.0348468849
## 3381   2001.4 2001-10       33 0.0105596621
## 3382   2001.4 2001-10       54 0.0644139388
## 3383   2001.4 2001-10        4 0.0000000000
## 3384   2001.4 2001-10       46 0.0168954593
## 3385   2001.4 2001-10       42 0.0179514256
## 3386   2001.4 2001-10       34 0.0126715945
## 3387   2001.4 2001-10       58 0.0464625132
## 3388   2001.4 2001-10       19 0.0021119324
## 3389   2001.4 2001-10       50 0.0274551214
## 3390   2001.4 2001-10       26 0.0021119324
## 3391   2001.4 2001-10       11 0.0010559662
## 3392   2001.4 2001-10       14 0.0000000000
## 3393   2001.4 2001-10       40 0.0147835269
## 3394   2001.4 2001-10       29 0.0084477297
## 3395   2001.4 2001-10       30 0.0137275607
## 3396   2001.4 2001-10       12 0.0010559662
## 3397   2001.4 2001-10       15 0.0084477297
## 3398   2001.4 2001-10       31 0.0116156283
## 3399   2001.4 2001-10        9 0.0010559662
## 3400   2001.4 2001-10       44 0.0158394931
## 3401   2001.4 2001-10       57 0.0623020063
## 3402   2001.4 2001-10        8 0.0010559662
## 3403   2001.4 2001-10       27 0.0000000000
## 3404   2001.4 2001-10       39 0.0084477297
## 3405   2001.4 2001-10       60 0.0285110876
## 3406   2001.4 2001-10        3 0.0000000000
## 3407   2001.4 2001-10        2 0.0010559662
## 3408   2001.4 2001-10       52 0.0506863780
## 3409   2001.4 2001-10       38 0.0549102429
## 3410   2001.4 2001-10       25 0.0063357973
## 3411   2001.4 2001-10       24 0.0021119324
## 3412   2001.4 2001-10       47 0.0158394931
## 3413   2001.4 2001-10       28 0.0042238648
## 3414   2001.4 2001-10       51 0.0390707497
## 3415   2001.4 2001-10       21 0.0010559662
## 3416   2001.4 2001-10       37 0.0095036959
## 3417   2002.1 2002-02        1 0.0116279070
## 3418   2002.1 2002-02        2 0.0000000000
## 3419   2002.1 2002-02        3 0.0000000000
## 3420   2002.1 2002-02        4 0.0000000000
## 3421   2002.1 2002-02        5 0.0000000000
## 3422   2002.1 2002-02        6 0.0000000000
## 3423   2002.1 2002-02        7 0.0000000000
## 3424   2002.1 2002-02        8 0.0000000000
## 3425   2002.1 2002-02        9 0.0000000000
## 3426   2002.1 2002-02       10 0.0000000000
## 3427   2002.1 2002-02       11 0.0000000000
## 3428   2002.1 2002-02       12 0.0116279070
## 3429   2002.1 2002-02       13 0.0000000000
## 3430   2002.1 2002-02       14 0.0000000000
## 3431   2002.1 2002-02       15 0.0000000000
## 3432   2002.1 2002-02       16 0.0000000000
## 3433   2002.1 2002-02       17 0.0000000000
## 3434   2002.1 2002-02       18 0.0000000000
## 3435   2002.1 2002-02       19 0.0000000000
## 3436   2002.1 2002-02       20 0.0000000000
## 3437   2002.1 2002-02       21 0.0000000000
## 3438   2002.1 2002-02       22 0.0116279070
## 3439   2002.1 2002-02       23 0.0000000000
## 3440   2002.1 2002-02       24 0.0348837209
## 3441   2002.1 2002-02       25 0.0232558140
## 3442   2002.1 2002-02       26 0.0465116279
## 3443   2002.1 2002-02       27 0.0000000000
## 3444   2002.1 2002-02       28 0.0465116279
## 3445   2002.1 2002-02       29 0.0000000000
## 3446   2002.1 2002-02       30 0.0000000000
## 3447   2002.1 2002-02       31 0.0116279070
## 3448   2002.1 2002-02       32 0.0116279070
## 3449   2002.1 2002-02       33 0.0000000000
## 3450   2002.1 2002-02       34 0.0000000000
## 3451   2002.1 2002-02       35 0.0116279070
## 3452   2002.1 2002-02       36 0.0348837209
## 3453   2002.1 2002-02       37 0.0116279070
## 3454   2002.1 2002-02       38 0.0232558140
## 3455   2002.1 2002-02       39 0.0000000000
## 3456   2002.1 2002-02       40 0.0116279070
## 3457   2002.1 2002-02       41 0.0348837209
## 3458   2002.1 2002-02       42 0.0000000000
## 3459   2002.1 2002-02       43 0.0116279070
## 3460   2002.1 2002-02       44 0.0116279070
## 3461   2002.1 2002-02       45 0.0465116279
## 3462   2002.1 2002-02       46 0.0000000000
## 3463   2002.1 2002-02       47 0.0813953488
## 3464   2002.1 2002-02       48 0.0000000000
## 3465   2002.1 2002-02       49 0.0697674419
## 3466   2002.1 2002-02       50 0.0000000000
## 3467   2002.1 2002-02       51 0.0232558140
## 3468   2002.1 2002-02       52 0.0348837209
## 3469   2002.1 2002-02       53 0.0232558140
## 3470   2002.1 2002-02       54 0.0348837209
## 3471   2002.1 2002-02       55 0.0116279070
## 3472   2002.1 2002-02       59 0.0930232558
## 3473   2002.1 2002-02       56 0.0348837209
## 3474   2002.1 2002-02       60 0.0116279070
## 3475   2002.1 2002-02       57 0.0232558140
## 3476   2002.1 2002-02       61 0.1046511628
## 3477   2002.1 2002-02       58 0.0465116279
## 3478   2001.4 2001-11        1 0.0035335689
## 3479   2001.4 2001-11        2 0.0000000000
## 3480   2001.4 2001-11        3 0.0000000000
## 3481   2001.4 2001-11        4 0.0035335689
## 3482   2001.4 2001-11        5 0.0000000000
## 3483   2001.4 2001-11        6 0.0000000000
## 3484   2001.4 2001-11        7 0.0000000000
## 3485   2001.4 2001-11        8 0.0000000000
## 3486   2001.4 2001-11        9 0.0000000000
## 3487   2001.4 2001-11       10 0.0000000000
## 3488   2001.4 2001-11       11 0.0141342756
## 3489   2001.4 2001-11       12 0.0000000000
## 3490   2001.4 2001-11       13 0.0000000000
## 3491   2001.4 2001-11       14 0.0000000000
## 3492   2001.4 2001-11       15 0.0000000000
## 3493   2001.4 2001-11       16 0.0000000000
## 3494   2001.4 2001-11       17 0.0035335689
## 3495   2001.4 2001-11       18 0.0000000000
## 3496   2001.4 2001-11       19 0.0883392226
## 3497   2001.4 2001-11       20 0.0000000000
## 3498   2001.4 2001-11       21 0.0000000000
## 3499   2001.4 2001-11       22 0.0176678445
## 3500   2001.4 2001-11       23 0.0070671378
## 3501   2001.4 2001-11       24 0.0035335689
## 3502   2001.4 2001-11       25 0.0000000000
## 3503   2001.4 2001-11       26 0.0000000000
## 3504   2001.4 2001-11       27 0.0106007067
## 3505   2001.4 2001-11       28 0.0035335689
## 3506   2001.4 2001-11       29 0.0035335689
## 3507   2001.4 2001-11       30 0.0035335689
## 3508   2001.4 2001-11       31 0.0000000000
## 3509   2001.4 2001-11       32 0.0141342756
## 3510   2001.4 2001-11       33 0.0070671378
## 3511   2001.4 2001-11       34 0.0070671378
## 3512   2001.4 2001-11       35 0.0070671378
## 3513   2001.4 2001-11       36 0.0070671378
## 3514   2001.4 2001-11       37 0.0000000000
## 3515   2001.4 2001-11       38 0.0247349823
## 3516   2001.4 2001-11       39 0.0141342756
## 3517   2001.4 2001-11       40 0.0000000000
## 3518   2001.4 2001-11       41 0.0176678445
## 3519   2001.4 2001-11       42 0.0106007067
## 3520   2001.4 2001-11       43 0.0176678445
## 3521   2001.4 2001-11       44 0.0106007067
## 3522   2001.4 2001-11       45 0.0247349823
## 3523   2001.4 2001-11       46 0.0141342756
## 3524   2001.4 2001-11       47 0.0035335689
## 3525   2001.4 2001-11       48 0.0353356890
## 3526   2001.4 2001-11       49 0.0353356890
## 3527   2001.4 2001-11       50 0.0954063604
## 3528   2001.4 2001-11       60 0.0883392226
## 3529   2001.4 2001-11       51 0.0565371025
## 3530   2001.4 2001-11       61 0.0459363958
## 3531   2001.4 2001-11       52 0.0424028269
## 3532   2001.4 2001-11       53 0.0318021201
## 3533   2001.4 2001-11       54 0.0777385159
## 3534   2001.4 2001-11       55 0.0565371025
## 3535   2001.4 2001-11       56 0.0141342756
## 3536   2001.4 2001-11       57 0.0282685512
## 3537   2001.4 2001-11       58 0.0141342756
## 3538   2001.4 2001-11       59 0.0353356890
## 3539   2002.1 2002-02        1 0.0019267823
## 3540   2002.1 2002-02        2 0.0000000000
## 3541   2002.1 2002-02        3 0.0000000000
## 3542   2002.1 2002-02        4 0.0000000000
## 3543   2002.1 2002-02        5 0.0000000000
## 3544   2002.1 2002-02        6 0.0019267823
## 3545   2002.1 2002-02        7 0.0000000000
## 3546   2002.1 2002-02        8 0.0000000000
## 3547   2002.1 2002-02        9 0.0000000000
## 3548   2002.1 2002-02       10 0.0000000000
## 3549   2002.1 2002-02       11 0.0000000000
## 3550   2002.1 2002-02       12 0.0000000000
## 3551   2002.1 2002-02       13 0.0019267823
## 3552   2002.1 2002-02       14 0.0000000000
## 3553   2002.1 2002-02       15 0.0000000000
## 3554   2002.1 2002-02       16 0.0019267823
## 3555   2002.1 2002-02       17 0.0000000000
## 3556   2002.1 2002-02       18 0.0000000000
## 3557   2002.1 2002-02       19 0.0096339114
## 3558   2002.1 2002-02       20 0.0019267823
## 3559   2002.1 2002-02       21 0.0000000000
## 3560   2002.1 2002-02       22 0.0019267823
## 3561   2002.1 2002-02       23 0.0000000000
## 3562   2002.1 2002-02       24 0.0000000000
## 3563   2002.1 2002-02       25 0.0000000000
## 3564   2002.1 2002-02       26 0.0019267823
## 3565   2002.1 2002-02       27 0.0000000000
## 3566   2002.1 2002-02       28 0.0000000000
## 3567   2002.1 2002-02       29 0.0038535645
## 3568   2002.1 2002-02       30 0.0000000000
## 3569   2002.1 2002-02       31 0.0019267823
## 3570   2002.1 2002-02       32 0.0000000000
## 3571   2002.1 2002-02       33 0.0000000000
## 3572   2002.1 2002-02       34 0.0000000000
## 3573   2002.1 2002-02       35 0.0000000000
## 3574   2002.1 2002-02       36 0.0154142582
## 3575   2002.1 2002-02       37 0.0385356455
## 3576   2002.1 2002-02       38 0.0096339114
## 3577   2002.1 2002-02       39 0.0154142582
## 3578   2002.1 2002-02       40 0.0019267823
## 3579   2002.1 2002-02       41 0.1522157996
## 3580   2002.1 2002-02       42 0.0231213873
## 3581   2002.1 2002-02       43 0.0173410405
## 3582   2002.1 2002-02       44 0.0077071291
## 3583   2002.1 2002-02       45 0.0289017341
## 3584   2002.1 2002-02       46 0.0077071291
## 3585   2002.1 2002-02       47 0.0366088632
## 3586   2002.1 2002-02       48 0.0269749518
## 3587   2002.1 2002-02       49 0.0231213873
## 3588   2002.1 2002-02       50 0.0134874759
## 3589   2002.1 2002-02       51 0.0231213873
## 3590   2002.1 2002-02       52 0.0096339114
## 3591   2002.1 2002-02       53 0.1406551060
## 3592   2002.1 2002-02       54 0.0520231214
## 3593   2002.1 2002-02       57 0.0597302505
## 3594   2002.1 2002-02       55 0.0404624277
## 3595   2002.1 2002-02       61 0.0712909441
## 3596   2002.1 2002-02       60 0.0154142582
## 3597   2002.1 2002-02       59 0.0385356455
## 3598   2002.1 2002-02       58 0.0462427746
## 3599   2002.1 2002-02       56 0.0558766859
## 3600   2001.4 2001-11        1 0.0084745763
## 3601   2001.4 2001-11        2 0.0000000000
## 3602   2001.4 2001-11        3 0.0000000000
## 3603   2001.4 2001-11        4 0.0084745763
## 3604   2001.4 2001-11        5 0.0084745763
## 3605   2001.4 2001-11        6 0.0508474576
## 3606   2001.4 2001-11        7 0.0254237288
## 3607   2001.4 2001-11        8 0.0000000000
## 3608   2001.4 2001-11        9 0.0084745763
## 3609   2001.4 2001-11       10 0.0000000000
## 3610   2001.4 2001-11       11 0.0677966102
## 3611   2001.4 2001-11       12 0.0084745763
## 3612   2001.4 2001-11       13 0.0000000000
## 3613   2001.4 2001-11       14 0.0423728814
## 3614   2001.4 2001-11       15 0.0084745763
## 3615   2001.4 2001-11       16 0.0508474576
## 3616   2001.4 2001-11       17 0.0084745763
## 3617   2001.4 2001-11       18 0.0000000000
## 3618   2001.4 2001-11       19 0.0000000000
## 3619   2001.4 2001-11       20 0.0000000000
## 3620   2001.4 2001-11       21 0.0169491525
## 3621   2001.4 2001-11       22 0.0000000000
## 3622   2001.4 2001-11       23 0.0000000000
## 3623   2001.4 2001-11       24 0.0000000000
## 3624   2001.4 2001-11       25 0.0254237288
## 3625   2001.4 2001-11       26 0.0169491525
## 3626   2001.4 2001-11       27 0.0000000000
## 3627   2001.4 2001-11       28 0.0000000000
## 3628   2001.4 2001-11       29 0.0169491525
## 3629   2001.4 2001-11       30 0.0000000000
## 3630   2001.4 2001-11       31 0.0000000000
## 3631   2001.4 2001-11       32 0.0084745763
## 3632   2001.4 2001-11       33 0.0000000000
## 3633   2001.4 2001-11       34 0.0084745763
## 3634   2001.4 2001-11       35 0.0000000000
## 3635   2001.4 2001-11       36 0.0000000000
## 3636   2001.4 2001-11       37 0.0338983051
## 3637   2001.4 2001-11       38 0.0000000000
## 3638   2001.4 2001-11       39 0.0000000000
## 3639   2001.4 2001-11       40 0.0084745763
## 3640   2001.4 2001-11       41 0.0169491525
## 3641   2001.4 2001-11       42 0.0084745763
## 3642   2001.4 2001-11       43 0.0084745763
## 3643   2001.4 2001-11       44 0.0000000000
## 3644   2001.4 2001-11       45 0.0084745763
## 3645   2001.4 2001-11       46 0.0254237288
## 3646   2001.4 2001-11       47 0.0423728814
## 3647   2001.4 2001-11       48 0.0084745763
## 3648   2001.4 2001-11       49 0.0254237288
## 3649   2001.4 2001-11       50 0.0338983051
## 3650   2001.4 2001-11       60 0.1186440678
## 3651   2001.4 2001-11       51 0.0508474576
## 3652   2001.4 2001-11       61 0.0169491525
## 3653   2001.4 2001-11       52 0.0169491525
## 3654   2001.4 2001-11       54 0.0169491525
## 3655   2001.4 2001-11       53 0.0084745763
## 3656   2001.4 2001-11       55 0.0254237288
## 3657   2001.4 2001-11       56 0.0677966102
## 3658   2001.4 2001-11       58 0.0084745763
## 3659   2001.4 2001-11       57 0.0254237288
## 3660   2001.4 2001-11       59 0.0338983051
## 3661   2001.4 2001-12        1 1.0000000000
## 3662   2001.4 2001-12        2 0.0000000000
## 3663   2001.4 2001-12        3 0.0000000000
## 3664   2001.4 2001-12        4 0.0000000000
## 3665   2001.4 2001-12        5 0.0000000000
## 3666   2001.4 2001-12        6 0.0000000000
## 3667   2001.4 2001-12        7 0.0000000000
## 3668   2001.4 2001-12        8 0.0000000000
## 3669   2001.4 2001-12        9 0.0000000000
## 3670   2001.4 2001-12       10 0.0000000000
## 3671   2001.4 2001-12       11 0.0000000000
## 3672   2001.4 2001-12       12 0.0000000000
## 3673   2001.4 2001-12       13 0.0000000000
## 3674   2001.4 2001-12       14 0.0000000000
## 3675   2001.4 2001-12       15 0.0000000000
## 3676   2001.4 2001-12       16 0.0000000000
## 3677   2001.4 2001-12       17 0.0000000000
## 3678   2001.4 2001-12       18 0.0000000000
## 3679   2001.4 2001-12       19 0.0000000000
## 3680   2001.4 2001-12       20 0.0000000000
## 3681   2001.4 2001-12       21 0.0000000000
## 3682   2001.4 2001-12       22 0.0000000000
## 3683   2001.4 2001-12       23 0.0000000000
## 3684   2001.4 2001-12       24 0.0000000000
## 3685   2001.4 2001-12       25 0.0000000000
## 3686   2001.4 2001-12       26 0.0000000000
## 3687   2001.4 2001-12       27 0.0000000000
## 3688   2001.4 2001-12       28 0.0000000000
## 3689   2001.4 2001-12       29 0.0000000000
## 3690   2001.4 2001-12       30 0.0000000000
## 3691   2001.4 2001-12       31 0.0000000000
## 3692   2001.4 2001-12       32 0.0000000000
## 3693   2001.4 2001-12       33 0.0000000000
## 3694   2001.4 2001-12       34 0.0000000000
## 3695   2001.4 2001-12       35 0.0000000000
## 3696   2001.4 2001-12       36 0.0000000000
## 3697   2001.4 2001-12       37 0.0000000000
## 3698   2001.4 2001-12       38 0.0000000000
## 3699   2001.4 2001-12       39 0.0000000000
## 3700   2001.4 2001-12       40 0.0000000000
## 3701   2001.4 2001-12       41 0.0000000000
## 3702   2001.4 2001-12       42 0.0000000000
## 3703   2001.4 2001-12       43 0.0000000000
## 3704   2001.4 2001-12       44 0.0000000000
## 3705   2001.4 2001-12       45 0.0000000000
## 3706   2001.4 2001-12       46 0.0000000000
## 3707   2001.4 2001-12       47 0.0000000000
## 3708   2001.4 2001-12       48 0.0000000000
## 3709   2001.4 2001-12       49 0.0000000000
## 3710   2001.4 2001-12       50 0.0000000000
## 3711   2001.4 2001-12       51 0.0000000000
## 3712   2001.4 2001-12       52 0.0000000000
## 3713   2001.4 2001-12       53 0.0000000000
## 3714   2001.4 2001-12       54 0.0000000000
## 3715   2001.4 2001-12       55 0.0000000000
## 3716   2001.4 2001-12       59 0.0000000000
## 3717   2001.4 2001-12       56 0.0000000000
## 3718   2001.4 2001-12       60 0.0000000000
## 3719   2001.4 2001-12       58 0.0000000000
## 3720   2001.4 2001-12       57 0.0000000000
## 3721   2001.4 2001-12       61 0.0000000000
## 3722   2002.1 2002-02        1 0.1052631579
## 3723   2002.1 2002-02        2 0.0000000000
## 3724   2002.1 2002-02        3 0.0000000000
## 3725   2002.1 2002-02        4 0.0000000000
## 3726   2002.1 2002-02        5 0.0000000000
## 3727   2002.1 2002-02        6 0.0000000000
## 3728   2002.1 2002-02        7 0.0526315789
## 3729   2002.1 2002-02        8 0.0000000000
## 3730   2002.1 2002-02        9 0.0000000000
## 3731   2002.1 2002-02       10 0.0000000000
## 3732   2002.1 2002-02       11 0.0000000000
## 3733   2002.1 2002-02       12 0.0000000000
## 3734   2002.1 2002-02       13 0.0000000000
## 3735   2002.1 2002-02       14 0.0000000000
## 3736   2002.1 2002-02       15 0.0000000000
## 3737   2002.1 2002-02       16 0.0000000000
## 3738   2002.1 2002-02       17 0.0000000000
## 3739   2002.1 2002-02       18 0.0000000000
## 3740   2002.1 2002-02       19 0.0000000000
## 3741   2002.1 2002-02       20 0.0000000000
## 3742   2002.1 2002-02       21 0.0000000000
## 3743   2002.1 2002-02       22 0.0526315789
## 3744   2002.1 2002-02       23 0.0000000000
## 3745   2002.1 2002-02       24 0.0000000000
## 3746   2002.1 2002-02       25 0.0000000000
## 3747   2002.1 2002-02       26 0.1052631579
## 3748   2002.1 2002-02       27 0.0000000000
## 3749   2002.1 2002-02       28 0.0526315789
## 3750   2002.1 2002-02       29 0.0526315789
## 3751   2002.1 2002-02       30 0.0000000000
## 3752   2002.1 2002-02       31 0.0000000000
## 3753   2002.1 2002-02       32 0.0000000000
## 3754   2002.1 2002-02       33 0.0526315789
## 3755   2002.1 2002-02       34 0.0526315789
## 3756   2002.1 2002-02       35 0.0000000000
## 3757   2002.1 2002-02       36 0.0000000000
## 3758   2002.1 2002-02       37 0.0000000000
## 3759   2002.1 2002-02       38 0.0000000000
## 3760   2002.1 2002-02       39 0.1052631579
## 3761   2002.1 2002-02       40 0.0526315789
## 3762   2002.1 2002-02       41 0.0000000000
## 3763   2002.1 2002-02       42 0.0000000000
## 3764   2002.1 2002-02       43 0.0000000000
## 3765   2002.1 2002-02       44 0.0000000000
## 3766   2002.1 2002-02       45 0.0000000000
## 3767   2002.1 2002-02       46 0.0000000000
## 3768   2002.1 2002-02       47 0.0000000000
## 3769   2002.1 2002-02       48 0.0000000000
## 3770   2002.1 2002-02       49 0.0000000000
## 3771   2002.1 2002-02       50 0.0000000000
## 3772   2002.1 2002-02       51 0.0000000000
## 3773   2002.1 2002-02       52 0.0000000000
## 3774   2002.1 2002-02       56 0.0000000000
## 3775   2002.1 2002-02       53 0.0000000000
## 3776   2002.1 2002-02       58 0.0000000000
## 3777   2002.1 2002-02       57 0.0526315789
## 3778   2002.1 2002-02       54 0.0526315789
## 3779   2002.1 2002-02       60 0.0526315789
## 3780   2002.1 2002-02       59 0.1052631579
## 3781   2002.1 2002-02       55 0.0526315789
## 3782   2002.1 2002-02       61 0.0000000000
## 3783   2002.1 2002-01        1 0.0047393365
## 3784   2002.1 2002-01        2 0.0047393365
## 3785   2002.1 2002-01        3 0.0000000000
## 3786   2002.1 2002-01        4 0.0000000000
## 3787   2002.1 2002-01        5 0.0000000000
## 3788   2002.1 2002-01        6 0.0000000000
## 3789   2002.1 2002-01        7 0.0094786730
## 3790   2002.1 2002-01        8 0.0000000000
## 3791   2002.1 2002-01        9 0.0000000000
## 3792   2002.1 2002-01       10 0.0189573460
## 3793   2002.1 2002-01       11 0.0000000000
## 3794   2002.1 2002-01       12 0.0000000000
## 3795   2002.1 2002-01       13 0.0094786730
## 3796   2002.1 2002-01       14 0.0000000000
## 3797   2002.1 2002-01       15 0.0000000000
## 3798   2002.1 2002-01       16 0.0000000000
## 3799   2002.1 2002-01       17 0.0047393365
## 3800   2002.1 2002-01       18 0.0047393365
## 3801   2002.1 2002-01       19 0.0000000000
## 3802   2002.1 2002-01       20 0.0000000000
## 3803   2002.1 2002-01       21 0.0047393365
## 3804   2002.1 2002-01       22 0.0000000000
## 3805   2002.1 2002-01       23 0.0000000000
## 3806   2002.1 2002-01       24 0.0000000000
## 3807   2002.1 2002-01       25 0.0047393365
## 3808   2002.1 2002-01       26 0.0426540284
## 3809   2002.1 2002-01       27 0.0000000000
## 3810   2002.1 2002-01       28 0.0047393365
## 3811   2002.1 2002-01       29 0.0047393365
## 3812   2002.1 2002-01       30 0.0142180095
## 3813   2002.1 2002-01       31 0.0142180095
## 3814   2002.1 2002-01       32 0.0000000000
## 3815   2002.1 2002-01       33 0.0047393365
## 3816   2002.1 2002-01       34 0.0236966825
## 3817   2002.1 2002-01       35 0.0331753555
## 3818   2002.1 2002-01       36 0.0094786730
## 3819   2002.1 2002-01       37 0.0000000000
## 3820   2002.1 2002-01       38 0.0000000000
## 3821   2002.1 2002-01       39 0.0000000000
## 3822   2002.1 2002-01       40 0.1184834123
## 3823   2002.1 2002-01       41 0.0379146919
## 3824   2002.1 2002-01       42 0.0284360190
## 3825   2002.1 2002-01       43 0.0047393365
## 3826   2002.1 2002-01       44 0.0236966825
## 3827   2002.1 2002-01       45 0.0094786730
## 3828   2002.1 2002-01       46 0.0047393365
## 3829   2002.1 2002-01       47 0.0189573460
## 3830   2002.1 2002-01       48 0.0094786730
## 3831   2002.1 2002-01       49 0.0473933649
## 3832   2002.1 2002-01       50 0.0094786730
## 3833   2002.1 2002-01       51 0.0094786730
## 3834   2002.1 2002-01       52 0.0000000000
## 3835   2002.1 2002-01       53 0.0000000000
## 3836   2002.1 2002-01       54 0.0331753555
## 3837   2002.1 2002-01       55 0.0189573460
## 3838   2002.1 2002-01       56 0.1279620853
## 3839   2002.1 2002-01       57 0.1042654028
## 3840   2002.1 2002-01       58 0.0284360190
## 3841   2002.1 2002-01       60 0.0094786730
## 3842   2002.1 2002-01       59 0.1279620853
## 3843   2002.1 2002-01       61 0.0094786730
## 3844   2002.1 2002-01        1 0.4000000000
## 3845   2002.1 2002-01        2 0.2000000000
## 3846   2002.1 2002-01        3 0.1000000000
## 3847   2002.1 2002-01        4 0.3000000000
## 3848   2002.1 2002-01        5 0.0000000000
## 3849   2002.1 2002-01        6 0.0000000000
## 3850   2002.1 2002-01        7 0.0000000000
## 3851   2002.1 2002-01        8 0.0000000000
## 3852   2002.1 2002-01        9 0.0000000000
## 3853   2002.1 2002-01       10 0.0000000000
## 3854   2002.1 2002-01       11 0.0000000000
## 3855   2002.1 2002-01       12 0.0000000000
## 3856   2002.1 2002-01       13 0.0000000000
## 3857   2002.1 2002-01       14 0.0000000000
## 3858   2002.1 2002-01       15 0.0000000000
## 3859   2002.1 2002-01       16 0.0000000000
## 3860   2002.1 2002-01       17 0.0000000000
## 3861   2002.1 2002-01       18 0.0000000000
## 3862   2002.1 2002-01       19 0.0000000000
## 3863   2002.1 2002-01       20 0.0000000000
## 3864   2002.1 2002-01       21 0.0000000000
## 3865   2002.1 2002-01       22 0.0000000000
## 3866   2002.1 2002-01       23 0.0000000000
## 3867   2002.1 2002-01       24 0.0000000000
## 3868   2002.1 2002-01       25 0.0000000000
## 3869   2002.1 2002-01       26 0.0000000000
## 3870   2002.1 2002-01       27 0.0000000000
## 3871   2002.1 2002-01       28 0.0000000000
## 3872   2002.1 2002-01       29 0.0000000000
## 3873   2002.1 2002-01       30 0.0000000000
## 3874   2002.1 2002-01       31 0.0000000000
## 3875   2002.1 2002-01       32 0.0000000000
## 3876   2002.1 2002-01       33 0.0000000000
## 3877   2002.1 2002-01       34 0.0000000000
## 3878   2002.1 2002-01       35 0.0000000000
## 3879   2002.1 2002-01       36 0.0000000000
## 3880   2002.1 2002-01       37 0.0000000000
## 3881   2002.1 2002-01       38 0.0000000000
## 3882   2002.1 2002-01       39 0.0000000000
## 3883   2002.1 2002-01       40 0.0000000000
## 3884   2002.1 2002-01       41 0.0000000000
## 3885   2002.1 2002-01       42 0.0000000000
## 3886   2002.1 2002-01       43 0.0000000000
## 3887   2002.1 2002-01       44 0.0000000000
## 3888   2002.1 2002-01       45 0.0000000000
## 3889   2002.1 2002-01       46 0.0000000000
## 3890   2002.1 2002-01       47 0.0000000000
## 3891   2002.1 2002-01       48 0.0000000000
## 3892   2002.1 2002-01       49 0.0000000000
## 3893   2002.1 2002-01       50 0.0000000000
## 3894   2002.1 2002-01       51 0.0000000000
## 3895   2002.1 2002-01       52 0.0000000000
## 3896   2002.1 2002-01       53 0.0000000000
## 3897   2002.1 2002-01       54 0.0000000000
## 3898   2002.1 2002-01       55 0.0000000000
## 3899   2002.1 2002-01       56 0.0000000000
## 3900   2002.1 2002-01       58 0.0000000000
## 3901   2002.1 2002-01       57 0.0000000000
## 3902   2002.1 2002-01       60 0.0000000000
## 3903   2002.1 2002-01       59 0.0000000000
## 3904   2002.1 2002-01       61 0.0000000000
## 3905   2002.1 2002-02        1 0.3333333333
## 3906   2002.1 2002-02        2 0.0000000000
## 3907   2002.1 2002-02        3 0.0000000000
## 3908   2002.1 2002-02        4 0.0000000000
## 3909   2002.1 2002-02        5 0.0000000000
## 3910   2002.1 2002-02        6 0.0000000000
## 3911   2002.1 2002-02        7 0.0000000000
## 3912   2002.1 2002-02        8 0.0000000000
## 3913   2002.1 2002-02        9 0.0000000000
## 3914   2002.1 2002-02       10 0.0000000000
## 3915   2002.1 2002-02       11 0.0000000000
## 3916   2002.1 2002-02       12 0.0000000000
## 3917   2002.1 2002-02       13 0.0000000000
## 3918   2002.1 2002-02       14 0.0000000000
## 3919   2002.1 2002-02       15 0.0000000000
## 3920   2002.1 2002-02       16 0.0000000000
## 3921   2002.1 2002-02       17 0.6666666667
## 3922   2002.1 2002-02       18 0.0000000000
## 3923   2002.1 2002-02       19 0.0000000000
## 3924   2002.1 2002-02       20 0.0000000000
## 3925   2002.1 2002-02       21 0.0000000000
## 3926   2002.1 2002-02       22 0.0000000000
## 3927   2002.1 2002-02       23 0.0000000000
## 3928   2002.1 2002-02       24 0.0000000000
## 3929   2002.1 2002-02       25 0.0000000000
## 3930   2002.1 2002-02       26 0.0000000000
## 3931   2002.1 2002-02       27 0.0000000000
## 3932   2002.1 2002-02       28 0.0000000000
## 3933   2002.1 2002-02       29 0.0000000000
## 3934   2002.1 2002-02       30 0.0000000000
## 3935   2002.1 2002-02       31 0.0000000000
## 3936   2002.1 2002-02       32 0.0000000000
## 3937   2002.1 2002-02       33 0.0000000000
## 3938   2002.1 2002-02       34 0.0000000000
## 3939   2002.1 2002-02       35 0.0000000000
## 3940   2002.1 2002-02       36 0.0000000000
## 3941   2002.1 2002-02       37 0.0000000000
## 3942   2002.1 2002-02       38 0.0000000000
## 3943   2002.1 2002-02       39 0.0000000000
## 3944   2002.1 2002-02       40 0.0000000000
## 3945   2002.1 2002-02       41 0.0000000000
## 3946   2002.1 2002-02       51 0.0000000000
## 3947   2002.1 2002-02       42 0.0000000000
## 3948   2002.1 2002-02       52 0.0000000000
## 3949   2002.1 2002-02       43 0.0000000000
## 3950   2002.1 2002-02       53 0.0000000000
## 3951   2002.1 2002-02       44 0.0000000000
## 3952   2002.1 2002-02       54 0.0000000000
## 3953   2002.1 2002-02       45 0.0000000000
## 3954   2002.1 2002-02       55 0.0000000000
## 3955   2002.1 2002-02       46 0.0000000000
## 3956   2002.1 2002-02       56 0.0000000000
## 3957   2002.1 2002-02       47 0.0000000000
## 3958   2002.1 2002-02       57 0.0000000000
## 3959   2002.1 2002-02       48 0.0000000000
## 3960   2002.1 2002-02       58 0.0000000000
## 3961   2002.1 2002-02       49 0.0000000000
## 3962   2002.1 2002-02       59 0.0000000000
## 3963   2002.1 2002-02       50 0.0000000000
## 3964   2002.1 2002-02       60 0.0000000000
## 3965   2002.1 2002-02       61 0.0000000000
## 3966   2002.1 2002-01        1 0.0129870130
## 3967   2002.1 2002-01        2 0.0032467532
## 3968   2002.1 2002-01        3 0.0000000000
## 3969   2002.1 2002-01        4 0.0000000000
## 3970   2002.1 2002-01        5 0.0000000000
## 3971   2002.1 2002-01        6 0.0000000000
## 3972   2002.1 2002-01        7 0.0000000000
## 3973   2002.1 2002-01        8 0.0032467532
## 3974   2002.1 2002-01        9 0.0000000000
## 3975   2002.1 2002-01       10 0.0064935065
## 3976   2002.1 2002-01       11 0.0000000000
## 3977   2002.1 2002-01       12 0.0000000000
## 3978   2002.1 2002-01       13 0.0000000000
## 3979   2002.1 2002-01       14 0.0000000000
## 3980   2002.1 2002-01       15 0.0000000000
## 3981   2002.1 2002-01       16 0.0000000000
## 3982   2002.1 2002-01       17 0.0000000000
## 3983   2002.1 2002-01       18 0.0032467532
## 3984   2002.1 2002-01       19 0.0389610390
## 3985   2002.1 2002-01       20 0.0000000000
## 3986   2002.1 2002-01       21 0.0000000000
## 3987   2002.1 2002-01       22 0.0032467532
## 3988   2002.1 2002-01       23 0.0064935065
## 3989   2002.1 2002-01       24 0.0000000000
## 3990   2002.1 2002-01       25 0.0097402597
## 3991   2002.1 2002-01       26 0.0162337662
## 3992   2002.1 2002-01       27 0.0097402597
## 3993   2002.1 2002-01       28 0.0064935065
## 3994   2002.1 2002-01       29 0.0000000000
## 3995   2002.1 2002-01       30 0.0097402597
## 3996   2002.1 2002-01       31 0.0097402597
## 3997   2002.1 2002-01       32 0.0064935065
## 3998   2002.1 2002-01       33 0.0227272727
## 3999   2002.1 2002-01       34 0.0292207792
## 4000   2002.1 2002-01       35 0.0227272727
## 4001   2002.1 2002-01       36 0.0032467532
## 4002   2002.1 2002-01       37 0.0000000000
## 4003   2002.1 2002-01       38 0.0064935065
## 4004   2002.1 2002-01       39 0.0487012987
## 4005   2002.1 2002-01       40 0.0357142857
## 4006   2002.1 2002-01       41 0.0681818182
## 4007   2002.1 2002-01       51 0.0649350649
## 4008   2002.1 2002-01       42 0.0000000000
## 4009   2002.1 2002-01       52 0.0487012987
## 4010   2002.1 2002-01       43 0.0487012987
## 4011   2002.1 2002-01       53 0.0129870130
## 4012   2002.1 2002-01       44 0.0324675325
## 4013   2002.1 2002-01       54 0.0227272727
## 4014   2002.1 2002-01       45 0.0227272727
## 4015   2002.1 2002-01       55 0.0454545455
## 4016   2002.1 2002-01       46 0.0584415584
## 4017   2002.1 2002-01       56 0.0194805195
## 4018   2002.1 2002-01       47 0.0194805195
## 4019   2002.1 2002-01       57 0.0129870130
## 4020   2002.1 2002-01       48 0.0357142857
## 4021   2002.1 2002-01       58 0.0714285714
## 4022   2002.1 2002-01       49 0.0129870130
## 4023   2002.1 2002-01       59 0.0227272727
## 4024   2002.1 2002-01       50 0.0162337662
## 4025   2002.1 2002-01       60 0.0097402597
## 4026   2002.1 2002-01       61 0.0389610390
## 4027   2001.2 2001-04        1 0.0377358491
## 4028   2001.2 2001-04        2 0.0000000000
## 4029   2001.2 2001-04        3 0.0000000000
## 4030   2001.2 2001-04        4 0.0000000000
## 4031   2001.2 2001-04        5 0.0000000000
## 4032   2001.2 2001-04        6 0.0000000000
## 4033   2001.2 2001-04        7 0.0000000000
## 4034   2001.2 2001-04        8 0.0000000000
## 4035   2001.2 2001-04        9 0.0000000000
## 4036   2001.2 2001-04       10 0.0000000000
## 4037   2001.2 2001-04       11 0.0000000000
## 4038   2001.2 2001-04       12 0.0000000000
## 4039   2001.2 2001-04       13 0.0000000000
## 4040   2001.2 2001-04       14 0.0000000000
## 4041   2001.2 2001-04       15 0.0000000000
## 4042   2001.2 2001-04       16 0.0000000000
## 4043   2001.2 2001-04       17 0.0188679245
## 4044   2001.2 2001-04       18 0.0000000000
## 4045   2001.2 2001-04       19 0.0000000000
## 4046   2001.2 2001-04       20 0.0188679245
## 4047   2001.2 2001-04       21 0.0000000000
## 4048   2001.2 2001-04       22 0.0000000000
## 4049   2001.2 2001-04       23 0.0377358491
## 4050   2001.2 2001-04       24 0.0000000000
## 4051   2001.2 2001-04       25 0.0000000000
## 4052   2001.2 2001-04       26 0.0188679245
## 4053   2001.2 2001-04       27 0.0000000000
## 4054   2001.2 2001-04       28 0.1698113208
## 4055   2001.2 2001-04       29 0.0377358491
## 4056   2001.2 2001-04       30 0.0000000000
## 4057   2001.2 2001-04       31 0.0000000000
## 4058   2001.2 2001-04       32 0.0000000000
## 4059   2001.2 2001-04       33 0.0000000000
## 4060   2001.2 2001-04       34 0.0000000000
## 4061   2001.2 2001-04       35 0.0000000000
## 4062   2001.2 2001-04       36 0.0000000000
## 4063   2001.2 2001-04       37 0.0188679245
## 4064   2001.2 2001-04       38 0.0000000000
## 4065   2001.2 2001-04       39 0.0188679245
## 4066   2001.2 2001-04       40 0.0566037736
## 4067   2001.2 2001-04       41 0.0188679245
## 4068   2001.2 2001-04       42 0.0377358491
## 4069   2001.2 2001-04       43 0.0566037736
## 4070   2001.2 2001-04       44 0.0566037736
## 4071   2001.2 2001-04       45 0.0188679245
## 4072   2001.2 2001-04       46 0.0000000000
## 4073   2001.2 2001-04       47 0.0377358491
## 4074   2001.2 2001-04       48 0.0000000000
## 4075   2001.2 2001-04       49 0.0377358491
## 4076   2001.2 2001-04       50 0.0000000000
## 4077   2001.2 2001-04       51 0.0000000000
## 4078   2001.2 2001-04       52 0.0188679245
## 4079   2001.2 2001-04       56 0.0754716981
## 4080   2001.2 2001-04       53 0.0000000000
## 4081   2001.2 2001-04       57 0.0754716981
## 4082   2001.2 2001-04       54 0.0000000000
## 4083   2001.2 2001-04       58 0.0000000000
## 4084   2001.2 2001-04       55 0.0188679245
## 4085   2001.2 2001-04       60 0.0000000000
## 4086   2001.2 2001-04       59 0.0566037736
## 4087   2001.2 2001-04       61 0.0566037736
## 4088   2001.3 2001-08        1 0.2000000000
## 4089   2001.3 2001-08        2 0.0000000000
## 4090   2001.3 2001-08        3 0.0000000000
## 4091   2001.3 2001-08        4 0.0000000000
## 4092   2001.3 2001-08        5 0.0000000000
## 4093   2001.3 2001-08        6 0.0000000000
## 4094   2001.3 2001-08        7 0.2000000000
## 4095   2001.3 2001-08        8 0.0000000000
## 4096   2001.3 2001-08        9 0.0000000000
## 4097   2001.3 2001-08       10 0.0000000000
## 4098   2001.3 2001-08       11 0.2000000000
## 4099   2001.3 2001-08       12 0.4000000000
## 4100   2001.3 2001-08       13 0.0000000000
## 4101   2001.3 2001-08       14 0.0000000000
## 4102   2001.3 2001-08       15 0.0000000000
## 4103   2001.3 2001-08       16 0.0000000000
## 4104   2001.3 2001-08       17 0.0000000000
## 4105   2001.3 2001-08       18 0.0000000000
## 4106   2001.3 2001-08       19 0.0000000000
## 4107   2001.3 2001-08       20 0.0000000000
## 4108   2001.3 2001-08       21 0.0000000000
## 4109   2001.3 2001-08       22 0.0000000000
## 4110   2001.3 2001-08       23 0.0000000000
## 4111   2001.3 2001-08       24 0.0000000000
## 4112   2001.3 2001-08       25 0.0000000000
## 4113   2001.3 2001-08       26 0.0000000000
## 4114   2001.3 2001-08       27 0.0000000000
## 4115   2001.3 2001-08       28 0.0000000000
## 4116   2001.3 2001-08       29 0.0000000000
## 4117   2001.3 2001-08       30 0.0000000000
## 4118   2001.3 2001-08       31 0.0000000000
## 4119   2001.3 2001-08       32 0.0000000000
## 4120   2001.3 2001-08       33 0.0000000000
## 4121   2001.3 2001-08       34 0.0000000000
## 4122   2001.3 2001-08       35 0.0000000000
## 4123   2001.3 2001-08       36 0.0000000000
## 4124   2001.3 2001-08       37 0.0000000000
## 4125   2001.3 2001-08       38 0.0000000000
## 4126   2001.3 2001-08       39 0.0000000000
## 4127   2001.3 2001-08       40 0.0000000000
## 4128   2001.3 2001-08       41 0.0000000000
## 4129   2001.3 2001-08       42 0.0000000000
## 4130   2001.3 2001-08       43 0.0000000000
## 4131   2001.3 2001-08       44 0.0000000000
## 4132   2001.3 2001-08       45 0.0000000000
## 4133   2001.3 2001-08       46 0.0000000000
## 4134   2001.3 2001-08       47 0.0000000000
## 4135   2001.3 2001-08       48 0.0000000000
## 4136   2001.3 2001-08       49 0.0000000000
## 4137   2001.3 2001-08       50 0.0000000000
## 4138   2001.3 2001-08       51 0.0000000000
## 4139   2001.3 2001-08       52 0.0000000000
## 4140   2001.3 2001-08       53 0.0000000000
## 4141   2001.3 2001-08       54 0.0000000000
## 4142   2001.3 2001-08       55 0.0000000000
## 4143   2001.3 2001-08       61 0.0000000000
## 4144   2001.3 2001-08       60 0.0000000000
## 4145   2001.3 2001-08       58 0.0000000000
## 4146   2001.3 2001-08       57 0.0000000000
## 4147   2001.3 2001-08       56 0.0000000000
## 4148   2001.3 2001-08       59 0.0000000000
## 4149   2001.4 2001-12       50 0.0287610619
## 4150   2001.4 2001-12        1 0.0011061947
## 4151   2001.4 2001-12       35 0.0066371681
## 4152   2001.4 2001-12        9 0.0022123894
## 4153   2001.4 2001-12       23 0.0011061947
## 4154   2001.4 2001-12       17 0.0011061947
## 4155   2001.4 2001-12        8 0.0011061947
## 4156   2001.4 2001-12       25 0.0243362832
## 4157   2001.4 2001-12       39 0.0033185841
## 4158   2001.4 2001-12       22 0.0011061947
## 4159   2001.4 2001-12       38 0.0077433628
## 4160   2001.4 2001-12       33 0.0022123894
## 4161   2001.4 2001-12       34 0.0055309735
## 4162   2001.4 2001-12       24 0.0044247788
## 4163   2001.4 2001-12       48 0.0674778761
## 4164   2001.4 2001-12       37 0.0453539823
## 4165   2001.4 2001-12       27 0.0077433628
## 4166   2001.4 2001-12       28 0.0000000000
## 4167   2001.4 2001-12       46 0.0652654867
## 4168   2001.4 2001-12       61 0.1615044248
## 4169   2001.4 2001-12       57 0.0176991150
## 4170   2001.4 2001-12       20 0.0022123894
## 4171   2001.4 2001-12       11 0.0011061947
## 4172   2001.4 2001-12       26 0.0033185841
## 4173   2001.4 2001-12       10 0.0011061947
## 4174   2001.4 2001-12        7 0.0011061947
## 4175   2001.4 2001-12       13 0.0022123894
## 4176   2001.4 2001-12       21 0.0022123894
## 4177   2001.4 2001-12       60 0.0652654867
## 4178   2001.4 2001-12       43 0.0132743363
## 4179   2001.4 2001-12       56 0.0254424779
## 4180   2001.4 2001-12       59 0.0674778761
## 4181   2001.4 2001-12        5 0.0011061947
## 4182   2001.4 2001-12       14 0.0000000000
## 4183   2001.4 2001-12       32 0.0011061947
## 4184   2001.4 2001-12       49 0.0752212389
## 4185   2001.4 2001-12       47 0.0287610619
## 4186   2001.4 2001-12       31 0.0033185841
## 4187   2001.4 2001-12       12 0.0011061947
## 4188   2001.4 2001-12       41 0.0033185841
## 4189   2001.4 2001-12        4 0.0000000000
## 4190   2001.4 2001-12       15 0.0000000000
## 4191   2001.4 2001-12       19 0.0033185841
## 4192   2001.4 2001-12       45 0.0210176991
## 4193   2001.4 2001-12       30 0.0022123894
## 4194   2001.4 2001-12        6 0.0022123894
## 4195   2001.4 2001-12       40 0.0066371681
## 4196   2001.4 2001-12       36 0.0210176991
## 4197   2001.4 2001-12       52 0.0276548673
## 4198   2001.4 2001-12       51 0.0199115044
## 4199   2001.4 2001-12       44 0.0154867257
## 4200   2001.4 2001-12       53 0.0376106195
## 4201   2001.4 2001-12       58 0.0176991150
## 4202   2001.4 2001-12       42 0.0044247788
## 4203   2001.4 2001-12       54 0.0232300885
## 4204   2001.4 2001-12       18 0.0011061947
## 4205   2001.4 2001-12        2 0.0011061947
## 4206   2001.4 2001-12       16 0.0022123894
## 4207   2001.4 2001-12        3 0.0011061947
## 4208   2001.4 2001-12       29 0.0055309735
## 4209   2001.4 2001-12       55 0.0320796460
## 4210   2002.1 2002-02        1 0.0454545455
## 4211   2002.1 2002-02        2 0.0000000000
## 4212   2002.1 2002-02        3 0.0000000000
## 4213   2002.1 2002-02        4 0.0000000000
## 4214   2002.1 2002-02        5 0.0000000000
## 4215   2002.1 2002-02        6 0.0000000000
## 4216   2002.1 2002-02        7 0.0000000000
## 4217   2002.1 2002-02        8 0.0000000000
## 4218   2002.1 2002-02        9 0.0227272727
## 4219   2002.1 2002-02       10 0.0000000000
## 4220   2002.1 2002-02       11 0.0000000000
## 4221   2002.1 2002-02       12 0.0000000000
## 4222   2002.1 2002-02       13 0.0000000000
## 4223   2002.1 2002-02       14 0.0227272727
## 4224   2002.1 2002-02       15 0.0000000000
## 4225   2002.1 2002-02       16 0.0000000000
## 4226   2002.1 2002-02       17 0.0000000000
## 4227   2002.1 2002-02       18 0.0227272727
## 4228   2002.1 2002-02       19 0.0000000000
## 4229   2002.1 2002-02       20 0.0681818182
## 4230   2002.1 2002-02       21 0.0000000000
## 4231   2002.1 2002-02       22 0.0000000000
## 4232   2002.1 2002-02       23 0.0000000000
## 4233   2002.1 2002-02       24 0.0000000000
## 4234   2002.1 2002-02       25 0.0000000000
## 4235   2002.1 2002-02       26 0.0000000000
## 4236   2002.1 2002-02       27 0.0000000000
## 4237   2002.1 2002-02       28 0.0000000000
## 4238   2002.1 2002-02       29 0.0000000000
## 4239   2002.1 2002-02       30 0.0000000000
## 4240   2002.1 2002-02       31 0.0454545455
## 4241   2002.1 2002-02       32 0.0000000000
## 4242   2002.1 2002-02       33 0.0227272727
## 4243   2002.1 2002-02       34 0.0000000000
## 4244   2002.1 2002-02       35 0.0000000000
## 4245   2002.1 2002-02       36 0.0000000000
## 4246   2002.1 2002-02       37 0.0000000000
## 4247   2002.1 2002-02       38 0.0000000000
## 4248   2002.1 2002-02       39 0.0000000000
## 4249   2002.1 2002-02       40 0.0000000000
## 4250   2002.1 2002-02       41 0.0227272727
## 4251   2002.1 2002-02       42 0.0227272727
## 4252   2002.1 2002-02       43 0.0227272727
## 4253   2002.1 2002-02       44 0.0000000000
## 4254   2002.1 2002-02       45 0.0000000000
## 4255   2002.1 2002-02       46 0.0000000000
## 4256   2002.1 2002-02       47 0.0000000000
## 4257   2002.1 2002-02       48 0.0227272727
## 4258   2002.1 2002-02       49 0.2500000000
## 4259   2002.1 2002-02       50 0.0000000000
## 4260   2002.1 2002-02       60 0.0000000000
## 4261   2002.1 2002-02       51 0.0000000000
## 4262   2002.1 2002-02       61 0.0000000000
## 4263   2002.1 2002-02       52 0.0227272727
## 4264   2002.1 2002-02       59 0.0000000000
## 4265   2002.1 2002-02       56 0.0227272727
## 4266   2002.1 2002-02       53 0.0909090909
## 4267   2002.1 2002-02       57 0.0000000000
## 4268   2002.1 2002-02       54 0.1818181818
## 4269   2002.1 2002-02       58 0.0000000000
## 4270   2002.1 2002-02       55 0.0909090909
## 4271   2001.4 2001-11        1 0.1666666667
## 4272   2001.4 2001-11        2 0.0000000000
## 4273   2001.4 2001-11        3 0.0000000000
## 4274   2001.4 2001-11        4 0.1666666667
## 4275   2001.4 2001-11        5 0.0000000000
## 4276   2001.4 2001-11        6 0.0000000000
## 4277   2001.4 2001-11        7 0.0000000000
## 4278   2001.4 2001-11        8 0.0000000000
## 4279   2001.4 2001-11        9 0.1666666667
## 4280   2001.4 2001-11       10 0.0000000000
## 4281   2001.4 2001-11       11 0.0000000000
## 4282   2001.4 2001-11       21 0.0000000000
## 4283   2001.4 2001-11       12 0.1666666667
## 4284   2001.4 2001-11       22 0.0000000000
## 4285   2001.4 2001-11       13 0.0000000000
## 4286   2001.4 2001-11       23 0.0000000000
## 4287   2001.4 2001-11       14 0.0000000000
## 4288   2001.4 2001-11       24 0.0000000000
## 4289   2001.4 2001-11       15 0.0000000000
## 4290   2001.4 2001-11       25 0.0000000000
## 4291   2001.4 2001-11       16 0.0000000000
## 4292   2001.4 2001-11       26 0.0000000000
## 4293   2001.4 2001-11       17 0.0000000000
## 4294   2001.4 2001-11       27 0.0000000000
## 4295   2001.4 2001-11       18 0.0000000000
## 4296   2001.4 2001-11       28 0.0000000000
## 4297   2001.4 2001-11       19 0.3333333333
## 4298   2001.4 2001-11       29 0.0000000000
## 4299   2001.4 2001-11       20 0.0000000000
## 4300   2001.4 2001-11       30 0.0000000000
## 4301   2001.4 2001-11       31 0.0000000000
## 4302   2001.4 2001-11       32 0.0000000000
## 4303   2001.4 2001-11       33 0.0000000000
## 4304   2001.4 2001-11       34 0.0000000000
## 4305   2001.4 2001-11       35 0.0000000000
## 4306   2001.4 2001-11       36 0.0000000000
## 4307   2001.4 2001-11       37 0.0000000000
## 4308   2001.4 2001-11       38 0.0000000000
## 4309   2001.4 2001-11       39 0.0000000000
## 4310   2001.4 2001-11       40 0.0000000000
## 4311   2001.4 2001-11       41 0.0000000000
## 4312   2001.4 2001-11       42 0.0000000000
## 4313   2001.4 2001-11       43 0.0000000000
## 4314   2001.4 2001-11       44 0.0000000000
## 4315   2001.4 2001-11       45 0.0000000000
## 4316   2001.4 2001-11       46 0.0000000000
## 4317   2001.4 2001-11       47 0.0000000000
## 4318   2001.4 2001-11       48 0.0000000000
## 4319   2001.4 2001-11       49 0.0000000000
## 4320   2001.4 2001-11       50 0.0000000000
## 4321   2001.4 2001-11       51 0.0000000000
## 4322   2001.4 2001-11       52 0.0000000000
## 4323   2001.4 2001-11       53 0.0000000000
## 4324   2001.4 2001-11       54 0.0000000000
## 4325   2001.4 2001-11       55 0.0000000000
## 4326   2001.4 2001-11       56 0.0000000000
## 4327   2001.4 2001-11       57 0.0000000000
## 4328   2001.4 2001-11       58 0.0000000000
## 4329   2001.4 2001-11       59 0.0000000000
## 4330   2001.4 2001-11       60 0.0000000000
## 4331   2001.4 2001-11       61 0.0000000000
## 4332   2001.4 2001-12        1 0.0212765957
## 4333   2001.4 2001-12        2 0.0000000000
## 4334   2001.4 2001-12        3 0.0212765957
## 4335   2001.4 2001-12        4 0.0000000000
## 4336   2001.4 2001-12        5 0.0000000000
## 4337   2001.4 2001-12        6 0.0000000000
## 4338   2001.4 2001-12        7 0.0000000000
## 4339   2001.4 2001-12        8 0.0212765957
## 4340   2001.4 2001-12        9 0.0000000000
## 4341   2001.4 2001-12       10 0.0000000000
## 4342   2001.4 2001-12       11 0.0000000000
## 4343   2001.4 2001-12       12 0.0000000000
## 4344   2001.4 2001-12       13 0.0000000000
## 4345   2001.4 2001-12       14 0.0212765957
## 4346   2001.4 2001-12       15 0.0000000000
## 4347   2001.4 2001-12       16 0.0000000000
## 4348   2001.4 2001-12       17 0.0000000000
## 4349   2001.4 2001-12       18 0.0000000000
## 4350   2001.4 2001-12       19 0.0212765957
## 4351   2001.4 2001-12       20 0.0000000000
## 4352   2001.4 2001-12       21 0.0000000000
## 4353   2001.4 2001-12       22 0.0000000000
## 4354   2001.4 2001-12       23 0.0000000000
## 4355   2001.4 2001-12       24 0.0000000000
## 4356   2001.4 2001-12       25 0.0000000000
## 4357   2001.4 2001-12       26 0.0000000000
## 4358   2001.4 2001-12       27 0.0000000000
## 4359   2001.4 2001-12       28 0.0000000000
## 4360   2001.4 2001-12       29 0.0000000000
## 4361   2001.4 2001-12       30 0.0000000000
## 4362   2001.4 2001-12       31 0.0000000000
## 4363   2001.4 2001-12       32 0.0000000000
## 4364   2001.4 2001-12       33 0.0212765957
## 4365   2001.4 2001-12       34 0.0000000000
## 4366   2001.4 2001-12       35 0.0425531915
## 4367   2001.4 2001-12       36 0.0212765957
## 4368   2001.4 2001-12       37 0.0000000000
## 4369   2001.4 2001-12       38 0.0000000000
## 4370   2001.4 2001-12       39 0.0000000000
## 4371   2001.4 2001-12       40 0.0212765957
## 4372   2001.4 2001-12       41 0.2127659574
## 4373   2001.4 2001-12       42 0.0000000000
## 4374   2001.4 2001-12       43 0.0212765957
## 4375   2001.4 2001-12       44 0.0212765957
## 4376   2001.4 2001-12       45 0.0000000000
## 4377   2001.4 2001-12       46 0.0000000000
## 4378   2001.4 2001-12       47 0.2340425532
## 4379   2001.4 2001-12       48 0.0851063830
## 4380   2001.4 2001-12       49 0.0000000000
## 4381   2001.4 2001-12       50 0.0000000000
## 4382   2001.4 2001-12       51 0.0000000000
## 4383   2001.4 2001-12       52 0.0212765957
## 4384   2001.4 2001-12       53 0.0212765957
## 4385   2001.4 2001-12       54 0.0638297872
## 4386   2001.4 2001-12       55 0.0000000000
## 4387   2001.4 2001-12       58 0.0425531915
## 4388   2001.4 2001-12       57 0.0000000000
## 4389   2001.4 2001-12       56 0.0212765957
## 4390   2001.4 2001-12       59 0.0000000000
## 4391   2001.4 2001-12       60 0.0000000000
## 4392   2001.4 2001-12       61 0.0425531915
## 4393   2002.1 2002-02       13 0.0000000000
## 4394   2002.1 2002-02       60 0.0000000000
## 4395   2002.1 2002-02       34 0.0000000000
## 4396   2002.1 2002-02       10 0.0000000000
## 4397   2002.1 2002-02       39 0.0000000000
## 4398   2002.1 2002-02       47 0.0000000000
## 4399   2002.1 2002-02       26 0.0000000000
## 4400   2002.1 2002-02       20 0.0000000000
## 4401   2002.1 2002-02       57 0.0000000000
## 4402   2002.1 2002-02       23 0.0000000000
## 4403   2002.1 2002-02       42 0.0000000000
## 4404   2002.1 2002-02       53 0.0000000000
## 4405   2002.1 2002-02        1 0.1250000000
## 4406   2002.1 2002-02        3 0.0000000000
## 4407   2002.1 2002-02       24 0.0000000000
## 4408   2002.1 2002-02       36 0.0000000000
## 4409   2002.1 2002-02       25 0.0000000000
## 4410   2002.1 2002-02       41 0.0000000000
## 4411   2002.1 2002-02        6 0.0000000000
## 4412   2002.1 2002-02       12 0.0000000000
## 4413   2002.1 2002-02       11 0.0000000000
## 4414   2002.1 2002-02        2 0.0000000000
## 4415   2002.1 2002-02       37 0.0000000000
## 4416   2002.1 2002-02       55 0.0000000000
## 4417   2002.1 2002-02       31 0.0000000000
## 4418   2002.1 2002-02       49 0.0000000000
## 4419   2002.1 2002-02        7 0.0000000000
## 4420   2002.1 2002-02       50 0.0000000000
## 4421   2002.1 2002-02       44 0.0000000000
## 4422   2002.1 2002-02       54 0.0000000000
## 4423   2002.1 2002-02       32 0.0000000000
## 4424   2002.1 2002-02       52 0.0000000000
## 4425   2002.1 2002-02       21 0.0000000000
## 4426   2002.1 2002-02       15 0.0000000000
## 4427   2002.1 2002-02       30 0.0000000000
## 4428   2002.1 2002-02       38 0.0000000000
## 4429   2002.1 2002-02       19 0.0000000000
## 4430   2002.1 2002-02        8 0.0000000000
## 4431   2002.1 2002-02       16 0.0000000000
## 4432   2002.1 2002-02       14 0.0000000000
## 4433   2002.1 2002-02       35 0.0000000000
## 4434   2002.1 2002-02       29 0.0000000000
## 4435   2002.1 2002-02       27 0.0000000000
## 4436   2002.1 2002-02        5 0.0000000000
## 4437   2002.1 2002-02       18 0.0000000000
## 4438   2002.1 2002-02        4 0.0000000000
## 4439   2002.1 2002-02       33 0.0000000000
## 4440   2002.1 2002-02       46 0.0000000000
## 4441   2002.1 2002-02       43 0.0000000000
## 4442   2002.1 2002-02       58 0.0000000000
## 4443   2002.1 2002-02       59 0.0000000000
## 4444   2002.1 2002-02       56 0.0000000000
## 4445   2002.1 2002-02       51 0.0000000000
## 4446   2002.1 2002-02       40 0.0000000000
## 4447   2002.1 2002-02       61 0.0000000000
## 4448   2002.1 2002-02       48 0.0000000000
## 4449   2002.1 2002-02       22 0.0000000000
## 4450   2002.1 2002-02        9 0.8750000000
## 4451   2002.1 2002-02       28 0.0000000000
## 4452   2002.1 2002-02       17 0.0000000000
## 4453   2002.1 2002-02       45 0.0000000000
## 4454   2002.1 2002-02       13 0.0000000000
## 4455   2002.1 2002-02       60 0.0000000000
## 4456   2002.1 2002-02       34 0.0000000000
## 4457   2002.1 2002-02       10 0.0000000000
## 4458   2002.1 2002-02       39 0.0000000000
## 4459   2002.1 2002-02       47 0.0000000000
## 4460   2002.1 2002-02       26 0.0000000000
## 4461   2002.1 2002-02       20 0.0000000000
## 4462   2002.1 2002-02       57 0.0000000000
## 4463   2002.1 2002-02       23 0.0000000000
## 4464   2002.1 2002-02       42 0.0000000000
## 4465   2002.1 2002-02       53 0.0000000000
## 4466   2002.1 2002-02        1 0.1250000000
## 4467   2002.1 2002-02        3 0.0000000000
## 4468   2002.1 2002-02       24 0.0000000000
## 4469   2002.1 2002-02       36 0.0000000000
## 4470   2002.1 2002-02       25 0.0000000000
## 4471   2002.1 2002-02       41 0.0000000000
## 4472   2002.1 2002-02        6 0.0000000000
## 4473   2002.1 2002-02       12 0.0000000000
## 4474   2002.1 2002-02       11 0.0000000000
## 4475   2002.1 2002-02        2 0.0000000000
## 4476   2002.1 2002-02       37 0.0000000000
## 4477   2002.1 2002-02       55 0.0000000000
## 4478   2002.1 2002-02       31 0.0000000000
## 4479   2002.1 2002-02       49 0.0000000000
## 4480   2002.1 2002-02        7 0.0000000000
## 4481   2002.1 2002-02       50 0.0000000000
## 4482   2002.1 2002-02       44 0.0000000000
## 4483   2002.1 2002-02       54 0.0000000000
## 4484   2002.1 2002-02       32 0.0000000000
## 4485   2002.1 2002-02       52 0.0000000000
## 4486   2002.1 2002-02       21 0.0000000000
## 4487   2002.1 2002-02       15 0.0000000000
## 4488   2002.1 2002-02       30 0.0000000000
## 4489   2002.1 2002-02       38 0.0000000000
## 4490   2002.1 2002-02       19 0.0000000000
## 4491   2002.1 2002-02        8 0.0000000000
## 4492   2002.1 2002-02       16 0.0000000000
## 4493   2002.1 2002-02       14 0.0000000000
## 4494   2002.1 2002-02       35 0.0000000000
## 4495   2002.1 2002-02       29 0.0000000000
## 4496   2002.1 2002-02       27 0.0000000000
## 4497   2002.1 2002-02        5 0.0000000000
## 4498   2002.1 2002-02       18 0.0000000000
## 4499   2002.1 2002-02        4 0.0000000000
## 4500   2002.1 2002-02       33 0.0000000000
## 4501   2002.1 2002-02       46 0.0000000000
## 4502   2002.1 2002-02       43 0.0000000000
## 4503   2002.1 2002-02       58 0.0000000000
## 4504   2002.1 2002-02       59 0.0000000000
## 4505   2002.1 2002-02       56 0.0000000000
## 4506   2002.1 2002-02       51 0.0000000000
## 4507   2002.1 2002-02       40 0.0000000000
## 4508   2002.1 2002-02       61 0.0000000000
## 4509   2002.1 2002-02       48 0.0000000000
## 4510   2002.1 2002-02       22 0.0000000000
## 4511   2002.1 2002-02        9 0.8750000000
## 4512   2002.1 2002-02       28 0.0000000000
## 4513   2002.1 2002-02       17 0.0000000000
## 4514   2002.1 2002-02       45 0.0000000000
## 4515   2001.4 2001-10        1 0.0013986014
## 4516   2001.4 2001-10        2 0.0000000000
## 4517   2001.4 2001-10        3 0.0000000000
## 4518   2001.4 2001-10        4 0.0000000000
## 4519   2001.4 2001-10        5 0.0013986014
## 4520   2001.4 2001-10        6 0.0000000000
## 4521   2001.4 2001-10        7 0.0000000000
## 4522   2001.4 2001-10        8 0.0000000000
## 4523   2001.4 2001-10        9 0.0000000000
## 4524   2001.4 2001-10       10 0.0013986014
## 4525   2001.4 2001-10       11 0.0069930070
## 4526   2001.4 2001-10       12 0.0069930070
## 4527   2001.4 2001-10       13 0.0013986014
## 4528   2001.4 2001-10       14 0.0083916084
## 4529   2001.4 2001-10       15 0.0000000000
## 4530   2001.4 2001-10       16 0.0000000000
## 4531   2001.4 2001-10       17 0.0000000000
## 4532   2001.4 2001-10       18 0.0055944056
## 4533   2001.4 2001-10       19 0.0000000000
## 4534   2001.4 2001-10       20 0.0000000000
## 4535   2001.4 2001-10       21 0.0000000000
## 4536   2001.4 2001-10       22 0.0013986014
## 4537   2001.4 2001-10       23 0.0000000000
## 4538   2001.4 2001-10       24 0.0069930070
## 4539   2001.4 2001-10       25 0.0027972028
## 4540   2001.4 2001-10       26 0.0013986014
## 4541   2001.4 2001-10       27 0.0027972028
## 4542   2001.4 2001-10       28 0.0069930070
## 4543   2001.4 2001-10       29 0.0027972028
## 4544   2001.4 2001-10       30 0.0027972028
## 4545   2001.4 2001-10       31 0.0027972028
## 4546   2001.4 2001-10       32 0.0000000000
## 4547   2001.4 2001-10       33 0.0041958042
## 4548   2001.4 2001-10       34 0.0000000000
## 4549   2001.4 2001-10       35 0.0027972028
## 4550   2001.4 2001-10       36 0.0111888112
## 4551   2001.4 2001-10       37 0.0097902098
## 4552   2001.4 2001-10       38 0.0069930070
## 4553   2001.4 2001-10       39 0.0153846154
## 4554   2001.4 2001-10       40 0.0321678322
## 4555   2001.4 2001-10       41 0.0041958042
## 4556   2001.4 2001-10       42 0.0097902098
## 4557   2001.4 2001-10       43 0.0041958042
## 4558   2001.4 2001-10       44 0.0055944056
## 4559   2001.4 2001-10       45 0.0167832168
## 4560   2001.4 2001-10       49 0.0181818182
## 4561   2001.4 2001-10       46 0.0111888112
## 4562   2001.4 2001-10       50 0.0391608392
## 4563   2001.4 2001-10       47 0.0153846154
## 4564   2001.4 2001-10       51 0.0741258741
## 4565   2001.4 2001-10       48 0.0111888112
## 4566   2001.4 2001-10       52 0.0545454545
## 4567   2001.4 2001-10       53 0.0363636364
## 4568   2001.4 2001-10       54 0.0741258741
## 4569   2001.4 2001-10       55 0.0657342657
## 4570   2001.4 2001-10       57 0.0237762238
## 4571   2001.4 2001-10       56 0.1846153846
## 4572   2001.4 2001-10       58 0.0251748252
## 4573   2001.4 2001-10       59 0.0167832168
## 4574   2001.4 2001-10       60 0.0475524476
## 4575   2001.4 2001-10       61 0.1146853147
## 4576   2001.4 2001-11       40 0.0082872928
## 4577   2001.4 2001-11       27 0.0049723757
## 4578   2001.4 2001-11       47 0.0149171271
## 4579   2001.4 2001-11       25 0.0022099448
## 4580   2001.4 2001-11       44 0.0099447514
## 4581   2001.4 2001-11        5 0.0000000000
## 4582   2001.4 2001-11       18 0.0022099448
## 4583   2001.4 2001-11       14 0.0005524862
## 4584   2001.4 2001-11       60 0.1381215470
## 4585   2001.4 2001-11       57 0.0165745856
## 4586   2001.4 2001-11       41 0.0082872928
## 4587   2001.4 2001-11       56 0.0414364641
## 4588   2001.4 2001-11       49 0.0491712707
## 4589   2001.4 2001-11       30 0.0022099448
## 4590   2001.4 2001-11       31 0.0265193370
## 4591   2001.4 2001-11        3 0.0022099448
## 4592   2001.4 2001-11       55 0.1011049724
## 4593   2001.4 2001-11       39 0.0049723757
## 4594   2001.4 2001-11       43 0.0049723757
## 4595   2001.4 2001-11       46 0.0116022099
## 4596   2001.4 2001-11       12 0.0011049724
## 4597   2001.4 2001-11       17 0.0022099448
## 4598   2001.4 2001-11       16 0.0016574586
## 4599   2001.4 2001-11       15 0.0022099448
## 4600   2001.4 2001-11        2 0.0000000000
## 4601   2001.4 2001-11       22 0.0011049724
## 4602   2001.4 2001-11       38 0.0071823204
## 4603   2001.4 2001-11       21 0.0011049724
## 4604   2001.4 2001-11        8 0.0000000000
## 4605   2001.4 2001-11       28 0.0022099448
## 4606   2001.4 2001-11       53 0.0381215470
## 4607   2001.4 2001-11       58 0.0535911602
## 4608   2001.4 2001-11       33 0.0088397790
## 4609   2001.4 2001-11       61 0.0950276243
## 4610   2001.4 2001-11       35 0.0038674033
## 4611   2001.4 2001-11       54 0.0872928177
## 4612   2001.4 2001-11       13 0.0016574586
## 4613   2001.4 2001-11        1 0.0005524862
## 4614   2001.4 2001-11       52 0.0353591160
## 4615   2001.4 2001-11       24 0.0005524862
## 4616   2001.4 2001-11       50 0.0226519337
## 4617   2001.4 2001-11       36 0.0099447514
## 4618   2001.4 2001-11       19 0.0000000000
## 4619   2001.4 2001-11        7 0.0000000000
## 4620   2001.4 2001-11       37 0.0099447514
## 4621   2001.4 2001-11       48 0.0165745856
## 4622   2001.4 2001-11       20 0.0005524862
## 4623   2001.4 2001-11       26 0.0022099448
## 4624   2001.4 2001-11       59 0.0718232044
## 4625   2001.4 2001-11       45 0.0077348066
## 4626   2001.4 2001-11       10 0.0016574586
## 4627   2001.4 2001-11       29 0.0099447514
## 4628   2001.4 2001-11       34 0.0027624309
## 4629   2001.4 2001-11       32 0.0049723757
## 4630   2001.4 2001-11       11 0.0011049724
## 4631   2001.4 2001-11       51 0.0342541436
## 4632   2001.4 2001-11        6 0.0000000000
## 4633   2001.4 2001-11        4 0.0011049724
## 4634   2001.4 2001-11       42 0.0077348066
## 4635   2001.4 2001-11        9 0.0005524862
## 4636   2001.4 2001-11       23 0.0005524862
## 4637   2001.4 2001-11        1 0.0022172949
## 4638   2001.4 2001-11       11 0.0022172949
## 4639   2001.4 2001-11        2 0.0022172949
## 4640   2001.4 2001-11       12 0.0000000000
## 4641   2001.4 2001-11        3 0.0000000000
## 4642   2001.4 2001-11       13 0.0044345898
## 4643   2001.4 2001-11        4 0.0066518847
## 4644   2001.4 2001-11       14 0.0000000000
## 4645   2001.4 2001-11        5 0.0000000000
## 4646   2001.4 2001-11       15 0.0000000000
## 4647   2001.4 2001-11        6 0.0000000000
## 4648   2001.4 2001-11       16 0.0044345898
## 4649   2001.4 2001-11        7 0.0000000000
## 4650   2001.4 2001-11       17 0.0044345898
## 4651   2001.4 2001-11        8 0.0022172949
## 4652   2001.4 2001-11       18 0.0000000000
## 4653   2001.4 2001-11        9 0.0000000000
## 4654   2001.4 2001-11       19 0.0000000000
## 4655   2001.4 2001-11       10 0.0000000000
## 4656   2001.4 2001-11       20 0.0110864745
## 4657   2001.4 2001-11       21 0.0022172949
## 4658   2001.4 2001-11       22 0.0044345898
## 4659   2001.4 2001-11       23 0.0044345898
## 4660   2001.4 2001-11       24 0.0000000000
## 4661   2001.4 2001-11       25 0.0088691796
## 4662   2001.4 2001-11       26 0.0066518847
## 4663   2001.4 2001-11       27 0.0066518847
## 4664   2001.4 2001-11       28 0.0000000000
## 4665   2001.4 2001-11       29 0.0000000000
## 4666   2001.4 2001-11       30 0.0066518847
## 4667   2001.4 2001-11       31 0.0088691796
## 4668   2001.4 2001-11       32 0.0155210643
## 4669   2001.4 2001-11       33 0.0066518847
## 4670   2001.4 2001-11       34 0.0088691796
## 4671   2001.4 2001-11       35 0.0044345898
## 4672   2001.4 2001-11       36 0.0044345898
## 4673   2001.4 2001-11       37 0.0110864745
## 4674   2001.4 2001-11       38 0.0044345898
## 4675   2001.4 2001-11       39 0.0044345898
## 4676   2001.4 2001-11       40 0.0000000000
## 4677   2001.4 2001-11       41 0.0177383592
## 4678   2001.4 2001-11       42 0.0022172949
## 4679   2001.4 2001-11       43 0.0044345898
## 4680   2001.4 2001-11       44 0.0044345898
## 4681   2001.4 2001-11       45 0.0199556541
## 4682   2001.4 2001-11       46 0.0221729490
## 4683   2001.4 2001-11       47 0.0155210643
## 4684   2001.4 2001-11       48 0.0266075388
## 4685   2001.4 2001-11       49 0.0288248337
## 4686   2001.4 2001-11       50 0.0133037694
## 4687   2001.4 2001-11       51 0.0243902439
## 4688   2001.4 2001-11       52 0.0110864745
## 4689   2001.4 2001-11       53 0.0110864745
## 4690   2001.4 2001-11       54 0.0155210643
## 4691   2001.4 2001-11       55 0.0177383592
## 4692   2001.4 2001-11       56 0.0044345898
## 4693   2001.4 2001-11       57 0.0243902439
## 4694   2001.4 2001-11       58 0.3325942350
## 4695   2001.4 2001-11       59 0.1906873614
## 4696   2001.4 2001-11       60 0.0465631929
## 4697   2001.4 2001-11       61 0.0177383592
## 4698   2001.3 2001-09        1 0.5000000000
## 4699   2001.3 2001-09       11 0.0000000000
## 4700   2001.3 2001-09        2 0.5000000000
## 4701   2001.3 2001-09       12 0.0000000000
## 4702   2001.3 2001-09        3 0.0000000000
## 4703   2001.3 2001-09       13 0.0000000000
## 4704   2001.3 2001-09        4 0.0000000000
## 4705   2001.3 2001-09       14 0.0000000000
## 4706   2001.3 2001-09        5 0.0000000000
## 4707   2001.3 2001-09       15 0.0000000000
## 4708   2001.3 2001-09        6 0.0000000000
## 4709   2001.3 2001-09       16 0.0000000000
## 4710   2001.3 2001-09        7 0.0000000000
## 4711   2001.3 2001-09       17 0.0000000000
## 4712   2001.3 2001-09        8 0.0000000000
## 4713   2001.3 2001-09       18 0.0000000000
## 4714   2001.3 2001-09        9 0.0000000000
## 4715   2001.3 2001-09       19 0.0000000000
## 4716   2001.3 2001-09       10 0.0000000000
## 4717   2001.3 2001-09       20 0.0000000000
## 4718   2001.3 2001-09       21 0.0000000000
## 4719   2001.3 2001-09       22 0.0000000000
## 4720   2001.3 2001-09       23 0.0000000000
## 4721   2001.3 2001-09       24 0.0000000000
## 4722   2001.3 2001-09       25 0.0000000000
## 4723   2001.3 2001-09       26 0.0000000000
## 4724   2001.3 2001-09       27 0.0000000000
## 4725   2001.3 2001-09       28 0.0000000000
## 4726   2001.3 2001-09       29 0.0000000000
## 4727   2001.3 2001-09       30 0.0000000000
## 4728   2001.3 2001-09       31 0.0000000000
## 4729   2001.3 2001-09       32 0.0000000000
## 4730   2001.3 2001-09       33 0.0000000000
## 4731   2001.3 2001-09       34 0.0000000000
## 4732   2001.3 2001-09       35 0.0000000000
## 4733   2001.3 2001-09       36 0.0000000000
## 4734   2001.3 2001-09       37 0.0000000000
## 4735   2001.3 2001-09       38 0.0000000000
## 4736   2001.3 2001-09       39 0.0000000000
## 4737   2001.3 2001-09       40 0.0000000000
## 4738   2001.3 2001-09       41 0.0000000000
## 4739   2001.3 2001-09       42 0.0000000000
## 4740   2001.3 2001-09       43 0.0000000000
## 4741   2001.3 2001-09       44 0.0000000000
## 4742   2001.3 2001-09       45 0.0000000000
## 4743   2001.3 2001-09       46 0.0000000000
## 4744   2001.3 2001-09       47 0.0000000000
## 4745   2001.3 2001-09       48 0.0000000000
## 4746   2001.3 2001-09       49 0.0000000000
## 4747   2001.3 2001-09       50 0.0000000000
## 4748   2001.3 2001-09       51 0.0000000000
## 4749   2001.3 2001-09       52 0.0000000000
## 4750   2001.3 2001-09       53 0.0000000000
## 4751   2001.3 2001-09       54 0.0000000000
## 4752   2001.3 2001-09       55 0.0000000000
## 4753   2001.3 2001-09       56 0.0000000000
## 4754   2001.3 2001-09       57 0.0000000000
## 4755   2001.3 2001-09       58 0.0000000000
## 4756   2001.3 2001-09       59 0.0000000000
## 4757   2001.3 2001-09       60 0.0000000000
## 4758   2001.3 2001-09       61 0.0000000000
## 4759   2002.1 2002-02        1 0.0048780488
## 4760   2002.1 2002-02        2 0.0000000000
## 4761   2002.1 2002-02        3 0.0000000000
## 4762   2002.1 2002-02        4 0.0000000000
## 4763   2002.1 2002-02        5 0.0000000000
## 4764   2002.1 2002-02        6 0.0000000000
## 4765   2002.1 2002-02        7 0.0000000000
## 4766   2002.1 2002-02        8 0.0048780488
## 4767   2002.1 2002-02        9 0.0097560976
## 4768   2002.1 2002-02       10 0.0048780488
## 4769   2002.1 2002-02       11 0.0000000000
## 4770   2002.1 2002-02       12 0.0048780488
## 4771   2002.1 2002-02       13 0.0292682927
## 4772   2002.1 2002-02       14 0.0000000000
## 4773   2002.1 2002-02       15 0.0000000000
## 4774   2002.1 2002-02       16 0.0000000000
## 4775   2002.1 2002-02       17 0.0146341463
## 4776   2002.1 2002-02       18 0.0000000000
## 4777   2002.1 2002-02       19 0.0000000000
## 4778   2002.1 2002-02       20 0.0048780488
## 4779   2002.1 2002-02       21 0.0048780488
## 4780   2002.1 2002-02       22 0.0097560976
## 4781   2002.1 2002-02       23 0.0000000000
## 4782   2002.1 2002-02       24 0.0000000000
## 4783   2002.1 2002-02       25 0.0146341463
## 4784   2002.1 2002-02       26 0.0000000000
## 4785   2002.1 2002-02       27 0.0048780488
## 4786   2002.1 2002-02       28 0.0097560976
## 4787   2002.1 2002-02       29 0.0000000000
## 4788   2002.1 2002-02       30 0.0000000000
## 4789   2002.1 2002-02       31 0.0048780488
## 4790   2002.1 2002-02       32 0.0048780488
## 4791   2002.1 2002-02       33 0.0000000000
## 4792   2002.1 2002-02       34 0.0048780488
## 4793   2002.1 2002-02       35 0.0097560976
## 4794   2002.1 2002-02       36 0.0097560976
## 4795   2002.1 2002-02       37 0.0097560976
## 4796   2002.1 2002-02       38 0.0195121951
## 4797   2002.1 2002-02       39 0.0390243902
## 4798   2002.1 2002-02       40 0.0195121951
## 4799   2002.1 2002-02       41 0.0439024390
## 4800   2002.1 2002-02       42 0.0195121951
## 4801   2002.1 2002-02       43 0.0682926829
## 4802   2002.1 2002-02       44 0.0195121951
## 4803   2002.1 2002-02       45 0.0146341463
## 4804   2002.1 2002-02       46 0.0195121951
## 4805   2002.1 2002-02       47 0.0195121951
## 4806   2002.1 2002-02       48 0.0439024390
## 4807   2002.1 2002-02       49 0.0048780488
## 4808   2002.1 2002-02       50 0.0341463415
## 4809   2002.1 2002-02       51 0.0292682927
## 4810   2002.1 2002-02       52 0.0682926829
## 4811   2002.1 2002-02       53 0.0682926829
## 4812   2002.1 2002-02       54 0.0536585366
## 4813   2002.1 2002-02       59 0.0634146341
## 4814   2002.1 2002-02       55 0.0243902439
## 4815   2002.1 2002-02       60 0.0341463415
## 4816   2002.1 2002-02       56 0.0243902439
## 4817   2002.1 2002-02       61 0.0536585366
## 4818   2002.1 2002-02       58 0.0439024390
## 4819   2002.1 2002-02       57 0.0048780488
## 4820   2001.4 2001-11        1 0.0066225166
## 4821   2001.4 2001-11       11 0.0066225166
## 4822   2001.4 2001-11        2 0.0000000000
## 4823   2001.4 2001-11       12 0.0000000000
## 4824   2001.4 2001-11        3 0.0000000000
## 4825   2001.4 2001-11       13 0.0000000000
## 4826   2001.4 2001-11        4 0.0066225166
## 4827   2001.4 2001-11       14 0.0000000000
## 4828   2001.4 2001-11        5 0.0000000000
## 4829   2001.4 2001-11       15 0.0000000000
## 4830   2001.4 2001-11        6 0.0000000000
## 4831   2001.4 2001-11       16 0.0000000000
## 4832   2001.4 2001-11        7 0.0000000000
## 4833   2001.4 2001-11       17 0.0000000000
## 4834   2001.4 2001-11        8 0.0066225166
## 4835   2001.4 2001-11       18 0.0000000000
## 4836   2001.4 2001-11        9 0.0000000000
## 4837   2001.4 2001-11       19 0.0000000000
## 4838   2001.4 2001-11       10 0.0000000000
## 4839   2001.4 2001-11       20 0.0000000000
## 4840   2001.4 2001-11       21 0.0000000000
## 4841   2001.4 2001-11       22 0.0662251656
## 4842   2001.4 2001-11       23 0.0000000000
## 4843   2001.4 2001-11       24 0.0066225166
## 4844   2001.4 2001-11       25 0.0132450331
## 4845   2001.4 2001-11       26 0.0066225166
## 4846   2001.4 2001-11       27 0.0132450331
## 4847   2001.4 2001-11       28 0.0000000000
## 4848   2001.4 2001-11       29 0.0198675497
## 4849   2001.4 2001-11       30 0.0000000000
## 4850   2001.4 2001-11       31 0.0198675497
## 4851   2001.4 2001-11       32 0.0066225166
## 4852   2001.4 2001-11       33 0.0066225166
## 4853   2001.4 2001-11       34 0.0132450331
## 4854   2001.4 2001-11       35 0.0066225166
## 4855   2001.4 2001-11       36 0.0331125828
## 4856   2001.4 2001-11       37 0.0198675497
## 4857   2001.4 2001-11       38 0.0198675497
## 4858   2001.4 2001-11       39 0.0397350993
## 4859   2001.4 2001-11       40 0.0066225166
## 4860   2001.4 2001-11       41 0.0066225166
## 4861   2001.4 2001-11       42 0.0132450331
## 4862   2001.4 2001-11       43 0.0000000000
## 4863   2001.4 2001-11       44 0.0000000000
## 4864   2001.4 2001-11       45 0.0132450331
## 4865   2001.4 2001-11       46 0.0066225166
## 4866   2001.4 2001-11       47 0.0198675497
## 4867   2001.4 2001-11       48 0.0264900662
## 4868   2001.4 2001-11       49 0.0463576159
## 4869   2001.4 2001-11       50 0.0264900662
## 4870   2001.4 2001-11       51 0.0264900662
## 4871   2001.4 2001-11       52 0.0331125828
## 4872   2001.4 2001-11       53 0.1125827815
## 4873   2001.4 2001-11       54 0.0198675497
## 4874   2001.4 2001-11       55 0.0397350993
## 4875   2001.4 2001-11       59 0.0662251656
## 4876   2001.4 2001-11       56 0.0000000000
## 4877   2001.4 2001-11       60 0.0529801325
## 4878   2001.4 2001-11       57 0.0463576159
## 4879   2001.4 2001-11       61 0.1059602649
## 4880   2001.4 2001-11       58 0.0132450331
## 4881   2002.1 2002-02        1 0.0487804878
## 4882   2002.1 2002-02        2 0.0000000000
## 4883   2002.1 2002-02        3 0.0000000000
## 4884   2002.1 2002-02        4 0.0000000000
## 4885   2002.1 2002-02        5 0.0000000000
## 4886   2002.1 2002-02        6 0.0000000000
## 4887   2002.1 2002-02        7 0.0000000000
## 4888   2002.1 2002-02        8 0.0000000000
## 4889   2002.1 2002-02        9 0.0243902439
## 4890   2002.1 2002-02       10 0.0000000000
## 4891   2002.1 2002-02       11 0.0000000000
## 4892   2002.1 2002-02       12 0.0000000000
## 4893   2002.1 2002-02       13 0.0000000000
## 4894   2002.1 2002-02       14 0.0000000000
## 4895   2002.1 2002-02       15 0.0000000000
## 4896   2002.1 2002-02       16 0.0000000000
## 4897   2002.1 2002-02       17 0.0000000000
## 4898   2002.1 2002-02       18 0.0000000000
## 4899   2002.1 2002-02       19 0.0000000000
## 4900   2002.1 2002-02       20 0.0000000000
## 4901   2002.1 2002-02       21 0.0000000000
## 4902   2002.1 2002-02       22 0.0243902439
## 4903   2002.1 2002-02       23 0.0000000000
## 4904   2002.1 2002-02       24 0.0000000000
## 4905   2002.1 2002-02       25 0.0000000000
## 4906   2002.1 2002-02       26 0.0000000000
## 4907   2002.1 2002-02       27 0.0000000000
## 4908   2002.1 2002-02       28 0.0000000000
## 4909   2002.1 2002-02       29 0.0000000000
## 4910   2002.1 2002-02       30 0.0243902439
## 4911   2002.1 2002-02       31 0.0000000000
## 4912   2002.1 2002-02       32 0.0000000000
## 4913   2002.1 2002-02       33 0.0000000000
## 4914   2002.1 2002-02       34 0.0243902439
## 4915   2002.1 2002-02       35 0.0000000000
## 4916   2002.1 2002-02       36 0.0243902439
## 4917   2002.1 2002-02       37 0.0243902439
## 4918   2002.1 2002-02       38 0.0000000000
## 4919   2002.1 2002-02       39 0.0000000000
## 4920   2002.1 2002-02       40 0.0487804878
## 4921   2002.1 2002-02       41 0.0000000000
## 4922   2002.1 2002-02       42 0.0000000000
## 4923   2002.1 2002-02       43 0.0487804878
## 4924   2002.1 2002-02       44 0.0243902439
## 4925   2002.1 2002-02       45 0.0243902439
## 4926   2002.1 2002-02       49 0.0487804878
## 4927   2002.1 2002-02       46 0.0975609756
## 4928   2002.1 2002-02       50 0.0487804878
## 4929   2002.1 2002-02       47 0.1219512195
## 4930   2002.1 2002-02       51 0.0975609756
## 4931   2002.1 2002-02       48 0.1219512195
## 4932   2002.1 2002-02       52 0.0487804878
## 4933   2002.1 2002-02       56 0.0000000000
## 4934   2002.1 2002-02       53 0.0487804878
## 4935   2002.1 2002-02       60 0.0000000000
## 4936   2002.1 2002-02       57 0.0000000000
## 4937   2002.1 2002-02       54 0.0000000000
## 4938   2002.1 2002-02       61 0.0000000000
## 4939   2002.1 2002-02       58 0.0000000000
## 4940   2002.1 2002-02       55 0.0000000000
## 4941   2002.1 2002-02       59 0.0243902439
## 4942   2002.1 2002-01        1 0.0270270270
## 4943   2002.1 2002-01       11 0.0000000000
## 4944   2002.1 2002-01        2 0.0180180180
## 4945   2002.1 2002-01       12 0.0000000000
## 4946   2002.1 2002-01        3 0.0000000000
## 4947   2002.1 2002-01       13 0.0000000000
## 4948   2002.1 2002-01        4 0.0000000000
## 4949   2002.1 2002-01       14 0.0000000000
## 4950   2002.1 2002-01        5 0.0000000000
## 4951   2002.1 2002-01       15 0.0000000000
## 4952   2002.1 2002-01        6 0.0000000000
## 4953   2002.1 2002-01       16 0.0000000000
## 4954   2002.1 2002-01        7 0.0000000000
## 4955   2002.1 2002-01       17 0.0270270270
## 4956   2002.1 2002-01        8 0.0000000000
## 4957   2002.1 2002-01       18 0.0180180180
## 4958   2002.1 2002-01        9 0.0000000000
## 4959   2002.1 2002-01       19 0.0360360360
## 4960   2002.1 2002-01       10 0.0000000000
## 4961   2002.1 2002-01       20 0.0270270270
## 4962   2002.1 2002-01       21 0.0000000000
## 4963   2002.1 2002-01       22 0.0450450450
## 4964   2002.1 2002-01       23 0.0000000000
## 4965   2002.1 2002-01       24 0.0270270270
## 4966   2002.1 2002-01       25 0.0090090090
## 4967   2002.1 2002-01       26 0.0630630631
## 4968   2002.1 2002-01       27 0.0360360360
## 4969   2002.1 2002-01       28 0.0180180180
## 4970   2002.1 2002-01       29 0.0450450450
## 4971   2002.1 2002-01       30 0.0180180180
## 4972   2002.1 2002-01       31 0.0180180180
## 4973   2002.1 2002-01       32 0.0630630631
## 4974   2002.1 2002-01       33 0.0180180180
## 4975   2002.1 2002-01       34 0.0090090090
## 4976   2002.1 2002-01       35 0.0090090090
## 4977   2002.1 2002-01       36 0.0270270270
## 4978   2002.1 2002-01       37 0.0000000000
## 4979   2002.1 2002-01       38 0.0000000000
## 4980   2002.1 2002-01       39 0.0000000000
## 4981   2002.1 2002-01       40 0.0360360360
## 4982   2002.1 2002-01       41 0.0180180180
## 4983   2002.1 2002-01       42 0.0000000000
## 4984   2002.1 2002-01       43 0.0090090090
## 4985   2002.1 2002-01       44 0.0090090090
## 4986   2002.1 2002-01       45 0.0090090090
## 4987   2002.1 2002-01       46 0.0180180180
## 4988   2002.1 2002-01       47 0.0180180180
## 4989   2002.1 2002-01       48 0.0090090090
## 4990   2002.1 2002-01       49 0.0090090090
## 4991   2002.1 2002-01       50 0.0180180180
## 4992   2002.1 2002-01       60 0.0180180180
## 4993   2002.1 2002-01       51 0.0180180180
## 4994   2002.1 2002-01       61 0.0180180180
## 4995   2002.1 2002-01       52 0.0180180180
## 4996   2002.1 2002-01       53 0.0090090090
## 4997   2002.1 2002-01       54 0.0180180180
## 4998   2002.1 2002-01       55 0.0270270270
## 4999   2002.1 2002-01       56 0.0270270270
## 5000   2002.1 2002-01       57 0.0540540541
## 5001   2002.1 2002-01       58 0.0090090090
## 5002   2002.1 2002-01       59 0.0720720721
## 5003   2002.1 2002-02        1 0.0303030303
## 5004   2002.1 2002-02        2 0.0000000000
## 5005   2002.1 2002-02        3 0.0000000000
## 5006   2002.1 2002-02        4 0.0000000000
## 5007   2002.1 2002-02        5 0.0000000000
## 5008   2002.1 2002-02        6 0.0000000000
## 5009   2002.1 2002-02        7 0.0909090909
## 5010   2002.1 2002-02        8 0.0151515152
## 5011   2002.1 2002-02        9 0.0000000000
## 5012   2002.1 2002-02       10 0.0000000000
## 5013   2002.1 2002-02       11 0.0151515152
## 5014   2002.1 2002-02       12 0.0000000000
## 5015   2002.1 2002-02       13 0.0000000000
## 5016   2002.1 2002-02       14 0.0000000000
## 5017   2002.1 2002-02       15 0.0000000000
## 5018   2002.1 2002-02       16 0.0000000000
## 5019   2002.1 2002-02       17 0.0000000000
## 5020   2002.1 2002-02       18 0.0303030303
## 5021   2002.1 2002-02       19 0.0000000000
## 5022   2002.1 2002-02       20 0.0000000000
## 5023   2002.1 2002-02       21 0.0000000000
## 5024   2002.1 2002-02       22 0.0000000000
## 5025   2002.1 2002-02       23 0.0000000000
## 5026   2002.1 2002-02       24 0.0151515152
## 5027   2002.1 2002-02       25 0.0151515152
## 5028   2002.1 2002-02       26 0.0151515152
## 5029   2002.1 2002-02       27 0.0000000000
## 5030   2002.1 2002-02       28 0.0151515152
## 5031   2002.1 2002-02       29 0.0000000000
## 5032   2002.1 2002-02       30 0.0000000000
## 5033   2002.1 2002-02       31 0.0606060606
## 5034   2002.1 2002-02       32 0.0000000000
## 5035   2002.1 2002-02       33 0.0000000000
## 5036   2002.1 2002-02       34 0.0000000000
## 5037   2002.1 2002-02       35 0.0151515152
## 5038   2002.1 2002-02       36 0.0303030303
## 5039   2002.1 2002-02       37 0.0454545455
## 5040   2002.1 2002-02       38 0.0757575758
## 5041   2002.1 2002-02       39 0.0909090909
## 5042   2002.1 2002-02       40 0.0303030303
## 5043   2002.1 2002-02       41 0.0000000000
## 5044   2002.1 2002-02       42 0.0151515152
## 5045   2002.1 2002-02       43 0.0000000000
## 5046   2002.1 2002-02       44 0.0000000000
## 5047   2002.1 2002-02       45 0.0303030303
## 5048   2002.1 2002-02       46 0.0151515152
## 5049   2002.1 2002-02       47 0.0151515152
## 5050   2002.1 2002-02       48 0.0151515152
## 5051   2002.1 2002-02       49 0.0000000000
## 5052   2002.1 2002-02       50 0.0000000000
## 5053   2002.1 2002-02       51 0.0303030303
## 5054   2002.1 2002-02       52 0.0606060606
## 5055   2002.1 2002-02       53 0.0303030303
## 5056   2002.1 2002-02       54 0.0151515152
## 5057   2002.1 2002-02       55 0.0000000000
## 5058   2002.1 2002-02       56 0.0303030303
## 5059   2002.1 2002-02       57 0.0303030303
## 5060   2002.1 2002-02       61 0.0303030303
## 5061   2002.1 2002-02       60 0.0000000000
## 5062   2002.1 2002-02       59 0.0151515152
## 5063   2002.1 2002-02       58 0.0757575758
## 5064   2001.2 2001-06        1 0.0066006601
## 5065   2001.2 2001-06       11 0.0033003300
## 5066   2001.2 2001-06        2 0.0000000000
## 5067   2001.2 2001-06       12 0.0000000000
## 5068   2001.2 2001-06        3 0.0000000000
## 5069   2001.2 2001-06       13 0.0000000000
## 5070   2001.2 2001-06        4 0.0000000000
## 5071   2001.2 2001-06       14 0.0000000000
## 5072   2001.2 2001-06        5 0.0000000000
## 5073   2001.2 2001-06       15 0.0033003300
## 5074   2001.2 2001-06        6 0.0000000000
## 5075   2001.2 2001-06       16 0.0033003300
## 5076   2001.2 2001-06        7 0.0000000000
## 5077   2001.2 2001-06       17 0.0066006601
## 5078   2001.2 2001-06        8 0.0000000000
## 5079   2001.2 2001-06       18 0.0033003300
## 5080   2001.2 2001-06        9 0.0033003300
## 5081   2001.2 2001-06       19 0.0066006601
## 5082   2001.2 2001-06       10 0.0000000000
## 5083   2001.2 2001-06       20 0.0000000000
## 5084   2001.2 2001-06       21 0.0066006601
## 5085   2001.2 2001-06       22 0.0165016502
## 5086   2001.2 2001-06       23 0.0033003300
## 5087   2001.2 2001-06       24 0.0000000000
## 5088   2001.2 2001-06       25 0.0033003300
## 5089   2001.2 2001-06       26 0.0033003300
## 5090   2001.2 2001-06       27 0.0033003300
## 5091   2001.2 2001-06       28 0.0066006601
## 5092   2001.2 2001-06       29 0.0132013201
## 5093   2001.2 2001-06       30 0.0033003300
## 5094   2001.2 2001-06       31 0.0297029703
## 5095   2001.2 2001-06       32 0.0000000000
## 5096   2001.2 2001-06       33 0.0330033003
## 5097   2001.2 2001-06       34 0.0132013201
## 5098   2001.2 2001-06       35 0.0198019802
## 5099   2001.2 2001-06       36 0.0033003300
## 5100   2001.2 2001-06       37 0.0066006601
## 5101   2001.2 2001-06       38 0.0066006601
## 5102   2001.2 2001-06       39 0.0066006601
## 5103   2001.2 2001-06       40 0.0066006601
## 5104   2001.2 2001-06       41 0.0132013201
## 5105   2001.2 2001-06       42 0.0132013201
## 5106   2001.2 2001-06       43 0.0099009901
## 5107   2001.2 2001-06       44 0.0132013201
## 5108   2001.2 2001-06       45 0.0792079208
## 5109   2001.2 2001-06       46 0.0099009901
## 5110   2001.2 2001-06       47 0.0066006601
## 5111   2001.2 2001-06       48 0.0231023102
## 5112   2001.2 2001-06       49 0.0429042904
## 5113   2001.2 2001-06       50 0.0132013201
## 5114   2001.2 2001-06       51 0.0099009901
## 5115   2001.2 2001-06       52 0.0198019802
## 5116   2001.2 2001-06       53 0.0066006601
## 5117   2001.2 2001-06       54 0.0363036304
## 5118   2001.2 2001-06       55 0.0330033003
## 5119   2001.2 2001-06       56 0.1023102310
## 5120   2001.2 2001-06       57 0.1122112211
## 5121   2001.2 2001-06       58 0.0759075908
## 5122   2001.2 2001-06       59 0.0396039604
## 5123   2001.2 2001-06       60 0.0759075908
## 5124   2001.2 2001-06       61 0.0429042904
## 5125   2001.2 2001-06        1 0.0116279070
## 5126   2001.2 2001-06        2 0.0000000000
## 5127   2001.2 2001-06        3 0.0116279070
## 5128   2001.2 2001-06        4 0.0000000000
## 5129   2001.2 2001-06        5 0.0000000000
## 5130   2001.2 2001-06        6 0.0000000000
## 5131   2001.2 2001-06        7 0.0000000000
## 5132   2001.2 2001-06        8 0.0000000000
## 5133   2001.2 2001-06        9 0.0116279070
## 5134   2001.2 2001-06       10 0.0000000000
## 5135   2001.2 2001-06       11 0.0000000000
## 5136   2001.2 2001-06       12 0.0000000000
## 5137   2001.2 2001-06       13 0.0116279070
## 5138   2001.2 2001-06       14 0.0000000000
## 5139   2001.2 2001-06       15 0.0000000000
## 5140   2001.2 2001-06       16 0.0000000000
## 5141   2001.2 2001-06       17 0.0000000000
## 5142   2001.2 2001-06       18 0.0000000000
## 5143   2001.2 2001-06       19 0.0000000000
## 5144   2001.2 2001-06       20 0.0000000000
## 5145   2001.2 2001-06       21 0.0000000000
## 5146   2001.2 2001-06       22 0.0000000000
## 5147   2001.2 2001-06       23 0.0000000000
## 5148   2001.2 2001-06       24 0.0116279070
## 5149   2001.2 2001-06       25 0.0232558140
## 5150   2001.2 2001-06       26 0.0000000000
## 5151   2001.2 2001-06       27 0.0000000000
## 5152   2001.2 2001-06       28 0.0000000000
## 5153   2001.2 2001-06       29 0.0000000000
## 5154   2001.2 2001-06       30 0.0000000000
## 5155   2001.2 2001-06       31 0.0000000000
## 5156   2001.2 2001-06       32 0.0000000000
## 5157   2001.2 2001-06       33 0.0232558140
## 5158   2001.2 2001-06       34 0.0000000000
## 5159   2001.2 2001-06       35 0.0000000000
## 5160   2001.2 2001-06       36 0.0000000000
## 5161   2001.2 2001-06       37 0.0000000000
## 5162   2001.2 2001-06       38 0.0000000000
## 5163   2001.2 2001-06       39 0.0000000000
## 5164   2001.2 2001-06       40 0.0000000000
## 5165   2001.2 2001-06       41 0.0000000000
## 5166   2001.2 2001-06       42 0.0116279070
## 5167   2001.2 2001-06       43 0.0348837209
## 5168   2001.2 2001-06       44 0.0348837209
## 5169   2001.2 2001-06       45 0.0000000000
## 5170   2001.2 2001-06       49 0.0000000000
## 5171   2001.2 2001-06       46 0.0000000000
## 5172   2001.2 2001-06       50 0.0000000000
## 5173   2001.2 2001-06       47 0.0000000000
## 5174   2001.2 2001-06       51 0.0116279070
## 5175   2001.2 2001-06       48 0.0000000000
## 5176   2001.2 2001-06       52 0.0000000000
## 5177   2001.2 2001-06       53 0.1511627907
## 5178   2001.2 2001-06       54 0.0000000000
## 5179   2001.2 2001-06       55 0.0465116279
## 5180   2001.2 2001-06       56 0.1279069767
## 5181   2001.2 2001-06       57 0.1860465116
## 5182   2001.2 2001-06       58 0.1162790698
## 5183   2001.2 2001-06       60 0.0348837209
## 5184   2001.2 2001-06       59 0.0348837209
## 5185   2001.2 2001-06       61 0.1046511628
## 5186   2001.3 2001-08        1 0.0051020408
## 5187   2001.3 2001-08        2 0.0000000000
## 5188   2001.3 2001-08        3 0.0051020408
## 5189   2001.3 2001-08        4 0.0000000000
## 5190   2001.3 2001-08        5 0.0000000000
## 5191   2001.3 2001-08        6 0.0000000000
## 5192   2001.3 2001-08        7 0.0051020408
## 5193   2001.3 2001-08        8 0.0051020408
## 5194   2001.3 2001-08        9 0.0000000000
## 5195   2001.3 2001-08       10 0.0000000000
## 5196   2001.3 2001-08       11 0.0000000000
## 5197   2001.3 2001-08       12 0.0000000000
## 5198   2001.3 2001-08       13 0.0051020408
## 5199   2001.3 2001-08       14 0.0000000000
## 5200   2001.3 2001-08       15 0.0051020408
## 5201   2001.3 2001-08       16 0.0000000000
## 5202   2001.3 2001-08       17 0.0000000000
## 5203   2001.3 2001-08       18 0.0000000000
## 5204   2001.3 2001-08       19 0.0051020408
## 5205   2001.3 2001-08       20 0.0000000000
## 5206   2001.3 2001-08       21 0.0102040816
## 5207   2001.3 2001-08       22 0.0000000000
## 5208   2001.3 2001-08       23 0.0000000000
## 5209   2001.3 2001-08       24 0.0204081633
## 5210   2001.3 2001-08       25 0.0000000000
## 5211   2001.3 2001-08       26 0.0000000000
## 5212   2001.3 2001-08       27 0.0102040816
## 5213   2001.3 2001-08       28 0.0000000000
## 5214   2001.3 2001-08       29 0.0051020408
## 5215   2001.3 2001-08       30 0.0000000000
## 5216   2001.3 2001-08       31 0.0051020408
## 5217   2001.3 2001-08       32 0.0051020408
## 5218   2001.3 2001-08       33 0.0000000000
## 5219   2001.3 2001-08       34 0.0000000000
## 5220   2001.3 2001-08       35 0.0408163265
## 5221   2001.3 2001-08       36 0.0153061224
## 5222   2001.3 2001-08       37 0.0051020408
## 5223   2001.3 2001-08       38 0.0153061224
## 5224   2001.3 2001-08       39 0.0102040816
## 5225   2001.3 2001-08       40 0.0102040816
## 5226   2001.3 2001-08       41 0.0051020408
## 5227   2001.3 2001-08       42 0.0102040816
## 5228   2001.3 2001-08       43 0.0255102041
## 5229   2001.3 2001-08       44 0.0816326531
## 5230   2001.3 2001-08       45 0.0255102041
## 5231   2001.3 2001-08       46 0.0153061224
## 5232   2001.3 2001-08       47 0.0102040816
## 5233   2001.3 2001-08       48 0.0561224490
## 5234   2001.3 2001-08       49 0.0306122449
## 5235   2001.3 2001-08       50 0.0306122449
## 5236   2001.3 2001-08       51 0.0561224490
## 5237   2001.3 2001-08       52 0.0204081633
## 5238   2001.3 2001-08       53 0.0255102041
## 5239   2001.3 2001-08       54 0.0765306122
## 5240   2001.3 2001-08       55 0.0765306122
## 5241   2001.3 2001-08       57 0.0510204082
## 5242   2001.3 2001-08       56 0.1683673469
## 5243   2001.3 2001-08       58 0.0051020408
## 5244   2001.3 2001-08       59 0.0255102041
## 5245   2001.3 2001-08       61 0.0051020408
## 5246   2001.3 2001-08       60 0.0102040816
## 5247   2001.3 2001-09        1 0.0084033613
## 5248   2001.3 2001-09        2 0.0000000000
## 5249   2001.3 2001-09        3 0.0000000000
## 5250   2001.3 2001-09        4 0.0000000000
## 5251   2001.3 2001-09        5 0.0000000000
## 5252   2001.3 2001-09        6 0.0084033613
## 5253   2001.3 2001-09        7 0.0000000000
## 5254   2001.3 2001-09        8 0.0000000000
## 5255   2001.3 2001-09        9 0.0000000000
## 5256   2001.3 2001-09       10 0.0000000000
## 5257   2001.3 2001-09       11 0.0000000000
## 5258   2001.3 2001-09       12 0.0000000000
## 5259   2001.3 2001-09       13 0.0000000000
## 5260   2001.3 2001-09       14 0.0000000000
## 5261   2001.3 2001-09       15 0.0000000000
## 5262   2001.3 2001-09       16 0.0000000000
## 5263   2001.3 2001-09       17 0.0000000000
## 5264   2001.3 2001-09       18 0.0000000000
## 5265   2001.3 2001-09       19 0.0000000000
## 5266   2001.3 2001-09       20 0.0000000000
## 5267   2001.3 2001-09       21 0.0000000000
## 5268   2001.3 2001-09       22 0.0000000000
## 5269   2001.3 2001-09       23 0.0084033613
## 5270   2001.3 2001-09       24 0.0000000000
## 5271   2001.3 2001-09       25 0.0000000000
## 5272   2001.3 2001-09       26 0.1764705882
## 5273   2001.3 2001-09       27 0.0084033613
## 5274   2001.3 2001-09       28 0.0000000000
## 5275   2001.3 2001-09       29 0.0168067227
## 5276   2001.3 2001-09       30 0.0252100840
## 5277   2001.3 2001-09       31 0.0252100840
## 5278   2001.3 2001-09       32 0.0168067227
## 5279   2001.3 2001-09       33 0.0588235294
## 5280   2001.3 2001-09       34 0.0168067227
## 5281   2001.3 2001-09       35 0.0084033613
## 5282   2001.3 2001-09       36 0.0252100840
## 5283   2001.3 2001-09       37 0.0168067227
## 5284   2001.3 2001-09       38 0.0336134454
## 5285   2001.3 2001-09       39 0.0084033613
## 5286   2001.3 2001-09       40 0.0756302521
## 5287   2001.3 2001-09       41 0.0084033613
## 5288   2001.3 2001-09       42 0.0168067227
## 5289   2001.3 2001-09       43 0.0420168067
## 5290   2001.3 2001-09       44 0.0252100840
## 5291   2001.3 2001-09       45 0.0840336134
## 5292   2001.3 2001-09       46 0.0336134454
## 5293   2001.3 2001-09       47 0.0168067227
## 5294   2001.3 2001-09       48 0.0252100840
## 5295   2001.3 2001-09       49 0.0000000000
## 5296   2001.3 2001-09       50 0.0168067227
## 5297   2001.3 2001-09       51 0.0168067227
## 5298   2001.3 2001-09       52 0.0252100840
## 5299   2001.3 2001-09       53 0.0420168067
## 5300   2001.3 2001-09       54 0.0084033613
## 5301   2001.3 2001-09       55 0.0084033613
## 5302   2001.3 2001-09       56 0.0168067227
## 5303   2001.3 2001-09       61 0.0000000000
## 5304   2001.3 2001-09       60 0.0420168067
## 5305   2001.3 2001-09       57 0.0252100840
## 5306   2001.3 2001-09       58 0.0084033613
## 5307   2001.3 2001-09       59 0.0000000000
## 5308   2002.1 2002-02        1 0.0046296296
## 5309   2002.1 2002-02        2 0.0000000000
## 5310   2002.1 2002-02        3 0.0046296296
## 5311   2002.1 2002-02        4 0.0000000000
## 5312   2002.1 2002-02        5 0.0000000000
## 5313   2002.1 2002-02        6 0.0000000000
## 5314   2002.1 2002-02        7 0.0000000000
## 5315   2002.1 2002-02        8 0.0000000000
## 5316   2002.1 2002-02        9 0.0000000000
## 5317   2002.1 2002-02       10 0.0092592593
## 5318   2002.1 2002-02       11 0.0092592593
## 5319   2002.1 2002-02       12 0.0000000000
## 5320   2002.1 2002-02       13 0.0000000000
## 5321   2002.1 2002-02       14 0.0000000000
## 5322   2002.1 2002-02       15 0.0000000000
## 5323   2002.1 2002-02       16 0.0092592593
## 5324   2002.1 2002-02       17 0.0000000000
## 5325   2002.1 2002-02       18 0.0000000000
## 5326   2002.1 2002-02       19 0.0000000000
## 5327   2002.1 2002-02       20 0.0000000000
## 5328   2002.1 2002-02       21 0.0000000000
## 5329   2002.1 2002-02       22 0.0000000000
## 5330   2002.1 2002-02       23 0.0000000000
## 5331   2002.1 2002-02       24 0.0000000000
## 5332   2002.1 2002-02       25 0.0000000000
## 5333   2002.1 2002-02       26 0.0000000000
## 5334   2002.1 2002-02       27 0.0000000000
## 5335   2002.1 2002-02       28 0.0046296296
## 5336   2002.1 2002-02       29 0.0000000000
## 5337   2002.1 2002-02       30 0.0092592593
## 5338   2002.1 2002-02       31 0.0138888889
## 5339   2002.1 2002-02       32 0.0138888889
## 5340   2002.1 2002-02       33 0.0185185185
## 5341   2002.1 2002-02       34 0.0046296296
## 5342   2002.1 2002-02       35 0.0092592593
## 5343   2002.1 2002-02       36 0.0138888889
## 5344   2002.1 2002-02       37 0.0000000000
## 5345   2002.1 2002-02       38 0.0092592593
## 5346   2002.1 2002-02       39 0.0000000000
## 5347   2002.1 2002-02       40 0.0138888889
## 5348   2002.1 2002-02       41 0.0046296296
## 5349   2002.1 2002-02       42 0.0185185185
## 5350   2002.1 2002-02       43 0.0138888889
## 5351   2002.1 2002-02       44 0.0138888889
## 5352   2002.1 2002-02       45 0.0277777778
## 5353   2002.1 2002-02       46 0.1296296296
## 5354   2002.1 2002-02       47 0.0370370370
## 5355   2002.1 2002-02       48 0.0416666667
## 5356   2002.1 2002-02       49 0.0277777778
## 5357   2002.1 2002-02       50 0.0000000000
## 5358   2002.1 2002-02       60 0.0462962963
## 5359   2002.1 2002-02       51 0.0046296296
## 5360   2002.1 2002-02       61 0.0277777778
## 5361   2002.1 2002-02       52 0.0879629630
## 5362   2002.1 2002-02       53 0.0740740741
## 5363   2002.1 2002-02       54 0.0092592593
## 5364   2002.1 2002-02       55 0.0462962963
## 5365   2002.1 2002-02       59 0.0416666667
## 5366   2002.1 2002-02       56 0.0601851852
## 5367   2002.1 2002-02       57 0.0925925926
## 5368   2002.1 2002-02       58 0.0462962963
## 5369   2002.1 2002-02        1 0.1111111111
## 5370   2002.1 2002-02        2 0.0000000000
## 5371   2002.1 2002-02        3 0.0000000000
## 5372   2002.1 2002-02        4 0.0000000000
## 5373   2002.1 2002-02        5 0.0000000000
## 5374   2002.1 2002-02        6 0.0000000000
## 5375   2002.1 2002-02        7 0.0000000000
## 5376   2002.1 2002-02        8 0.0000000000
## 5377   2002.1 2002-02        9 0.0000000000
## 5378   2002.1 2002-02       10 0.0000000000
## 5379   2002.1 2002-02       11 0.0000000000
## 5380   2002.1 2002-02       12 0.0000000000
## 5381   2002.1 2002-02       13 0.0000000000
## 5382   2002.1 2002-02       14 0.0000000000
## 5383   2002.1 2002-02       15 0.0000000000
## 5384   2002.1 2002-02       16 0.0000000000
## 5385   2002.1 2002-02       17 0.0000000000
## 5386   2002.1 2002-02       18 0.0000000000
## 5387   2002.1 2002-02       19 0.0000000000
## 5388   2002.1 2002-02       20 0.1111111111
## 5389   2002.1 2002-02       21 0.0000000000
## 5390   2002.1 2002-02       22 0.0000000000
## 5391   2002.1 2002-02       23 0.0000000000
## 5392   2002.1 2002-02       24 0.0000000000
## 5393   2002.1 2002-02       25 0.0000000000
## 5394   2002.1 2002-02       26 0.0000000000
## 5395   2002.1 2002-02       27 0.0000000000
## 5396   2002.1 2002-02       28 0.0000000000
## 5397   2002.1 2002-02       29 0.0000000000
## 5398   2002.1 2002-02       30 0.1111111111
## 5399   2002.1 2002-02       31 0.0000000000
## 5400   2002.1 2002-02       32 0.3333333333
## 5401   2002.1 2002-02       33 0.1111111111
## 5402   2002.1 2002-02       34 0.1111111111
## 5403   2002.1 2002-02       35 0.0000000000
## 5404   2002.1 2002-02       36 0.0000000000
## 5405   2002.1 2002-02       37 0.0000000000
## 5406   2002.1 2002-02       38 0.0000000000
## 5407   2002.1 2002-02       39 0.0000000000
## 5408   2002.1 2002-02       40 0.0000000000
## 5409   2002.1 2002-02       41 0.0000000000
## 5410   2002.1 2002-02       42 0.0000000000
## 5411   2002.1 2002-02       43 0.0000000000
## 5412   2002.1 2002-02       44 0.0000000000
## 5413   2002.1 2002-02       45 0.0000000000
## 5414   2002.1 2002-02       46 0.0000000000
## 5415   2002.1 2002-02       47 0.0000000000
## 5416   2002.1 2002-02       48 0.0000000000
## 5417   2002.1 2002-02       49 0.0000000000
## 5418   2002.1 2002-02       50 0.0000000000
## 5419   2002.1 2002-02       60 0.0000000000
## 5420   2002.1 2002-02       51 0.0000000000
## 5421   2002.1 2002-02       61 0.0000000000
## 5422   2002.1 2002-02       52 0.1111111111
## 5423   2002.1 2002-02       59 0.0000000000
## 5424   2002.1 2002-02       56 0.0000000000
## 5425   2002.1 2002-02       53 0.0000000000
## 5426   2002.1 2002-02       57 0.0000000000
## 5427   2002.1 2002-02       54 0.0000000000
## 5428   2002.1 2002-02       58 0.0000000000
## 5429   2002.1 2002-02       55 0.0000000000
## 5430   2002.1 2002-01        1 0.0007698229
## 5431   2002.1 2002-01        2 0.0007698229
## 5432   2002.1 2002-01        3 0.0007698229
## 5433   2002.1 2002-01        4 0.0023094688
## 5434   2002.1 2002-01        5 0.0000000000
## 5435   2002.1 2002-01        6 0.0000000000
## 5436   2002.1 2002-01        7 0.0007698229
## 5437   2002.1 2002-01        8 0.0046189376
## 5438   2002.1 2002-01        9 0.0015396459
## 5439   2002.1 2002-01       10 0.0007698229
## 5440   2002.1 2002-01       11 0.0000000000
## 5441   2002.1 2002-01       12 0.0000000000
## 5442   2002.1 2002-01       13 0.0007698229
## 5443   2002.1 2002-01       14 0.0007698229
## 5444   2002.1 2002-01       15 0.0007698229
## 5445   2002.1 2002-01       16 0.0000000000
## 5446   2002.1 2002-01       17 0.0069284065
## 5447   2002.1 2002-01       18 0.0023094688
## 5448   2002.1 2002-01       19 0.0007698229
## 5449   2002.1 2002-01       20 0.0046189376
## 5450   2002.1 2002-01       21 0.0007698229
## 5451   2002.1 2002-01       22 0.0007698229
## 5452   2002.1 2002-01       23 0.0015396459
## 5453   2002.1 2002-01       24 0.0030792918
## 5454   2002.1 2002-01       25 0.0046189376
## 5455   2002.1 2002-01       26 0.0092378753
## 5456   2002.1 2002-01       27 0.0454195535
## 5457   2002.1 2002-01       28 0.0169361047
## 5458   2002.1 2002-01       29 0.0107775212
## 5459   2002.1 2002-01       30 0.0030792918
## 5460   2002.1 2002-01       31 0.0053887606
## 5461   2002.1 2002-01       32 0.0146266359
## 5462   2002.1 2002-01       33 0.0200153965
## 5463   2002.1 2002-01       34 0.0061585835
## 5464   2002.1 2002-01       35 0.0053887606
## 5465   2002.1 2002-01       36 0.0046189376
## 5466   2002.1 2002-01       37 0.0030792918
## 5467   2002.1 2002-01       38 0.0038491147
## 5468   2002.1 2002-01       39 0.0200153965
## 5469   2002.1 2002-01       40 0.0046189376
## 5470   2002.1 2002-01       41 0.0200153965
## 5471   2002.1 2002-01       42 0.1000769823
## 5472   2002.1 2002-01       43 0.0377213241
## 5473   2002.1 2002-01       44 0.0061585835
## 5474   2002.1 2002-01       45 0.0115473441
## 5475   2002.1 2002-01       46 0.0023094688
## 5476   2002.1 2002-01       47 0.0169361047
## 5477   2002.1 2002-01       48 0.0215550423
## 5478   2002.1 2002-01       49 0.0153964588
## 5479   2002.1 2002-01       50 0.0092378753
## 5480   2002.1 2002-01       51 0.0246343341
## 5481   2002.1 2002-01       52 0.0076982294
## 5482   2002.1 2002-01       54 0.0854503464
## 5483   2002.1 2002-01       53 0.0338722094
## 5484   2002.1 2002-01       55 0.0377213241
## 5485   2002.1 2002-01       59 0.0523479600
## 5486   2002.1 2002-01       57 0.0531177829
## 5487   2002.1 2002-01       56 0.0715935335
## 5488   2002.1 2002-01       60 0.0608160123
## 5489   2002.1 2002-01       58 0.0361816782
## 5490   2002.1 2002-01       61 0.0823710547
## 5491   2002.1 2002-01        1 1.0000000000
## 5492   2002.1 2002-01        2 0.0000000000
## 5493   2002.1 2002-01        3 0.0000000000
## 5494   2002.1 2002-01        4 0.0000000000
## 5495   2002.1 2002-01        5 0.0000000000
## 5496   2002.1 2002-01        6 0.0000000000
## 5497   2002.1 2002-01        7 0.0000000000
## 5498   2002.1 2002-01        8 0.0000000000
## 5499   2002.1 2002-01        9 0.0000000000
## 5500   2002.1 2002-01       10 0.0000000000
## 5501   2002.1 2002-01       11 0.0000000000
## 5502   2002.1 2002-01       12 0.0000000000
## 5503   2002.1 2002-01       13 0.0000000000
## 5504   2002.1 2002-01       14 0.0000000000
## 5505   2002.1 2002-01       15 0.0000000000
## 5506   2002.1 2002-01       16 0.0000000000
## 5507   2002.1 2002-01       17 0.0000000000
## 5508   2002.1 2002-01       18 0.0000000000
## 5509   2002.1 2002-01       19 0.0000000000
## 5510   2002.1 2002-01       20 0.0000000000
## 5511   2002.1 2002-01       21 0.0000000000
## 5512   2002.1 2002-01       22 0.0000000000
## 5513   2002.1 2002-01       23 0.0000000000
## 5514   2002.1 2002-01       24 0.0000000000
## 5515   2002.1 2002-01       25 0.0000000000
## 5516   2002.1 2002-01       26 0.0000000000
## 5517   2002.1 2002-01       27 0.0000000000
## 5518   2002.1 2002-01       28 0.0000000000
## 5519   2002.1 2002-01       29 0.0000000000
## 5520   2002.1 2002-01       30 0.0000000000
## 5521   2002.1 2002-01       31 0.0000000000
## 5522   2002.1 2002-01       32 0.0000000000
## 5523   2002.1 2002-01       33 0.0000000000
## 5524   2002.1 2002-01       34 0.0000000000
## 5525   2002.1 2002-01       35 0.0000000000
## 5526   2002.1 2002-01       36 0.0000000000
## 5527   2002.1 2002-01       37 0.0000000000
## 5528   2002.1 2002-01       38 0.0000000000
## 5529   2002.1 2002-01       39 0.0000000000
## 5530   2002.1 2002-01       40 0.0000000000
## 5531   2002.1 2002-01       41 0.0000000000
## 5532   2002.1 2002-01       42 0.0000000000
## 5533   2002.1 2002-01       43 0.0000000000
## 5534   2002.1 2002-01       44 0.0000000000
## 5535   2002.1 2002-01       45 0.0000000000
## 5536   2002.1 2002-01       46 0.0000000000
## 5537   2002.1 2002-01       47 0.0000000000
## 5538   2002.1 2002-01       48 0.0000000000
## 5539   2002.1 2002-01       49 0.0000000000
## 5540   2002.1 2002-01       50 0.0000000000
## 5541   2002.1 2002-01       51 0.0000000000
## 5542   2002.1 2002-01       52 0.0000000000
## 5543   2002.1 2002-01       60 0.0000000000
## 5544   2002.1 2002-01       59 0.0000000000
## 5545   2002.1 2002-01       57 0.0000000000
## 5546   2002.1 2002-01       56 0.0000000000
## 5547   2002.1 2002-01       53 0.0000000000
## 5548   2002.1 2002-01       61 0.0000000000
## 5549   2002.1 2002-01       58 0.0000000000
## 5550   2002.1 2002-01       54 0.0000000000
## 5551   2002.1 2002-01       55 0.0000000000
## 5552   2002.1 2002-01        1 0.2272727273
## 5553   2002.1 2002-01        2 0.0454545455
## 5554   2002.1 2002-01        3 0.0000000000
## 5555   2002.1 2002-01        4 0.0454545455
## 5556   2002.1 2002-01        5 0.0000000000
## 5557   2002.1 2002-01        6 0.0000000000
## 5558   2002.1 2002-01        7 0.0000000000
## 5559   2002.1 2002-01        8 0.0000000000
## 5560   2002.1 2002-01        9 0.0000000000
## 5561   2002.1 2002-01       10 0.0000000000
## 5562   2002.1 2002-01       11 0.0000000000
## 5563   2002.1 2002-01       12 0.0000000000
## 5564   2002.1 2002-01       13 0.0000000000
## 5565   2002.1 2002-01       14 0.0000000000
## 5566   2002.1 2002-01       15 0.0000000000
## 5567   2002.1 2002-01       16 0.0000000000
## 5568   2002.1 2002-01       17 0.0454545455
## 5569   2002.1 2002-01       18 0.0000000000
## 5570   2002.1 2002-01       19 0.0000000000
## 5571   2002.1 2002-01       20 0.0000000000
## 5572   2002.1 2002-01       21 0.0000000000
## 5573   2002.1 2002-01       22 0.0000000000
## 5574   2002.1 2002-01       23 0.0454545455
## 5575   2002.1 2002-01       24 0.0000000000
## 5576   2002.1 2002-01       25 0.0000000000
## 5577   2002.1 2002-01       26 0.0000000000
## 5578   2002.1 2002-01       27 0.0454545455
## 5579   2002.1 2002-01       28 0.0000000000
## 5580   2002.1 2002-01       29 0.0000000000
## 5581   2002.1 2002-01       30 0.0000000000
## 5582   2002.1 2002-01       31 0.0000000000
## 5583   2002.1 2002-01       32 0.0000000000
## 5584   2002.1 2002-01       33 0.0000000000
## 5585   2002.1 2002-01       34 0.0000000000
## 5586   2002.1 2002-01       35 0.0454545455
## 5587   2002.1 2002-01       36 0.0454545455
## 5588   2002.1 2002-01       37 0.0454545455
## 5589   2002.1 2002-01       38 0.0000000000
## 5590   2002.1 2002-01       39 0.0000000000
## 5591   2002.1 2002-01       40 0.0000000000
## 5592   2002.1 2002-01       41 0.0454545455
## 5593   2002.1 2002-01       42 0.0454545455
## 5594   2002.1 2002-01       43 0.0454545455
## 5595   2002.1 2002-01       44 0.0000000000
## 5596   2002.1 2002-01       45 0.0000000000
## 5597   2002.1 2002-01       46 0.0909090909
## 5598   2002.1 2002-01       47 0.0000000000
## 5599   2002.1 2002-01       48 0.0000000000
## 5600   2002.1 2002-01       49 0.0454545455
## 5601   2002.1 2002-01       50 0.0000000000
## 5602   2002.1 2002-01       51 0.0000000000
## 5603   2002.1 2002-01       52 0.0000000000
## 5604   2002.1 2002-01       53 0.0000000000
## 5605   2002.1 2002-01       54 0.0454545455
## 5606   2002.1 2002-01       55 0.0000000000
## 5607   2002.1 2002-01       59 0.0000000000
## 5608   2002.1 2002-01       56 0.0454545455
## 5609   2002.1 2002-01       60 0.0000000000
## 5610   2002.1 2002-01       57 0.0000000000
## 5611   2002.1 2002-01       61 0.0454545455
## 5612   2002.1 2002-01       58 0.0000000000
## 5613   2001.3 2001-09        1 0.0027027027
## 5614   2001.3 2001-09        2 0.0000000000
## 5615   2001.3 2001-09        3 0.0000000000
## 5616   2001.3 2001-09        4 0.0027027027
## 5617   2001.3 2001-09        5 0.0000000000
## 5618   2001.3 2001-09        6 0.0027027027
## 5619   2001.3 2001-09        7 0.0054054054
## 5620   2001.3 2001-09        8 0.0000000000
## 5621   2001.3 2001-09        9 0.0000000000
## 5622   2001.3 2001-09       10 0.0000000000
## 5623   2001.3 2001-09       11 0.0000000000
## 5624   2001.3 2001-09       12 0.0081081081
## 5625   2001.3 2001-09       13 0.0108108108
## 5626   2001.3 2001-09       14 0.0000000000
## 5627   2001.3 2001-09       15 0.0000000000
## 5628   2001.3 2001-09       16 0.0000000000
## 5629   2001.3 2001-09       17 0.0027027027
## 5630   2001.3 2001-09       18 0.0000000000
## 5631   2001.3 2001-09       19 0.0054054054
## 5632   2001.3 2001-09       20 0.0000000000
## 5633   2001.3 2001-09       21 0.0027027027
## 5634   2001.3 2001-09       22 0.0054054054
## 5635   2001.3 2001-09       23 0.0054054054
## 5636   2001.3 2001-09       24 0.0027027027
## 5637   2001.3 2001-09       25 0.0000000000
## 5638   2001.3 2001-09       26 0.0000000000
## 5639   2001.3 2001-09       27 0.0000000000
## 5640   2001.3 2001-09       28 0.0000000000
## 5641   2001.3 2001-09       29 0.0000000000
## 5642   2001.3 2001-09       30 0.0108108108
## 5643   2001.3 2001-09       31 0.0243243243
## 5644   2001.3 2001-09       32 0.0081081081
## 5645   2001.3 2001-09       33 0.0000000000
## 5646   2001.3 2001-09       34 0.0108108108
## 5647   2001.3 2001-09       35 0.0054054054
## 5648   2001.3 2001-09       36 0.0108108108
## 5649   2001.3 2001-09       37 0.0135135135
## 5650   2001.3 2001-09       38 0.0162162162
## 5651   2001.3 2001-09       39 0.0432432432
## 5652   2001.3 2001-09       40 0.0162162162
## 5653   2001.3 2001-09       41 0.0189189189
## 5654   2001.3 2001-09       42 0.0054054054
## 5655   2001.3 2001-09       43 0.0000000000
## 5656   2001.3 2001-09       44 0.2000000000
## 5657   2001.3 2001-09       45 0.0459459459
## 5658   2001.3 2001-09       46 0.0837837838
## 5659   2001.3 2001-09       47 0.0567567568
## 5660   2001.3 2001-09       48 0.0270270270
## 5661   2001.3 2001-09       49 0.0189189189
## 5662   2001.3 2001-09       50 0.0189189189
## 5663   2001.3 2001-09       51 0.0216216216
## 5664   2001.3 2001-09       52 0.0081081081
## 5665   2001.3 2001-09       56 0.0432432432
## 5666   2001.3 2001-09       53 0.0432432432
## 5667   2001.3 2001-09       57 0.0216216216
## 5668   2001.3 2001-09       54 0.0351351351
## 5669   2001.3 2001-09       58 0.0378378378
## 5670   2001.3 2001-09       55 0.0135135135
## 5671   2001.3 2001-09       60 0.0189189189
## 5672   2001.3 2001-09       59 0.0432432432
## 5673   2001.3 2001-09       61 0.0216216216
## 5674   2001.4 2001-12        1 0.0081967213
## 5675   2001.4 2001-12        2 0.0000000000
## 5676   2001.4 2001-12        3 0.0081967213
## 5677   2001.4 2001-12        4 0.0000000000
## 5678   2001.4 2001-12        5 0.0000000000
## 5679   2001.4 2001-12        6 0.0000000000
## 5680   2001.4 2001-12        7 0.0000000000
## 5681   2001.4 2001-12        8 0.0000000000
## 5682   2001.4 2001-12        9 0.0081967213
## 5683   2001.4 2001-12       10 0.0081967213
## 5684   2001.4 2001-12       11 0.0000000000
## 5685   2001.4 2001-12       12 0.0000000000
## 5686   2001.4 2001-12       13 0.0163934426
## 5687   2001.4 2001-12       14 0.0000000000
## 5688   2001.4 2001-12       15 0.0000000000
## 5689   2001.4 2001-12       16 0.0000000000
## 5690   2001.4 2001-12       17 0.0081967213
## 5691   2001.4 2001-12       18 0.0245901639
## 5692   2001.4 2001-12       19 0.0000000000
## 5693   2001.4 2001-12       20 0.0000000000
## 5694   2001.4 2001-12       21 0.0000000000
## 5695   2001.4 2001-12       22 0.0000000000
## 5696   2001.4 2001-12       23 0.0000000000
## 5697   2001.4 2001-12       24 0.0000000000
## 5698   2001.4 2001-12       25 0.0000000000
## 5699   2001.4 2001-12       26 0.0000000000
## 5700   2001.4 2001-12       27 0.0081967213
## 5701   2001.4 2001-12       28 0.0000000000
## 5702   2001.4 2001-12       29 0.0245901639
## 5703   2001.4 2001-12       30 0.0000000000
## 5704   2001.4 2001-12       31 0.0081967213
## 5705   2001.4 2001-12       32 0.0000000000
## 5706   2001.4 2001-12       33 0.0163934426
## 5707   2001.4 2001-12       34 0.0081967213
## 5708   2001.4 2001-12       35 0.0000000000
## 5709   2001.4 2001-12       36 0.0000000000
## 5710   2001.4 2001-12       37 0.0081967213
## 5711   2001.4 2001-12       38 0.0245901639
## 5712   2001.4 2001-12       39 0.0000000000
## 5713   2001.4 2001-12       40 0.0081967213
## 5714   2001.4 2001-12       41 0.0081967213
## 5715   2001.4 2001-12       42 0.0081967213
## 5716   2001.4 2001-12       46 0.0081967213
## 5717   2001.4 2001-12       43 0.0000000000
## 5718   2001.4 2001-12       47 0.0081967213
## 5719   2001.4 2001-12       44 0.0081967213
## 5720   2001.4 2001-12       48 0.0409836066
## 5721   2001.4 2001-12       45 0.0409836066
## 5722   2001.4 2001-12       49 0.0819672131
## 5723   2001.4 2001-12       50 0.0245901639
## 5724   2001.4 2001-12       51 0.0000000000
## 5725   2001.4 2001-12       52 0.0081967213
## 5726   2001.4 2001-12       53 0.0327868852
## 5727   2001.4 2001-12       54 0.0000000000
## 5728   2001.4 2001-12       55 0.0491803279
## 5729   2001.4 2001-12       56 0.0819672131
## 5730   2001.4 2001-12       57 0.0901639344
## 5731   2001.4 2001-12       58 0.0163934426
## 5732   2001.4 2001-12       60 0.0163934426
## 5733   2001.4 2001-12       59 0.0327868852
## 5734   2001.4 2001-12       61 0.2540983607
## 5735   2001.1 2001-03        1 1.0000000000
## 5736   2001.1 2001-03        2 0.0000000000
## 5737   2001.1 2001-03        3 0.0000000000
## 5738   2001.1 2001-03        4 0.0000000000
## 5739   2001.1 2001-03        5 0.0000000000
## 5740   2001.1 2001-03        6 0.0000000000
## 5741   2001.1 2001-03        7 0.0000000000
## 5742   2001.1 2001-03        8 0.0000000000
## 5743   2001.1 2001-03        9 0.0000000000
## 5744   2001.1 2001-03       10 0.0000000000
## 5745   2001.1 2001-03       11 0.0000000000
## 5746   2001.1 2001-03       12 0.0000000000
## 5747   2001.1 2001-03       13 0.0000000000
## 5748   2001.1 2001-03       14 0.0000000000
## 5749   2001.1 2001-03       15 0.0000000000
## 5750   2001.1 2001-03       16 0.0000000000
## 5751   2001.1 2001-03       17 0.0000000000
## 5752   2001.1 2001-03       18 0.0000000000
## 5753   2001.1 2001-03       19 0.0000000000
## 5754   2001.1 2001-03       20 0.0000000000
## 5755   2001.1 2001-03       21 0.0000000000
## 5756   2001.1 2001-03       22 0.0000000000
## 5757   2001.1 2001-03       23 0.0000000000
## 5758   2001.1 2001-03       24 0.0000000000
## 5759   2001.1 2001-03       25 0.0000000000
## 5760   2001.1 2001-03       26 0.0000000000
## 5761   2001.1 2001-03       27 0.0000000000
## 5762   2001.1 2001-03       28 0.0000000000
## 5763   2001.1 2001-03       29 0.0000000000
## 5764   2001.1 2001-03       30 0.0000000000
## 5765   2001.1 2001-03       31 0.0000000000
## 5766   2001.1 2001-03       32 0.0000000000
## 5767   2001.1 2001-03       33 0.0000000000
## 5768   2001.1 2001-03       34 0.0000000000
## 5769   2001.1 2001-03       35 0.0000000000
## 5770   2001.1 2001-03       36 0.0000000000
## 5771   2001.1 2001-03       37 0.0000000000
## 5772   2001.1 2001-03       38 0.0000000000
## 5773   2001.1 2001-03       39 0.0000000000
## 5774   2001.1 2001-03       40 0.0000000000
## 5775   2001.1 2001-03       41 0.0000000000
## 5776   2001.1 2001-03       42 0.0000000000
## 5777   2001.1 2001-03       43 0.0000000000
## 5778   2001.1 2001-03       44 0.0000000000
## 5779   2001.1 2001-03       45 0.0000000000
## 5780   2001.1 2001-03       46 0.0000000000
## 5781   2001.1 2001-03       47 0.0000000000
## 5782   2001.1 2001-03       48 0.0000000000
## 5783   2001.1 2001-03       49 0.0000000000
## 5784   2001.1 2001-03       50 0.0000000000
## 5785   2001.1 2001-03       51 0.0000000000
## 5786   2001.1 2001-03       52 0.0000000000
## 5787   2001.1 2001-03       53 0.0000000000
## 5788   2001.1 2001-03       54 0.0000000000
## 5789   2001.1 2001-03       55 0.0000000000
## 5790   2001.1 2001-03       59 0.0000000000
## 5791   2001.1 2001-03       58 0.0000000000
## 5792   2001.1 2001-03       56 0.0000000000
## 5793   2001.1 2001-03       60 0.0000000000
## 5794   2001.1 2001-03       57 0.0000000000
## 5795   2001.1 2001-03       61 0.0000000000
## 5796   2001.2 2001-04        1 0.0178571429
## 5797   2001.2 2001-04        2 0.0000000000
## 5798   2001.2 2001-04        3 0.0000000000
## 5799   2001.2 2001-04        4 0.0000000000
## 5800   2001.2 2001-04        5 0.0000000000
## 5801   2001.2 2001-04        6 0.0000000000
## 5802   2001.2 2001-04        7 0.0000000000
## 5803   2001.2 2001-04        8 0.0000000000
## 5804   2001.2 2001-04        9 0.0000000000
## 5805   2001.2 2001-04       10 0.0178571429
## 5806   2001.2 2001-04       11 0.0178571429
## 5807   2001.2 2001-04       12 0.0178571429
## 5808   2001.2 2001-04       13 0.0000000000
## 5809   2001.2 2001-04       14 0.0000000000
## 5810   2001.2 2001-04       15 0.0000000000
## 5811   2001.2 2001-04       16 0.0000000000
## 5812   2001.2 2001-04       17 0.0000000000
## 5813   2001.2 2001-04       18 0.0357142857
## 5814   2001.2 2001-04       19 0.0178571429
## 5815   2001.2 2001-04       20 0.0000000000
## 5816   2001.2 2001-04       21 0.0000000000
## 5817   2001.2 2001-04       22 0.0000000000
## 5818   2001.2 2001-04       23 0.0178571429
## 5819   2001.2 2001-04       24 0.0178571429
## 5820   2001.2 2001-04       25 0.0000000000
## 5821   2001.2 2001-04       26 0.0000000000
## 5822   2001.2 2001-04       27 0.0357142857
## 5823   2001.2 2001-04       28 0.0000000000
## 5824   2001.2 2001-04       29 0.0357142857
## 5825   2001.2 2001-04       30 0.0178571429
## 5826   2001.2 2001-04       31 0.0178571429
## 5827   2001.2 2001-04       32 0.0000000000
## 5828   2001.2 2001-04       33 0.0000000000
## 5829   2001.2 2001-04       34 0.0178571429
## 5830   2001.2 2001-04       35 0.0000000000
## 5831   2001.2 2001-04       36 0.0000000000
## 5832   2001.2 2001-04       37 0.0714285714
## 5833   2001.2 2001-04       38 0.0178571429
## 5834   2001.2 2001-04       39 0.0178571429
## 5835   2001.2 2001-04       40 0.0357142857
## 5836   2001.2 2001-04       41 0.0535714286
## 5837   2001.2 2001-04       42 0.0535714286
## 5838   2001.2 2001-04       43 0.0357142857
## 5839   2001.2 2001-04       44 0.0892857143
## 5840   2001.2 2001-04       45 0.0000000000
## 5841   2001.2 2001-04       46 0.1071428571
## 5842   2001.2 2001-04       47 0.1071428571
## 5843   2001.2 2001-04       48 0.0357142857
## 5844   2001.2 2001-04       49 0.0357142857
## 5845   2001.2 2001-04       50 0.0178571429
## 5846   2001.2 2001-04       51 0.0000000000
## 5847   2001.2 2001-04       52 0.0000000000
## 5848   2001.2 2001-04       59 0.0000000000
## 5849   2001.2 2001-04       56 0.0000000000
## 5850   2001.2 2001-04       53 0.0000000000
## 5851   2001.2 2001-04       60 0.0000000000
## 5852   2001.2 2001-04       57 0.0000000000
## 5853   2001.2 2001-04       54 0.0000000000
## 5854   2001.2 2001-04       61 0.0000000000
## 5855   2001.2 2001-04       58 0.0357142857
## 5856   2001.2 2001-04       55 0.0000000000
## 5857   2001.2 2001-06        1 0.0169491525
## 5858   2001.2 2001-06        2 0.0000000000
## 5859   2001.2 2001-06        3 0.0000000000
## 5860   2001.2 2001-06        4 0.0000000000
## 5861   2001.2 2001-06        5 0.0000000000
## 5862   2001.2 2001-06        6 0.0000000000
## 5863   2001.2 2001-06        7 0.0338983051
## 5864   2001.2 2001-06        8 0.0000000000
## 5865   2001.2 2001-06        9 0.0169491525
## 5866   2001.2 2001-06       10 0.0000000000
## 5867   2001.2 2001-06       11 0.0000000000
## 5868   2001.2 2001-06       12 0.0000000000
## 5869   2001.2 2001-06       13 0.0338983051
## 5870   2001.2 2001-06       14 0.0000000000
## 5871   2001.2 2001-06       15 0.0000000000
## 5872   2001.2 2001-06       16 0.0508474576
## 5873   2001.2 2001-06       17 0.0000000000
## 5874   2001.2 2001-06       18 0.0000000000
## 5875   2001.2 2001-06       19 0.0169491525
## 5876   2001.2 2001-06       20 0.0000000000
## 5877   2001.2 2001-06       21 0.0000000000
## 5878   2001.2 2001-06       22 0.0000000000
## 5879   2001.2 2001-06       23 0.0000000000
## 5880   2001.2 2001-06       24 0.0169491525
## 5881   2001.2 2001-06       25 0.0169491525
## 5882   2001.2 2001-06       26 0.0000000000
## 5883   2001.2 2001-06       27 0.0000000000
## 5884   2001.2 2001-06       28 0.0000000000
## 5885   2001.2 2001-06       29 0.0338983051
## 5886   2001.2 2001-06       30 0.0169491525
## 5887   2001.2 2001-06       31 0.0000000000
## 5888   2001.2 2001-06       32 0.0000000000
## 5889   2001.2 2001-06       33 0.2542372881
## 5890   2001.2 2001-06       34 0.0169491525
## 5891   2001.2 2001-06       35 0.0508474576
## 5892   2001.2 2001-06       36 0.0338983051
## 5893   2001.2 2001-06       37 0.0169491525
## 5894   2001.2 2001-06       38 0.0000000000
## 5895   2001.2 2001-06       39 0.0000000000
## 5896   2001.2 2001-06       40 0.1525423729
## 5897   2001.2 2001-06       41 0.1355932203
## 5898   2001.2 2001-06       42 0.0508474576
## 5899   2001.2 2001-06       43 0.0338983051
## 5900   2001.2 2001-06       44 0.0000000000
## 5901   2001.2 2001-06       45 0.0000000000
## 5902   2001.2 2001-06       46 0.0000000000
## 5903   2001.2 2001-06       47 0.0000000000
## 5904   2001.2 2001-06       48 0.0000000000
## 5905   2001.2 2001-06       49 0.0000000000
## 5906   2001.2 2001-06       50 0.0000000000
## 5907   2001.2 2001-06       51 0.0000000000
## 5908   2001.2 2001-06       52 0.0000000000
## 5909   2001.2 2001-06       59 0.0000000000
## 5910   2001.2 2001-06       53 0.0000000000
## 5911   2001.2 2001-06       60 0.0000000000
## 5912   2001.2 2001-06       54 0.0000000000
## 5913   2001.2 2001-06       61 0.0000000000
## 5914   2001.2 2001-06       55 0.0000000000
## 5915   2001.2 2001-06       58 0.0000000000
## 5916   2001.2 2001-06       57 0.0000000000
## 5917   2001.2 2001-06       56 0.0000000000
## 5918   2001.4 2001-11        1 0.0007272727
## 5919   2001.4 2001-11        2 0.0000000000
## 5920   2001.4 2001-11        3 0.0000000000
## 5921   2001.4 2001-11        4 0.0021818182
## 5922   2001.4 2001-11        5 0.0007272727
## 5923   2001.4 2001-11        6 0.0000000000
## 5924   2001.4 2001-11        7 0.0000000000
## 5925   2001.4 2001-11        8 0.0000000000
## 5926   2001.4 2001-11        9 0.0000000000
## 5927   2001.4 2001-11       10 0.0021818182
## 5928   2001.4 2001-11       11 0.0007272727
## 5929   2001.4 2001-11       12 0.0007272727
## 5930   2001.4 2001-11       13 0.0021818182
## 5931   2001.4 2001-11       14 0.0007272727
## 5932   2001.4 2001-11       15 0.0007272727
## 5933   2001.4 2001-11       16 0.0014545455
## 5934   2001.4 2001-11       17 0.0036363636
## 5935   2001.4 2001-11       18 0.0000000000
## 5936   2001.4 2001-11       19 0.0007272727
## 5937   2001.4 2001-11       20 0.0007272727
## 5938   2001.4 2001-11       21 0.0072727273
## 5939   2001.4 2001-11       22 0.0036363636
## 5940   2001.4 2001-11       23 0.0007272727
## 5941   2001.4 2001-11       24 0.0014545455
## 5942   2001.4 2001-11       25 0.0029090909
## 5943   2001.4 2001-11       26 0.0050909091
## 5944   2001.4 2001-11       27 0.0050909091
## 5945   2001.4 2001-11       28 0.0029090909
## 5946   2001.4 2001-11       29 0.0058181818
## 5947   2001.4 2001-11       30 0.0036363636
## 5948   2001.4 2001-11       31 0.0043636364
## 5949   2001.4 2001-11       32 0.0036363636
## 5950   2001.4 2001-11       33 0.0072727273
## 5951   2001.4 2001-11       34 0.0021818182
## 5952   2001.4 2001-11       35 0.0152727273
## 5953   2001.4 2001-11       36 0.0123636364
## 5954   2001.4 2001-11       37 0.0065454545
## 5955   2001.4 2001-11       38 0.0130909091
## 5956   2001.4 2001-11       39 0.0167272727
## 5957   2001.4 2001-11       40 0.0130909091
## 5958   2001.4 2001-11       41 0.0509090909
## 5959   2001.4 2001-11       42 0.0094545455
## 5960   2001.4 2001-11       43 0.0094545455
## 5961   2001.4 2001-11       44 0.0196363636
## 5962   2001.4 2001-11       45 0.0167272727
## 5963   2001.4 2001-11       46 0.0487272727
## 5964   2001.4 2001-11       47 0.0116363636
## 5965   2001.4 2001-11       48 0.0370909091
## 5966   2001.4 2001-11       49 0.0196363636
## 5967   2001.4 2001-11       50 0.0436363636
## 5968   2001.4 2001-11       57 0.0327272727
## 5969   2001.4 2001-11       51 0.0327272727
## 5970   2001.4 2001-11       58 0.0749090909
## 5971   2001.4 2001-11       52 0.0261818182
## 5972   2001.4 2001-11       59 0.0734545455
## 5973   2001.4 2001-11       56 0.0690909091
## 5974   2001.4 2001-11       53 0.0494545455
## 5975   2001.4 2001-11       60 0.0458181818
## 5976   2001.4 2001-11       54 0.0741818182
## 5977   2001.4 2001-11       61 0.0130909091
## 5978   2001.4 2001-11       55 0.0909090909
## 5979   2002.2 2002-04        1 0.0057142857
## 5980   2002.2 2002-04        2 0.0000000000
## 5981   2002.2 2002-04        3 0.0000000000
## 5982   2002.2 2002-04        4 0.0000000000
## 5983   2002.2 2002-04        5 0.0000000000
## 5984   2002.2 2002-04        6 0.0171428571
## 5985   2002.2 2002-04        7 0.0000000000
## 5986   2002.2 2002-04        8 0.0114285714
## 5987   2002.2 2002-04        9 0.0000000000
## 5988   2002.2 2002-04       10 0.0000000000
## 5989   2002.2 2002-04       11 0.0000000000
## 5990   2002.2 2002-04       12 0.0057142857
## 5991   2002.2 2002-04       13 0.0000000000
## 5992   2002.2 2002-04       14 0.0000000000
## 5993   2002.2 2002-04       15 0.0000000000
## 5994   2002.2 2002-04       16 0.0000000000
## 5995   2002.2 2002-04       17 0.0000000000
## 5996   2002.2 2002-04       18 0.0000000000
## 5997   2002.2 2002-04       19 0.0000000000
## 5998   2002.2 2002-04       20 0.0000000000
## 5999   2002.2 2002-04       21 0.0000000000
## 6000   2002.2 2002-04       22 0.0057142857
## 6001   2002.2 2002-04       23 0.0000000000
## 6002   2002.2 2002-04       24 0.0057142857
## 6003   2002.2 2002-04       25 0.0171428571
## 6004   2002.2 2002-04       26 0.0114285714
## 6005   2002.2 2002-04       27 0.0057142857
## 6006   2002.2 2002-04       28 0.0057142857
## 6007   2002.2 2002-04       29 0.0171428571
## 6008   2002.2 2002-04       30 0.0057142857
## 6009   2002.2 2002-04       31 0.0114285714
## 6010   2002.2 2002-04       32 0.0000000000
## 6011   2002.2 2002-04       33 0.0000000000
## 6012   2002.2 2002-04       34 0.0342857143
## 6013   2002.2 2002-04       35 0.0000000000
## 6014   2002.2 2002-04       36 0.0228571429
## 6015   2002.2 2002-04       37 0.0171428571
## 6016   2002.2 2002-04       38 0.0171428571
## 6017   2002.2 2002-04       39 0.0285714286
## 6018   2002.2 2002-04       40 0.0057142857
## 6019   2002.2 2002-04       41 0.0171428571
## 6020   2002.2 2002-04       42 0.0171428571
## 6021   2002.2 2002-04       43 0.0171428571
## 6022   2002.2 2002-04       44 0.0571428571
## 6023   2002.2 2002-04       45 0.0514285714
## 6024   2002.2 2002-04       46 0.0514285714
## 6025   2002.2 2002-04       47 0.0171428571
## 6026   2002.2 2002-04       48 0.0057142857
## 6027   2002.2 2002-04       49 0.0285714286
## 6028   2002.2 2002-04       50 0.0171428571
## 6029   2002.2 2002-04       51 0.0685714286
## 6030   2002.2 2002-04       52 0.0514285714
## 6031   2002.2 2002-04       53 0.0285714286
## 6032   2002.2 2002-04       55 0.0228571429
## 6033   2002.2 2002-04       54 0.0285714286
## 6034   2002.2 2002-04       56 0.0171428571
## 6035   2002.2 2002-04       57 0.0457142857
## 6036   2002.2 2002-04       60 0.0342857143
## 6037   2002.2 2002-04       58 0.0171428571
## 6038   2002.2 2002-04       61 0.0971428571
## 6039   2002.2 2002-04       59 0.0571428571
## 6040   2001.1 2001-03        1 0.0081967213
## 6041   2001.1 2001-03        2 0.0000000000
## 6042   2001.1 2001-03        3 0.0000000000
## 6043   2001.1 2001-03        4 0.0000000000
## 6044   2001.1 2001-03        5 0.0000000000
## 6045   2001.1 2001-03        6 0.0000000000
## 6046   2001.1 2001-03        7 0.0000000000
## 6047   2001.1 2001-03        8 0.0000000000
## 6048   2001.1 2001-03        9 0.0000000000
## 6049   2001.1 2001-03       10 0.0000000000
## 6050   2001.1 2001-03       11 0.0000000000
## 6051   2001.1 2001-03       12 0.0081967213
## 6052   2001.1 2001-03       13 0.0000000000
## 6053   2001.1 2001-03       14 0.0000000000
## 6054   2001.1 2001-03       15 0.0000000000
## 6055   2001.1 2001-03       16 0.0000000000
## 6056   2001.1 2001-03       17 0.0000000000
## 6057   2001.1 2001-03       18 0.0000000000
## 6058   2001.1 2001-03       19 0.0655737705
## 6059   2001.1 2001-03       20 0.0000000000
## 6060   2001.1 2001-03       21 0.0081967213
## 6061   2001.1 2001-03       22 0.0000000000
## 6062   2001.1 2001-03       23 0.0000000000
## 6063   2001.1 2001-03       24 0.0000000000
## 6064   2001.1 2001-03       25 0.0000000000
## 6065   2001.1 2001-03       26 0.0081967213
## 6066   2001.1 2001-03       27 0.0000000000
## 6067   2001.1 2001-03       28 0.0000000000
## 6068   2001.1 2001-03       29 0.0163934426
## 6069   2001.1 2001-03       30 0.0081967213
## 6070   2001.1 2001-03       31 0.0000000000
## 6071   2001.1 2001-03       32 0.0000000000
## 6072   2001.1 2001-03       33 0.0000000000
## 6073   2001.1 2001-03       34 0.0000000000
## 6074   2001.1 2001-03       35 0.0245901639
## 6075   2001.1 2001-03       36 0.0000000000
## 6076   2001.1 2001-03       37 0.0000000000
## 6077   2001.1 2001-03       38 0.0163934426
## 6078   2001.1 2001-03       39 0.0327868852
## 6079   2001.1 2001-03       40 0.0327868852
## 6080   2001.1 2001-03       41 0.0163934426
## 6081   2001.1 2001-03       42 0.0163934426
## 6082   2001.1 2001-03       43 0.0245901639
## 6083   2001.1 2001-03       44 0.0491803279
## 6084   2001.1 2001-03       45 0.0081967213
## 6085   2001.1 2001-03       46 0.0000000000
## 6086   2001.1 2001-03       47 0.0081967213
## 6087   2001.1 2001-03       48 0.0081967213
## 6088   2001.1 2001-03       49 0.0163934426
## 6089   2001.1 2001-03       50 0.1475409836
## 6090   2001.1 2001-03       51 0.0491803279
## 6091   2001.1 2001-03       52 0.0409836066
## 6092   2001.1 2001-03       56 0.0573770492
## 6093   2001.1 2001-03       53 0.0327868852
## 6094   2001.1 2001-03       57 0.0491803279
## 6095   2001.1 2001-03       54 0.0163934426
## 6096   2001.1 2001-03       58 0.0901639344
## 6097   2001.1 2001-03       55 0.0163934426
## 6098   2001.1 2001-03       59 0.0655737705
## 6099   2001.1 2001-03       60 0.0163934426
## 6100   2001.1 2001-03       61 0.0409836066
## 6101   2001.3 2001-09        1 0.0338983051
## 6102   2001.3 2001-09        2 0.0000000000
## 6103   2001.3 2001-09        3 0.0000000000
## 6104   2001.3 2001-09        4 0.0000000000
## 6105   2001.3 2001-09        5 0.0000000000
## 6106   2001.3 2001-09        6 0.0338983051
## 6107   2001.3 2001-09        7 0.0000000000
## 6108   2001.3 2001-09        8 0.0000000000
## 6109   2001.3 2001-09        9 0.0000000000
## 6110   2001.3 2001-09       10 0.0000000000
## 6111   2001.3 2001-09       11 0.0000000000
## 6112   2001.3 2001-09       21 0.0000000000
## 6113   2001.3 2001-09       12 0.0000000000
## 6114   2001.3 2001-09       22 0.0338983051
## 6115   2001.3 2001-09       13 0.0169491525
## 6116   2001.3 2001-09       23 0.0338983051
## 6117   2001.3 2001-09       14 0.0000000000
## 6118   2001.3 2001-09       24 0.0000000000
## 6119   2001.3 2001-09       15 0.0169491525
## 6120   2001.3 2001-09       25 0.0000000000
## 6121   2001.3 2001-09       16 0.0000000000
## 6122   2001.3 2001-09       26 0.0000000000
## 6123   2001.3 2001-09       17 0.0000000000
## 6124   2001.3 2001-09       27 0.0000000000
## 6125   2001.3 2001-09       18 0.0169491525
## 6126   2001.3 2001-09       28 0.0338983051
## 6127   2001.3 2001-09       19 0.0000000000
## 6128   2001.3 2001-09       29 0.0000000000
## 6129   2001.3 2001-09       20 0.0000000000
## 6130   2001.3 2001-09       30 0.0000000000
## 6131   2001.3 2001-09       31 0.0000000000
## 6132   2001.3 2001-09       32 0.0000000000
## 6133   2001.3 2001-09       33 0.0000000000
## 6134   2001.3 2001-09       34 0.0000000000
## 6135   2001.3 2001-09       35 0.0000000000
## 6136   2001.3 2001-09       36 0.0338983051
## 6137   2001.3 2001-09       37 0.0169491525
## 6138   2001.3 2001-09       38 0.0000000000
## 6139   2001.3 2001-09       39 0.0508474576
## 6140   2001.3 2001-09       40 0.0000000000
## 6141   2001.3 2001-09       41 0.0338983051
## 6142   2001.3 2001-09       42 0.0000000000
## 6143   2001.3 2001-09       43 0.0000000000
## 6144   2001.3 2001-09       44 0.0508474576
## 6145   2001.3 2001-09       45 0.0169491525
## 6146   2001.3 2001-09       46 0.0847457627
## 6147   2001.3 2001-09       47 0.0169491525
## 6148   2001.3 2001-09       48 0.0000000000
## 6149   2001.3 2001-09       49 0.0338983051
## 6150   2001.3 2001-09       50 0.0508474576
## 6151   2001.3 2001-09       51 0.0000000000
## 6152   2001.3 2001-09       52 0.0338983051
## 6153   2001.3 2001-09       53 0.0338983051
## 6154   2001.3 2001-09       54 0.0169491525
## 6155   2001.3 2001-09       55 0.0000000000
## 6156   2001.3 2001-09       56 0.0000000000
## 6157   2001.3 2001-09       57 0.0000000000
## 6158   2001.3 2001-09       58 0.1694915254
## 6159   2001.3 2001-09       59 0.0677966102
## 6160   2001.3 2001-09       60 0.0508474576
## 6161   2001.3 2001-09       61 0.0169491525
## 6162   2002.1 2002-02        1 0.0031347962
## 6163   2002.1 2002-02        2 0.0000000000
## 6164   2002.1 2002-02        3 0.0062695925
## 6165   2002.1 2002-02        4 0.0000000000
## 6166   2002.1 2002-02        5 0.0000000000
## 6167   2002.1 2002-02        6 0.0000000000
## 6168   2002.1 2002-02        7 0.0000000000
## 6169   2002.1 2002-02        8 0.0000000000
## 6170   2002.1 2002-02        9 0.0094043887
## 6171   2002.1 2002-02       10 0.0000000000
## 6172   2002.1 2002-02       11 0.0000000000
## 6173   2002.1 2002-02       12 0.0031347962
## 6174   2002.1 2002-02       13 0.0000000000
## 6175   2002.1 2002-02       14 0.0000000000
## 6176   2002.1 2002-02       15 0.0000000000
## 6177   2002.1 2002-02       16 0.0031347962
## 6178   2002.1 2002-02       17 0.0000000000
## 6179   2002.1 2002-02       18 0.0031347962
## 6180   2002.1 2002-02       19 0.0000000000
## 6181   2002.1 2002-02       20 0.0000000000
## 6182   2002.1 2002-02       21 0.0000000000
## 6183   2002.1 2002-02       22 0.0031347962
## 6184   2002.1 2002-02       23 0.0031347962
## 6185   2002.1 2002-02       24 0.0000000000
## 6186   2002.1 2002-02       25 0.0062695925
## 6187   2002.1 2002-02       26 0.0000000000
## 6188   2002.1 2002-02       27 0.0000000000
## 6189   2002.1 2002-02       28 0.0094043887
## 6190   2002.1 2002-02       29 0.0188087774
## 6191   2002.1 2002-02       30 0.0156739812
## 6192   2002.1 2002-02       31 0.0094043887
## 6193   2002.1 2002-02       32 0.0031347962
## 6194   2002.1 2002-02       33 0.0094043887
## 6195   2002.1 2002-02       34 0.0094043887
## 6196   2002.1 2002-02       35 0.0156739812
## 6197   2002.1 2002-02       36 0.0062695925
## 6198   2002.1 2002-02       37 0.0031347962
## 6199   2002.1 2002-02       38 0.0031347962
## 6200   2002.1 2002-02       39 0.0062695925
## 6201   2002.1 2002-02       40 0.0000000000
## 6202   2002.1 2002-02       41 0.0282131661
## 6203   2002.1 2002-02       42 0.0094043887
## 6204   2002.1 2002-02       43 0.0282131661
## 6205   2002.1 2002-02       44 0.0595611285
## 6206   2002.1 2002-02       45 0.0752351097
## 6207   2002.1 2002-02       46 0.0532915361
## 6208   2002.1 2002-02       47 0.0094043887
## 6209   2002.1 2002-02       48 0.0313479624
## 6210   2002.1 2002-02       49 0.0595611285
## 6211   2002.1 2002-02       50 0.0188087774
## 6212   2002.1 2002-02       51 0.0188087774
## 6213   2002.1 2002-02       52 0.0031347962
## 6214   2002.1 2002-02       53 0.0376175549
## 6215   2002.1 2002-02       54 0.0031347962
## 6216   2002.1 2002-02       55 0.0470219436
## 6217   2002.1 2002-02       59 0.0125391850
## 6218   2002.1 2002-02       58 0.0313479624
## 6219   2002.1 2002-02       56 0.0909090909
## 6220   2002.1 2002-02       61 0.0532915361
## 6221   2002.1 2002-02       60 0.0626959248
## 6222   2002.1 2002-02       57 0.1159874608
## 6223   2001.3 2001-08        1 0.2500000000
## 6224   2001.3 2001-08        2 0.0000000000
## 6225   2001.3 2001-08        3 0.0000000000
## 6226   2001.3 2001-08        4 0.0000000000
## 6227   2001.3 2001-08        5 0.0000000000
## 6228   2001.3 2001-08        6 0.0000000000
## 6229   2001.3 2001-08        7 0.2500000000
## 6230   2001.3 2001-08        8 0.0000000000
## 6231   2001.3 2001-08        9 0.0000000000
## 6232   2001.3 2001-08       10 0.0000000000
## 6233   2001.3 2001-08       11 0.0000000000
## 6234   2001.3 2001-08       12 0.2500000000
## 6235   2001.3 2001-08       13 0.2500000000
## 6236   2001.3 2001-08       14 0.0000000000
## 6237   2001.3 2001-08       15 0.0000000000
## 6238   2001.3 2001-08       16 0.0000000000
## 6239   2001.3 2001-08       17 0.0000000000
## 6240   2001.3 2001-08       18 0.0000000000
## 6241   2001.3 2001-08       19 0.0000000000
## 6242   2001.3 2001-08       20 0.0000000000
## 6243   2001.3 2001-08       21 0.0000000000
## 6244   2001.3 2001-08       22 0.0000000000
## 6245   2001.3 2001-08       23 0.0000000000
## 6246   2001.3 2001-08       24 0.0000000000
## 6247   2001.3 2001-08       25 0.0000000000
## 6248   2001.3 2001-08       26 0.0000000000
## 6249   2001.3 2001-08       27 0.0000000000
## 6250   2001.3 2001-08       28 0.0000000000
## 6251   2001.3 2001-08       29 0.0000000000
## 6252   2001.3 2001-08       30 0.0000000000
## 6253   2001.3 2001-08       31 0.0000000000
## 6254   2001.3 2001-08       32 0.0000000000
## 6255   2001.3 2001-08       33 0.0000000000
## 6256   2001.3 2001-08       34 0.0000000000
## 6257   2001.3 2001-08       35 0.0000000000
## 6258   2001.3 2001-08       36 0.0000000000
## 6259   2001.3 2001-08       37 0.0000000000
## 6260   2001.3 2001-08       38 0.0000000000
## 6261   2001.3 2001-08       39 0.0000000000
## 6262   2001.3 2001-08       40 0.0000000000
## 6263   2001.3 2001-08       41 0.0000000000
## 6264   2001.3 2001-08       42 0.0000000000
## 6265   2001.3 2001-08       43 0.0000000000
## 6266   2001.3 2001-08       44 0.0000000000
## 6267   2001.3 2001-08       45 0.0000000000
## 6268   2001.3 2001-08       46 0.0000000000
## 6269   2001.3 2001-08       47 0.0000000000
## 6270   2001.3 2001-08       48 0.0000000000
## 6271   2001.3 2001-08       49 0.0000000000
## 6272   2001.3 2001-08       50 0.0000000000
## 6273   2001.3 2001-08       60 0.0000000000
## 6274   2001.3 2001-08       51 0.0000000000
## 6275   2001.3 2001-08       61 0.0000000000
## 6276   2001.3 2001-08       52 0.0000000000
## 6277   2001.3 2001-08       59 0.0000000000
## 6278   2001.3 2001-08       53 0.0000000000
## 6279   2001.3 2001-08       54 0.0000000000
## 6280   2001.3 2001-08       55 0.0000000000
## 6281   2001.3 2001-08       56 0.0000000000
## 6282   2001.3 2001-08       58 0.0000000000
## 6283   2001.3 2001-08       57 0.0000000000
## 6284   2001.4 2001-10        1 0.0054347826
## 6285   2001.4 2001-10        2 0.0000000000
## 6286   2001.4 2001-10        3 0.0000000000
## 6287   2001.4 2001-10        4 0.0000000000
## 6288   2001.4 2001-10        5 0.0054347826
## 6289   2001.4 2001-10        6 0.0108695652
## 6290   2001.4 2001-10        7 0.0000000000
## 6291   2001.4 2001-10        8 0.0000000000
## 6292   2001.4 2001-10        9 0.0000000000
## 6293   2001.4 2001-10       10 0.0000000000
## 6294   2001.4 2001-10       11 0.0000000000
## 6295   2001.4 2001-10       12 0.0000000000
## 6296   2001.4 2001-10       13 0.0000000000
## 6297   2001.4 2001-10       14 0.0000000000
## 6298   2001.4 2001-10       15 0.0000000000
## 6299   2001.4 2001-10       16 0.0000000000
## 6300   2001.4 2001-10       17 0.0000000000
## 6301   2001.4 2001-10       18 0.0000000000
## 6302   2001.4 2001-10       19 0.0000000000
## 6303   2001.4 2001-10       20 0.0108695652
## 6304   2001.4 2001-10       21 0.0108695652
## 6305   2001.4 2001-10       22 0.0000000000
## 6306   2001.4 2001-10       23 0.0489130435
## 6307   2001.4 2001-10       24 0.0108695652
## 6308   2001.4 2001-10       25 0.0054347826
## 6309   2001.4 2001-10       26 0.0000000000
## 6310   2001.4 2001-10       27 0.0108695652
## 6311   2001.4 2001-10       28 0.0163043478
## 6312   2001.4 2001-10       29 0.0217391304
## 6313   2001.4 2001-10       30 0.0108695652
## 6314   2001.4 2001-10       31 0.0000000000
## 6315   2001.4 2001-10       32 0.0054347826
## 6316   2001.4 2001-10       33 0.0380434783
## 6317   2001.4 2001-10       34 0.0000000000
## 6318   2001.4 2001-10       35 0.0108695652
## 6319   2001.4 2001-10       36 0.0271739130
## 6320   2001.4 2001-10       37 0.0271739130
## 6321   2001.4 2001-10       38 0.0217391304
## 6322   2001.4 2001-10       39 0.0108695652
## 6323   2001.4 2001-10       40 0.0108695652
## 6324   2001.4 2001-10       41 0.0326086957
## 6325   2001.4 2001-10       42 0.0108695652
## 6326   2001.4 2001-10       43 0.0326086957
## 6327   2001.4 2001-10       44 0.0271739130
## 6328   2001.4 2001-10       45 0.0326086957
## 6329   2001.4 2001-10       49 0.0163043478
## 6330   2001.4 2001-10       46 0.0217391304
## 6331   2001.4 2001-10       50 0.0108695652
## 6332   2001.4 2001-10       47 0.0326086957
## 6333   2001.4 2001-10       51 0.0543478261
## 6334   2001.4 2001-10       48 0.0597826087
## 6335   2001.4 2001-10       52 0.0000000000
## 6336   2001.4 2001-10       53 0.0815217391
## 6337   2001.4 2001-10       54 0.0108695652
## 6338   2001.4 2001-10       55 0.0326086957
## 6339   2001.4 2001-10       56 0.0380434783
## 6340   2001.4 2001-10       57 0.0434782609
## 6341   2001.4 2001-10       58 0.0380434783
## 6342   2001.4 2001-10       59 0.0000000000
## 6343   2001.4 2001-10       60 0.0543478261
## 6344   2001.4 2001-10       61 0.0489130435
## 6345   2002.1 2002-02        1 0.0476190476
## 6346   2002.1 2002-02        2 0.0000000000
## 6347   2002.1 2002-02        3 0.0000000000
## 6348   2002.1 2002-02        4 0.0000000000
## 6349   2002.1 2002-02        5 0.0000000000
## 6350   2002.1 2002-02        6 0.0000000000
## 6351   2002.1 2002-02        7 0.0000000000
## 6352   2002.1 2002-02        8 0.0000000000
## 6353   2002.1 2002-02        9 0.0000000000
## 6354   2002.1 2002-02       10 0.0000000000
## 6355   2002.1 2002-02       11 0.0000000000
## 6356   2002.1 2002-02       12 0.0000000000
## 6357   2002.1 2002-02       13 0.0000000000
## 6358   2002.1 2002-02       14 0.0000000000
## 6359   2002.1 2002-02       15 0.0000000000
## 6360   2002.1 2002-02       16 0.0000000000
## 6361   2002.1 2002-02       17 0.0000000000
## 6362   2002.1 2002-02       18 0.0000000000
## 6363   2002.1 2002-02       19 0.0476190476
## 6364   2002.1 2002-02       20 0.0000000000
## 6365   2002.1 2002-02       21 0.0000000000
## 6366   2002.1 2002-02       22 0.0000000000
## 6367   2002.1 2002-02       23 0.0000000000
## 6368   2002.1 2002-02       24 0.0000000000
## 6369   2002.1 2002-02       25 0.0000000000
## 6370   2002.1 2002-02       26 0.0000000000
## 6371   2002.1 2002-02       27 0.0000000000
## 6372   2002.1 2002-02       28 0.0000000000
## 6373   2002.1 2002-02       29 0.0000000000
## 6374   2002.1 2002-02       30 0.0000000000
## 6375   2002.1 2002-02       31 0.0476190476
## 6376   2002.1 2002-02       32 0.0000000000
## 6377   2002.1 2002-02       33 0.0000000000
## 6378   2002.1 2002-02       34 0.0000000000
## 6379   2002.1 2002-02       35 0.0000000000
## 6380   2002.1 2002-02       36 0.0000000000
## 6381   2002.1 2002-02       37 0.0476190476
## 6382   2002.1 2002-02       38 0.0000000000
## 6383   2002.1 2002-02       39 0.0000000000
## 6384   2002.1 2002-02       40 0.0952380952
## 6385   2002.1 2002-02       41 0.0000000000
## 6386   2002.1 2002-02       42 0.0000000000
## 6387   2002.1 2002-02       43 0.0000000000
## 6388   2002.1 2002-02       44 0.0476190476
## 6389   2002.1 2002-02       45 0.0000000000
## 6390   2002.1 2002-02       46 0.2380952381
## 6391   2002.1 2002-02       47 0.0000000000
## 6392   2002.1 2002-02       48 0.0476190476
## 6393   2002.1 2002-02       49 0.0952380952
## 6394   2002.1 2002-02       50 0.0000000000
## 6395   2002.1 2002-02       51 0.0000000000
## 6396   2002.1 2002-02       52 0.1904761905
## 6397   2002.1 2002-02       56 0.0000000000
## 6398   2002.1 2002-02       53 0.0476190476
## 6399   2002.1 2002-02       57 0.0000000000
## 6400   2002.1 2002-02       54 0.0000000000
## 6401   2002.1 2002-02       58 0.0000000000
## 6402   2002.1 2002-02       55 0.0000000000
## 6403   2002.1 2002-02       59 0.0000000000
## 6404   2002.1 2002-02       60 0.0000000000
## 6405   2002.1 2002-02       61 0.0476190476
## 6406   2001.3 2001-08       50 0.0700000000
## 6407   2001.3 2001-08       47 0.0300000000
## 6408   2001.3 2001-08       31 0.0100000000
## 6409   2001.3 2001-08       29 0.0200000000
## 6410   2001.3 2001-08        9 0.0000000000
## 6411   2001.3 2001-08       40 0.0300000000
## 6412   2001.3 2001-08       59 0.0000000000
## 6413   2001.3 2001-08        8 0.0000000000
## 6414   2001.3 2001-08       44 0.0200000000
## 6415   2001.3 2001-08       22 0.0000000000
## 6416   2001.3 2001-08       39 0.0700000000
## 6417   2001.3 2001-08        5 0.0000000000
## 6418   2001.3 2001-08       24 0.0000000000
## 6419   2001.3 2001-08       57 0.0300000000
## 6420   2001.3 2001-08       34 0.0100000000
## 6421   2001.3 2001-08       12 0.0100000000
## 6422   2001.3 2001-08       20 0.0000000000
## 6423   2001.3 2001-08       10 0.0000000000
## 6424   2001.3 2001-08       55 0.0300000000
## 6425   2001.3 2001-08       48 0.0400000000
## 6426   2001.3 2001-08       51 0.0200000000
## 6427   2001.3 2001-08       43 0.0500000000
## 6428   2001.3 2001-08       11 0.0000000000
## 6429   2001.3 2001-08       28 0.0200000000
## 6430   2001.3 2001-08       37 0.0200000000
## 6431   2001.3 2001-08       45 0.0300000000
## 6432   2001.3 2001-08       41 0.0000000000
## 6433   2001.3 2001-08       30 0.0000000000
## 6434   2001.3 2001-08       38 0.0000000000
## 6435   2001.3 2001-08        3 0.0000000000
## 6436   2001.3 2001-08       32 0.0200000000
## 6437   2001.3 2001-08       42 0.0000000000
## 6438   2001.3 2001-08       60 0.0600000000
## 6439   2001.3 2001-08       52 0.0500000000
## 6440   2001.3 2001-08       16 0.0100000000
## 6441   2001.3 2001-08       35 0.0100000000
## 6442   2001.3 2001-08       17 0.0000000000
## 6443   2001.3 2001-08       14 0.0300000000
## 6444   2001.3 2001-08       18 0.0000000000
## 6445   2001.3 2001-08       36 0.0300000000
## 6446   2001.3 2001-08        2 0.0000000000
## 6447   2001.3 2001-08       53 0.0800000000
## 6448   2001.3 2001-08        1 0.0100000000
## 6449   2001.3 2001-08       23 0.0100000000
## 6450   2001.3 2001-08        7 0.0200000000
## 6451   2001.3 2001-08       58 0.0100000000
## 6452   2001.3 2001-08       15 0.0100000000
## 6453   2001.3 2001-08       13 0.0000000000
## 6454   2001.3 2001-08        4 0.0000000000
## 6455   2001.3 2001-08       33 0.0000000000
## 6456   2001.3 2001-08       61 0.0000000000
## 6457   2001.3 2001-08       21 0.0000000000
## 6458   2001.3 2001-08       26 0.0000000000
## 6459   2001.3 2001-08        6 0.0000000000
## 6460   2001.3 2001-08       49 0.0100000000
## 6461   2001.3 2001-08       54 0.0600000000
## 6462   2001.3 2001-08       46 0.0400000000
## 6463   2001.3 2001-08       19 0.0000000000
## 6464   2001.3 2001-08       25 0.0000000000
## 6465   2001.3 2001-08       56 0.0300000000
## 6466   2001.3 2001-08       27 0.0000000000
## 6467   2001.3 2001-08        1 0.0033333333
## 6468   2001.3 2001-08        2 0.0000000000
## 6469   2001.3 2001-08        3 0.0000000000
## 6470   2001.3 2001-08        4 0.0000000000
## 6471   2001.3 2001-08        5 0.0033333333
## 6472   2001.3 2001-08        6 0.0000000000
## 6473   2001.3 2001-08        7 0.0016666667
## 6474   2001.3 2001-08        8 0.0000000000
## 6475   2001.3 2001-08        9 0.0000000000
## 6476   2001.3 2001-08       10 0.0000000000
## 6477   2001.3 2001-08       11 0.0016666667
## 6478   2001.3 2001-08       12 0.0050000000
## 6479   2001.3 2001-08       13 0.0033333333
## 6480   2001.3 2001-08       14 0.0016666667
## 6481   2001.3 2001-08       15 0.0066666667
## 6482   2001.3 2001-08       16 0.0066666667
## 6483   2001.3 2001-08       17 0.0000000000
## 6484   2001.3 2001-08       18 0.0033333333
## 6485   2001.3 2001-08       19 0.0000000000
## 6486   2001.3 2001-08       20 0.0033333333
## 6487   2001.3 2001-08       21 0.0000000000
## 6488   2001.3 2001-08       22 0.0000000000
## 6489   2001.3 2001-08       23 0.0066666667
## 6490   2001.3 2001-08       24 0.0066666667
## 6491   2001.3 2001-08       25 0.0300000000
## 6492   2001.3 2001-08       26 0.0100000000
## 6493   2001.3 2001-08       27 0.0066666667
## 6494   2001.3 2001-08       28 0.0000000000
## 6495   2001.3 2001-08       29 0.0066666667
## 6496   2001.3 2001-08       30 0.0133333333
## 6497   2001.3 2001-08       31 0.0050000000
## 6498   2001.3 2001-08       32 0.0183333333
## 6499   2001.3 2001-08       33 0.0066666667
## 6500   2001.3 2001-08       34 0.0150000000
## 6501   2001.3 2001-08       35 0.0083333333
## 6502   2001.3 2001-08       36 0.0216666667
## 6503   2001.3 2001-08       37 0.0083333333
## 6504   2001.3 2001-08       38 0.0066666667
## 6505   2001.3 2001-08       39 0.0100000000
## 6506   2001.3 2001-08       40 0.0133333333
## 6507   2001.3 2001-08       41 0.0066666667
## 6508   2001.3 2001-08       42 0.0200000000
## 6509   2001.3 2001-08       43 0.0066666667
## 6510   2001.3 2001-08       44 0.0083333333
## 6511   2001.3 2001-08       45 0.0150000000
## 6512   2001.3 2001-08       46 0.0116666667
## 6513   2001.3 2001-08       47 0.0200000000
## 6514   2001.3 2001-08       48 0.0133333333
## 6515   2001.3 2001-08       49 0.0250000000
## 6516   2001.3 2001-08       50 0.0416666667
## 6517   2001.3 2001-08       51 0.0416666667
## 6518   2001.3 2001-08       52 0.0400000000
## 6519   2001.3 2001-08       53 0.0216666667
## 6520   2001.3 2001-08       54 0.0550000000
## 6521   2001.3 2001-08       59 0.0466666667
## 6522   2001.3 2001-08       57 0.0733333333
## 6523   2001.3 2001-08       55 0.0416666667
## 6524   2001.3 2001-08       60 0.0716666667
## 6525   2001.3 2001-08       58 0.0483333333
## 6526   2001.3 2001-08       56 0.0950000000
## 6527   2001.3 2001-08       61 0.0633333333
## 6528   2001.4 2001-10        1 0.0056818182
## 6529   2001.4 2001-10        2 0.0113636364
## 6530   2001.4 2001-10        3 0.0227272727
## 6531   2001.4 2001-10        4 0.0000000000
## 6532   2001.4 2001-10        5 0.0056818182
## 6533   2001.4 2001-10        6 0.0000000000
## 6534   2001.4 2001-10        7 0.0056818182
## 6535   2001.4 2001-10        8 0.0000000000
## 6536   2001.4 2001-10        9 0.0000000000
## 6537   2001.4 2001-10       10 0.0056818182
## 6538   2001.4 2001-10       11 0.0000000000
## 6539   2001.4 2001-10       12 0.0000000000
## 6540   2001.4 2001-10       13 0.0000000000
## 6541   2001.4 2001-10       14 0.0227272727
## 6542   2001.4 2001-10       15 0.0000000000
## 6543   2001.4 2001-10       16 0.0000000000
## 6544   2001.4 2001-10       17 0.0113636364
## 6545   2001.4 2001-10       18 0.0170454545
## 6546   2001.4 2001-10       19 0.0000000000
## 6547   2001.4 2001-10       20 0.0000000000
## 6548   2001.4 2001-10       21 0.0000000000
## 6549   2001.4 2001-10       22 0.0000000000
## 6550   2001.4 2001-10       23 0.0000000000
## 6551   2001.4 2001-10       24 0.0113636364
## 6552   2001.4 2001-10       25 0.0000000000
## 6553   2001.4 2001-10       26 0.0000000000
## 6554   2001.4 2001-10       27 0.0113636364
## 6555   2001.4 2001-10       28 0.0113636364
## 6556   2001.4 2001-10       29 0.0000000000
## 6557   2001.4 2001-10       30 0.0056818182
## 6558   2001.4 2001-10       31 0.0056818182
## 6559   2001.4 2001-10       32 0.0000000000
## 6560   2001.4 2001-10       33 0.0284090909
## 6561   2001.4 2001-10       34 0.0284090909
## 6562   2001.4 2001-10       35 0.0170454545
## 6563   2001.4 2001-10       36 0.0056818182
## 6564   2001.4 2001-10       37 0.0397727273
## 6565   2001.4 2001-10       38 0.0340909091
## 6566   2001.4 2001-10       39 0.0056818182
## 6567   2001.4 2001-10       40 0.0511363636
## 6568   2001.4 2001-10       41 0.0568181818
## 6569   2001.4 2001-10       42 0.0340909091
## 6570   2001.4 2001-10       43 0.0397727273
## 6571   2001.4 2001-10       44 0.0056818182
## 6572   2001.4 2001-10       45 0.0170454545
## 6573   2001.4 2001-10       46 0.0284090909
## 6574   2001.4 2001-10       47 0.0397727273
## 6575   2001.4 2001-10       48 0.0170454545
## 6576   2001.4 2001-10       49 0.0227272727
## 6577   2001.4 2001-10       50 0.0000000000
## 6578   2001.4 2001-10       51 0.0397727273
## 6579   2001.4 2001-10       52 0.0397727273
## 6580   2001.4 2001-10       53 0.0340909091
## 6581   2001.4 2001-10       59 0.0397727273
## 6582   2001.4 2001-10       54 0.0340909091
## 6583   2001.4 2001-10       60 0.0056818182
## 6584   2001.4 2001-10       58 0.0227272727
## 6585   2001.4 2001-10       56 0.0113636364
## 6586   2001.4 2001-10       55 0.0568181818
## 6587   2001.4 2001-10       61 0.0454545455
## 6588   2001.4 2001-10       57 0.0454545455
## 6589   2001.4 2001-11        1 0.0449438202
## 6590   2001.4 2001-11       11 0.0000000000
## 6591   2001.4 2001-11        2 0.0000000000
## 6592   2001.4 2001-11       12 0.0000000000
## 6593   2001.4 2001-11        3 0.0000000000
## 6594   2001.4 2001-11       13 0.0112359551
## 6595   2001.4 2001-11        4 0.0112359551
## 6596   2001.4 2001-11       14 0.0000000000
## 6597   2001.4 2001-11        5 0.0112359551
## 6598   2001.4 2001-11       15 0.0112359551
## 6599   2001.4 2001-11        6 0.0000000000
## 6600   2001.4 2001-11       16 0.0561797753
## 6601   2001.4 2001-11        7 0.0112359551
## 6602   2001.4 2001-11       17 0.0000000000
## 6603   2001.4 2001-11        8 0.0000000000
## 6604   2001.4 2001-11       18 0.0337078652
## 6605   2001.4 2001-11        9 0.0000000000
## 6606   2001.4 2001-11       19 0.0000000000
## 6607   2001.4 2001-11       10 0.0000000000
## 6608   2001.4 2001-11       20 0.0674157303
## 6609   2001.4 2001-11       21 0.0112359551
## 6610   2001.4 2001-11       22 0.0000000000
## 6611   2001.4 2001-11       23 0.0000000000
## 6612   2001.4 2001-11       24 0.0000000000
## 6613   2001.4 2001-11       25 0.0112359551
## 6614   2001.4 2001-11       26 0.0112359551
## 6615   2001.4 2001-11       27 0.0224719101
## 6616   2001.4 2001-11       28 0.0000000000
## 6617   2001.4 2001-11       29 0.0000000000
## 6618   2001.4 2001-11       30 0.0000000000
## 6619   2001.4 2001-11       31 0.0224719101
## 6620   2001.4 2001-11       32 0.0000000000
## 6621   2001.4 2001-11       33 0.0000000000
## 6622   2001.4 2001-11       34 0.0112359551
## 6623   2001.4 2001-11       35 0.0000000000
## 6624   2001.4 2001-11       36 0.0000000000
## 6625   2001.4 2001-11       37 0.0224719101
## 6626   2001.4 2001-11       38 0.0112359551
## 6627   2001.4 2001-11       39 0.0000000000
## 6628   2001.4 2001-11       40 0.0224719101
## 6629   2001.4 2001-11       41 0.0000000000
## 6630   2001.4 2001-11       42 0.0000000000
## 6631   2001.4 2001-11       43 0.0112359551
## 6632   2001.4 2001-11       44 0.0000000000
## 6633   2001.4 2001-11       45 0.0337078652
## 6634   2001.4 2001-11       46 0.0449438202
## 6635   2001.4 2001-11       47 0.0000000000
## 6636   2001.4 2001-11       48 0.0112359551
## 6637   2001.4 2001-11       49 0.0224719101
## 6638   2001.4 2001-11       50 0.0000000000
## 6639   2001.4 2001-11       51 0.0112359551
## 6640   2001.4 2001-11       52 0.0224719101
## 6641   2001.4 2001-11       53 0.1011235955
## 6642   2001.4 2001-11       54 0.0112359551
## 6643   2001.4 2001-11       55 0.0000000000
## 6644   2001.4 2001-11       56 0.0112359551
## 6645   2001.4 2001-11       57 0.0224719101
## 6646   2001.4 2001-11       58 0.2022471910
## 6647   2001.4 2001-11       59 0.0337078652
## 6648   2001.4 2001-11       60 0.0449438202
## 6649   2001.4 2001-11       61 0.0112359551
## 6650   2002.1 2002-02       16 0.0012706480
## 6651   2002.1 2002-02        2 0.0000000000
## 6652   2002.1 2002-02       14 0.0012706480
## 6653   2002.1 2002-02       28 0.0012706480
## 6654   2002.1 2002-02       42 0.0165184244
## 6655   2002.1 2002-02       12 0.0012706480
## 6656   2002.1 2002-02       39 0.0050825921
## 6657   2002.1 2002-02       15 0.0000000000
## 6658   2002.1 2002-02       54 0.0038119441
## 6659   2002.1 2002-02       40 0.0139771283
## 6660   2002.1 2002-02       57 0.0635324015
## 6661   2002.1 2002-02       55 0.1143583227
## 6662   2002.1 2002-02        3 0.0000000000
## 6663   2002.1 2002-02        1 0.0012706480
## 6664   2002.1 2002-02       24 0.0000000000
## 6665   2002.1 2002-02       50 0.0533672173
## 6666   2002.1 2002-02       38 0.0063532402
## 6667   2002.1 2002-02       34 0.0279542567
## 6668   2002.1 2002-02       48 0.0508259212
## 6669   2002.1 2002-02       41 0.0076238882
## 6670   2002.1 2002-02       37 0.0012706480
## 6671   2002.1 2002-02       36 0.0101651842
## 6672   2002.1 2002-02       10 0.0000000000
## 6673   2002.1 2002-02       25 0.0050825921
## 6674   2002.1 2002-02       18 0.0012706480
## 6675   2002.1 2002-02       52 0.0292249047
## 6676   2002.1 2002-02       49 0.0292249047
## 6677   2002.1 2002-02       47 0.0457433291
## 6678   2002.1 2002-02       13 0.0000000000
## 6679   2002.1 2002-02        8 0.0012706480
## 6680   2002.1 2002-02       56 0.0355781449
## 6681   2002.1 2002-02       27 0.0025412961
## 6682   2002.1 2002-02       11 0.0000000000
## 6683   2002.1 2002-02       35 0.0076238882
## 6684   2002.1 2002-02       33 0.0114358323
## 6685   2002.1 2002-02       51 0.0317662008
## 6686   2002.1 2002-02       23 0.0038119441
## 6687   2002.1 2002-02       21 0.0038119441
## 6688   2002.1 2002-02       19 0.0012706480
## 6689   2002.1 2002-02       45 0.0139771283
## 6690   2002.1 2002-02       60 0.0876747141
## 6691   2002.1 2002-02       26 0.0012706480
## 6692   2002.1 2002-02       20 0.0012706480
## 6693   2002.1 2002-02       31 0.0152477764
## 6694   2002.1 2002-02       29 0.0050825921
## 6695   2002.1 2002-02       17 0.0152477764
## 6696   2002.1 2002-02       22 0.0000000000
## 6697   2002.1 2002-02        6 0.0000000000
## 6698   2002.1 2002-02        7 0.0000000000
## 6699   2002.1 2002-02        9 0.0000000000
## 6700   2002.1 2002-02       58 0.0508259212
## 6701   2002.1 2002-02       44 0.0292249047
## 6702   2002.1 2002-02       43 0.0343074968
## 6703   2002.1 2002-02       59 0.0432020330
## 6704   2002.1 2002-02        5 0.0000000000
## 6705   2002.1 2002-02       61 0.0406607370
## 6706   2002.1 2002-02       32 0.0038119441
## 6707   2002.1 2002-02       30 0.0012706480
## 6708   2002.1 2002-02        4 0.0000000000
## 6709   2002.1 2002-02       46 0.0343074968
## 6710   2002.1 2002-02       53 0.0317662008
## 6711   2001.3 2001-09        1 0.0500000000
## 6712   2001.3 2001-09        2 0.0000000000
## 6713   2001.3 2001-09        3 0.0000000000
## 6714   2001.3 2001-09        4 0.0000000000
## 6715   2001.3 2001-09        5 0.0000000000
## 6716   2001.3 2001-09        6 0.0500000000
## 6717   2001.3 2001-09        7 0.0000000000
## 6718   2001.3 2001-09        8 0.0000000000
## 6719   2001.3 2001-09        9 0.0000000000
## 6720   2001.3 2001-09       10 0.0000000000
## 6721   2001.3 2001-09       11 0.0000000000
## 6722   2001.3 2001-09       12 0.0000000000
## 6723   2001.3 2001-09       13 0.0000000000
## 6724   2001.3 2001-09       14 0.0000000000
## 6725   2001.3 2001-09       15 0.0000000000
## 6726   2001.3 2001-09       16 0.0000000000
## 6727   2001.3 2001-09       17 0.0000000000
## 6728   2001.3 2001-09       18 0.0000000000
## 6729   2001.3 2001-09       19 0.0000000000
## 6730   2001.3 2001-09       20 0.0000000000
## 6731   2001.3 2001-09       21 0.0000000000
## 6732   2001.3 2001-09       22 0.0500000000
## 6733   2001.3 2001-09       23 0.0000000000
## 6734   2001.3 2001-09       24 0.0000000000
## 6735   2001.3 2001-09       25 0.0000000000
## 6736   2001.3 2001-09       26 0.0000000000
## 6737   2001.3 2001-09       27 0.0000000000
## 6738   2001.3 2001-09       28 0.0000000000
## 6739   2001.3 2001-09       29 0.0000000000
## 6740   2001.3 2001-09       30 0.0000000000
## 6741   2001.3 2001-09       31 0.0000000000
## 6742   2001.3 2001-09       32 0.0000000000
## 6743   2001.3 2001-09       33 0.0000000000
## 6744   2001.3 2001-09       34 0.0000000000
## 6745   2001.3 2001-09       35 0.0500000000
## 6746   2001.3 2001-09       36 0.0000000000
## 6747   2001.3 2001-09       37 0.0500000000
## 6748   2001.3 2001-09       38 0.0500000000
## 6749   2001.3 2001-09       39 0.0000000000
## 6750   2001.3 2001-09       40 0.1000000000
## 6751   2001.3 2001-09       41 0.0000000000
## 6752   2001.3 2001-09       42 0.0500000000
## 6753   2001.3 2001-09       43 0.0000000000
## 6754   2001.3 2001-09       44 0.0000000000
## 6755   2001.3 2001-09       45 0.0000000000
## 6756   2001.3 2001-09       46 0.0000000000
## 6757   2001.3 2001-09       47 0.1000000000
## 6758   2001.3 2001-09       48 0.1500000000
## 6759   2001.3 2001-09       49 0.0500000000
## 6760   2001.3 2001-09       50 0.1000000000
## 6761   2001.3 2001-09       51 0.0500000000
## 6762   2001.3 2001-09       52 0.0000000000
## 6763   2001.3 2001-09       53 0.0000000000
## 6764   2001.3 2001-09       54 0.0000000000
## 6765   2001.3 2001-09       55 0.0000000000
## 6766   2001.3 2001-09       59 0.0000000000
## 6767   2001.3 2001-09       56 0.0500000000
## 6768   2001.3 2001-09       61 0.0000000000
## 6769   2001.3 2001-09       60 0.0500000000
## 6770   2001.3 2001-09       58 0.0000000000
## 6771   2001.3 2001-09       57 0.0000000000
## 6772   2002.1 2002-02        1 0.2500000000
## 6773   2002.1 2002-02        2 0.0000000000
## 6774   2002.1 2002-02        3 0.0000000000
## 6775   2002.1 2002-02        4 0.0000000000
## 6776   2002.1 2002-02        5 0.0000000000
## 6777   2002.1 2002-02        6 0.0000000000
## 6778   2002.1 2002-02        7 0.2500000000
## 6779   2002.1 2002-02        8 0.0000000000
## 6780   2002.1 2002-02        9 0.0000000000
## 6781   2002.1 2002-02       10 0.0000000000
## 6782   2002.1 2002-02       11 0.0000000000
## 6783   2002.1 2002-02       12 0.0000000000
## 6784   2002.1 2002-02       13 0.0000000000
## 6785   2002.1 2002-02       14 0.0000000000
## 6786   2002.1 2002-02       15 0.0000000000
## 6787   2002.1 2002-02       16 0.2500000000
## 6788   2002.1 2002-02       17 0.0000000000
## 6789   2002.1 2002-02       18 0.0000000000
## 6790   2002.1 2002-02       19 0.0000000000
## 6791   2002.1 2002-02       20 0.0000000000
## 6792   2002.1 2002-02       21 0.0000000000
## 6793   2002.1 2002-02       22 0.0000000000
## 6794   2002.1 2002-02       23 0.0000000000
## 6795   2002.1 2002-02       24 0.0000000000
## 6796   2002.1 2002-02       25 0.0000000000
## 6797   2002.1 2002-02       26 0.0000000000
## 6798   2002.1 2002-02       27 0.0000000000
## 6799   2002.1 2002-02       28 0.0000000000
## 6800   2002.1 2002-02       29 0.0000000000
## 6801   2002.1 2002-02       30 0.2500000000
## 6802   2002.1 2002-02       31 0.0000000000
## 6803   2002.1 2002-02       32 0.0000000000
## 6804   2002.1 2002-02       33 0.0000000000
## 6805   2002.1 2002-02       34 0.0000000000
## 6806   2002.1 2002-02       35 0.0000000000
## 6807   2002.1 2002-02       36 0.0000000000
## 6808   2002.1 2002-02       37 0.0000000000
## 6809   2002.1 2002-02       38 0.0000000000
## 6810   2002.1 2002-02       39 0.0000000000
## 6811   2002.1 2002-02       40 0.0000000000
## 6812   2002.1 2002-02       41 0.0000000000
## 6813   2002.1 2002-02       51 0.0000000000
## 6814   2002.1 2002-02       42 0.0000000000
## 6815   2002.1 2002-02       52 0.0000000000
## 6816   2002.1 2002-02       43 0.0000000000
## 6817   2002.1 2002-02       53 0.0000000000
## 6818   2002.1 2002-02       44 0.0000000000
## 6819   2002.1 2002-02       54 0.0000000000
## 6820   2002.1 2002-02       45 0.0000000000
## 6821   2002.1 2002-02       55 0.0000000000
## 6822   2002.1 2002-02       46 0.0000000000
## 6823   2002.1 2002-02       56 0.0000000000
## 6824   2002.1 2002-02       47 0.0000000000
## 6825   2002.1 2002-02       57 0.0000000000
## 6826   2002.1 2002-02       48 0.0000000000
## 6827   2002.1 2002-02       58 0.0000000000
## 6828   2002.1 2002-02       49 0.0000000000
## 6829   2002.1 2002-02       59 0.0000000000
## 6830   2002.1 2002-02       50 0.0000000000
## 6831   2002.1 2002-02       60 0.0000000000
## 6832   2002.1 2002-02       61 0.0000000000
## 6833   2002.1 2002-02        1 0.3333333333
## 6834   2002.1 2002-02        2 0.0000000000
## 6835   2002.1 2002-02        3 0.0000000000
## 6836   2002.1 2002-02        4 0.0000000000
## 6837   2002.1 2002-02        5 0.0000000000
## 6838   2002.1 2002-02        6 0.0000000000
## 6839   2002.1 2002-02        7 0.0000000000
## 6840   2002.1 2002-02        8 0.0000000000
## 6841   2002.1 2002-02        9 0.0000000000
## 6842   2002.1 2002-02       10 0.0000000000
## 6843   2002.1 2002-02       11 0.0000000000
## 6844   2002.1 2002-02       12 0.0000000000
## 6845   2002.1 2002-02       13 0.0000000000
## 6846   2002.1 2002-02       14 0.0000000000
## 6847   2002.1 2002-02       15 0.0000000000
## 6848   2002.1 2002-02       16 0.0000000000
## 6849   2002.1 2002-02       17 0.0000000000
## 6850   2002.1 2002-02       18 0.0000000000
## 6851   2002.1 2002-02       19 0.0000000000
## 6852   2002.1 2002-02       20 0.3333333333
## 6853   2002.1 2002-02       21 0.0000000000
## 6854   2002.1 2002-02       22 0.0000000000
## 6855   2002.1 2002-02       23 0.0000000000
## 6856   2002.1 2002-02       24 0.0000000000
## 6857   2002.1 2002-02       25 0.0000000000
## 6858   2002.1 2002-02       26 0.0000000000
## 6859   2002.1 2002-02       27 0.0000000000
## 6860   2002.1 2002-02       28 0.0000000000
## 6861   2002.1 2002-02       29 0.0000000000
## 6862   2002.1 2002-02       30 0.3333333333
## 6863   2002.1 2002-02       31 0.0000000000
## 6864   2002.1 2002-02       32 0.0000000000
## 6865   2002.1 2002-02       33 0.0000000000
## 6866   2002.1 2002-02       34 0.0000000000
## 6867   2002.1 2002-02       35 0.0000000000
## 6868   2002.1 2002-02       36 0.0000000000
## 6869   2002.1 2002-02       37 0.0000000000
## 6870   2002.1 2002-02       38 0.0000000000
## 6871   2002.1 2002-02       39 0.0000000000
## 6872   2002.1 2002-02       40 0.0000000000
## 6873   2002.1 2002-02       41 0.0000000000
## 6874   2002.1 2002-02       42 0.0000000000
## 6875   2002.1 2002-02       43 0.0000000000
## 6876   2002.1 2002-02       44 0.0000000000
## 6877   2002.1 2002-02       45 0.0000000000
## 6878   2002.1 2002-02       46 0.0000000000
## 6879   2002.1 2002-02       47 0.0000000000
## 6880   2002.1 2002-02       48 0.0000000000
## 6881   2002.1 2002-02       49 0.0000000000
## 6882   2002.1 2002-02       56 0.0000000000
## 6883   2002.1 2002-02       53 0.0000000000
## 6884   2002.1 2002-02       50 0.0000000000
## 6885   2002.1 2002-02       57 0.0000000000
## 6886   2002.1 2002-02       54 0.0000000000
## 6887   2002.1 2002-02       51 0.0000000000
## 6888   2002.1 2002-02       58 0.0000000000
## 6889   2002.1 2002-02       55 0.0000000000
## 6890   2002.1 2002-02       52 0.0000000000
## 6891   2002.1 2002-02       59 0.0000000000
## 6892   2002.1 2002-02       60 0.0000000000
## 6893   2002.1 2002-02       61 0.0000000000
## 6894   2001.3 2001-09       21 0.0000000000
## 6895   2001.3 2001-09       33 0.0050083472
## 6896   2001.3 2001-09       51 0.0333889816
## 6897   2001.3 2001-09       39 0.0166944908
## 6898   2001.3 2001-09       60 0.0601001669
## 6899   2001.3 2001-09        7 0.0000000000
## 6900   2001.3 2001-09       61 0.0400667780
## 6901   2001.3 2001-09       11 0.0000000000
## 6902   2001.3 2001-09        8 0.0016694491
## 6903   2001.3 2001-09       30 0.0016694491
## 6904   2001.3 2001-09       25 0.0016694491
## 6905   2001.3 2001-09       22 0.0066777963
## 6906   2001.3 2001-09       20 0.0033388982
## 6907   2001.3 2001-09       12 0.0016694491
## 6908   2001.3 2001-09        5 0.0000000000
## 6909   2001.3 2001-09       34 0.0467445743
## 6910   2001.3 2001-09       47 0.0217028381
## 6911   2001.3 2001-09       41 0.0183639399
## 6912   2001.3 2001-09       38 0.0033388982
## 6913   2001.3 2001-09       24 0.0033388982
## 6914   2001.3 2001-09       23 0.0033388982
## 6915   2001.3 2001-09       56 0.0500834725
## 6916   2001.3 2001-09       40 0.0267111853
## 6917   2001.3 2001-09       43 0.0150250417
## 6918   2001.3 2001-09       55 0.0183639399
## 6919   2001.3 2001-09       46 0.0651085142
## 6920   2001.3 2001-09       37 0.0083472454
## 6921   2001.3 2001-09       50 0.0150250417
## 6922   2001.3 2001-09       59 0.0684474124
## 6923   2001.3 2001-09       49 0.0333889816
## 6924   2001.3 2001-09       26 0.0016694491
## 6925   2001.3 2001-09        2 0.0000000000
## 6926   2001.3 2001-09       36 0.0000000000
## 6927   2001.3 2001-09       57 0.0567612688
## 6928   2001.3 2001-09       42 0.0083472454
## 6929   2001.3 2001-09       29 0.0016694491
## 6930   2001.3 2001-09       58 0.1235392321
## 6931   2001.3 2001-09       32 0.0066777963
## 6932   2001.3 2001-09        6 0.0033388982
## 6933   2001.3 2001-09       48 0.0383973289
## 6934   2001.3 2001-09        9 0.0000000000
## 6935   2001.3 2001-09       10 0.0066777963
## 6936   2001.3 2001-09       15 0.0000000000
## 6937   2001.3 2001-09       54 0.0200333890
## 6938   2001.3 2001-09       52 0.0300500835
## 6939   2001.3 2001-09       28 0.0016694491
## 6940   2001.3 2001-09       44 0.0083472454
## 6941   2001.3 2001-09       17 0.0033388982
## 6942   2001.3 2001-09       31 0.0050083472
## 6943   2001.3 2001-09       18 0.0016694491
## 6944   2001.3 2001-09       35 0.0016694491
## 6945   2001.3 2001-09       14 0.0000000000
## 6946   2001.3 2001-09       45 0.0317195326
## 6947   2001.3 2001-09        4 0.0000000000
## 6948   2001.3 2001-09        1 0.0016694491
## 6949   2001.3 2001-09       13 0.0016694491
## 6950   2001.3 2001-09       53 0.0651085142
## 6951   2001.3 2001-09       16 0.0050083472
## 6952   2001.3 2001-09        3 0.0000000000
## 6953   2001.3 2001-09       19 0.0033388982
## 6954   2001.3 2001-09       27 0.0033388982
## 6955   2001.3 2001-07        1 1.0000000000
## 6956   2001.3 2001-07        2 0.0000000000
## 6957   2001.3 2001-07        3 0.0000000000
## 6958   2001.3 2001-07        4 0.0000000000
## 6959   2001.3 2001-07        5 0.0000000000
## 6960   2001.3 2001-07        6 0.0000000000
## 6961   2001.3 2001-07        7 0.0000000000
## 6962   2001.3 2001-07        8 0.0000000000
## 6963   2001.3 2001-07        9 0.0000000000
## 6964   2001.3 2001-07       10 0.0000000000
## 6965   2001.3 2001-07       11 0.0000000000
## 6966   2001.3 2001-07       12 0.0000000000
## 6967   2001.3 2001-07       13 0.0000000000
## 6968   2001.3 2001-07       14 0.0000000000
## 6969   2001.3 2001-07       15 0.0000000000
## 6970   2001.3 2001-07       16 0.0000000000
## 6971   2001.3 2001-07       17 0.0000000000
## 6972   2001.3 2001-07       18 0.0000000000
## 6973   2001.3 2001-07       19 0.0000000000
## 6974   2001.3 2001-07       20 0.0000000000
## 6975   2001.3 2001-07       21 0.0000000000
## 6976   2001.3 2001-07       22 0.0000000000
## 6977   2001.3 2001-07       23 0.0000000000
## 6978   2001.3 2001-07       24 0.0000000000
## 6979   2001.3 2001-07       25 0.0000000000
## 6980   2001.3 2001-07       26 0.0000000000
## 6981   2001.3 2001-07       27 0.0000000000
## 6982   2001.3 2001-07       28 0.0000000000
## 6983   2001.3 2001-07       29 0.0000000000
## 6984   2001.3 2001-07       30 0.0000000000
## 6985   2001.3 2001-07       31 0.0000000000
## 6986   2001.3 2001-07       32 0.0000000000
## 6987   2001.3 2001-07       33 0.0000000000
## 6988   2001.3 2001-07       34 0.0000000000
## 6989   2001.3 2001-07       35 0.0000000000
## 6990   2001.3 2001-07       36 0.0000000000
## 6991   2001.3 2001-07       37 0.0000000000
## 6992   2001.3 2001-07       38 0.0000000000
## 6993   2001.3 2001-07       39 0.0000000000
## 6994   2001.3 2001-07       40 0.0000000000
## 6995   2001.3 2001-07       41 0.0000000000
## 6996   2001.3 2001-07       42 0.0000000000
## 6997   2001.3 2001-07       43 0.0000000000
## 6998   2001.3 2001-07       44 0.0000000000
## 6999   2001.3 2001-07       45 0.0000000000
## 7000   2001.3 2001-07       46 0.0000000000
## 7001   2001.3 2001-07       47 0.0000000000
## 7002   2001.3 2001-07       48 0.0000000000
## 7003   2001.3 2001-07       49 0.0000000000
## 7004   2001.3 2001-07       50 0.0000000000
## 7005   2001.3 2001-07       51 0.0000000000
## 7006   2001.3 2001-07       52 0.0000000000
## 7007   2001.3 2001-07       53 0.0000000000
## 7008   2001.3 2001-07       54 0.0000000000
## 7009   2001.3 2001-07       55 0.0000000000
## 7010   2001.3 2001-07       56 0.0000000000
## 7011   2001.3 2001-07       57 0.0000000000
## 7012   2001.3 2001-07       60 0.0000000000
## 7013   2001.3 2001-07       61 0.0000000000
## 7014   2001.3 2001-07       59 0.0000000000
## 7015   2001.3 2001-07       58 0.0000000000
## 7016   2001.3 2001-09        1 0.0010121457
## 7017   2001.3 2001-09        2 0.0000000000
## 7018   2001.3 2001-09        3 0.0000000000
## 7019   2001.3 2001-09        4 0.0000000000
## 7020   2001.3 2001-09        5 0.0000000000
## 7021   2001.3 2001-09        6 0.0010121457
## 7022   2001.3 2001-09        7 0.0000000000
## 7023   2001.3 2001-09        8 0.0010121457
## 7024   2001.3 2001-09        9 0.0010121457
## 7025   2001.3 2001-09       10 0.0000000000
## 7026   2001.3 2001-09       11 0.0000000000
## 7027   2001.3 2001-09       12 0.0000000000
## 7028   2001.3 2001-09       13 0.0030364372
## 7029   2001.3 2001-09       14 0.0000000000
## 7030   2001.3 2001-09       15 0.0101214575
## 7031   2001.3 2001-09       16 0.0010121457
## 7032   2001.3 2001-09       17 0.0010121457
## 7033   2001.3 2001-09       18 0.0000000000
## 7034   2001.3 2001-09       19 0.0000000000
## 7035   2001.3 2001-09       20 0.0040485830
## 7036   2001.3 2001-09       21 0.0020242915
## 7037   2001.3 2001-09       22 0.0040485830
## 7038   2001.3 2001-09       23 0.0010121457
## 7039   2001.3 2001-09       24 0.0020242915
## 7040   2001.3 2001-09       25 0.0010121457
## 7041   2001.3 2001-09       26 0.0050607287
## 7042   2001.3 2001-09       27 0.0060728745
## 7043   2001.3 2001-09       28 0.0202429150
## 7044   2001.3 2001-09       29 0.0161943320
## 7045   2001.3 2001-09       30 0.0050607287
## 7046   2001.3 2001-09       31 0.0060728745
## 7047   2001.3 2001-09       32 0.0060728745
## 7048   2001.3 2001-09       33 0.0050607287
## 7049   2001.3 2001-09       34 0.0151821862
## 7050   2001.3 2001-09       35 0.0070850202
## 7051   2001.3 2001-09       36 0.0040485830
## 7052   2001.3 2001-09       37 0.0273279352
## 7053   2001.3 2001-09       38 0.0131578947
## 7054   2001.3 2001-09       39 0.0455465587
## 7055   2001.3 2001-09       40 0.0172064777
## 7056   2001.3 2001-09       41 0.0151821862
## 7057   2001.3 2001-09       42 0.0161943320
## 7058   2001.3 2001-09       43 0.0344129555
## 7059   2001.3 2001-09       44 0.0576923077
## 7060   2001.3 2001-09       45 0.0485829960
## 7061   2001.3 2001-09       46 0.0546558704
## 7062   2001.3 2001-09       47 0.0323886640
## 7063   2001.3 2001-09       48 0.0202429150
## 7064   2001.3 2001-09       49 0.0161943320
## 7065   2001.3 2001-09       50 0.0323886640
## 7066   2001.3 2001-09       60 0.0354251012
## 7067   2001.3 2001-09       51 0.0344129555
## 7068   2001.3 2001-09       61 0.0526315789
## 7069   2001.3 2001-09       52 0.0435222672
## 7070   2001.3 2001-09       53 0.0576923077
## 7071   2001.3 2001-09       54 0.0263157895
## 7072   2001.3 2001-09       55 0.0455465587
## 7073   2001.3 2001-09       56 0.0384615385
## 7074   2001.3 2001-09       59 0.0435222672
## 7075   2001.3 2001-09       58 0.0334008097
## 7076   2001.3 2001-09       57 0.0283400810
## 7077   2001.3 2001-09        1 0.0500000000
## 7078   2001.3 2001-09        2 0.0000000000
## 7079   2001.3 2001-09        3 0.0000000000
## 7080   2001.3 2001-09        4 0.0000000000
## 7081   2001.3 2001-09        5 0.0000000000
## 7082   2001.3 2001-09        6 0.0500000000
## 7083   2001.3 2001-09        7 0.0000000000
## 7084   2001.3 2001-09        8 0.0500000000
## 7085   2001.3 2001-09        9 0.0000000000
## 7086   2001.3 2001-09       10 0.0000000000
## 7087   2001.3 2001-09       11 0.0000000000
## 7088   2001.3 2001-09       12 0.0000000000
## 7089   2001.3 2001-09       13 0.0000000000
## 7090   2001.3 2001-09       14 0.0000000000
## 7091   2001.3 2001-09       15 0.0000000000
## 7092   2001.3 2001-09       16 0.0000000000
## 7093   2001.3 2001-09       17 0.0000000000
## 7094   2001.3 2001-09       18 0.0000000000
## 7095   2001.3 2001-09       19 0.0000000000
## 7096   2001.3 2001-09       20 0.0000000000
## 7097   2001.3 2001-09       21 0.0000000000
## 7098   2001.3 2001-09       22 0.0000000000
## 7099   2001.3 2001-09       23 0.0000000000
## 7100   2001.3 2001-09       24 0.0000000000
## 7101   2001.3 2001-09       25 0.0000000000
## 7102   2001.3 2001-09       26 0.0000000000
## 7103   2001.3 2001-09       27 0.0000000000
## 7104   2001.3 2001-09       28 0.0500000000
## 7105   2001.3 2001-09       29 0.1500000000
## 7106   2001.3 2001-09       30 0.1000000000
## 7107   2001.3 2001-09       31 0.0000000000
## 7108   2001.3 2001-09       32 0.0500000000
## 7109   2001.3 2001-09       33 0.0000000000
## 7110   2001.3 2001-09       34 0.0500000000
## 7111   2001.3 2001-09       35 0.0500000000
## 7112   2001.3 2001-09       36 0.0000000000
## 7113   2001.3 2001-09       37 0.0000000000
## 7114   2001.3 2001-09       38 0.0000000000
## 7115   2001.3 2001-09       39 0.0000000000
## 7116   2001.3 2001-09       40 0.0000000000
## 7117   2001.3 2001-09       41 0.0000000000
## 7118   2001.3 2001-09       42 0.0000000000
## 7119   2001.3 2001-09       43 0.0000000000
## 7120   2001.3 2001-09       44 0.0000000000
## 7121   2001.3 2001-09       45 0.0000000000
## 7122   2001.3 2001-09       46 0.0000000000
## 7123   2001.3 2001-09       47 0.0000000000
## 7124   2001.3 2001-09       48 0.0000000000
## 7125   2001.3 2001-09       49 0.0500000000
## 7126   2001.3 2001-09       50 0.0000000000
## 7127   2001.3 2001-09       51 0.0000000000
## 7128   2001.3 2001-09       52 0.0000000000
## 7129   2001.3 2001-09       59 0.0000000000
## 7130   2001.3 2001-09       56 0.0000000000
## 7131   2001.3 2001-09       53 0.0000000000
## 7132   2001.3 2001-09       60 0.1000000000
## 7133   2001.3 2001-09       57 0.0500000000
## 7134   2001.3 2001-09       54 0.0500000000
## 7135   2001.3 2001-09       61 0.0000000000
## 7136   2001.3 2001-09       58 0.1000000000
## 7137   2001.3 2001-09       55 0.0500000000
## 7138   2001.3 2001-08        1 0.0116279070
## 7139   2001.3 2001-08        2 0.0000000000
## 7140   2001.3 2001-08        3 0.0000000000
## 7141   2001.3 2001-08        4 0.0000000000
## 7142   2001.3 2001-08        5 0.0000000000
## 7143   2001.3 2001-08        6 0.0000000000
## 7144   2001.3 2001-08        7 0.0116279070
## 7145   2001.3 2001-08        8 0.0116279070
## 7146   2001.3 2001-08        9 0.0348837209
## 7147   2001.3 2001-08       10 0.0000000000
## 7148   2001.3 2001-08       11 0.0000000000
## 7149   2001.3 2001-08       12 0.0000000000
## 7150   2001.3 2001-08       13 0.0116279070
## 7151   2001.3 2001-08       14 0.0697674419
## 7152   2001.3 2001-08       15 0.0000000000
## 7153   2001.3 2001-08       16 0.0000000000
## 7154   2001.3 2001-08       17 0.0000000000
## 7155   2001.3 2001-08       18 0.0000000000
## 7156   2001.3 2001-08       19 0.0000000000
## 7157   2001.3 2001-08       20 0.0348837209
## 7158   2001.3 2001-08       21 0.0000000000
## 7159   2001.3 2001-08       22 0.0232558140
## 7160   2001.3 2001-08       23 0.0000000000
## 7161   2001.3 2001-08       24 0.0000000000
## 7162   2001.3 2001-08       25 0.0116279070
## 7163   2001.3 2001-08       26 0.0000000000
## 7164   2001.3 2001-08       27 0.0000000000
## 7165   2001.3 2001-08       28 0.0000000000
## 7166   2001.3 2001-08       29 0.0000000000
## 7167   2001.3 2001-08       30 0.0000000000
## 7168   2001.3 2001-08       31 0.0232558140
## 7169   2001.3 2001-08       32 0.0116279070
## 7170   2001.3 2001-08       33 0.0000000000
## 7171   2001.3 2001-08       34 0.0116279070
## 7172   2001.3 2001-08       35 0.0465116279
## 7173   2001.3 2001-08       36 0.0232558140
## 7174   2001.3 2001-08       37 0.0116279070
## 7175   2001.3 2001-08       38 0.0000000000
## 7176   2001.3 2001-08       39 0.0000000000
## 7177   2001.3 2001-08       40 0.0581395349
## 7178   2001.3 2001-08       41 0.0116279070
## 7179   2001.3 2001-08       42 0.0348837209
## 7180   2001.3 2001-08       46 0.0000000000
## 7181   2001.3 2001-08       43 0.0000000000
## 7182   2001.3 2001-08       47 0.0348837209
## 7183   2001.3 2001-08       44 0.0697674419
## 7184   2001.3 2001-08       48 0.0000000000
## 7185   2001.3 2001-08       45 0.0116279070
## 7186   2001.3 2001-08       49 0.0000000000
## 7187   2001.3 2001-08       50 0.0581395349
## 7188   2001.3 2001-08       51 0.0232558140
## 7189   2001.3 2001-08       52 0.0232558140
## 7190   2001.3 2001-08       56 0.0581395349
## 7191   2001.3 2001-08       53 0.0116279070
## 7192   2001.3 2001-08       57 0.0000000000
## 7193   2001.3 2001-08       54 0.0348837209
## 7194   2001.3 2001-08       58 0.1046511628
## 7195   2001.3 2001-08       55 0.0000000000
## 7196   2001.3 2001-08       60 0.0465116279
## 7197   2001.3 2001-08       59 0.0348837209
## 7198   2001.3 2001-08       61 0.0348837209
## 7199   2001.4 2001-10       15 0.0069808028
## 7200   2001.4 2001-10       19 0.0034904014
## 7201   2001.4 2001-10       59 0.0523560209
## 7202   2001.4 2001-10       58 0.0392670157
## 7203   2001.4 2001-10       53 0.0514834206
## 7204   2001.4 2001-10       14 0.0008726003
## 7205   2001.4 2001-10       20 0.0000000000
## 7206   2001.4 2001-10       54 0.0732984293
## 7207   2001.4 2001-10       31 0.0113438045
## 7208   2001.4 2001-10       45 0.0026178010
## 7209   2001.4 2001-10       16 0.0008726003
## 7210   2001.4 2001-10       32 0.0043630017
## 7211   2001.4 2001-10       25 0.0000000000
## 7212   2001.4 2001-10       28 0.0017452007
## 7213   2001.4 2001-10       17 0.0008726003
## 7214   2001.4 2001-10       37 0.0043630017
## 7215   2001.4 2001-10       42 0.0130890052
## 7216   2001.4 2001-10       30 0.0000000000
## 7217   2001.4 2001-10       27 0.0017452007
## 7218   2001.4 2001-10        7 0.0008726003
## 7219   2001.4 2001-10       39 0.0069808028
## 7220   2001.4 2001-10       38 0.0052356021
## 7221   2001.4 2001-10       55 0.0698080279
## 7222   2001.4 2001-10       13 0.0026178010
## 7223   2001.4 2001-10        3 0.0000000000
## 7224   2001.4 2001-10       56 0.0811518325
## 7225   2001.4 2001-10       61 0.1003490401
## 7226   2001.4 2001-10       29 0.0000000000
## 7227   2001.4 2001-10       18 0.0000000000
## 7228   2001.4 2001-10       12 0.0034904014
## 7229   2001.4 2001-10       36 0.0043630017
## 7230   2001.4 2001-10       26 0.0008726003
## 7231   2001.4 2001-10       57 0.0497382199
## 7232   2001.4 2001-10       23 0.0017452007
## 7233   2001.4 2001-10       52 0.0375218150
## 7234   2001.4 2001-10       41 0.0095986038
## 7235   2001.4 2001-10       10 0.0017452007
## 7236   2001.4 2001-10       43 0.0113438045
## 7237   2001.4 2001-10        6 0.0000000000
## 7238   2001.4 2001-10        8 0.0026178010
## 7239   2001.4 2001-10       51 0.0314136126
## 7240   2001.4 2001-10       22 0.0017452007
## 7241   2001.4 2001-10       11 0.0000000000
## 7242   2001.4 2001-10        9 0.0008726003
## 7243   2001.4 2001-10        4 0.0026178010
## 7244   2001.4 2001-10        1 0.0008726003
## 7245   2001.4 2001-10       35 0.0026178010
## 7246   2001.4 2001-10        2 0.0000000000
## 7247   2001.4 2001-10       33 0.0017452007
## 7248   2001.4 2001-10       60 0.1378708551
## 7249   2001.4 2001-10       40 0.0226876091
## 7250   2001.4 2001-10       46 0.0034904014
## 7251   2001.4 2001-10       24 0.0034904014
## 7252   2001.4 2001-10       34 0.0052356021
## 7253   2001.4 2001-10       47 0.0113438045
## 7254   2001.4 2001-10       21 0.0008726003
## 7255   2001.4 2001-10       44 0.0122164049
## 7256   2001.4 2001-10       50 0.0366492147
## 7257   2001.4 2001-10       49 0.0532286213
## 7258   2001.4 2001-10        5 0.0008726003
## 7259   2001.4 2001-10       48 0.0113438045
## 7260   2002.1 2002-02        1 0.0588235294
## 7261   2002.1 2002-02       11 0.0000000000
## 7262   2002.1 2002-02        2 0.0000000000
## 7263   2002.1 2002-02       12 0.0000000000
## 7264   2002.1 2002-02        3 0.0000000000
## 7265   2002.1 2002-02       13 0.0000000000
## 7266   2002.1 2002-02        4 0.0000000000
## 7267   2002.1 2002-02       14 0.0000000000
## 7268   2002.1 2002-02        5 0.0000000000
## 7269   2002.1 2002-02       15 0.0000000000
## 7270   2002.1 2002-02        6 0.0000000000
## 7271   2002.1 2002-02       16 0.0000000000
## 7272   2002.1 2002-02        7 0.0000000000
## 7273   2002.1 2002-02       17 0.0000000000
## 7274   2002.1 2002-02        8 0.0588235294
## 7275   2002.1 2002-02       18 0.0000000000
## 7276   2002.1 2002-02        9 0.0000000000
## 7277   2002.1 2002-02       19 0.0000000000
## 7278   2002.1 2002-02       10 0.0000000000
## 7279   2002.1 2002-02       20 0.0000000000
## 7280   2002.1 2002-02       21 0.0000000000
## 7281   2002.1 2002-02       22 0.0000000000
## 7282   2002.1 2002-02       23 0.0000000000
## 7283   2002.1 2002-02       24 0.0000000000
## 7284   2002.1 2002-02       25 0.1176470588
## 7285   2002.1 2002-02       26 0.0588235294
## 7286   2002.1 2002-02       27 0.0000000000
## 7287   2002.1 2002-02       28 0.0000000000
## 7288   2002.1 2002-02       29 0.0000000000
## 7289   2002.1 2002-02       30 0.0000000000
## 7290   2002.1 2002-02       31 0.0588235294
## 7291   2002.1 2002-02       32 0.0588235294
## 7292   2002.1 2002-02       33 0.0588235294
## 7293   2002.1 2002-02       34 0.0000000000
## 7294   2002.1 2002-02       35 0.0000000000
## 7295   2002.1 2002-02       36 0.0000000000
## 7296   2002.1 2002-02       37 0.0000000000
## 7297   2002.1 2002-02       38 0.0000000000
## 7298   2002.1 2002-02       39 0.0000000000
## 7299   2002.1 2002-02       40 0.0000000000
## 7300   2002.1 2002-02       41 0.0000000000
## 7301   2002.1 2002-02       42 0.0588235294
## 7302   2002.1 2002-02       43 0.0588235294
## 7303   2002.1 2002-02       44 0.0000000000
## 7304   2002.1 2002-02       45 0.0000000000
## 7305   2002.1 2002-02       46 0.0000000000
## 7306   2002.1 2002-02       47 0.0000000000
## 7307   2002.1 2002-02       48 0.0000000000
## 7308   2002.1 2002-02       49 0.0000000000
## 7309   2002.1 2002-02       50 0.0588235294
## 7310   2002.1 2002-02       60 0.0000000000
## 7311   2002.1 2002-02       51 0.0000000000
## 7312   2002.1 2002-02       61 0.1176470588
## 7313   2002.1 2002-02       52 0.0000000000
## 7314   2002.1 2002-02       53 0.0000000000
## 7315   2002.1 2002-02       54 0.0000000000
## 7316   2002.1 2002-02       55 0.0588235294
## 7317   2002.1 2002-02       56 0.0000000000
## 7318   2002.1 2002-02       57 0.1176470588
## 7319   2002.1 2002-02       58 0.0000000000
## 7320   2002.1 2002-02       59 0.0588235294
## 7321   2001.3 2001-08        1 0.0322580645
## 7322   2001.3 2001-08        2 0.0000000000
## 7323   2001.3 2001-08        3 0.0000000000
## 7324   2001.3 2001-08        4 0.0322580645
## 7325   2001.3 2001-08        5 0.0000000000
## 7326   2001.3 2001-08        6 0.0000000000
## 7327   2001.3 2001-08        7 0.0322580645
## 7328   2001.3 2001-08        8 0.0000000000
## 7329   2001.3 2001-08        9 0.0000000000
## 7330   2001.3 2001-08       10 0.1290322581
## 7331   2001.3 2001-08       11 0.0322580645
## 7332   2001.3 2001-08       12 0.0000000000
## 7333   2001.3 2001-08       13 0.0000000000
## 7334   2001.3 2001-08       14 0.1612903226
## 7335   2001.3 2001-08       15 0.0322580645
## 7336   2001.3 2001-08       16 0.0000000000
## 7337   2001.3 2001-08       17 0.0000000000
## 7338   2001.3 2001-08       18 0.0000000000
## 7339   2001.3 2001-08       19 0.0322580645
## 7340   2001.3 2001-08       20 0.0322580645
## 7341   2001.3 2001-08       21 0.0000000000
## 7342   2001.3 2001-08       22 0.0322580645
## 7343   2001.3 2001-08       23 0.0000000000
## 7344   2001.3 2001-08       24 0.0000000000
## 7345   2001.3 2001-08       25 0.0000000000
## 7346   2001.3 2001-08       26 0.0000000000
## 7347   2001.3 2001-08       27 0.0000000000
## 7348   2001.3 2001-08       28 0.0645161290
## 7349   2001.3 2001-08       29 0.0000000000
## 7350   2001.3 2001-08       30 0.0000000000
## 7351   2001.3 2001-08       31 0.0322580645
## 7352   2001.3 2001-08       32 0.1290322581
## 7353   2001.3 2001-08       33 0.0000000000
## 7354   2001.3 2001-08       34 0.0000000000
## 7355   2001.3 2001-08       35 0.0000000000
## 7356   2001.3 2001-08       36 0.0000000000
## 7357   2001.3 2001-08       37 0.0000000000
## 7358   2001.3 2001-08       38 0.0000000000
## 7359   2001.3 2001-08       39 0.0000000000
## 7360   2001.3 2001-08       40 0.0000000000
## 7361   2001.3 2001-08       41 0.0000000000
## 7362   2001.3 2001-08       42 0.0000000000
## 7363   2001.3 2001-08       43 0.0000000000
## 7364   2001.3 2001-08       44 0.0000000000
## 7365   2001.3 2001-08       45 0.0000000000
## 7366   2001.3 2001-08       46 0.0000000000
## 7367   2001.3 2001-08       47 0.0322580645
## 7368   2001.3 2001-08       48 0.0000000000
## 7369   2001.3 2001-08       49 0.0000000000
## 7370   2001.3 2001-08       50 0.0000000000
## 7371   2001.3 2001-08       51 0.0322580645
## 7372   2001.3 2001-08       52 0.0645161290
## 7373   2001.3 2001-08       53 0.0000000000
## 7374   2001.3 2001-08       54 0.0322580645
## 7375   2001.3 2001-08       55 0.0645161290
## 7376   2001.3 2001-08       60 0.0000000000
## 7377   2001.3 2001-08       59 0.0000000000
## 7378   2001.3 2001-08       57 0.0000000000
## 7379   2001.3 2001-08       56 0.0000000000
## 7380   2001.3 2001-08       61 0.0000000000
## 7381   2001.3 2001-08       58 0.0000000000
## 7382   2001.2 2001-05        1 1.0000000000
## 7383   2001.2 2001-05        2 0.0000000000
## 7384   2001.2 2001-05        3 0.0000000000
## 7385   2001.2 2001-05        4 0.0000000000
## 7386   2001.2 2001-05        5 0.0000000000
## 7387   2001.2 2001-05        6 0.0000000000
## 7388   2001.2 2001-05        7 0.0000000000
## 7389   2001.2 2001-05        8 0.0000000000
## 7390   2001.2 2001-05        9 0.0000000000
## 7391   2001.2 2001-05       10 0.0000000000
## 7392   2001.2 2001-05       11 0.0000000000
## 7393   2001.2 2001-05       12 0.0000000000
## 7394   2001.2 2001-05       13 0.0000000000
## 7395   2001.2 2001-05       14 0.0000000000
## 7396   2001.2 2001-05       15 0.0000000000
## 7397   2001.2 2001-05       16 0.0000000000
## 7398   2001.2 2001-05       17 0.0000000000
## 7399   2001.2 2001-05       18 0.0000000000
## 7400   2001.2 2001-05       19 0.0000000000
## 7401   2001.2 2001-05       20 0.0000000000
## 7402   2001.2 2001-05       21 0.0000000000
## 7403   2001.2 2001-05       22 0.0000000000
## 7404   2001.2 2001-05       23 0.0000000000
## 7405   2001.2 2001-05       24 0.0000000000
## 7406   2001.2 2001-05       25 0.0000000000
## 7407   2001.2 2001-05       26 0.0000000000
## 7408   2001.2 2001-05       27 0.0000000000
## 7409   2001.2 2001-05       28 0.0000000000
## 7410   2001.2 2001-05       29 0.0000000000
## 7411   2001.2 2001-05       30 0.0000000000
## 7412   2001.2 2001-05       31 0.0000000000
## 7413   2001.2 2001-05       32 0.0000000000
## 7414   2001.2 2001-05       33 0.0000000000
## 7415   2001.2 2001-05       34 0.0000000000
## 7416   2001.2 2001-05       35 0.0000000000
## 7417   2001.2 2001-05       36 0.0000000000
## 7418   2001.2 2001-05       37 0.0000000000
## 7419   2001.2 2001-05       38 0.0000000000
## 7420   2001.2 2001-05       39 0.0000000000
## 7421   2001.2 2001-05       40 0.0000000000
## 7422   2001.2 2001-05       41 0.0000000000
## 7423   2001.2 2001-05       42 0.0000000000
## 7424   2001.2 2001-05       43 0.0000000000
## 7425   2001.2 2001-05       44 0.0000000000
## 7426   2001.2 2001-05       45 0.0000000000
## 7427   2001.2 2001-05       46 0.0000000000
## 7428   2001.2 2001-05       47 0.0000000000
## 7429   2001.2 2001-05       48 0.0000000000
## 7430   2001.2 2001-05       49 0.0000000000
## 7431   2001.2 2001-05       50 0.0000000000
## 7432   2001.2 2001-05       60 0.0000000000
## 7433   2001.2 2001-05       51 0.0000000000
## 7434   2001.2 2001-05       61 0.0000000000
## 7435   2001.2 2001-05       52 0.0000000000
## 7436   2001.2 2001-05       56 0.0000000000
## 7437   2001.2 2001-05       53 0.0000000000
## 7438   2001.2 2001-05       57 0.0000000000
## 7439   2001.2 2001-05       54 0.0000000000
## 7440   2001.2 2001-05       58 0.0000000000
## 7441   2001.2 2001-05       55 0.0000000000
## 7442   2001.2 2001-05       59 0.0000000000
## 7443   2001.2 2001-05        1 0.0072463768
## 7444   2001.2 2001-05        2 0.0000000000
## 7445   2001.2 2001-05        3 0.0000000000
## 7446   2001.2 2001-05        4 0.0000000000
## 7447   2001.2 2001-05        5 0.0000000000
## 7448   2001.2 2001-05        6 0.0000000000
## 7449   2001.2 2001-05        7 0.0000000000
## 7450   2001.2 2001-05        8 0.0000000000
## 7451   2001.2 2001-05        9 0.0000000000
## 7452   2001.2 2001-05       10 0.0072463768
## 7453   2001.2 2001-05       11 0.0000000000
## 7454   2001.2 2001-05       12 0.0072463768
## 7455   2001.2 2001-05       13 0.0000000000
## 7456   2001.2 2001-05       14 0.0000000000
## 7457   2001.2 2001-05       15 0.0000000000
## 7458   2001.2 2001-05       16 0.0000000000
## 7459   2001.2 2001-05       17 0.0072463768
## 7460   2001.2 2001-05       18 0.0000000000
## 7461   2001.2 2001-05       19 0.0072463768
## 7462   2001.2 2001-05       20 0.0072463768
## 7463   2001.2 2001-05       21 0.0000000000
## 7464   2001.2 2001-05       22 0.0144927536
## 7465   2001.2 2001-05       23 0.0000000000
## 7466   2001.2 2001-05       24 0.0000000000
## 7467   2001.2 2001-05       25 0.0144927536
## 7468   2001.2 2001-05       26 0.0000000000
## 7469   2001.2 2001-05       27 0.0072463768
## 7470   2001.2 2001-05       28 0.0144927536
## 7471   2001.2 2001-05       29 0.0072463768
## 7472   2001.2 2001-05       30 0.0072463768
## 7473   2001.2 2001-05       31 0.0000000000
## 7474   2001.2 2001-05       32 0.0072463768
## 7475   2001.2 2001-05       33 0.0072463768
## 7476   2001.2 2001-05       34 0.0072463768
## 7477   2001.2 2001-05       35 0.0217391304
## 7478   2001.2 2001-05       36 0.0144927536
## 7479   2001.2 2001-05       37 0.0000000000
## 7480   2001.2 2001-05       38 0.0072463768
## 7481   2001.2 2001-05       39 0.0217391304
## 7482   2001.2 2001-05       40 0.0000000000
## 7483   2001.2 2001-05       41 0.0289855072
## 7484   2001.2 2001-05       42 0.0144927536
## 7485   2001.2 2001-05       46 0.0507246377
## 7486   2001.2 2001-05       43 0.0144927536
## 7487   2001.2 2001-05       47 0.0289855072
## 7488   2001.2 2001-05       44 0.0217391304
## 7489   2001.2 2001-05       48 0.0144927536
## 7490   2001.2 2001-05       45 0.0217391304
## 7491   2001.2 2001-05       49 0.0217391304
## 7492   2001.2 2001-05       50 0.0144927536
## 7493   2001.2 2001-05       51 0.0362318841
## 7494   2001.2 2001-05       52 0.1014492754
## 7495   2001.2 2001-05       53 0.0579710145
## 7496   2001.2 2001-05       54 0.0362318841
## 7497   2001.2 2001-05       55 0.0434782609
## 7498   2001.2 2001-05       56 0.0289855072
## 7499   2001.2 2001-05       57 0.0652173913
## 7500   2001.2 2001-05       58 0.0289855072
## 7501   2001.2 2001-05       61 0.0942028986
## 7502   2001.2 2001-05       60 0.0144927536
## 7503   2001.2 2001-05       59 0.0652173913
## 7504   2001.3 2001-09        1 0.0022371365
## 7505   2001.3 2001-09        2 0.0000000000
## 7506   2001.3 2001-09        3 0.0000000000
## 7507   2001.3 2001-09        4 0.0000000000
## 7508   2001.3 2001-09        5 0.0000000000
## 7509   2001.3 2001-09        6 0.0111856823
## 7510   2001.3 2001-09        7 0.0000000000
## 7511   2001.3 2001-09        8 0.0022371365
## 7512   2001.3 2001-09        9 0.0000000000
## 7513   2001.3 2001-09       10 0.0000000000
## 7514   2001.3 2001-09       11 0.0000000000
## 7515   2001.3 2001-09       12 0.0000000000
## 7516   2001.3 2001-09       13 0.0022371365
## 7517   2001.3 2001-09       14 0.0022371365
## 7518   2001.3 2001-09       15 0.0000000000
## 7519   2001.3 2001-09       16 0.0000000000
## 7520   2001.3 2001-09       17 0.0178970917
## 7521   2001.3 2001-09       18 0.0000000000
## 7522   2001.3 2001-09       19 0.0000000000
## 7523   2001.3 2001-09       20 0.0000000000
## 7524   2001.3 2001-09       21 0.0067114094
## 7525   2001.3 2001-09       22 0.0022371365
## 7526   2001.3 2001-09       23 0.0067114094
## 7527   2001.3 2001-09       24 0.0089485459
## 7528   2001.3 2001-09       25 0.0000000000
## 7529   2001.3 2001-09       26 0.0067114094
## 7530   2001.3 2001-09       27 0.0067114094
## 7531   2001.3 2001-09       28 0.0067114094
## 7532   2001.3 2001-09       29 0.0022371365
## 7533   2001.3 2001-09       30 0.0134228188
## 7534   2001.3 2001-09       31 0.0156599553
## 7535   2001.3 2001-09       32 0.0156599553
## 7536   2001.3 2001-09       33 0.0022371365
## 7537   2001.3 2001-09       34 0.0290827740
## 7538   2001.3 2001-09       35 0.0178970917
## 7539   2001.3 2001-09       36 0.0178970917
## 7540   2001.3 2001-09       37 0.0111856823
## 7541   2001.3 2001-09       38 0.0067114094
## 7542   2001.3 2001-09       39 0.0111856823
## 7543   2001.3 2001-09       40 0.0178970917
## 7544   2001.3 2001-09       41 0.0357941834
## 7545   2001.3 2001-09       42 0.0134228188
## 7546   2001.3 2001-09       43 0.0201342282
## 7547   2001.3 2001-09       44 0.0402684564
## 7548   2001.3 2001-09       45 0.0402684564
## 7549   2001.3 2001-09       46 0.0067114094
## 7550   2001.3 2001-09       47 0.0581655481
## 7551   2001.3 2001-09       48 0.0380313199
## 7552   2001.3 2001-09       49 0.0201342282
## 7553   2001.3 2001-09       50 0.0223713647
## 7554   2001.3 2001-09       51 0.0313199105
## 7555   2001.3 2001-09       52 0.0201342282
## 7556   2001.3 2001-09       53 0.0492170022
## 7557   2001.3 2001-09       54 0.0201342282
## 7558   2001.3 2001-09       55 0.0335570470
## 7559   2001.3 2001-09       56 0.0492170022
## 7560   2001.3 2001-09       57 0.0693512304
## 7561   2001.3 2001-09       58 0.0380313199
## 7562   2001.3 2001-09       59 0.0111856823
## 7563   2001.3 2001-09       60 0.0514541387
## 7564   2001.3 2001-09       61 0.0872483221
## 7565   2002.1 2002-02        1 0.0032258065
## 7566   2002.1 2002-02        2 0.0000000000
## 7567   2002.1 2002-02        3 0.0000000000
## 7568   2002.1 2002-02        4 0.0000000000
## 7569   2002.1 2002-02        5 0.0000000000
## 7570   2002.1 2002-02        6 0.0064516129
## 7571   2002.1 2002-02        7 0.0000000000
## 7572   2002.1 2002-02        8 0.0000000000
## 7573   2002.1 2002-02        9 0.0096774194
## 7574   2002.1 2002-02       10 0.0000000000
## 7575   2002.1 2002-02       11 0.0225806452
## 7576   2002.1 2002-02       12 0.0000000000
## 7577   2002.1 2002-02       13 0.0032258065
## 7578   2002.1 2002-02       14 0.0000000000
## 7579   2002.1 2002-02       15 0.0161290323
## 7580   2002.1 2002-02       16 0.0000000000
## 7581   2002.1 2002-02       17 0.0032258065
## 7582   2002.1 2002-02       18 0.0000000000
## 7583   2002.1 2002-02       19 0.0064516129
## 7584   2002.1 2002-02       20 0.0000000000
## 7585   2002.1 2002-02       21 0.0032258065
## 7586   2002.1 2002-02       22 0.0000000000
## 7587   2002.1 2002-02       23 0.0096774194
## 7588   2002.1 2002-02       24 0.0032258065
## 7589   2002.1 2002-02       25 0.0096774194
## 7590   2002.1 2002-02       26 0.0129032258
## 7591   2002.1 2002-02       27 0.0419354839
## 7592   2002.1 2002-02       28 0.0032258065
## 7593   2002.1 2002-02       29 0.0096774194
## 7594   2002.1 2002-02       30 0.0225806452
## 7595   2002.1 2002-02       31 0.0032258065
## 7596   2002.1 2002-02       32 0.0193548387
## 7597   2002.1 2002-02       33 0.0322580645
## 7598   2002.1 2002-02       34 0.0387096774
## 7599   2002.1 2002-02       35 0.0064516129
## 7600   2002.1 2002-02       36 0.0161290323
## 7601   2002.1 2002-02       37 0.0032258065
## 7602   2002.1 2002-02       38 0.0129032258
## 7603   2002.1 2002-02       39 0.0354838710
## 7604   2002.1 2002-02       40 0.0322580645
## 7605   2002.1 2002-02       41 0.0032258065
## 7606   2002.1 2002-02       42 0.0387096774
## 7607   2002.1 2002-02       43 0.0129032258
## 7608   2002.1 2002-02       44 0.0032258065
## 7609   2002.1 2002-02       45 0.0612903226
## 7610   2002.1 2002-02       46 0.0225806452
## 7611   2002.1 2002-02       47 0.0580645161
## 7612   2002.1 2002-02       48 0.0419354839
## 7613   2002.1 2002-02       49 0.0290322581
## 7614   2002.1 2002-02       50 0.0387096774
## 7615   2002.1 2002-02       51 0.0161290323
## 7616   2002.1 2002-02       52 0.0161290323
## 7617   2002.1 2002-02       53 0.0258064516
## 7618   2002.1 2002-02       54 0.0193548387
## 7619   2002.1 2002-02       55 0.0387096774
## 7620   2002.1 2002-02       59 0.0354838710
## 7621   2002.1 2002-02       56 0.0161290323
## 7622   2002.1 2002-02       61 0.0387096774
## 7623   2002.1 2002-02       60 0.0387096774
## 7624   2002.1 2002-02       57 0.0322580645
## 7625   2002.1 2002-02       58 0.0258064516
## 7626   2002.1 2002-01        1 0.0192307692
## 7627   2002.1 2002-01        2 0.0192307692
## 7628   2002.1 2002-01        3 0.0000000000
## 7629   2002.1 2002-01        4 0.0000000000
## 7630   2002.1 2002-01        5 0.0000000000
## 7631   2002.1 2002-01        6 0.0000000000
## 7632   2002.1 2002-01        7 0.0000000000
## 7633   2002.1 2002-01        8 0.0000000000
## 7634   2002.1 2002-01        9 0.0192307692
## 7635   2002.1 2002-01       10 0.0192307692
## 7636   2002.1 2002-01       11 0.0000000000
## 7637   2002.1 2002-01       12 0.0000000000
## 7638   2002.1 2002-01       13 0.0000000000
## 7639   2002.1 2002-01       14 0.0000000000
## 7640   2002.1 2002-01       15 0.0000000000
## 7641   2002.1 2002-01       16 0.0000000000
## 7642   2002.1 2002-01       17 0.0000000000
## 7643   2002.1 2002-01       18 0.0192307692
## 7644   2002.1 2002-01       19 0.0000000000
## 7645   2002.1 2002-01       20 0.0192307692
## 7646   2002.1 2002-01       21 0.0384615385
## 7647   2002.1 2002-01       22 0.0000000000
## 7648   2002.1 2002-01       23 0.0000000000
## 7649   2002.1 2002-01       24 0.0000000000
## 7650   2002.1 2002-01       25 0.0384615385
## 7651   2002.1 2002-01       26 0.0000000000
## 7652   2002.1 2002-01       27 0.0000000000
## 7653   2002.1 2002-01       28 0.0192307692
## 7654   2002.1 2002-01       29 0.0192307692
## 7655   2002.1 2002-01       30 0.0000000000
## 7656   2002.1 2002-01       31 0.0384615385
## 7657   2002.1 2002-01       32 0.0192307692
## 7658   2002.1 2002-01       33 0.0000000000
## 7659   2002.1 2002-01       34 0.0000000000
## 7660   2002.1 2002-01       35 0.0000000000
## 7661   2002.1 2002-01       36 0.0384615385
## 7662   2002.1 2002-01       37 0.0192307692
## 7663   2002.1 2002-01       38 0.0000000000
## 7664   2002.1 2002-01       39 0.0000000000
## 7665   2002.1 2002-01       40 0.0192307692
## 7666   2002.1 2002-01       41 0.0000000000
## 7667   2002.1 2002-01       42 0.0576923077
## 7668   2002.1 2002-01       43 0.0384615385
## 7669   2002.1 2002-01       44 0.0576923077
## 7670   2002.1 2002-01       45 0.0384615385
## 7671   2002.1 2002-01       46 0.0576923077
## 7672   2002.1 2002-01       47 0.0192307692
## 7673   2002.1 2002-01       48 0.0384615385
## 7674   2002.1 2002-01       49 0.0192307692
## 7675   2002.1 2002-01       50 0.0000000000
## 7676   2002.1 2002-01       51 0.0000000000
## 7677   2002.1 2002-01       52 0.0576923077
## 7678   2002.1 2002-01       59 0.0000000000
## 7679   2002.1 2002-01       56 0.0192307692
## 7680   2002.1 2002-01       53 0.0000000000
## 7681   2002.1 2002-01       60 0.0576923077
## 7682   2002.1 2002-01       57 0.0192307692
## 7683   2002.1 2002-01       54 0.0192307692
## 7684   2002.1 2002-01       61 0.0192307692
## 7685   2002.1 2002-01       58 0.0576923077
## 7686   2002.1 2002-01       55 0.0576923077
## 7687   2002.1 2002-02        1 0.0018018018
## 7688   2002.1 2002-02        2 0.0000000000
## 7689   2002.1 2002-02        3 0.0000000000
## 7690   2002.1 2002-02        4 0.0000000000
## 7691   2002.1 2002-02        5 0.0000000000
## 7692   2002.1 2002-02        6 0.0000000000
## 7693   2002.1 2002-02        7 0.0000000000
## 7694   2002.1 2002-02        8 0.0090090090
## 7695   2002.1 2002-02        9 0.0018018018
## 7696   2002.1 2002-02       10 0.0000000000
## 7697   2002.1 2002-02       11 0.0000000000
## 7698   2002.1 2002-02       12 0.0000000000
## 7699   2002.1 2002-02       13 0.0000000000
## 7700   2002.1 2002-02       14 0.0018018018
## 7701   2002.1 2002-02       15 0.0036036036
## 7702   2002.1 2002-02       16 0.0054054054
## 7703   2002.1 2002-02       17 0.0054054054
## 7704   2002.1 2002-02       18 0.0036036036
## 7705   2002.1 2002-02       19 0.0000000000
## 7706   2002.1 2002-02       20 0.0054054054
## 7707   2002.1 2002-02       21 0.0018018018
## 7708   2002.1 2002-02       22 0.0018018018
## 7709   2002.1 2002-02       23 0.0000000000
## 7710   2002.1 2002-02       24 0.0018018018
## 7711   2002.1 2002-02       25 0.0072072072
## 7712   2002.1 2002-02       26 0.0054054054
## 7713   2002.1 2002-02       27 0.0036036036
## 7714   2002.1 2002-02       28 0.0018018018
## 7715   2002.1 2002-02       29 0.0018018018
## 7716   2002.1 2002-02       30 0.0018018018
## 7717   2002.1 2002-02       31 0.0072072072
## 7718   2002.1 2002-02       32 0.0054054054
## 7719   2002.1 2002-02       33 0.0036036036
## 7720   2002.1 2002-02       34 0.0072072072
## 7721   2002.1 2002-02       35 0.0090090090
## 7722   2002.1 2002-02       36 0.0126126126
## 7723   2002.1 2002-02       37 0.0090090090
## 7724   2002.1 2002-02       38 0.0000000000
## 7725   2002.1 2002-02       39 0.0072072072
## 7726   2002.1 2002-02       40 0.0108108108
## 7727   2002.1 2002-02       41 0.0162162162
## 7728   2002.1 2002-02       42 0.0180180180
## 7729   2002.1 2002-02       43 0.0144144144
## 7730   2002.1 2002-02       44 0.0126126126
## 7731   2002.1 2002-02       45 0.0270270270
## 7732   2002.1 2002-02       46 0.0486486486
## 7733   2002.1 2002-02       47 0.0198198198
## 7734   2002.1 2002-02       48 0.0396396396
## 7735   2002.1 2002-02       49 0.0324324324
## 7736   2002.1 2002-02       50 0.0216216216
## 7737   2002.1 2002-02       51 0.0162162162
## 7738   2002.1 2002-02       52 0.0486486486
## 7739   2002.1 2002-02       56 0.0792792793
## 7740   2002.1 2002-02       53 0.0198198198
## 7741   2002.1 2002-02       58 0.0738738739
## 7742   2002.1 2002-02       57 0.0630630631
## 7743   2002.1 2002-02       54 0.0234234234
## 7744   2002.1 2002-02       59 0.0324324324
## 7745   2002.1 2002-02       55 0.0198198198
## 7746   2002.1 2002-02       60 0.1459459459
## 7747   2002.1 2002-02       61 0.0900900901
## 7748   2001.2 2001-06        1 0.0344827586
## 7749   2001.2 2001-06        2 0.0000000000
## 7750   2001.2 2001-06        3 0.0000000000
## 7751   2001.2 2001-06        4 0.0000000000
## 7752   2001.2 2001-06        5 0.0000000000
## 7753   2001.2 2001-06        6 0.0000000000
## 7754   2001.2 2001-06        7 0.0000000000
## 7755   2001.2 2001-06        8 0.0000000000
## 7756   2001.2 2001-06        9 0.0344827586
## 7757   2001.2 2001-06       10 0.0000000000
## 7758   2001.2 2001-06       11 0.0000000000
## 7759   2001.2 2001-06       12 0.0000000000
## 7760   2001.2 2001-06       13 0.0344827586
## 7761   2001.2 2001-06       14 0.0000000000
## 7762   2001.2 2001-06       15 0.0000000000
## 7763   2001.2 2001-06       16 0.0344827586
## 7764   2001.2 2001-06       17 0.0000000000
## 7765   2001.2 2001-06       18 0.0000000000
## 7766   2001.2 2001-06       19 0.0344827586
## 7767   2001.2 2001-06       20 0.0000000000
## 7768   2001.2 2001-06       21 0.0000000000
## 7769   2001.2 2001-06       22 0.0000000000
## 7770   2001.2 2001-06       23 0.0000000000
## 7771   2001.2 2001-06       24 0.0000000000
## 7772   2001.2 2001-06       25 0.0689655172
## 7773   2001.2 2001-06       26 0.0344827586
## 7774   2001.2 2001-06       27 0.0000000000
## 7775   2001.2 2001-06       28 0.0000000000
## 7776   2001.2 2001-06       29 0.0000000000
## 7777   2001.2 2001-06       30 0.0000000000
## 7778   2001.2 2001-06       31 0.0000000000
## 7779   2001.2 2001-06       32 0.0344827586
## 7780   2001.2 2001-06       33 0.0000000000
## 7781   2001.2 2001-06       34 0.0000000000
## 7782   2001.2 2001-06       35 0.0344827586
## 7783   2001.2 2001-06       36 0.0000000000
## 7784   2001.2 2001-06       37 0.0344827586
## 7785   2001.2 2001-06       38 0.0000000000
## 7786   2001.2 2001-06       39 0.0000000000
## 7787   2001.2 2001-06       40 0.0000000000
## 7788   2001.2 2001-06       41 0.0344827586
## 7789   2001.2 2001-06       42 0.0000000000
## 7790   2001.2 2001-06       43 0.0344827586
## 7791   2001.2 2001-06       44 0.0344827586
## 7792   2001.2 2001-06       45 0.0000000000
## 7793   2001.2 2001-06       46 0.0000000000
## 7794   2001.2 2001-06       47 0.0689655172
## 7795   2001.2 2001-06       48 0.0000000000
## 7796   2001.2 2001-06       49 0.0344827586
## 7797   2001.2 2001-06       50 0.0344827586
## 7798   2001.2 2001-06       51 0.0689655172
## 7799   2001.2 2001-06       52 0.0344827586
## 7800   2001.2 2001-06       53 0.0000000000
## 7801   2001.2 2001-06       54 0.0000000000
## 7802   2001.2 2001-06       55 0.0344827586
## 7803   2001.2 2001-06       56 0.0000000000
## 7804   2001.2 2001-06       57 0.0344827586
## 7805   2001.2 2001-06       59 0.0344827586
## 7806   2001.2 2001-06       58 0.0344827586
## 7807   2001.2 2001-06       61 0.0689655172
## 7808   2001.2 2001-06       60 0.0689655172
## 7809   2001.3 2001-08        1 0.0016366612
## 7810   2001.3 2001-08        2 0.0000000000
## 7811   2001.3 2001-08        3 0.0016366612
## 7812   2001.3 2001-08        4 0.0000000000
## 7813   2001.3 2001-08        5 0.0000000000
## 7814   2001.3 2001-08        6 0.0000000000
## 7815   2001.3 2001-08        7 0.0032733224
## 7816   2001.3 2001-08        8 0.0049099836
## 7817   2001.3 2001-08        9 0.0000000000
## 7818   2001.3 2001-08       10 0.0032733224
## 7819   2001.3 2001-08       11 0.0016366612
## 7820   2001.3 2001-08       12 0.0049099836
## 7821   2001.3 2001-08       13 0.0016366612
## 7822   2001.3 2001-08       14 0.0016366612
## 7823   2001.3 2001-08       15 0.0032733224
## 7824   2001.3 2001-08       16 0.0000000000
## 7825   2001.3 2001-08       17 0.0016366612
## 7826   2001.3 2001-08       18 0.0081833061
## 7827   2001.3 2001-08       19 0.0000000000
## 7828   2001.3 2001-08       20 0.0098199673
## 7829   2001.3 2001-08       21 0.0032733224
## 7830   2001.3 2001-08       22 0.0065466448
## 7831   2001.3 2001-08       23 0.0016366612
## 7832   2001.3 2001-08       24 0.0016366612
## 7833   2001.3 2001-08       25 0.0016366612
## 7834   2001.3 2001-08       26 0.0000000000
## 7835   2001.3 2001-08       27 0.0016366612
## 7836   2001.3 2001-08       28 0.0065466448
## 7837   2001.3 2001-08       29 0.0065466448
## 7838   2001.3 2001-08       30 0.0000000000
## 7839   2001.3 2001-08       31 0.0065466448
## 7840   2001.3 2001-08       32 0.0147299509
## 7841   2001.3 2001-08       33 0.0081833061
## 7842   2001.3 2001-08       34 0.0065466448
## 7843   2001.3 2001-08       35 0.0163666121
## 7844   2001.3 2001-08       36 0.0147299509
## 7845   2001.3 2001-08       37 0.0032733224
## 7846   2001.3 2001-08       38 0.0147299509
## 7847   2001.3 2001-08       39 0.0147299509
## 7848   2001.3 2001-08       40 0.0130932897
## 7849   2001.3 2001-08       41 0.0032733224
## 7850   2001.3 2001-08       42 0.0163666121
## 7851   2001.3 2001-08       43 0.0098199673
## 7852   2001.3 2001-08       44 0.0065466448
## 7853   2001.3 2001-08       45 0.0327332242
## 7854   2001.3 2001-08       46 0.0278232406
## 7855   2001.3 2001-08       47 0.0245499182
## 7856   2001.3 2001-08       48 0.0147299509
## 7857   2001.3 2001-08       49 0.0081833061
## 7858   2001.3 2001-08       50 0.0163666121
## 7859   2001.3 2001-08       51 0.0474631751
## 7860   2001.3 2001-08       52 0.0556464812
## 7861   2001.3 2001-08       59 0.0490998363
## 7862   2001.3 2001-08       56 0.0490998363
## 7863   2001.3 2001-08       53 0.0490998363
## 7864   2001.3 2001-08       60 0.0474631751
## 7865   2001.3 2001-08       57 0.0589198036
## 7866   2001.3 2001-08       54 0.0523731588
## 7867   2001.3 2001-08       61 0.0523731588
## 7868   2001.3 2001-08       58 0.1112929624
## 7869   2001.3 2001-08       55 0.0769230769
## 7870   2001.3 2001-09        1 0.5000000000
## 7871   2001.3 2001-09        2 0.0000000000
## 7872   2001.3 2001-09        3 0.0000000000
## 7873   2001.3 2001-09        4 0.0000000000
## 7874   2001.3 2001-09        5 0.0000000000
## 7875   2001.3 2001-09        6 0.5000000000
## 7876   2001.3 2001-09        7 0.0000000000
## 7877   2001.3 2001-09        8 0.0000000000
## 7878   2001.3 2001-09        9 0.0000000000
## 7879   2001.3 2001-09       10 0.0000000000
## 7880   2001.3 2001-09       11 0.0000000000
## 7881   2001.3 2001-09       12 0.0000000000
## 7882   2001.3 2001-09       13 0.0000000000
## 7883   2001.3 2001-09       14 0.0000000000
## 7884   2001.3 2001-09       15 0.0000000000
## 7885   2001.3 2001-09       16 0.0000000000
## 7886   2001.3 2001-09       17 0.0000000000
## 7887   2001.3 2001-09       18 0.0000000000
## 7888   2001.3 2001-09       19 0.0000000000
## 7889   2001.3 2001-09       20 0.0000000000
## 7890   2001.3 2001-09       21 0.0000000000
## 7891   2001.3 2001-09       22 0.0000000000
## 7892   2001.3 2001-09       23 0.0000000000
## 7893   2001.3 2001-09       24 0.0000000000
## 7894   2001.3 2001-09       25 0.0000000000
## 7895   2001.3 2001-09       26 0.0000000000
## 7896   2001.3 2001-09       27 0.0000000000
## 7897   2001.3 2001-09       28 0.0000000000
## 7898   2001.3 2001-09       29 0.0000000000
## 7899   2001.3 2001-09       30 0.0000000000
## 7900   2001.3 2001-09       31 0.0000000000
## 7901   2001.3 2001-09       32 0.0000000000
## 7902   2001.3 2001-09       33 0.0000000000
## 7903   2001.3 2001-09       34 0.0000000000
## 7904   2001.3 2001-09       35 0.0000000000
## 7905   2001.3 2001-09       36 0.0000000000
## 7906   2001.3 2001-09       37 0.0000000000
## 7907   2001.3 2001-09       38 0.0000000000
## 7908   2001.3 2001-09       39 0.0000000000
## 7909   2001.3 2001-09       40 0.0000000000
## 7910   2001.3 2001-09       41 0.0000000000
## 7911   2001.3 2001-09       42 0.0000000000
## 7912   2001.3 2001-09       43 0.0000000000
## 7913   2001.3 2001-09       44 0.0000000000
## 7914   2001.3 2001-09       45 0.0000000000
## 7915   2001.3 2001-09       46 0.0000000000
## 7916   2001.3 2001-09       47 0.0000000000
## 7917   2001.3 2001-09       48 0.0000000000
## 7918   2001.3 2001-09       49 0.0000000000
## 7919   2001.3 2001-09       50 0.0000000000
## 7920   2001.3 2001-09       51 0.0000000000
## 7921   2001.3 2001-09       52 0.0000000000
## 7922   2001.3 2001-09       56 0.0000000000
## 7923   2001.3 2001-09       53 0.0000000000
## 7924   2001.3 2001-09       57 0.0000000000
## 7925   2001.3 2001-09       54 0.0000000000
## 7926   2001.3 2001-09       58 0.0000000000
## 7927   2001.3 2001-09       55 0.0000000000
## 7928   2001.3 2001-09       61 0.0000000000
## 7929   2001.3 2001-09       60 0.0000000000
## 7930   2001.3 2001-09       59 0.0000000000
## 7931   2001.4 2001-10        1 0.5000000000
## 7932   2001.4 2001-10        2 0.0000000000
## 7933   2001.4 2001-10        3 0.0000000000
## 7934   2001.4 2001-10        4 0.0000000000
## 7935   2001.4 2001-10        5 0.5000000000
## 7936   2001.4 2001-10        6 0.0000000000
## 7937   2001.4 2001-10        7 0.0000000000
## 7938   2001.4 2001-10        8 0.0000000000
## 7939   2001.4 2001-10        9 0.0000000000
## 7940   2001.4 2001-10       10 0.0000000000
## 7941   2001.4 2001-10       11 0.0000000000
## 7942   2001.4 2001-10       12 0.0000000000
## 7943   2001.4 2001-10       13 0.0000000000
## 7944   2001.4 2001-10       14 0.0000000000
## 7945   2001.4 2001-10       15 0.0000000000
## 7946   2001.4 2001-10       16 0.0000000000
## 7947   2001.4 2001-10       17 0.0000000000
## 7948   2001.4 2001-10       18 0.0000000000
## 7949   2001.4 2001-10       19 0.0000000000
## 7950   2001.4 2001-10       20 0.0000000000
## 7951   2001.4 2001-10       21 0.0000000000
## 7952   2001.4 2001-10       22 0.0000000000
## 7953   2001.4 2001-10       23 0.0000000000
## 7954   2001.4 2001-10       24 0.0000000000
## 7955   2001.4 2001-10       25 0.0000000000
## 7956   2001.4 2001-10       26 0.0000000000
## 7957   2001.4 2001-10       27 0.0000000000
## 7958   2001.4 2001-10       28 0.0000000000
## 7959   2001.4 2001-10       29 0.0000000000
## 7960   2001.4 2001-10       30 0.0000000000
## 7961   2001.4 2001-10       31 0.0000000000
## 7962   2001.4 2001-10       32 0.0000000000
## 7963   2001.4 2001-10       33 0.0000000000
## 7964   2001.4 2001-10       34 0.0000000000
## 7965   2001.4 2001-10       35 0.0000000000
## 7966   2001.4 2001-10       36 0.0000000000
## 7967   2001.4 2001-10       37 0.0000000000
## 7968   2001.4 2001-10       38 0.0000000000
## 7969   2001.4 2001-10       39 0.0000000000
## 7970   2001.4 2001-10       40 0.0000000000
## 7971   2001.4 2001-10       41 0.0000000000
## 7972   2001.4 2001-10       42 0.0000000000
## 7973   2001.4 2001-10       43 0.0000000000
## 7974   2001.4 2001-10       44 0.0000000000
## 7975   2001.4 2001-10       45 0.0000000000
## 7976   2001.4 2001-10       46 0.0000000000
## 7977   2001.4 2001-10       47 0.0000000000
## 7978   2001.4 2001-10       48 0.0000000000
## 7979   2001.4 2001-10       49 0.0000000000
## 7980   2001.4 2001-10       50 0.0000000000
## 7981   2001.4 2001-10       51 0.0000000000
## 7982   2001.4 2001-10       52 0.0000000000
## 7983   2001.4 2001-10       53 0.0000000000
## 7984   2001.4 2001-10       54 0.0000000000
## 7985   2001.4 2001-10       55 0.0000000000
## 7986   2001.4 2001-10       57 0.0000000000
## 7987   2001.4 2001-10       56 0.0000000000
## 7988   2001.4 2001-10       59 0.0000000000
## 7989   2001.4 2001-10       58 0.0000000000
## 7990   2001.4 2001-10       60 0.0000000000
## 7991   2001.4 2001-10       61 0.0000000000
## 7992   2001.3 2001-09        1 0.0625000000
## 7993   2001.3 2001-09        2 0.0000000000
## 7994   2001.3 2001-09        3 0.0000000000
## 7995   2001.3 2001-09        4 0.0000000000
## 7996   2001.3 2001-09        5 0.0000000000
## 7997   2001.3 2001-09        6 0.0625000000
## 7998   2001.3 2001-09        7 0.0000000000
## 7999   2001.3 2001-09        8 0.0000000000
## 8000   2001.3 2001-09        9 0.0000000000
## 8001   2001.3 2001-09       10 0.0000000000
## 8002   2001.3 2001-09       11 0.0000000000
## 8003   2001.3 2001-09       21 0.0000000000
## 8004   2001.3 2001-09       12 0.0000000000
## 8005   2001.3 2001-09       22 0.0000000000
## 8006   2001.3 2001-09       13 0.0625000000
## 8007   2001.3 2001-09       23 0.0000000000
## 8008   2001.3 2001-09       14 0.0000000000
## 8009   2001.3 2001-09       24 0.0625000000
## 8010   2001.3 2001-09       15 0.0000000000
## 8011   2001.3 2001-09       25 0.0000000000
## 8012   2001.3 2001-09       16 0.0000000000
## 8013   2001.3 2001-09       26 0.0000000000
## 8014   2001.3 2001-09       17 0.0000000000
## 8015   2001.3 2001-09       27 0.0000000000
## 8016   2001.3 2001-09       18 0.0000000000
## 8017   2001.3 2001-09       28 0.0000000000
## 8018   2001.3 2001-09       19 0.0625000000
## 8019   2001.3 2001-09       29 0.0000000000
## 8020   2001.3 2001-09       20 0.0000000000
## 8021   2001.3 2001-09       30 0.0000000000
## 8022   2001.3 2001-09       31 0.0000000000
## 8023   2001.3 2001-09       32 0.0000000000
## 8024   2001.3 2001-09       33 0.0000000000
## 8025   2001.3 2001-09       34 0.0000000000
## 8026   2001.3 2001-09       35 0.0000000000
## 8027   2001.3 2001-09       36 0.0000000000
## 8028   2001.3 2001-09       37 0.0625000000
## 8029   2001.3 2001-09       38 0.0000000000
## 8030   2001.3 2001-09       39 0.0000000000
## 8031   2001.3 2001-09       40 0.0625000000
## 8032   2001.3 2001-09       41 0.0000000000
## 8033   2001.3 2001-09       42 0.2500000000
## 8034   2001.3 2001-09       43 0.0000000000
## 8035   2001.3 2001-09       44 0.0000000000
## 8036   2001.3 2001-09       45 0.0000000000
## 8037   2001.3 2001-09       46 0.0625000000
## 8038   2001.3 2001-09       47 0.0000000000
## 8039   2001.3 2001-09       48 0.0000000000
## 8040   2001.3 2001-09       49 0.0000000000
## 8041   2001.3 2001-09       50 0.0000000000
## 8042   2001.3 2001-09       51 0.0000000000
## 8043   2001.3 2001-09       52 0.0000000000
## 8044   2001.3 2001-09       53 0.0000000000
## 8045   2001.3 2001-09       54 0.0625000000
## 8046   2001.3 2001-09       55 0.0000000000
## 8047   2001.3 2001-09       56 0.0625000000
## 8048   2001.3 2001-09       57 0.1250000000
## 8049   2001.3 2001-09       58 0.0000000000
## 8050   2001.3 2001-09       59 0.0000000000
## 8051   2001.3 2001-09       60 0.0000000000
## 8052   2001.3 2001-09       61 0.0000000000
## 8053   2001.4 2001-12        1 0.0022624434
## 8054   2001.4 2001-12        2 0.0090497738
## 8055   2001.4 2001-12        3 0.0022624434
## 8056   2001.4 2001-12        4 0.0000000000
## 8057   2001.4 2001-12        5 0.0045248869
## 8058   2001.4 2001-12        6 0.0000000000
## 8059   2001.4 2001-12        7 0.0000000000
## 8060   2001.4 2001-12        8 0.0000000000
## 8061   2001.4 2001-12        9 0.0000000000
## 8062   2001.4 2001-12       10 0.0294117647
## 8063   2001.4 2001-12       11 0.0022624434
## 8064   2001.4 2001-12       12 0.0022624434
## 8065   2001.4 2001-12       13 0.0000000000
## 8066   2001.4 2001-12       14 0.0000000000
## 8067   2001.4 2001-12       15 0.0000000000
## 8068   2001.4 2001-12       16 0.0113122172
## 8069   2001.4 2001-12       17 0.0000000000
## 8070   2001.4 2001-12       18 0.0000000000
## 8071   2001.4 2001-12       19 0.0113122172
## 8072   2001.4 2001-12       20 0.0022624434
## 8073   2001.4 2001-12       21 0.0022624434
## 8074   2001.4 2001-12       22 0.0000000000
## 8075   2001.4 2001-12       23 0.0022624434
## 8076   2001.4 2001-12       24 0.0000000000
## 8077   2001.4 2001-12       25 0.0135746606
## 8078   2001.4 2001-12       26 0.0090497738
## 8079   2001.4 2001-12       27 0.0837104072
## 8080   2001.4 2001-12       28 0.0226244344
## 8081   2001.4 2001-12       29 0.0135746606
## 8082   2001.4 2001-12       30 0.0090497738
## 8083   2001.4 2001-12       31 0.0090497738
## 8084   2001.4 2001-12       32 0.0090497738
## 8085   2001.4 2001-12       33 0.0158371041
## 8086   2001.4 2001-12       34 0.0113122172
## 8087   2001.4 2001-12       35 0.0203619910
## 8088   2001.4 2001-12       36 0.0180995475
## 8089   2001.4 2001-12       37 0.0135746606
## 8090   2001.4 2001-12       38 0.1108597285
## 8091   2001.4 2001-12       39 0.0226244344
## 8092   2001.4 2001-12       40 0.0203619910
## 8093   2001.4 2001-12       41 0.0135746606
## 8094   2001.4 2001-12       42 0.0294117647
## 8095   2001.4 2001-12       43 0.0045248869
## 8096   2001.4 2001-12       44 0.0882352941
## 8097   2001.4 2001-12       45 0.0588235294
## 8098   2001.4 2001-12       46 0.0180995475
## 8099   2001.4 2001-12       47 0.0180995475
## 8100   2001.4 2001-12       48 0.0316742081
## 8101   2001.4 2001-12       49 0.0316742081
## 8102   2001.4 2001-12       50 0.0429864253
## 8103   2001.4 2001-12       51 0.0180995475
## 8104   2001.4 2001-12       52 0.0339366516
## 8105   2001.4 2001-12       53 0.0294117647
## 8106   2001.4 2001-12       54 0.0158371041
## 8107   2001.4 2001-12       55 0.0045248869
## 8108   2001.4 2001-12       56 0.0135746606
## 8109   2001.4 2001-12       57 0.0090497738
## 8110   2001.4 2001-12       59 0.0158371041
## 8111   2001.4 2001-12       61 0.0067873303
## 8112   2001.4 2001-12       58 0.0203619910
## 8113   2001.4 2001-12       60 0.0113122172
## 8114   2001.3 2001-09        1 0.5000000000
## 8115   2001.3 2001-09        2 0.0000000000
## 8116   2001.3 2001-09        3 0.0000000000
## 8117   2001.3 2001-09        4 0.0000000000
## 8118   2001.3 2001-09        5 0.0000000000
## 8119   2001.3 2001-09        6 0.0000000000
## 8120   2001.3 2001-09        7 0.0000000000
## 8121   2001.3 2001-09        8 0.0000000000
## 8122   2001.3 2001-09        9 0.0000000000
## 8123   2001.3 2001-09       10 0.0000000000
## 8124   2001.3 2001-09       11 0.0000000000
## 8125   2001.3 2001-09       12 0.0000000000
## 8126   2001.3 2001-09       13 0.0000000000
## 8127   2001.3 2001-09       14 0.0000000000
## 8128   2001.3 2001-09       15 0.0000000000
## 8129   2001.3 2001-09       16 0.0000000000
## 8130   2001.3 2001-09       17 0.0000000000
## 8131   2001.3 2001-09       18 0.0000000000
## 8132   2001.3 2001-09       19 0.0000000000
## 8133   2001.3 2001-09       20 0.0000000000
## 8134   2001.3 2001-09       21 0.0000000000
## 8135   2001.3 2001-09       22 0.0000000000
## 8136   2001.3 2001-09       23 0.0000000000
## 8137   2001.3 2001-09       24 0.0000000000
## 8138   2001.3 2001-09       25 0.0000000000
## 8139   2001.3 2001-09       26 0.0000000000
## 8140   2001.3 2001-09       27 0.0000000000
## 8141   2001.3 2001-09       28 0.0000000000
## 8142   2001.3 2001-09       29 0.0000000000
## 8143   2001.3 2001-09       30 0.0000000000
## 8144   2001.3 2001-09       31 0.0000000000
## 8145   2001.3 2001-09       32 0.0000000000
## 8146   2001.3 2001-09       33 0.0000000000
## 8147   2001.3 2001-09       34 0.0000000000
## 8148   2001.3 2001-09       35 0.0000000000
## 8149   2001.3 2001-09       36 0.0000000000
## 8150   2001.3 2001-09       37 0.0000000000
## 8151   2001.3 2001-09       38 0.0000000000
## 8152   2001.3 2001-09       39 0.0000000000
## 8153   2001.3 2001-09       40 0.0000000000
## 8154   2001.3 2001-09       41 0.0000000000
## 8155   2001.3 2001-09       42 0.0000000000
## 8156   2001.3 2001-09       43 0.0000000000
## 8157   2001.3 2001-09       44 0.0000000000
## 8158   2001.3 2001-09       45 0.0000000000
## 8159   2001.3 2001-09       46 0.5000000000
## 8160   2001.3 2001-09       47 0.0000000000
## 8161   2001.3 2001-09       48 0.0000000000
## 8162   2001.3 2001-09       49 0.0000000000
## 8163   2001.3 2001-09       50 0.0000000000
## 8164   2001.3 2001-09       51 0.0000000000
## 8165   2001.3 2001-09       52 0.0000000000
## 8166   2001.3 2001-09       56 0.0000000000
## 8167   2001.3 2001-09       53 0.0000000000
## 8168   2001.3 2001-09       57 0.0000000000
## 8169   2001.3 2001-09       54 0.0000000000
## 8170   2001.3 2001-09       58 0.0000000000
## 8171   2001.3 2001-09       55 0.0000000000
## 8172   2001.3 2001-09       59 0.0000000000
## 8173   2001.3 2001-09       60 0.0000000000
## 8174   2001.3 2001-09       61 0.0000000000
## 8175   2001.3 2001-09        1 1.0000000000
## 8176   2001.3 2001-09        2 0.0000000000
## 8177   2001.3 2001-09        3 0.0000000000
## 8178   2001.3 2001-09        4 0.0000000000
## 8179   2001.3 2001-09        5 0.0000000000
## 8180   2001.3 2001-09        6 0.0000000000
## 8181   2001.3 2001-09        7 0.0000000000
## 8182   2001.3 2001-09        8 0.0000000000
## 8183   2001.3 2001-09        9 0.0000000000
## 8184   2001.3 2001-09       10 0.0000000000
## 8185   2001.3 2001-09       11 0.0000000000
## 8186   2001.3 2001-09       12 0.0000000000
## 8187   2001.3 2001-09       13 0.0000000000
## 8188   2001.3 2001-09       14 0.0000000000
## 8189   2001.3 2001-09       15 0.0000000000
## 8190   2001.3 2001-09       16 0.0000000000
## 8191   2001.3 2001-09       17 0.0000000000
## 8192   2001.3 2001-09       18 0.0000000000
## 8193   2001.3 2001-09       19 0.0000000000
## 8194   2001.3 2001-09       20 0.0000000000
## 8195   2001.3 2001-09       21 0.0000000000
## 8196   2001.3 2001-09       22 0.0000000000
## 8197   2001.3 2001-09       23 0.0000000000
## 8198   2001.3 2001-09       24 0.0000000000
## 8199   2001.3 2001-09       25 0.0000000000
## 8200   2001.3 2001-09       26 0.0000000000
## 8201   2001.3 2001-09       27 0.0000000000
## 8202   2001.3 2001-09       28 0.0000000000
## 8203   2001.3 2001-09       29 0.0000000000
## 8204   2001.3 2001-09       30 0.0000000000
## 8205   2001.3 2001-09       31 0.0000000000
## 8206   2001.3 2001-09       32 0.0000000000
## 8207   2001.3 2001-09       33 0.0000000000
## 8208   2001.3 2001-09       34 0.0000000000
## 8209   2001.3 2001-09       35 0.0000000000
## 8210   2001.3 2001-09       36 0.0000000000
## 8211   2001.3 2001-09       37 0.0000000000
## 8212   2001.3 2001-09       38 0.0000000000
## 8213   2001.3 2001-09       39 0.0000000000
## 8214   2001.3 2001-09       40 0.0000000000
## 8215   2001.3 2001-09       41 0.0000000000
## 8216   2001.3 2001-09       42 0.0000000000
## 8217   2001.3 2001-09       43 0.0000000000
## 8218   2001.3 2001-09       44 0.0000000000
## 8219   2001.3 2001-09       45 0.0000000000
## 8220   2001.3 2001-09       46 0.0000000000
## 8221   2001.3 2001-09       47 0.0000000000
## 8222   2001.3 2001-09       48 0.0000000000
## 8223   2001.3 2001-09       49 0.0000000000
## 8224   2001.3 2001-09       56 0.0000000000
## 8225   2001.3 2001-09       50 0.0000000000
## 8226   2001.3 2001-09       57 0.0000000000
## 8227   2001.3 2001-09       51 0.0000000000
## 8228   2001.3 2001-09       58 0.0000000000
## 8229   2001.3 2001-09       52 0.0000000000
## 8230   2001.3 2001-09       59 0.0000000000
## 8231   2001.3 2001-09       53 0.0000000000
## 8232   2001.3 2001-09       60 0.0000000000
## 8233   2001.3 2001-09       54 0.0000000000
## 8234   2001.3 2001-09       61 0.0000000000
## 8235   2001.3 2001-09       55 0.0000000000
## 8236   2001.4 2001-10        2 0.0000000000
## 8237   2001.4 2001-10       15 0.0014614541
## 8238   2001.4 2001-10       54 0.0456704421
## 8239   2001.4 2001-10        1 0.0007307271
## 8240   2001.4 2001-10       41 0.0073072707
## 8241   2001.4 2001-10       35 0.0021921812
## 8242   2001.4 2001-10       52 0.1125319693
## 8243   2001.4 2001-10       43 0.0062111801
## 8244   2001.4 2001-10       25 0.0014614541
## 8245   2001.4 2001-10       26 0.0029229083
## 8246   2001.4 2001-10       40 0.0142491779
## 8247   2001.4 2001-10       28 0.0040189989
## 8248   2001.4 2001-10       37 0.0109609061
## 8249   2001.4 2001-10       49 0.0708805261
## 8250   2001.4 2001-10       50 0.0471318962
## 8251   2001.4 2001-10       38 0.0193642674
## 8252   2001.4 2001-10       46 0.0182681768
## 8253   2001.4 2001-10       36 0.0105955426
## 8254   2001.4 2001-10       31 0.0047497260
## 8255   2001.4 2001-10       10 0.0007307271
## 8256   2001.4 2001-10       14 0.0014614541
## 8257   2001.4 2001-10       61 0.0632078919
## 8258   2001.4 2001-10       51 0.0288637194
## 8259   2001.4 2001-10       56 0.0686883449
## 8260   2001.4 2001-10       29 0.0058458166
## 8261   2001.4 2001-10       30 0.0073072707
## 8262   2001.4 2001-10        4 0.0000000000
## 8263   2001.4 2001-10       53 0.0398246255
## 8264   2001.4 2001-10       60 0.0522469858
## 8265   2001.4 2001-10       48 0.0259408111
## 8266   2001.4 2001-10       11 0.0003653635
## 8267   2001.4 2001-10       42 0.0076726343
## 8268   2001.4 2001-10       12 0.0032882718
## 8269   2001.4 2001-10       39 0.0252100840
## 8270   2001.4 2001-10       55 0.0719766167
## 8271   2001.4 2001-10       27 0.0018268177
## 8272   2001.4 2001-10       19 0.0003653635
## 8273   2001.4 2001-10       32 0.0029229083
## 8274   2001.4 2001-10       21 0.0014614541
## 8275   2001.4 2001-10       45 0.0350748995
## 8276   2001.4 2001-10       23 0.0010960906
## 8277   2001.4 2001-10       24 0.0003653635
## 8278   2001.4 2001-10       57 0.0347095360
## 8279   2001.4 2001-10        8 0.0000000000
## 8280   2001.4 2001-10       17 0.0003653635
## 8281   2001.4 2001-10       47 0.0365363537
## 8282   2001.4 2001-10        7 0.0000000000
## 8283   2001.4 2001-10       16 0.0000000000
## 8284   2001.4 2001-10       33 0.0058458166
## 8285   2001.4 2001-10        9 0.0000000000
## 8286   2001.4 2001-10       59 0.0317866277
## 8287   2001.4 2001-10       22 0.0058458166
## 8288   2001.4 2001-10       44 0.0084033613
## 8289   2001.4 2001-10       13 0.0014614541
## 8290   2001.4 2001-10       20 0.0010960906
## 8291   2001.4 2001-10        6 0.0000000000
## 8292   2001.4 2001-10       34 0.0168067227
## 8293   2001.4 2001-10       58 0.0295944465
## 8294   2001.4 2001-10        5 0.0003653635
## 8295   2001.4 2001-10       18 0.0007307271
## 8296   2001.4 2001-10        3 0.0000000000
## 8297   2001.4 2001-10        2 0.0000000000
## 8298   2001.4 2001-10       15 0.0014614541
## 8299   2001.4 2001-10       54 0.0456704421
## 8300   2001.4 2001-10        1 0.0007307271
## 8301   2001.4 2001-10       41 0.0073072707
## 8302   2001.4 2001-10       35 0.0021921812
## 8303   2001.4 2001-10       52 0.1125319693
## 8304   2001.4 2001-10       43 0.0062111801
## 8305   2001.4 2001-10       25 0.0014614541
## 8306   2001.4 2001-10       26 0.0029229083
## 8307   2001.4 2001-10       40 0.0142491779
## 8308   2001.4 2001-10       28 0.0040189989
## 8309   2001.4 2001-10       37 0.0109609061
## 8310   2001.4 2001-10       49 0.0708805261
## 8311   2001.4 2001-10       50 0.0471318962
## 8312   2001.4 2001-10       38 0.0193642674
## 8313   2001.4 2001-10       46 0.0182681768
## 8314   2001.4 2001-10       36 0.0105955426
## 8315   2001.4 2001-10       31 0.0047497260
## 8316   2001.4 2001-10       10 0.0007307271
## 8317   2001.4 2001-10       14 0.0014614541
## 8318   2001.4 2001-10       61 0.0632078919
## 8319   2001.4 2001-10       51 0.0288637194
## 8320   2001.4 2001-10       56 0.0686883449
## 8321   2001.4 2001-10       29 0.0058458166
## 8322   2001.4 2001-10       30 0.0073072707
## 8323   2001.4 2001-10        4 0.0000000000
## 8324   2001.4 2001-10       53 0.0398246255
## 8325   2001.4 2001-10       60 0.0522469858
## 8326   2001.4 2001-10       48 0.0259408111
## 8327   2001.4 2001-10       11 0.0003653635
## 8328   2001.4 2001-10       42 0.0076726343
## 8329   2001.4 2001-10       12 0.0032882718
## 8330   2001.4 2001-10       39 0.0252100840
## 8331   2001.4 2001-10       55 0.0719766167
## 8332   2001.4 2001-10       27 0.0018268177
## 8333   2001.4 2001-10       19 0.0003653635
## 8334   2001.4 2001-10       32 0.0029229083
## 8335   2001.4 2001-10       21 0.0014614541
## 8336   2001.4 2001-10       45 0.0350748995
## 8337   2001.4 2001-10       23 0.0010960906
## 8338   2001.4 2001-10       24 0.0003653635
## 8339   2001.4 2001-10       57 0.0347095360
## 8340   2001.4 2001-10        8 0.0000000000
## 8341   2001.4 2001-10       17 0.0003653635
## 8342   2001.4 2001-10       47 0.0365363537
## 8343   2001.4 2001-10        7 0.0000000000
## 8344   2001.4 2001-10       16 0.0000000000
## 8345   2001.4 2001-10       33 0.0058458166
## 8346   2001.4 2001-10        9 0.0000000000
## 8347   2001.4 2001-10       59 0.0317866277
## 8348   2001.4 2001-10       22 0.0058458166
## 8349   2001.4 2001-10       44 0.0084033613
## 8350   2001.4 2001-10       13 0.0014614541
## 8351   2001.4 2001-10       20 0.0010960906
## 8352   2001.4 2001-10        6 0.0000000000
## 8353   2001.4 2001-10       34 0.0168067227
## 8354   2001.4 2001-10       58 0.0295944465
## 8355   2001.4 2001-10        5 0.0003653635
## 8356   2001.4 2001-10       18 0.0007307271
## 8357   2001.4 2001-10        3 0.0000000000
## 8358   2001.4 2001-10        1 0.0128205128
## 8359   2001.4 2001-10        2 0.0000000000
## 8360   2001.4 2001-10        3 0.0000000000
## 8361   2001.4 2001-10        4 0.0000000000
## 8362   2001.4 2001-10        5 0.0128205128
## 8363   2001.4 2001-10        6 0.0128205128
## 8364   2001.4 2001-10        7 0.0000000000
## 8365   2001.4 2001-10        8 0.0000000000
## 8366   2001.4 2001-10        9 0.0128205128
## 8367   2001.4 2001-10       10 0.0000000000
## 8368   2001.4 2001-10       11 0.0000000000
## 8369   2001.4 2001-10       12 0.0000000000
## 8370   2001.4 2001-10       13 0.0000000000
## 8371   2001.4 2001-10       14 0.0000000000
## 8372   2001.4 2001-10       15 0.0000000000
## 8373   2001.4 2001-10       16 0.0000000000
## 8374   2001.4 2001-10       17 0.0000000000
## 8375   2001.4 2001-10       18 0.0000000000
## 8376   2001.4 2001-10       19 0.0000000000
## 8377   2001.4 2001-10       20 0.0000000000
## 8378   2001.4 2001-10       21 0.0512820513
## 8379   2001.4 2001-10       22 0.0000000000
## 8380   2001.4 2001-10       23 0.0256410256
## 8381   2001.4 2001-10       24 0.0000000000
## 8382   2001.4 2001-10       25 0.0000000000
## 8383   2001.4 2001-10       26 0.0384615385
## 8384   2001.4 2001-10       27 0.0000000000
## 8385   2001.4 2001-10       28 0.0000000000
## 8386   2001.4 2001-10       29 0.0000000000
## 8387   2001.4 2001-10       30 0.0000000000
## 8388   2001.4 2001-10       31 0.0000000000
## 8389   2001.4 2001-10       32 0.0000000000
## 8390   2001.4 2001-10       33 0.0384615385
## 8391   2001.4 2001-10       34 0.0000000000
## 8392   2001.4 2001-10       35 0.0000000000
## 8393   2001.4 2001-10       36 0.0256410256
## 8394   2001.4 2001-10       37 0.0128205128
## 8395   2001.4 2001-10       38 0.0000000000
## 8396   2001.4 2001-10       39 0.0256410256
## 8397   2001.4 2001-10       40 0.0000000000
## 8398   2001.4 2001-10       41 0.0128205128
## 8399   2001.4 2001-10       42 0.0128205128
## 8400   2001.4 2001-10       43 0.0000000000
## 8401   2001.4 2001-10       44 0.0128205128
## 8402   2001.4 2001-10       45 0.0256410256
## 8403   2001.4 2001-10       46 0.0384615385
## 8404   2001.4 2001-10       47 0.0000000000
## 8405   2001.4 2001-10       48 0.0128205128
## 8406   2001.4 2001-10       49 0.0128205128
## 8407   2001.4 2001-10       53 0.0256410256
## 8408   2001.4 2001-10       50 0.2051282051
## 8409   2001.4 2001-10       54 0.0256410256
## 8410   2001.4 2001-10       51 0.0128205128
## 8411   2001.4 2001-10       55 0.0000000000
## 8412   2001.4 2001-10       52 0.0384615385
## 8413   2001.4 2001-10       56 0.1282051282
## 8414   2001.4 2001-10       57 0.0128205128
## 8415   2001.4 2001-10       58 0.0256410256
## 8416   2001.4 2001-10       60 0.0000000000
## 8417   2001.4 2001-10       59 0.1153846154
## 8418   2001.4 2001-10       61 0.0128205128
## 8419   2001.4 2001-11       10 0.0070422535
## 8420   2001.4 2001-11       23 0.0000000000
## 8421   2001.4 2001-11       40 0.0000000000
## 8422   2001.4 2001-11       58 0.0070422535
## 8423   2001.4 2001-11       49 0.0563380282
## 8424   2001.4 2001-11        9 0.0000000000
## 8425   2001.4 2001-11       29 0.0211267606
## 8426   2001.4 2001-11       38 0.0070422535
## 8427   2001.4 2001-11       37 0.0422535211
## 8428   2001.4 2001-11       56 0.0000000000
## 8429   2001.4 2001-11       36 0.0000000000
## 8430   2001.4 2001-11        4 0.0070422535
## 8431   2001.4 2001-11       43 0.0140845070
## 8432   2001.4 2001-11       53 0.0281690141
## 8433   2001.4 2001-11       14 0.0000000000
## 8434   2001.4 2001-11        6 0.0070422535
## 8435   2001.4 2001-11       59 0.0492957746
## 8436   2001.4 2001-11       35 0.0070422535
## 8437   2001.4 2001-11       34 0.0000000000
## 8438   2001.4 2001-11       20 0.0000000000
## 8439   2001.4 2001-11       24 0.0000000000
## 8440   2001.4 2001-11       19 0.0140845070
## 8441   2001.4 2001-11       41 0.0140845070
## 8442   2001.4 2001-11       16 0.0000000000
## 8443   2001.4 2001-11       55 0.0492957746
## 8444   2001.4 2001-11        3 0.0000000000
## 8445   2001.4 2001-11       45 0.0000000000
## 8446   2001.4 2001-11        7 0.0000000000
## 8447   2001.4 2001-11       47 0.0140845070
## 8448   2001.4 2001-11       44 0.0070422535
## 8449   2001.4 2001-11       46 0.0492957746
## 8450   2001.4 2001-11        5 0.0000000000
## 8451   2001.4 2001-11       27 0.0070422535
## 8452   2001.4 2001-11       11 0.0000000000
## 8453   2001.4 2001-11       60 0.0422535211
## 8454   2001.4 2001-11       52 0.0422535211
## 8455   2001.4 2001-11       15 0.0000000000
## 8456   2001.4 2001-11        2 0.0070422535
## 8457   2001.4 2001-11       22 0.0000000000
## 8458   2001.4 2001-11       33 0.0000000000
## 8459   2001.4 2001-11       30 0.0000000000
## 8460   2001.4 2001-11       17 0.0070422535
## 8461   2001.4 2001-11       42 0.0000000000
## 8462   2001.4 2001-11       48 0.0070422535
## 8463   2001.4 2001-11       28 0.0000000000
## 8464   2001.4 2001-11       39 0.0140845070
## 8465   2001.4 2001-11        1 0.0070422535
## 8466   2001.4 2001-11       21 0.0000000000
## 8467   2001.4 2001-11       18 0.0000000000
## 8468   2001.4 2001-11       25 0.0000000000
## 8469   2001.4 2001-11       32 0.0211267606
## 8470   2001.4 2001-11       57 0.0352112676
## 8471   2001.4 2001-11       50 0.1901408451
## 8472   2001.4 2001-11       54 0.0985915493
## 8473   2001.4 2001-11       13 0.0000000000
## 8474   2001.4 2001-11       12 0.0000000000
## 8475   2001.4 2001-11       51 0.0915492958
## 8476   2001.4 2001-11       31 0.0070422535
## 8477   2001.4 2001-11       61 0.0140845070
## 8478   2001.4 2001-11       26 0.0000000000
## 8479   2001.4 2001-11        8 0.0070422535
## 8480   2002.1 2002-01        1 0.6666666667
## 8481   2002.1 2002-01        2 0.3333333333
## 8482   2002.1 2002-01        3 0.0000000000
## 8483   2002.1 2002-01        4 0.0000000000
## 8484   2002.1 2002-01        5 0.0000000000
## 8485   2002.1 2002-01        6 0.0000000000
## 8486   2002.1 2002-01        7 0.0000000000
## 8487   2002.1 2002-01        8 0.0000000000
## 8488   2002.1 2002-01        9 0.0000000000
## 8489   2002.1 2002-01       10 0.0000000000
## 8490   2002.1 2002-01       11 0.0000000000
## 8491   2002.1 2002-01       12 0.0000000000
## 8492   2002.1 2002-01       13 0.0000000000
## 8493   2002.1 2002-01       14 0.0000000000
## 8494   2002.1 2002-01       15 0.0000000000
## 8495   2002.1 2002-01       16 0.0000000000
## 8496   2002.1 2002-01       17 0.0000000000
## 8497   2002.1 2002-01       18 0.0000000000
## 8498   2002.1 2002-01       19 0.0000000000
## 8499   2002.1 2002-01       20 0.0000000000
## 8500   2002.1 2002-01       21 0.0000000000
## 8501   2002.1 2002-01       22 0.0000000000
## 8502   2002.1 2002-01       23 0.0000000000
## 8503   2002.1 2002-01       24 0.0000000000
## 8504   2002.1 2002-01       25 0.0000000000
## 8505   2002.1 2002-01       26 0.0000000000
## 8506   2002.1 2002-01       27 0.0000000000
## 8507   2002.1 2002-01       28 0.0000000000
## 8508   2002.1 2002-01       29 0.0000000000
## 8509   2002.1 2002-01       30 0.0000000000
## 8510   2002.1 2002-01       31 0.0000000000
## 8511   2002.1 2002-01       32 0.0000000000
## 8512   2002.1 2002-01       33 0.0000000000
## 8513   2002.1 2002-01       34 0.0000000000
## 8514   2002.1 2002-01       35 0.0000000000
## 8515   2002.1 2002-01       36 0.0000000000
## 8516   2002.1 2002-01       37 0.0000000000
## 8517   2002.1 2002-01       38 0.0000000000
## 8518   2002.1 2002-01       39 0.0000000000
## 8519   2002.1 2002-01       40 0.0000000000
## 8520   2002.1 2002-01       41 0.0000000000
## 8521   2002.1 2002-01       42 0.0000000000
## 8522   2002.1 2002-01       43 0.0000000000
## 8523   2002.1 2002-01       44 0.0000000000
## 8524   2002.1 2002-01       45 0.0000000000
## 8525   2002.1 2002-01       46 0.0000000000
## 8526   2002.1 2002-01       47 0.0000000000
## 8527   2002.1 2002-01       48 0.0000000000
## 8528   2002.1 2002-01       49 0.0000000000
## 8529   2002.1 2002-01       50 0.0000000000
## 8530   2002.1 2002-01       51 0.0000000000
## 8531   2002.1 2002-01       52 0.0000000000
## 8532   2002.1 2002-01       56 0.0000000000
## 8533   2002.1 2002-01       53 0.0000000000
## 8534   2002.1 2002-01       57 0.0000000000
## 8535   2002.1 2002-01       54 0.0000000000
## 8536   2002.1 2002-01       58 0.0000000000
## 8537   2002.1 2002-01       55 0.0000000000
## 8538   2002.1 2002-01       60 0.0000000000
## 8539   2002.1 2002-01       59 0.0000000000
## 8540   2002.1 2002-01       61 0.0000000000
## 8541   2001.1 2001-02        1 0.0067796610
## 8542   2001.1 2001-02        2 0.0000000000
## 8543   2001.1 2001-02        3 0.0000000000
## 8544   2001.1 2001-02        4 0.0000000000
## 8545   2001.1 2001-02        5 0.0000000000
## 8546   2001.1 2001-02        6 0.0000000000
## 8547   2001.1 2001-02        7 0.0000000000
## 8548   2001.1 2001-02        8 0.0000000000
## 8549   2001.1 2001-02        9 0.0000000000
## 8550   2001.1 2001-02       10 0.0000000000
## 8551   2001.1 2001-02       11 0.0000000000
## 8552   2001.1 2001-02       12 0.0000000000
## 8553   2001.1 2001-02       13 0.0033898305
## 8554   2001.1 2001-02       14 0.0000000000
## 8555   2001.1 2001-02       15 0.0000000000
## 8556   2001.1 2001-02       16 0.0000000000
## 8557   2001.1 2001-02       17 0.0000000000
## 8558   2001.1 2001-02       18 0.0000000000
## 8559   2001.1 2001-02       19 0.0000000000
## 8560   2001.1 2001-02       20 0.0000000000
## 8561   2001.1 2001-02       21 0.0000000000
## 8562   2001.1 2001-02       22 0.0000000000
## 8563   2001.1 2001-02       23 0.0000000000
## 8564   2001.1 2001-02       24 0.0000000000
## 8565   2001.1 2001-02       25 0.0000000000
## 8566   2001.1 2001-02       26 0.0000000000
## 8567   2001.1 2001-02       27 0.0000000000
## 8568   2001.1 2001-02       28 0.0033898305
## 8569   2001.1 2001-02       29 0.0000000000
## 8570   2001.1 2001-02       30 0.0000000000
## 8571   2001.1 2001-02       31 0.0067796610
## 8572   2001.1 2001-02       32 0.0000000000
## 8573   2001.1 2001-02       33 0.0101694915
## 8574   2001.1 2001-02       34 0.0033898305
## 8575   2001.1 2001-02       35 0.0000000000
## 8576   2001.1 2001-02       36 0.0067796610
## 8577   2001.1 2001-02       37 0.0000000000
## 8578   2001.1 2001-02       38 0.0101694915
## 8579   2001.1 2001-02       39 0.0000000000
## 8580   2001.1 2001-02       40 0.0033898305
## 8581   2001.1 2001-02       41 0.0067796610
## 8582   2001.1 2001-02       42 0.0135593220
## 8583   2001.1 2001-02       43 0.0000000000
## 8584   2001.1 2001-02       44 0.0135593220
## 8585   2001.1 2001-02       45 0.0033898305
## 8586   2001.1 2001-02       46 0.0033898305
## 8587   2001.1 2001-02       47 0.0135593220
## 8588   2001.1 2001-02       48 0.0033898305
## 8589   2001.1 2001-02       49 0.0000000000
## 8590   2001.1 2001-02       50 0.0033898305
## 8591   2001.1 2001-02       51 0.0372881356
## 8592   2001.1 2001-02       52 0.0169491525
## 8593   2001.1 2001-02       59 0.0813559322
## 8594   2001.1 2001-02       56 0.1389830508
## 8595   2001.1 2001-02       53 0.0135593220
## 8596   2001.1 2001-02       60 0.0983050847
## 8597   2001.1 2001-02       57 0.0847457627
## 8598   2001.1 2001-02       54 0.1728813559
## 8599   2001.1 2001-02       61 0.1016949153
## 8600   2001.1 2001-02       58 0.0440677966
## 8601   2001.1 2001-02       55 0.0949152542
## 8602   2001.3 2001-09        1 1.0000000000
## 8603   2001.3 2001-09        2 0.0000000000
## 8604   2001.3 2001-09        3 0.0000000000
## 8605   2001.3 2001-09        4 0.0000000000
## 8606   2001.3 2001-09        5 0.0000000000
## 8607   2001.3 2001-09        6 0.0000000000
## 8608   2001.3 2001-09        7 0.0000000000
## 8609   2001.3 2001-09        8 0.0000000000
## 8610   2001.3 2001-09        9 0.0000000000
## 8611   2001.3 2001-09       10 0.0000000000
## 8612   2001.3 2001-09       11 0.0000000000
## 8613   2001.3 2001-09       12 0.0000000000
## 8614   2001.3 2001-09       13 0.0000000000
## 8615   2001.3 2001-09       14 0.0000000000
## 8616   2001.3 2001-09       15 0.0000000000
## 8617   2001.3 2001-09       16 0.0000000000
## 8618   2001.3 2001-09       17 0.0000000000
## 8619   2001.3 2001-09       18 0.0000000000
## 8620   2001.3 2001-09       19 0.0000000000
## 8621   2001.3 2001-09       20 0.0000000000
## 8622   2001.3 2001-09       21 0.0000000000
## 8623   2001.3 2001-09       22 0.0000000000
## 8624   2001.3 2001-09       23 0.0000000000
## 8625   2001.3 2001-09       24 0.0000000000
## 8626   2001.3 2001-09       25 0.0000000000
## 8627   2001.3 2001-09       26 0.0000000000
## 8628   2001.3 2001-09       27 0.0000000000
## 8629   2001.3 2001-09       28 0.0000000000
## 8630   2001.3 2001-09       29 0.0000000000
## 8631   2001.3 2001-09       30 0.0000000000
## 8632   2001.3 2001-09       31 0.0000000000
## 8633   2001.3 2001-09       32 0.0000000000
## 8634   2001.3 2001-09       33 0.0000000000
## 8635   2001.3 2001-09       34 0.0000000000
## 8636   2001.3 2001-09       35 0.0000000000
## 8637   2001.3 2001-09       36 0.0000000000
## 8638   2001.3 2001-09       37 0.0000000000
## 8639   2001.3 2001-09       38 0.0000000000
## 8640   2001.3 2001-09       39 0.0000000000
## 8641   2001.3 2001-09       40 0.0000000000
## 8642   2001.3 2001-09       41 0.0000000000
## 8643   2001.3 2001-09       42 0.0000000000
## 8644   2001.3 2001-09       43 0.0000000000
## 8645   2001.3 2001-09       44 0.0000000000
## 8646   2001.3 2001-09       45 0.0000000000
## 8647   2001.3 2001-09       46 0.0000000000
## 8648   2001.3 2001-09       47 0.0000000000
## 8649   2001.3 2001-09       48 0.0000000000
## 8650   2001.3 2001-09       49 0.0000000000
## 8651   2001.3 2001-09       56 0.0000000000
## 8652   2001.3 2001-09       50 0.0000000000
## 8653   2001.3 2001-09       57 0.0000000000
## 8654   2001.3 2001-09       51 0.0000000000
## 8655   2001.3 2001-09       58 0.0000000000
## 8656   2001.3 2001-09       52 0.0000000000
## 8657   2001.3 2001-09       59 0.0000000000
## 8658   2001.3 2001-09       53 0.0000000000
## 8659   2001.3 2001-09       60 0.0000000000
## 8660   2001.3 2001-09       54 0.0000000000
## 8661   2001.3 2001-09       61 0.0000000000
## 8662   2001.3 2001-09       55 0.0000000000
## 8663   2001.2 2001-05        1 0.0476190476
## 8664   2001.2 2001-05        2 0.0000000000
## 8665   2001.2 2001-05        3 0.0000000000
## 8666   2001.2 2001-05        4 0.0000000000
## 8667   2001.2 2001-05        5 0.0000000000
## 8668   2001.2 2001-05        6 0.0000000000
## 8669   2001.2 2001-05        7 0.0000000000
## 8670   2001.2 2001-05        8 0.0000000000
## 8671   2001.2 2001-05        9 0.0000000000
## 8672   2001.2 2001-05       10 0.0476190476
## 8673   2001.2 2001-05       11 0.0000000000
## 8674   2001.2 2001-05       12 0.0000000000
## 8675   2001.2 2001-05       13 0.0000000000
## 8676   2001.2 2001-05       14 0.0000000000
## 8677   2001.2 2001-05       15 0.0000000000
## 8678   2001.2 2001-05       16 0.0000000000
## 8679   2001.2 2001-05       17 0.0000000000
## 8680   2001.2 2001-05       18 0.0000000000
## 8681   2001.2 2001-05       19 0.0000000000
## 8682   2001.2 2001-05       20 0.0000000000
## 8683   2001.2 2001-05       21 0.0000000000
## 8684   2001.2 2001-05       22 0.0000000000
## 8685   2001.2 2001-05       23 0.0000000000
## 8686   2001.2 2001-05       24 0.0000000000
## 8687   2001.2 2001-05       25 0.0000000000
## 8688   2001.2 2001-05       26 0.0000000000
## 8689   2001.2 2001-05       27 0.0000000000
## 8690   2001.2 2001-05       28 0.0476190476
## 8691   2001.2 2001-05       29 0.0000000000
## 8692   2001.2 2001-05       30 0.0000000000
## 8693   2001.2 2001-05       31 0.0000000000
## 8694   2001.2 2001-05       32 0.0000000000
## 8695   2001.2 2001-05       33 0.0000000000
## 8696   2001.2 2001-05       34 0.0000000000
## 8697   2001.2 2001-05       35 0.0000000000
## 8698   2001.2 2001-05       36 0.0000000000
## 8699   2001.2 2001-05       37 0.0000000000
## 8700   2001.2 2001-05       38 0.0000000000
## 8701   2001.2 2001-05       39 0.0000000000
## 8702   2001.2 2001-05       40 0.0000000000
## 8703   2001.2 2001-05       41 0.0952380952
## 8704   2001.2 2001-05       42 0.0000000000
## 8705   2001.2 2001-05       46 0.0000000000
## 8706   2001.2 2001-05       43 0.0952380952
## 8707   2001.2 2001-05       47 0.0000000000
## 8708   2001.2 2001-05       44 0.0000000000
## 8709   2001.2 2001-05       48 0.0000000000
## 8710   2001.2 2001-05       45 0.0000000000
## 8711   2001.2 2001-05       49 0.0000000000
## 8712   2001.2 2001-05       50 0.0000000000
## 8713   2001.2 2001-05       51 0.2380952381
## 8714   2001.2 2001-05       52 0.0000000000
## 8715   2001.2 2001-05       53 0.0000000000
## 8716   2001.2 2001-05       54 0.0000000000
## 8717   2001.2 2001-05       55 0.0000000000
## 8718   2001.2 2001-05       56 0.0476190476
## 8719   2001.2 2001-05       57 0.0000000000
## 8720   2001.2 2001-05       58 0.2857142857
## 8721   2001.2 2001-05       59 0.0476190476
## 8722   2001.2 2001-05       60 0.0476190476
## 8723   2001.2 2001-05       61 0.0000000000
## 8724   2002.2 2002-06        1 0.0112359551
## 8725   2002.2 2002-06       11 0.0000000000
## 8726   2002.2 2002-06        2 0.0000000000
## 8727   2002.2 2002-06       12 0.0000000000
## 8728   2002.2 2002-06        3 0.0000000000
## 8729   2002.2 2002-06       13 0.0000000000
## 8730   2002.2 2002-06        4 0.0000000000
## 8731   2002.2 2002-06       14 0.0000000000
## 8732   2002.2 2002-06        5 0.0000000000
## 8733   2002.2 2002-06       15 0.0000000000
## 8734   2002.2 2002-06        6 0.0000000000
## 8735   2002.2 2002-06       16 0.0000000000
## 8736   2002.2 2002-06        7 0.0000000000
## 8737   2002.2 2002-06       17 0.0000000000
## 8738   2002.2 2002-06        8 0.0112359551
## 8739   2002.2 2002-06       18 0.0000000000
## 8740   2002.2 2002-06        9 0.0000000000
## 8741   2002.2 2002-06       19 0.0000000000
## 8742   2002.2 2002-06       10 0.0000000000
## 8743   2002.2 2002-06       20 0.0056179775
## 8744   2002.2 2002-06       21 0.0000000000
## 8745   2002.2 2002-06       22 0.0000000000
## 8746   2002.2 2002-06       23 0.0056179775
## 8747   2002.2 2002-06       24 0.0168539326
## 8748   2002.2 2002-06       25 0.0000000000
## 8749   2002.2 2002-06       26 0.0168539326
## 8750   2002.2 2002-06       27 0.0112359551
## 8751   2002.2 2002-06       28 0.0056179775
## 8752   2002.2 2002-06       29 0.0224719101
## 8753   2002.2 2002-06       30 0.0056179775
## 8754   2002.2 2002-06       31 0.0224719101
## 8755   2002.2 2002-06       32 0.0056179775
## 8756   2002.2 2002-06       33 0.0000000000
## 8757   2002.2 2002-06       34 0.0000000000
## 8758   2002.2 2002-06       35 0.0112359551
## 8759   2002.2 2002-06       36 0.0168539326
## 8760   2002.2 2002-06       37 0.0168539326
## 8761   2002.2 2002-06       38 0.0112359551
## 8762   2002.2 2002-06       39 0.0056179775
## 8763   2002.2 2002-06       40 0.0112359551
## 8764   2002.2 2002-06       41 0.0112359551
## 8765   2002.2 2002-06       42 0.0056179775
## 8766   2002.2 2002-06       43 0.0112359551
## 8767   2002.2 2002-06       44 0.0280898876
## 8768   2002.2 2002-06       45 0.0280898876
## 8769   2002.2 2002-06       46 0.0224719101
## 8770   2002.2 2002-06       47 0.0505617978
## 8771   2002.2 2002-06       48 0.0617977528
## 8772   2002.2 2002-06       49 0.0393258427
## 8773   2002.2 2002-06       50 0.0393258427
## 8774   2002.2 2002-06       51 0.0393258427
## 8775   2002.2 2002-06       52 0.0056179775
## 8776   2002.2 2002-06       53 0.0168539326
## 8777   2002.2 2002-06       54 0.0056179775
## 8778   2002.2 2002-06       55 0.0561797753
## 8779   2002.2 2002-06       56 0.0674157303
## 8780   2002.2 2002-06       57 0.0561797753
## 8781   2002.2 2002-06       58 0.0224719101
## 8782   2002.2 2002-06       59 0.0955056180
## 8783   2002.2 2002-06       60 0.0786516854
## 8784   2002.2 2002-06       61 0.0449438202
## 8785   2002.1 2002-02        1 0.0357142857
## 8786   2002.1 2002-02        2 0.0000000000
## 8787   2002.1 2002-02        3 0.0000000000
## 8788   2002.1 2002-02        4 0.0000000000
## 8789   2002.1 2002-02        5 0.0000000000
## 8790   2002.1 2002-02        6 0.0000000000
## 8791   2002.1 2002-02        7 0.0000000000
## 8792   2002.1 2002-02        8 0.0000000000
## 8793   2002.1 2002-02        9 0.0000000000
## 8794   2002.1 2002-02       10 0.0000000000
## 8795   2002.1 2002-02       11 0.0000000000
## 8796   2002.1 2002-02       12 0.0000000000
## 8797   2002.1 2002-02       13 0.0000000000
## 8798   2002.1 2002-02       14 0.0000000000
## 8799   2002.1 2002-02       15 0.0000000000
## 8800   2002.1 2002-02       16 0.0000000000
## 8801   2002.1 2002-02       17 0.0000000000
## 8802   2002.1 2002-02       18 0.0000000000
## 8803   2002.1 2002-02       19 0.0000000000
## 8804   2002.1 2002-02       20 0.0714285714
## 8805   2002.1 2002-02       21 0.0000000000
## 8806   2002.1 2002-02       22 0.0000000000
## 8807   2002.1 2002-02       23 0.0000000000
## 8808   2002.1 2002-02       24 0.0000000000
## 8809   2002.1 2002-02       25 0.0357142857
## 8810   2002.1 2002-02       26 0.0357142857
## 8811   2002.1 2002-02       27 0.0357142857
## 8812   2002.1 2002-02       28 0.0000000000
## 8813   2002.1 2002-02       29 0.0000000000
## 8814   2002.1 2002-02       30 0.0000000000
## 8815   2002.1 2002-02       31 0.0000000000
## 8816   2002.1 2002-02       32 0.0357142857
## 8817   2002.1 2002-02       33 0.0000000000
## 8818   2002.1 2002-02       34 0.0714285714
## 8819   2002.1 2002-02       35 0.0000000000
## 8820   2002.1 2002-02       36 0.0000000000
## 8821   2002.1 2002-02       37 0.0000000000
## 8822   2002.1 2002-02       38 0.0000000000
## 8823   2002.1 2002-02       39 0.0000000000
## 8824   2002.1 2002-02       40 0.0357142857
## 8825   2002.1 2002-02       41 0.0714285714
## 8826   2002.1 2002-02       42 0.0000000000
## 8827   2002.1 2002-02       43 0.0000000000
## 8828   2002.1 2002-02       44 0.0357142857
## 8829   2002.1 2002-02       45 0.0000000000
## 8830   2002.1 2002-02       46 0.0000000000
## 8831   2002.1 2002-02       47 0.0000000000
## 8832   2002.1 2002-02       48 0.0357142857
## 8833   2002.1 2002-02       49 0.0357142857
## 8834   2002.1 2002-02       50 0.0357142857
## 8835   2002.1 2002-02       51 0.0714285714
## 8836   2002.1 2002-02       52 0.0357142857
## 8837   2002.1 2002-02       56 0.0357142857
## 8838   2002.1 2002-02       53 0.0000000000
## 8839   2002.1 2002-02       57 0.0000000000
## 8840   2002.1 2002-02       54 0.0357142857
## 8841   2002.1 2002-02       58 0.0357142857
## 8842   2002.1 2002-02       55 0.2142857143
## 8843   2002.1 2002-02       61 0.0000000000
## 8844   2002.1 2002-02       59 0.0000000000
## 8845   2002.1 2002-02       60 0.0000000000
## 8846   2001.3 2001-07        1 1.0000000000
## 8847   2001.3 2001-07        2 0.0000000000
## 8848   2001.3 2001-07        3 0.0000000000
## 8849   2001.3 2001-07        4 0.0000000000
## 8850   2001.3 2001-07        5 0.0000000000
## 8851   2001.3 2001-07        6 0.0000000000
## 8852   2001.3 2001-07        7 0.0000000000
## 8853   2001.3 2001-07        8 0.0000000000
## 8854   2001.3 2001-07        9 0.0000000000
## 8855   2001.3 2001-07       10 0.0000000000
## 8856   2001.3 2001-07       11 0.0000000000
## 8857   2001.3 2001-07       12 0.0000000000
## 8858   2001.3 2001-07       13 0.0000000000
## 8859   2001.3 2001-07       14 0.0000000000
## 8860   2001.3 2001-07       15 0.0000000000
## 8861   2001.3 2001-07       16 0.0000000000
## 8862   2001.3 2001-07       17 0.0000000000
## 8863   2001.3 2001-07       18 0.0000000000
## 8864   2001.3 2001-07       19 0.0000000000
## 8865   2001.3 2001-07       20 0.0000000000
## 8866   2001.3 2001-07       21 0.0000000000
## 8867   2001.3 2001-07       22 0.0000000000
## 8868   2001.3 2001-07       23 0.0000000000
## 8869   2001.3 2001-07       24 0.0000000000
## 8870   2001.3 2001-07       25 0.0000000000
## 8871   2001.3 2001-07       26 0.0000000000
## 8872   2001.3 2001-07       27 0.0000000000
## 8873   2001.3 2001-07       28 0.0000000000
## 8874   2001.3 2001-07       29 0.0000000000
## 8875   2001.3 2001-07       30 0.0000000000
## 8876   2001.3 2001-07       31 0.0000000000
## 8877   2001.3 2001-07       32 0.0000000000
## 8878   2001.3 2001-07       33 0.0000000000
## 8879   2001.3 2001-07       34 0.0000000000
## 8880   2001.3 2001-07       35 0.0000000000
## 8881   2001.3 2001-07       36 0.0000000000
## 8882   2001.3 2001-07       37 0.0000000000
## 8883   2001.3 2001-07       38 0.0000000000
## 8884   2001.3 2001-07       39 0.0000000000
## 8885   2001.3 2001-07       40 0.0000000000
## 8886   2001.3 2001-07       41 0.0000000000
## 8887   2001.3 2001-07       42 0.0000000000
## 8888   2001.3 2001-07       43 0.0000000000
## 8889   2001.3 2001-07       44 0.0000000000
## 8890   2001.3 2001-07       45 0.0000000000
## 8891   2001.3 2001-07       46 0.0000000000
## 8892   2001.3 2001-07       47 0.0000000000
## 8893   2001.3 2001-07       48 0.0000000000
## 8894   2001.3 2001-07       49 0.0000000000
## 8895   2001.3 2001-07       50 0.0000000000
## 8896   2001.3 2001-07       51 0.0000000000
## 8897   2001.3 2001-07       52 0.0000000000
## 8898   2001.3 2001-07       53 0.0000000000
## 8899   2001.3 2001-07       55 0.0000000000
## 8900   2001.3 2001-07       54 0.0000000000
## 8901   2001.3 2001-07       56 0.0000000000
## 8902   2001.3 2001-07       58 0.0000000000
## 8903   2001.3 2001-07       57 0.0000000000
## 8904   2001.3 2001-07       59 0.0000000000
## 8905   2001.3 2001-07       60 0.0000000000
## 8906   2001.3 2001-07       61 0.0000000000
## 8907   2001.3 2001-07        1 0.2500000000
## 8908   2001.3 2001-07        2 0.0000000000
## 8909   2001.3 2001-07        3 0.0000000000
## 8910   2001.3 2001-07        4 0.0000000000
## 8911   2001.3 2001-07        5 0.0000000000
## 8912   2001.3 2001-07        6 0.0000000000
## 8913   2001.3 2001-07        7 0.0000000000
## 8914   2001.3 2001-07        8 0.5000000000
## 8915   2001.3 2001-07        9 0.0000000000
## 8916   2001.3 2001-07       10 0.0000000000
## 8917   2001.3 2001-07       11 0.0000000000
## 8918   2001.3 2001-07       12 0.0000000000
## 8919   2001.3 2001-07       13 0.0000000000
## 8920   2001.3 2001-07       14 0.2500000000
## 8921   2001.3 2001-07       15 0.0000000000
## 8922   2001.3 2001-07       16 0.0000000000
## 8923   2001.3 2001-07       17 0.0000000000
## 8924   2001.3 2001-07       18 0.0000000000
## 8925   2001.3 2001-07       19 0.0000000000
## 8926   2001.3 2001-07       20 0.0000000000
## 8927   2001.3 2001-07       21 0.0000000000
## 8928   2001.3 2001-07       22 0.0000000000
## 8929   2001.3 2001-07       23 0.0000000000
## 8930   2001.3 2001-07       24 0.0000000000
## 8931   2001.3 2001-07       25 0.0000000000
## 8932   2001.3 2001-07       26 0.0000000000
## 8933   2001.3 2001-07       27 0.0000000000
## 8934   2001.3 2001-07       28 0.0000000000
## 8935   2001.3 2001-07       29 0.0000000000
## 8936   2001.3 2001-07       30 0.0000000000
## 8937   2001.3 2001-07       31 0.0000000000
## 8938   2001.3 2001-07       32 0.0000000000
## 8939   2001.3 2001-07       33 0.0000000000
## 8940   2001.3 2001-07       34 0.0000000000
## 8941   2001.3 2001-07       35 0.0000000000
## 8942   2001.3 2001-07       36 0.0000000000
## 8943   2001.3 2001-07       37 0.0000000000
## 8944   2001.3 2001-07       38 0.0000000000
## 8945   2001.3 2001-07       39 0.0000000000
## 8946   2001.3 2001-07       40 0.0000000000
## 8947   2001.3 2001-07       41 0.0000000000
## 8948   2001.3 2001-07       42 0.0000000000
## 8949   2001.3 2001-07       43 0.0000000000
## 8950   2001.3 2001-07       44 0.0000000000
## 8951   2001.3 2001-07       45 0.0000000000
## 8952   2001.3 2001-07       46 0.0000000000
## 8953   2001.3 2001-07       47 0.0000000000
## 8954   2001.3 2001-07       48 0.0000000000
## 8955   2001.3 2001-07       49 0.0000000000
## 8956   2001.3 2001-07       50 0.0000000000
## 8957   2001.3 2001-07       51 0.0000000000
## 8958   2001.3 2001-07       56 0.0000000000
## 8959   2001.3 2001-07       52 0.0000000000
## 8960   2001.3 2001-07       57 0.0000000000
## 8961   2001.3 2001-07       53 0.0000000000
## 8962   2001.3 2001-07       58 0.0000000000
## 8963   2001.3 2001-07       55 0.0000000000
## 8964   2001.3 2001-07       54 0.0000000000
## 8965   2001.3 2001-07       59 0.0000000000
## 8966   2001.3 2001-07       60 0.0000000000
## 8967   2001.3 2001-07       61 0.0000000000
## 8968   2001.3 2001-09        1 0.0050761421
## 8969   2001.3 2001-09        2 0.0000000000
## 8970   2001.3 2001-09        3 0.0000000000
## 8971   2001.3 2001-09        4 0.0000000000
## 8972   2001.3 2001-09        5 0.0000000000
## 8973   2001.3 2001-09        6 0.0050761421
## 8974   2001.3 2001-09        7 0.0000000000
## 8975   2001.3 2001-09        8 0.0000000000
## 8976   2001.3 2001-09        9 0.0050761421
## 8977   2001.3 2001-09       10 0.0000000000
## 8978   2001.3 2001-09       11 0.0000000000
## 8979   2001.3 2001-09       12 0.0000000000
## 8980   2001.3 2001-09       13 0.0000000000
## 8981   2001.3 2001-09       14 0.0000000000
## 8982   2001.3 2001-09       15 0.0000000000
## 8983   2001.3 2001-09       16 0.0000000000
## 8984   2001.3 2001-09       17 0.0050761421
## 8985   2001.3 2001-09       18 0.0000000000
## 8986   2001.3 2001-09       19 0.0000000000
## 8987   2001.3 2001-09       20 0.0000000000
## 8988   2001.3 2001-09       21 0.0000000000
## 8989   2001.3 2001-09       22 0.0000000000
## 8990   2001.3 2001-09       23 0.0000000000
## 8991   2001.3 2001-09       24 0.0000000000
## 8992   2001.3 2001-09       25 0.0000000000
## 8993   2001.3 2001-09       26 0.0000000000
## 8994   2001.3 2001-09       27 0.0000000000
## 8995   2001.3 2001-09       28 0.0050761421
## 8996   2001.3 2001-09       29 0.0050761421
## 8997   2001.3 2001-09       30 0.0050761421
## 8998   2001.3 2001-09       31 0.0304568528
## 8999   2001.3 2001-09       32 0.0000000000
## 9000   2001.3 2001-09       33 0.0050761421
## 9001   2001.3 2001-09       34 0.0152284264
## 9002   2001.3 2001-09       35 0.0000000000
## 9003   2001.3 2001-09       36 0.0152284264
## 9004   2001.3 2001-09       37 0.0000000000
## 9005   2001.3 2001-09       38 0.0000000000
## 9006   2001.3 2001-09       39 0.0050761421
## 9007   2001.3 2001-09       40 0.0000000000
## 9008   2001.3 2001-09       41 0.0304568528
## 9009   2001.3 2001-09       42 0.0050761421
## 9010   2001.3 2001-09       43 0.0101522843
## 9011   2001.3 2001-09       44 0.0101522843
## 9012   2001.3 2001-09       45 0.0050761421
## 9013   2001.3 2001-09       46 0.0101522843
## 9014   2001.3 2001-09       47 0.0101522843
## 9015   2001.3 2001-09       48 0.0710659898
## 9016   2001.3 2001-09       49 0.0152284264
## 9017   2001.3 2001-09       50 0.0000000000
## 9018   2001.3 2001-09       51 0.0304568528
## 9019   2001.3 2001-09       52 0.1827411168
## 9020   2001.3 2001-09       56 0.0152284264
## 9021   2001.3 2001-09       53 0.0964467005
## 9022   2001.3 2001-09       57 0.0406091371
## 9023   2001.3 2001-09       55 0.0507614213
## 9024   2001.3 2001-09       54 0.1573604061
## 9025   2001.3 2001-09       58 0.0304568528
## 9026   2001.3 2001-09       60 0.0355329949
## 9027   2001.3 2001-09       59 0.0406091371
## 9028   2001.3 2001-09       61 0.0456852792
## 9029   2001.3 2001-09        1 0.0454545455
## 9030   2001.3 2001-09        2 0.0000000000
## 9031   2001.3 2001-09        3 0.0000000000
## 9032   2001.3 2001-09        4 0.0000000000
## 9033   2001.3 2001-09        5 0.0000000000
## 9034   2001.3 2001-09        6 0.0000000000
## 9035   2001.3 2001-09        7 0.0000000000
## 9036   2001.3 2001-09        8 0.0000000000
## 9037   2001.3 2001-09        9 0.0000000000
## 9038   2001.3 2001-09       10 0.0000000000
## 9039   2001.3 2001-09       11 0.0000000000
## 9040   2001.3 2001-09       12 0.0000000000
## 9041   2001.3 2001-09       13 0.0000000000
## 9042   2001.3 2001-09       14 0.0000000000
## 9043   2001.3 2001-09       15 0.0000000000
## 9044   2001.3 2001-09       16 0.0000000000
## 9045   2001.3 2001-09       17 0.0000000000
## 9046   2001.3 2001-09       18 0.0000000000
## 9047   2001.3 2001-09       19 0.0000000000
## 9048   2001.3 2001-09       20 0.0000000000
## 9049   2001.3 2001-09       21 0.0000000000
## 9050   2001.3 2001-09       22 0.0000000000
## 9051   2001.3 2001-09       23 0.0000000000
## 9052   2001.3 2001-09       24 0.0000000000
## 9053   2001.3 2001-09       25 0.0000000000
## 9054   2001.3 2001-09       26 0.0000000000
## 9055   2001.3 2001-09       27 0.0000000000
## 9056   2001.3 2001-09       28 0.0000000000
## 9057   2001.3 2001-09       29 0.0000000000
## 9058   2001.3 2001-09       30 0.0000000000
## 9059   2001.3 2001-09       31 0.0000000000
## 9060   2001.3 2001-09       32 0.0000000000
## 9061   2001.3 2001-09       33 0.0000000000
## 9062   2001.3 2001-09       34 0.0000000000
## 9063   2001.3 2001-09       35 0.0000000000
## 9064   2001.3 2001-09       36 0.0000000000
## 9065   2001.3 2001-09       37 0.0000000000
## 9066   2001.3 2001-09       38 0.0454545455
## 9067   2001.3 2001-09       39 0.0000000000
## 9068   2001.3 2001-09       40 0.0000000000
## 9069   2001.3 2001-09       41 0.0000000000
## 9070   2001.3 2001-09       42 0.0000000000
## 9071   2001.3 2001-09       43 0.1363636364
## 9072   2001.3 2001-09       44 0.0000000000
## 9073   2001.3 2001-09       45 0.0000000000
## 9074   2001.3 2001-09       46 0.0909090909
## 9075   2001.3 2001-09       47 0.0000000000
## 9076   2001.3 2001-09       48 0.1363636364
## 9077   2001.3 2001-09       49 0.0000000000
## 9078   2001.3 2001-09       50 0.0000000000
## 9079   2001.3 2001-09       51 0.0000000000
## 9080   2001.3 2001-09       52 0.0454545455
## 9081   2001.3 2001-09       53 0.0454545455
## 9082   2001.3 2001-09       54 0.0454545455
## 9083   2001.3 2001-09       55 0.0909090909
## 9084   2001.3 2001-09       56 0.0000000000
## 9085   2001.3 2001-09       57 0.1818181818
## 9086   2001.3 2001-09       58 0.0000000000
## 9087   2001.3 2001-09       60 0.0909090909
## 9088   2001.3 2001-09       59 0.0454545455
## 9089   2001.3 2001-09       61 0.0000000000
## 9090   2001.4 2001-12        1 0.0294117647
## 9091   2001.4 2001-12        2 0.0294117647
## 9092   2001.4 2001-12        3 0.0294117647
## 9093   2001.4 2001-12        4 0.0000000000
## 9094   2001.4 2001-12        5 0.0000000000
## 9095   2001.4 2001-12        6 0.0000000000
## 9096   2001.4 2001-12        7 0.0000000000
## 9097   2001.4 2001-12        8 0.0000000000
## 9098   2001.4 2001-12        9 0.0294117647
## 9099   2001.4 2001-12       10 0.0000000000
## 9100   2001.4 2001-12       11 0.0000000000
## 9101   2001.4 2001-12       12 0.0000000000
## 9102   2001.4 2001-12       13 0.0000000000
## 9103   2001.4 2001-12       14 0.0000000000
## 9104   2001.4 2001-12       15 0.0000000000
## 9105   2001.4 2001-12       16 0.0000000000
## 9106   2001.4 2001-12       17 0.0000000000
## 9107   2001.4 2001-12       18 0.0000000000
## 9108   2001.4 2001-12       19 0.0294117647
## 9109   2001.4 2001-12       20 0.0000000000
## 9110   2001.4 2001-12       21 0.0000000000
## 9111   2001.4 2001-12       22 0.0000000000
## 9112   2001.4 2001-12       23 0.0000000000
## 9113   2001.4 2001-12       24 0.0000000000
## 9114   2001.4 2001-12       25 0.0000000000
## 9115   2001.4 2001-12       26 0.0000000000
## 9116   2001.4 2001-12       27 0.0000000000
## 9117   2001.4 2001-12       28 0.0000000000
## 9118   2001.4 2001-12       29 0.0000000000
## 9119   2001.4 2001-12       30 0.0000000000
## 9120   2001.4 2001-12       31 0.0882352941
## 9121   2001.4 2001-12       32 0.0000000000
## 9122   2001.4 2001-12       33 0.0000000000
## 9123   2001.4 2001-12       34 0.0000000000
## 9124   2001.4 2001-12       35 0.0000000000
## 9125   2001.4 2001-12       36 0.0000000000
## 9126   2001.4 2001-12       37 0.0000000000
## 9127   2001.4 2001-12       38 0.0000000000
## 9128   2001.4 2001-12       39 0.0000000000
## 9129   2001.4 2001-12       40 0.0000000000
## 9130   2001.4 2001-12       41 0.0294117647
## 9131   2001.4 2001-12       42 0.0000000000
## 9132   2001.4 2001-12       43 0.0000000000
## 9133   2001.4 2001-12       44 0.0882352941
## 9134   2001.4 2001-12       45 0.0000000000
## 9135   2001.4 2001-12       46 0.0000000000
## 9136   2001.4 2001-12       47 0.0000000000
## 9137   2001.4 2001-12       48 0.0000000000
## 9138   2001.4 2001-12       49 0.0588235294
## 9139   2001.4 2001-12       50 0.0000000000
## 9140   2001.4 2001-12       51 0.0294117647
## 9141   2001.4 2001-12       52 0.0294117647
## 9142   2001.4 2001-12       59 0.0588235294
## 9143   2001.4 2001-12       56 0.0000000000
## 9144   2001.4 2001-12       53 0.3823529412
## 9145   2001.4 2001-12       60 0.0000000000
## 9146   2001.4 2001-12       57 0.0294117647
## 9147   2001.4 2001-12       54 0.0000000000
## 9148   2001.4 2001-12       61 0.0000000000
## 9149   2001.4 2001-12       58 0.0294117647
## 9150   2001.4 2001-12       55 0.0294117647
## 9151   2001.4 2001-11        1 1.0000000000
## 9152   2001.4 2001-11        2 0.0000000000
## 9153   2001.4 2001-11        3 0.0000000000
## 9154   2001.4 2001-11        4 0.0000000000
## 9155   2001.4 2001-11        5 0.0000000000
## 9156   2001.4 2001-11        6 0.0000000000
## 9157   2001.4 2001-11        7 0.0000000000
## 9158   2001.4 2001-11        8 0.0000000000
## 9159   2001.4 2001-11        9 0.0000000000
## 9160   2001.4 2001-11       10 0.0000000000
## 9161   2001.4 2001-11       11 0.0000000000
## 9162   2001.4 2001-11       12 0.0000000000
## 9163   2001.4 2001-11       13 0.0000000000
## 9164   2001.4 2001-11       14 0.0000000000
## 9165   2001.4 2001-11       15 0.0000000000
## 9166   2001.4 2001-11       16 0.0000000000
## 9167   2001.4 2001-11       17 0.0000000000
## 9168   2001.4 2001-11       18 0.0000000000
## 9169   2001.4 2001-11       19 0.0000000000
## 9170   2001.4 2001-11       20 0.0000000000
## 9171   2001.4 2001-11       21 0.0000000000
## 9172   2001.4 2001-11       22 0.0000000000
## 9173   2001.4 2001-11       23 0.0000000000
## 9174   2001.4 2001-11       24 0.0000000000
## 9175   2001.4 2001-11       25 0.0000000000
## 9176   2001.4 2001-11       26 0.0000000000
## 9177   2001.4 2001-11       27 0.0000000000
## 9178   2001.4 2001-11       28 0.0000000000
## 9179   2001.4 2001-11       29 0.0000000000
## 9180   2001.4 2001-11       30 0.0000000000
## 9181   2001.4 2001-11       31 0.0000000000
## 9182   2001.4 2001-11       32 0.0000000000
## 9183   2001.4 2001-11       33 0.0000000000
## 9184   2001.4 2001-11       34 0.0000000000
## 9185   2001.4 2001-11       35 0.0000000000
## 9186   2001.4 2001-11       36 0.0000000000
## 9187   2001.4 2001-11       37 0.0000000000
## 9188   2001.4 2001-11       38 0.0000000000
## 9189   2001.4 2001-11       39 0.0000000000
## 9190   2001.4 2001-11       40 0.0000000000
## 9191   2001.4 2001-11       41 0.0000000000
## 9192   2001.4 2001-11       42 0.0000000000
## 9193   2001.4 2001-11       43 0.0000000000
## 9194   2001.4 2001-11       44 0.0000000000
## 9195   2001.4 2001-11       45 0.0000000000
## 9196   2001.4 2001-11       46 0.0000000000
## 9197   2001.4 2001-11       47 0.0000000000
## 9198   2001.4 2001-11       48 0.0000000000
## 9199   2001.4 2001-11       49 0.0000000000
## 9200   2001.4 2001-11       50 0.0000000000
## 9201   2001.4 2001-11       51 0.0000000000
## 9202   2001.4 2001-11       52 0.0000000000
## 9203   2001.4 2001-11       53 0.0000000000
## 9204   2001.4 2001-11       54 0.0000000000
## 9205   2001.4 2001-11       55 0.0000000000
## 9206   2001.4 2001-11       57 0.0000000000
## 9207   2001.4 2001-11       56 0.0000000000
## 9208   2001.4 2001-11       58 0.0000000000
## 9209   2001.4 2001-11       60 0.0000000000
## 9210   2001.4 2001-11       61 0.0000000000
## 9211   2001.4 2001-11       59 0.0000000000
## 9212   2001.4 2001-12        1 0.2727272727
## 9213   2001.4 2001-12        2 0.0000000000
## 9214   2001.4 2001-12        3 0.0454545455
## 9215   2001.4 2001-12        4 0.0000000000
## 9216   2001.4 2001-12        5 0.0000000000
## 9217   2001.4 2001-12        6 0.0000000000
## 9218   2001.4 2001-12        7 0.0000000000
## 9219   2001.4 2001-12        8 0.0454545455
## 9220   2001.4 2001-12        9 0.0000000000
## 9221   2001.4 2001-12       10 0.0000000000
## 9222   2001.4 2001-12       11 0.0454545455
## 9223   2001.4 2001-12       12 0.0000000000
## 9224   2001.4 2001-12       13 0.0000000000
## 9225   2001.4 2001-12       14 0.0000000000
## 9226   2001.4 2001-12       15 0.0000000000
## 9227   2001.4 2001-12       16 0.0000000000
## 9228   2001.4 2001-12       17 0.0000000000
## 9229   2001.4 2001-12       18 0.0454545455
## 9230   2001.4 2001-12       19 0.0000000000
## 9231   2001.4 2001-12       20 0.0000000000
## 9232   2001.4 2001-12       21 0.0000000000
## 9233   2001.4 2001-12       22 0.0000000000
## 9234   2001.4 2001-12       23 0.0000000000
## 9235   2001.4 2001-12       24 0.0000000000
## 9236   2001.4 2001-12       25 0.0454545455
## 9237   2001.4 2001-12       26 0.0000000000
## 9238   2001.4 2001-12       27 0.0000000000
## 9239   2001.4 2001-12       28 0.2272727273
## 9240   2001.4 2001-12       29 0.2272727273
## 9241   2001.4 2001-12       30 0.0000000000
## 9242   2001.4 2001-12       31 0.0454545455
## 9243   2001.4 2001-12       32 0.0000000000
## 9244   2001.4 2001-12       33 0.0000000000
## 9245   2001.4 2001-12       34 0.0000000000
## 9246   2001.4 2001-12       35 0.0000000000
## 9247   2001.4 2001-12       36 0.0000000000
## 9248   2001.4 2001-12       37 0.0000000000
## 9249   2001.4 2001-12       38 0.0000000000
## 9250   2001.4 2001-12       39 0.0000000000
## 9251   2001.4 2001-12       40 0.0000000000
## 9252   2001.4 2001-12       41 0.0000000000
## 9253   2001.4 2001-12       42 0.0000000000
## 9254   2001.4 2001-12       43 0.0000000000
## 9255   2001.4 2001-12       44 0.0000000000
## 9256   2001.4 2001-12       45 0.0000000000
## 9257   2001.4 2001-12       46 0.0000000000
## 9258   2001.4 2001-12       47 0.0000000000
## 9259   2001.4 2001-12       48 0.0000000000
## 9260   2001.4 2001-12       49 0.0000000000
## 9261   2001.4 2001-12       50 0.0000000000
## 9262   2001.4 2001-12       51 0.0000000000
## 9263   2001.4 2001-12       52 0.0000000000
## 9264   2001.4 2001-12       53 0.0000000000
## 9265   2001.4 2001-12       60 0.0000000000
## 9266   2001.4 2001-12       54 0.0000000000
## 9267   2001.4 2001-12       61 0.0000000000
## 9268   2001.4 2001-12       55 0.0000000000
## 9269   2001.4 2001-12       59 0.0000000000
## 9270   2001.4 2001-12       56 0.0000000000
## 9271   2001.4 2001-12       57 0.0000000000
## 9272   2001.4 2001-12       58 0.0000000000
## 9273   2001.1 2001-01        1 0.5000000000
## 9274   2001.1 2001-01        2 0.0000000000
## 9275   2001.1 2001-01        3 0.5000000000
## 9276   2001.1 2001-01        4 0.0000000000
## 9277   2001.1 2001-01        5 0.0000000000
## 9278   2001.1 2001-01        6 0.0000000000
## 9279   2001.1 2001-01        7 0.0000000000
## 9280   2001.1 2001-01        8 0.0000000000
## 9281   2001.1 2001-01        9 0.0000000000
## 9282   2001.1 2001-01       10 0.0000000000
## 9283   2001.1 2001-01       11 0.0000000000
## 9284   2001.1 2001-01       21 0.0000000000
## 9285   2001.1 2001-01       12 0.0000000000
## 9286   2001.1 2001-01       22 0.0000000000
## 9287   2001.1 2001-01       13 0.0000000000
## 9288   2001.1 2001-01       23 0.0000000000
## 9289   2001.1 2001-01       14 0.0000000000
## 9290   2001.1 2001-01       24 0.0000000000
## 9291   2001.1 2001-01       15 0.0000000000
## 9292   2001.1 2001-01       25 0.0000000000
## 9293   2001.1 2001-01       16 0.0000000000
## 9294   2001.1 2001-01       26 0.0000000000
## 9295   2001.1 2001-01       17 0.0000000000
## 9296   2001.1 2001-01       27 0.0000000000
## 9297   2001.1 2001-01       18 0.0000000000
## 9298   2001.1 2001-01       28 0.0000000000
## 9299   2001.1 2001-01       19 0.0000000000
## 9300   2001.1 2001-01       29 0.0000000000
## 9301   2001.1 2001-01       20 0.0000000000
## 9302   2001.1 2001-01       30 0.0000000000
## 9303   2001.1 2001-01       31 0.0000000000
## 9304   2001.1 2001-01       32 0.0000000000
## 9305   2001.1 2001-01       33 0.0000000000
## 9306   2001.1 2001-01       34 0.0000000000
## 9307   2001.1 2001-01       35 0.0000000000
## 9308   2001.1 2001-01       36 0.0000000000
## 9309   2001.1 2001-01       37 0.0000000000
## 9310   2001.1 2001-01       38 0.0000000000
## 9311   2001.1 2001-01       39 0.0000000000
## 9312   2001.1 2001-01       40 0.0000000000
## 9313   2001.1 2001-01       41 0.0000000000
## 9314   2001.1 2001-01       42 0.0000000000
## 9315   2001.1 2001-01       43 0.0000000000
## 9316   2001.1 2001-01       44 0.0000000000
## 9317   2001.1 2001-01       45 0.0000000000
## 9318   2001.1 2001-01       46 0.0000000000
## 9319   2001.1 2001-01       47 0.0000000000
## 9320   2001.1 2001-01       48 0.0000000000
## 9321   2001.1 2001-01       49 0.0000000000
## 9322   2001.1 2001-01       50 0.0000000000
## 9323   2001.1 2001-01       60 0.0000000000
## 9324   2001.1 2001-01       51 0.0000000000
## 9325   2001.1 2001-01       61 0.0000000000
## 9326   2001.1 2001-01       52 0.0000000000
## 9327   2001.1 2001-01       53 0.0000000000
## 9328   2001.1 2001-01       54 0.0000000000
## 9329   2001.1 2001-01       55 0.0000000000
## 9330   2001.1 2001-01       56 0.0000000000
## 9331   2001.1 2001-01       57 0.0000000000
## 9332   2001.1 2001-01       58 0.0000000000
## 9333   2001.1 2001-01       59 0.0000000000
## 9334   2001.1 2001-03        1 1.0000000000
## 9335   2001.1 2001-03        2 0.0000000000
## 9336   2001.1 2001-03        3 0.0000000000
## 9337   2001.1 2001-03        4 0.0000000000
## 9338   2001.1 2001-03        5 0.0000000000
## 9339   2001.1 2001-03        6 0.0000000000
## 9340   2001.1 2001-03        7 0.0000000000
## 9341   2001.1 2001-03        8 0.0000000000
## 9342   2001.1 2001-03        9 0.0000000000
## 9343   2001.1 2001-03       10 0.0000000000
## 9344   2001.1 2001-03       11 0.0000000000
## 9345   2001.1 2001-03       12 0.0000000000
## 9346   2001.1 2001-03       13 0.0000000000
## 9347   2001.1 2001-03       14 0.0000000000
## 9348   2001.1 2001-03       15 0.0000000000
## 9349   2001.1 2001-03       16 0.0000000000
## 9350   2001.1 2001-03       17 0.0000000000
## 9351   2001.1 2001-03       18 0.0000000000
## 9352   2001.1 2001-03       19 0.0000000000
## 9353   2001.1 2001-03       20 0.0000000000
## 9354   2001.1 2001-03       21 0.0000000000
## 9355   2001.1 2001-03       22 0.0000000000
## 9356   2001.1 2001-03       23 0.0000000000
## 9357   2001.1 2001-03       24 0.0000000000
## 9358   2001.1 2001-03       25 0.0000000000
## 9359   2001.1 2001-03       26 0.0000000000
## 9360   2001.1 2001-03       27 0.0000000000
## 9361   2001.1 2001-03       28 0.0000000000
## 9362   2001.1 2001-03       29 0.0000000000
## 9363   2001.1 2001-03       30 0.0000000000
## 9364   2001.1 2001-03       31 0.0000000000
## 9365   2001.1 2001-03       32 0.0000000000
## 9366   2001.1 2001-03       33 0.0000000000
## 9367   2001.1 2001-03       34 0.0000000000
## 9368   2001.1 2001-03       35 0.0000000000
## 9369   2001.1 2001-03       36 0.0000000000
## 9370   2001.1 2001-03       37 0.0000000000
## 9371   2001.1 2001-03       38 0.0000000000
## 9372   2001.1 2001-03       39 0.0000000000
## 9373   2001.1 2001-03       40 0.0000000000
## 9374   2001.1 2001-03       41 0.0000000000
## 9375   2001.1 2001-03       42 0.0000000000
## 9376   2001.1 2001-03       43 0.0000000000
## 9377   2001.1 2001-03       44 0.0000000000
## 9378   2001.1 2001-03       45 0.0000000000
## 9379   2001.1 2001-03       46 0.0000000000
## 9380   2001.1 2001-03       47 0.0000000000
## 9381   2001.1 2001-03       48 0.0000000000
## 9382   2001.1 2001-03       49 0.0000000000
## 9383   2001.1 2001-03       50 0.0000000000
## 9384   2001.1 2001-03       51 0.0000000000
## 9385   2001.1 2001-03       52 0.0000000000
## 9386   2001.1 2001-03       53 0.0000000000
## 9387   2001.1 2001-03       54 0.0000000000
## 9388   2001.1 2001-03       55 0.0000000000
## 9389   2001.1 2001-03       59 0.0000000000
## 9390   2001.1 2001-03       58 0.0000000000
## 9391   2001.1 2001-03       56 0.0000000000
## 9392   2001.1 2001-03       61 0.0000000000
## 9393   2001.1 2001-03       60 0.0000000000
## 9394   2001.1 2001-03       57 0.0000000000
## 9395   2002.1 2002-02        1 0.0188679245
## 9396   2002.1 2002-02        2 0.0000000000
## 9397   2002.1 2002-02        3 0.0000000000
## 9398   2002.1 2002-02        4 0.0000000000
## 9399   2002.1 2002-02        5 0.0000000000
## 9400   2002.1 2002-02        6 0.0000000000
## 9401   2002.1 2002-02        7 0.0188679245
## 9402   2002.1 2002-02        8 0.0000000000
## 9403   2002.1 2002-02        9 0.0000000000
## 9404   2002.1 2002-02       10 0.0000000000
## 9405   2002.1 2002-02       11 0.0000000000
## 9406   2002.1 2002-02       12 0.0000000000
## 9407   2002.1 2002-02       13 0.0188679245
## 9408   2002.1 2002-02       14 0.0000000000
## 9409   2002.1 2002-02       15 0.0000000000
## 9410   2002.1 2002-02       16 0.0000000000
## 9411   2002.1 2002-02       17 0.0000000000
## 9412   2002.1 2002-02       18 0.0000000000
## 9413   2002.1 2002-02       19 0.0000000000
## 9414   2002.1 2002-02       20 0.0188679245
## 9415   2002.1 2002-02       21 0.0000000000
## 9416   2002.1 2002-02       22 0.0000000000
## 9417   2002.1 2002-02       23 0.0000000000
## 9418   2002.1 2002-02       24 0.0000000000
## 9419   2002.1 2002-02       25 0.0000000000
## 9420   2002.1 2002-02       26 0.0000000000
## 9421   2002.1 2002-02       27 0.0000000000
## 9422   2002.1 2002-02       28 0.0377358491
## 9423   2002.1 2002-02       29 0.0000000000
## 9424   2002.1 2002-02       30 0.0188679245
## 9425   2002.1 2002-02       31 0.0000000000
## 9426   2002.1 2002-02       32 0.0566037736
## 9427   2002.1 2002-02       33 0.0000000000
## 9428   2002.1 2002-02       34 0.0000000000
## 9429   2002.1 2002-02       35 0.0000000000
## 9430   2002.1 2002-02       36 0.0000000000
## 9431   2002.1 2002-02       37 0.0000000000
## 9432   2002.1 2002-02       38 0.0000000000
## 9433   2002.1 2002-02       39 0.0000000000
## 9434   2002.1 2002-02       40 0.0188679245
## 9435   2002.1 2002-02       41 0.0000000000
## 9436   2002.1 2002-02       42 0.0000000000
## 9437   2002.1 2002-02       43 0.0000000000
## 9438   2002.1 2002-02       44 0.0000000000
## 9439   2002.1 2002-02       45 0.0000000000
## 9440   2002.1 2002-02       46 0.0000000000
## 9441   2002.1 2002-02       47 0.0000000000
## 9442   2002.1 2002-02       48 0.0754716981
## 9443   2002.1 2002-02       49 0.0566037736
## 9444   2002.1 2002-02       50 0.0943396226
## 9445   2002.1 2002-02       51 0.0000000000
## 9446   2002.1 2002-02       52 0.0000000000
## 9447   2002.1 2002-02       53 0.0377358491
## 9448   2002.1 2002-02       55 0.3396226415
## 9449   2002.1 2002-02       54 0.0377358491
## 9450   2002.1 2002-02       56 0.0000000000
## 9451   2002.1 2002-02       57 0.0943396226
## 9452   2002.1 2002-02       59 0.0188679245
## 9453   2002.1 2002-02       58 0.0188679245
## 9454   2002.1 2002-02       61 0.0188679245
## 9455   2002.1 2002-02       60 0.0000000000
## 9456   2001.4 2001-11        1 1.0000000000
## 9457   2001.4 2001-11        2 0.0000000000
## 9458   2001.4 2001-11        3 0.0000000000
## 9459   2001.4 2001-11        4 0.0000000000
## 9460   2001.4 2001-11        5 0.0000000000
## 9461   2001.4 2001-11        6 0.0000000000
## 9462   2001.4 2001-11        7 0.0000000000
## 9463   2001.4 2001-11        8 0.0000000000
## 9464   2001.4 2001-11        9 0.0000000000
## 9465   2001.4 2001-11       10 0.0000000000
## 9466   2001.4 2001-11       11 0.0000000000
## 9467   2001.4 2001-11       12 0.0000000000
## 9468   2001.4 2001-11       13 0.0000000000
## 9469   2001.4 2001-11       14 0.0000000000
## 9470   2001.4 2001-11       15 0.0000000000
## 9471   2001.4 2001-11       16 0.0000000000
## 9472   2001.4 2001-11       17 0.0000000000
## 9473   2001.4 2001-11       18 0.0000000000
## 9474   2001.4 2001-11       19 0.0000000000
## 9475   2001.4 2001-11       20 0.0000000000
## 9476   2001.4 2001-11       21 0.0000000000
## 9477   2001.4 2001-11       22 0.0000000000
## 9478   2001.4 2001-11       23 0.0000000000
## 9479   2001.4 2001-11       24 0.0000000000
## 9480   2001.4 2001-11       25 0.0000000000
## 9481   2001.4 2001-11       26 0.0000000000
## 9482   2001.4 2001-11       27 0.0000000000
## 9483   2001.4 2001-11       28 0.0000000000
## 9484   2001.4 2001-11       29 0.0000000000
## 9485   2001.4 2001-11       30 0.0000000000
## 9486   2001.4 2001-11       31 0.0000000000
## 9487   2001.4 2001-11       32 0.0000000000
## 9488   2001.4 2001-11       33 0.0000000000
## 9489   2001.4 2001-11       34 0.0000000000
## 9490   2001.4 2001-11       35 0.0000000000
## 9491   2001.4 2001-11       36 0.0000000000
## 9492   2001.4 2001-11       37 0.0000000000
## 9493   2001.4 2001-11       38 0.0000000000
## 9494   2001.4 2001-11       39 0.0000000000
## 9495   2001.4 2001-11       40 0.0000000000
## 9496   2001.4 2001-11       41 0.0000000000
## 9497   2001.4 2001-11       42 0.0000000000
## 9498   2001.4 2001-11       43 0.0000000000
## 9499   2001.4 2001-11       44 0.0000000000
## 9500   2001.4 2001-11       45 0.0000000000
## 9501   2001.4 2001-11       46 0.0000000000
## 9502   2001.4 2001-11       47 0.0000000000
## 9503   2001.4 2001-11       48 0.0000000000
## 9504   2001.4 2001-11       49 0.0000000000
## 9505   2001.4 2001-11       50 0.0000000000
## 9506   2001.4 2001-11       60 0.0000000000
## 9507   2001.4 2001-11       51 0.0000000000
## 9508   2001.4 2001-11       61 0.0000000000
## 9509   2001.4 2001-11       52 0.0000000000
## 9510   2001.4 2001-11       59 0.0000000000
## 9511   2001.4 2001-11       56 0.0000000000
## 9512   2001.4 2001-11       53 0.0000000000
## 9513   2001.4 2001-11       57 0.0000000000
## 9514   2001.4 2001-11       54 0.0000000000
## 9515   2001.4 2001-11       58 0.0000000000
## 9516   2001.4 2001-11       55 0.0000000000
## 9517   2001.4 2001-11       35 0.0047619048
## 9518   2001.4 2001-11       38 0.0111111111
## 9519   2001.4 2001-11       22 0.0015873016
## 9520   2001.4 2001-11       24 0.0031746032
## 9521   2001.4 2001-11       57 0.0238095238
## 9522   2001.4 2001-11       41 0.0079365079
## 9523   2001.4 2001-11       28 0.0698412698
## 9524   2001.4 2001-11        2 0.0000000000
## 9525   2001.4 2001-11        9 0.0000000000
## 9526   2001.4 2001-11       48 0.0460317460
## 9527   2001.4 2001-11        6 0.0000000000
## 9528   2001.4 2001-11       56 0.0460317460
## 9529   2001.4 2001-11       53 0.0666666667
## 9530   2001.4 2001-11       25 0.0031746032
## 9531   2001.4 2001-11        1 0.0015873016
## 9532   2001.4 2001-11       10 0.0031746032
## 9533   2001.4 2001-11       23 0.0031746032
## 9534   2001.4 2001-11       47 0.0253968254
## 9535   2001.4 2001-11       21 0.0000000000
## 9536   2001.4 2001-11       34 0.0095238095
## 9537   2001.4 2001-11       37 0.0000000000
## 9538   2001.4 2001-11       12 0.0015873016
## 9539   2001.4 2001-11       40 0.0047619048
## 9540   2001.4 2001-11       13 0.0142857143
## 9541   2001.4 2001-11       54 0.0222222222
## 9542   2001.4 2001-11       20 0.0031746032
## 9543   2001.4 2001-11       44 0.0158730159
## 9544   2001.4 2001-11        5 0.0000000000
## 9545   2001.4 2001-11       49 0.0222222222
## 9546   2001.4 2001-11       46 0.0015873016
## 9547   2001.4 2001-11       60 0.0634920635
## 9548   2001.4 2001-11       36 0.0079365079
## 9549   2001.4 2001-11       19 0.0031746032
## 9550   2001.4 2001-11       29 0.0142857143
## 9551   2001.4 2001-11       39 0.0301587302
## 9552   2001.4 2001-11       51 0.0349206349
## 9553   2001.4 2001-11       26 0.0047619048
## 9554   2001.4 2001-11       43 0.0158730159
## 9555   2001.4 2001-11       17 0.0015873016
## 9556   2001.4 2001-11       30 0.0079365079
## 9557   2001.4 2001-11       18 0.0015873016
## 9558   2001.4 2001-11       59 0.0619047619
## 9559   2001.4 2001-11       58 0.0476190476
## 9560   2001.4 2001-11       61 0.0698412698
## 9561   2001.4 2001-11       45 0.0079365079
## 9562   2001.4 2001-11       42 0.0460317460
## 9563   2001.4 2001-11       31 0.0238095238
## 9564   2001.4 2001-11       50 0.0238095238
## 9565   2001.4 2001-11        8 0.0000000000
## 9566   2001.4 2001-11       11 0.0047619048
## 9567   2001.4 2001-11       33 0.0126984127
## 9568   2001.4 2001-11       27 0.0047619048
## 9569   2001.4 2001-11        4 0.0015873016
## 9570   2001.4 2001-11       15 0.0047619048
## 9571   2001.4 2001-11       16 0.0000000000
## 9572   2001.4 2001-11        7 0.0000000000
## 9573   2001.4 2001-11       32 0.0047619048
## 9574   2001.4 2001-11        3 0.0015873016
## 9575   2001.4 2001-11       14 0.0000000000
## 9576   2001.4 2001-11       52 0.0317460317
## 9577   2001.4 2001-11       55 0.0539682540
## 9578   2001.3 2001-09       49 0.0284167794
## 9579   2001.3 2001-09        7 0.0013531800
## 9580   2001.3 2001-09       50 0.0392422192
## 9581   2001.3 2001-09       47 0.0135317997
## 9582   2001.3 2001-09       11 0.0081190798
## 9583   2001.3 2001-09       33 0.0216508796
## 9584   2001.3 2001-09       22 0.0027063599
## 9585   2001.3 2001-09       24 0.0013531800
## 9586   2001.3 2001-09       23 0.0000000000
## 9587   2001.3 2001-09       35 0.0027063599
## 9588   2001.3 2001-09        9 0.0000000000
## 9589   2001.3 2001-09       20 0.0027063599
## 9590   2001.3 2001-09       10 0.0000000000
## 9591   2001.3 2001-09        8 0.0000000000
## 9592   2001.3 2001-09       21 0.0000000000
## 9593   2001.3 2001-09       38 0.0338294993
## 9594   2001.3 2001-09       34 0.0013531800
## 9595   2001.3 2001-09       36 0.0094722598
## 9596   2001.3 2001-09       43 0.0392422192
## 9597   2001.3 2001-09       59 0.0243572395
## 9598   2001.3 2001-09       48 0.0189445196
## 9599   2001.3 2001-09       37 0.0162381597
## 9600   2001.3 2001-09       56 0.0676589986
## 9601   2001.3 2001-09       60 0.0230040595
## 9602   2001.3 2001-09       46 0.0135317997
## 9603   2001.3 2001-09        5 0.0054127199
## 9604   2001.3 2001-09       42 0.0040595399
## 9605   2001.3 2001-09       61 0.1420838972
## 9606   2001.3 2001-09       27 0.0013531800
## 9607   2001.3 2001-09       18 0.0000000000
## 9608   2001.3 2001-09       12 0.0013531800
## 9609   2001.3 2001-09       15 0.0013531800
## 9610   2001.3 2001-09       19 0.0027063599
## 9611   2001.3 2001-09        6 0.0067658999
## 9612   2001.3 2001-09       57 0.0649526387
## 9613   2001.3 2001-09       54 0.0202976996
## 9614   2001.3 2001-09       45 0.0081190798
## 9615   2001.3 2001-09       44 0.0257104195
## 9616   2001.3 2001-09       32 0.0162381597
## 9617   2001.3 2001-09        3 0.0000000000
## 9618   2001.3 2001-09       28 0.0013531800
## 9619   2001.3 2001-09       58 0.0284167794
## 9620   2001.3 2001-09        2 0.0000000000
## 9621   2001.3 2001-09       53 0.0365358593
## 9622   2001.3 2001-09       31 0.0135317997
## 9623   2001.3 2001-09       41 0.0094722598
## 9624   2001.3 2001-09       55 0.0676589986
## 9625   2001.3 2001-09       25 0.0027063599
## 9626   2001.3 2001-09        4 0.0013531800
## 9627   2001.3 2001-09       17 0.0013531800
## 9628   2001.3 2001-09       40 0.0121786198
## 9629   2001.3 2001-09       30 0.0054127199
## 9630   2001.3 2001-09        1 0.0013531800
## 9631   2001.3 2001-09       16 0.0040595399
## 9632   2001.3 2001-09       29 0.0027063599
## 9633   2001.3 2001-09       14 0.0013531800
## 9634   2001.3 2001-09       52 0.0527740189
## 9635   2001.3 2001-09       13 0.0000000000
## 9636   2001.3 2001-09       26 0.0013531800
## 9637   2001.3 2001-09       39 0.0162381597
## 9638   2001.3 2001-09       51 0.0703653586
## 9639   2001.2 2001-05        1 1.0000000000
## 9640   2001.2 2001-05        2 0.0000000000
## 9641   2001.2 2001-05        3 0.0000000000
## 9642   2001.2 2001-05        4 0.0000000000
## 9643   2001.2 2001-05        5 0.0000000000
## 9644   2001.2 2001-05        6 0.0000000000
## 9645   2001.2 2001-05        7 0.0000000000
## 9646   2001.2 2001-05        8 0.0000000000
## 9647   2001.2 2001-05        9 0.0000000000
## 9648   2001.2 2001-05       10 0.0000000000
## 9649   2001.2 2001-05       11 0.0000000000
## 9650   2001.2 2001-05       12 0.0000000000
## 9651   2001.2 2001-05       13 0.0000000000
## 9652   2001.2 2001-05       14 0.0000000000
## 9653   2001.2 2001-05       15 0.0000000000
## 9654   2001.2 2001-05       16 0.0000000000
## 9655   2001.2 2001-05       17 0.0000000000
## 9656   2001.2 2001-05       18 0.0000000000
## 9657   2001.2 2001-05       19 0.0000000000
## 9658   2001.2 2001-05       20 0.0000000000
## 9659   2001.2 2001-05       21 0.0000000000
## 9660   2001.2 2001-05       22 0.0000000000
## 9661   2001.2 2001-05       23 0.0000000000
## 9662   2001.2 2001-05       24 0.0000000000
## 9663   2001.2 2001-05       25 0.0000000000
## 9664   2001.2 2001-05       26 0.0000000000
## 9665   2001.2 2001-05       27 0.0000000000
## 9666   2001.2 2001-05       28 0.0000000000
## 9667   2001.2 2001-05       29 0.0000000000
## 9668   2001.2 2001-05       30 0.0000000000
## 9669   2001.2 2001-05       31 0.0000000000
## 9670   2001.2 2001-05       32 0.0000000000
## 9671   2001.2 2001-05       33 0.0000000000
## 9672   2001.2 2001-05       34 0.0000000000
## 9673   2001.2 2001-05       35 0.0000000000
## 9674   2001.2 2001-05       36 0.0000000000
## 9675   2001.2 2001-05       37 0.0000000000
## 9676   2001.2 2001-05       38 0.0000000000
## 9677   2001.2 2001-05       39 0.0000000000
## 9678   2001.2 2001-05       40 0.0000000000
## 9679   2001.2 2001-05       41 0.0000000000
## 9680   2001.2 2001-05       42 0.0000000000
## 9681   2001.2 2001-05       43 0.0000000000
## 9682   2001.2 2001-05       44 0.0000000000
## 9683   2001.2 2001-05       45 0.0000000000
## 9684   2001.2 2001-05       46 0.0000000000
## 9685   2001.2 2001-05       47 0.0000000000
## 9686   2001.2 2001-05       48 0.0000000000
## 9687   2001.2 2001-05       49 0.0000000000
## 9688   2001.2 2001-05       50 0.0000000000
## 9689   2001.2 2001-05       51 0.0000000000
## 9690   2001.2 2001-05       52 0.0000000000
## 9691   2001.2 2001-05       53 0.0000000000
## 9692   2001.2 2001-05       54 0.0000000000
## 9693   2001.2 2001-05       55 0.0000000000
## 9694   2001.2 2001-05       56 0.0000000000
## 9695   2001.2 2001-05       57 0.0000000000
## 9696   2001.2 2001-05       58 0.0000000000
## 9697   2001.2 2001-05       59 0.0000000000
## 9698   2001.2 2001-05       61 0.0000000000
## 9699   2001.2 2001-05       60 0.0000000000
## 9700   2002.1 2002-02        1 0.0232558140
## 9701   2002.1 2002-02        2 0.0000000000
## 9702   2002.1 2002-02        3 0.0000000000
## 9703   2002.1 2002-02        4 0.0000000000
## 9704   2002.1 2002-02        5 0.0465116279
## 9705   2002.1 2002-02        6 0.0000000000
## 9706   2002.1 2002-02        7 0.0000000000
## 9707   2002.1 2002-02        8 0.0000000000
## 9708   2002.1 2002-02        9 0.0000000000
## 9709   2002.1 2002-02       10 0.0000000000
## 9710   2002.1 2002-02       11 0.0000000000
## 9711   2002.1 2002-02       12 0.0232558140
## 9712   2002.1 2002-02       13 0.0000000000
## 9713   2002.1 2002-02       14 0.0000000000
## 9714   2002.1 2002-02       15 0.0000000000
## 9715   2002.1 2002-02       16 0.0000000000
## 9716   2002.1 2002-02       17 0.0000000000
## 9717   2002.1 2002-02       18 0.0000000000
## 9718   2002.1 2002-02       19 0.0000000000
## 9719   2002.1 2002-02       20 0.0000000000
## 9720   2002.1 2002-02       21 0.0000000000
## 9721   2002.1 2002-02       22 0.0000000000
## 9722   2002.1 2002-02       23 0.0000000000
## 9723   2002.1 2002-02       24 0.0000000000
## 9724   2002.1 2002-02       25 0.0000000000
## 9725   2002.1 2002-02       26 0.0000000000
## 9726   2002.1 2002-02       27 0.0000000000
## 9727   2002.1 2002-02       28 0.0000000000
## 9728   2002.1 2002-02       29 0.0000000000
## 9729   2002.1 2002-02       30 0.0930232558
## 9730   2002.1 2002-02       31 0.0000000000
## 9731   2002.1 2002-02       32 0.0232558140
## 9732   2002.1 2002-02       33 0.0000000000
## 9733   2002.1 2002-02       34 0.0232558140
## 9734   2002.1 2002-02       35 0.0232558140
## 9735   2002.1 2002-02       36 0.0000000000
## 9736   2002.1 2002-02       37 0.0000000000
## 9737   2002.1 2002-02       38 0.0000000000
## 9738   2002.1 2002-02       39 0.0465116279
## 9739   2002.1 2002-02       40 0.0697674419
## 9740   2002.1 2002-02       41 0.0697674419
## 9741   2002.1 2002-02       42 0.0232558140
## 9742   2002.1 2002-02       43 0.0000000000
## 9743   2002.1 2002-02       44 0.0000000000
## 9744   2002.1 2002-02       45 0.0232558140
## 9745   2002.1 2002-02       46 0.0000000000
## 9746   2002.1 2002-02       47 0.0465116279
## 9747   2002.1 2002-02       48 0.0232558140
## 9748   2002.1 2002-02       49 0.0930232558
## 9749   2002.1 2002-02       50 0.1395348837
## 9750   2002.1 2002-02       51 0.0000000000
## 9751   2002.1 2002-02       52 0.0697674419
## 9752   2002.1 2002-02       59 0.0232558140
## 9753   2002.1 2002-02       56 0.0232558140
## 9754   2002.1 2002-02       53 0.0232558140
## 9755   2002.1 2002-02       60 0.0000000000
## 9756   2002.1 2002-02       57 0.0232558140
## 9757   2002.1 2002-02       54 0.0000000000
## 9758   2002.1 2002-02       61 0.0465116279
## 9759   2002.1 2002-02       58 0.0000000000
## 9760   2002.1 2002-02       55 0.0000000000
## 9761   2001.3 2001-07        1 0.0017094017
## 9762   2001.3 2001-07        2 0.0000000000
## 9763   2001.3 2001-07        3 0.0000000000
## 9764   2001.3 2001-07        4 0.0017094017
## 9765   2001.3 2001-07        5 0.0000000000
## 9766   2001.3 2001-07        6 0.0017094017
## 9767   2001.3 2001-07        7 0.0000000000
## 9768   2001.3 2001-07        8 0.0017094017
## 9769   2001.3 2001-07        9 0.0000000000
## 9770   2001.3 2001-07       10 0.0000000000
## 9771   2001.3 2001-07       11 0.0000000000
## 9772   2001.3 2001-07       12 0.0000000000
## 9773   2001.3 2001-07       13 0.0017094017
## 9774   2001.3 2001-07       14 0.0017094017
## 9775   2001.3 2001-07       15 0.0034188034
## 9776   2001.3 2001-07       16 0.0068376068
## 9777   2001.3 2001-07       17 0.0102564103
## 9778   2001.3 2001-07       18 0.0188034188
## 9779   2001.3 2001-07       19 0.0000000000
## 9780   2001.3 2001-07       20 0.0000000000
## 9781   2001.3 2001-07       21 0.0017094017
## 9782   2001.3 2001-07       22 0.0085470085
## 9783   2001.3 2001-07       23 0.0017094017
## 9784   2001.3 2001-07       24 0.0170940171
## 9785   2001.3 2001-07       25 0.0051282051
## 9786   2001.3 2001-07       26 0.0136752137
## 9787   2001.3 2001-07       27 0.0085470085
## 9788   2001.3 2001-07       28 0.0376068376
## 9789   2001.3 2001-07       29 0.0119658120
## 9790   2001.3 2001-07       30 0.0085470085
## 9791   2001.3 2001-07       31 0.0136752137
## 9792   2001.3 2001-07       32 0.0068376068
## 9793   2001.3 2001-07       33 0.0051282051
## 9794   2001.3 2001-07       34 0.0102564103
## 9795   2001.3 2001-07       35 0.0085470085
## 9796   2001.3 2001-07       36 0.0153846154
## 9797   2001.3 2001-07       37 0.0307692308
## 9798   2001.3 2001-07       38 0.0410256410
## 9799   2001.3 2001-07       39 0.0341880342
## 9800   2001.3 2001-07       40 0.0205128205
## 9801   2001.3 2001-07       41 0.0324786325
## 9802   2001.3 2001-07       42 0.0324786325
## 9803   2001.3 2001-07       43 0.0376068376
## 9804   2001.3 2001-07       44 0.0170940171
## 9805   2001.3 2001-07       45 0.0170940171
## 9806   2001.3 2001-07       46 0.0444444444
## 9807   2001.3 2001-07       47 0.0547008547
## 9808   2001.3 2001-07       48 0.0358974359
## 9809   2001.3 2001-07       49 0.0341880342
## 9810   2001.3 2001-07       50 0.0564102564
## 9811   2001.3 2001-07       60 0.0136752137
## 9812   2001.3 2001-07       51 0.0188034188
## 9813   2001.3 2001-07       61 0.0256410256
## 9814   2001.3 2001-07       52 0.0341880342
## 9815   2001.3 2001-07       53 0.0222222222
## 9816   2001.3 2001-07       54 0.0444444444
## 9817   2001.3 2001-07       55 0.0205128205
## 9818   2001.3 2001-07       59 0.0324786325
## 9819   2001.3 2001-07       56 0.0410256410
## 9820   2001.3 2001-07       57 0.0239316239
## 9821   2001.3 2001-07       58 0.0102564103
## 9822   2001.4 2001-10       44 0.0111111111
## 9823   2001.4 2001-10       31 0.0045454545
## 9824   2001.4 2001-10       27 0.0015151515
## 9825   2001.4 2001-10       14 0.0005050505
## 9826   2001.4 2001-10       35 0.0025252525
## 9827   2001.4 2001-10        1 0.0010101010
## 9828   2001.4 2001-10       54 0.0686868687
## 9829   2001.4 2001-10        5 0.0025252525
## 9830   2001.4 2001-10       53 0.0469696970
## 9831   2001.4 2001-10       59 0.0691919192
## 9832   2001.4 2001-10        9 0.0000000000
## 9833   2001.4 2001-10       61 0.1111111111
## 9834   2001.4 2001-10       22 0.0015151515
## 9835   2001.4 2001-10       41 0.0075757576
## 9836   2001.4 2001-10        2 0.0000000000
## 9837   2001.4 2001-10       24 0.0015151515
## 9838   2001.4 2001-10       26 0.0015151515
## 9839   2001.4 2001-10       60 0.0803030303
## 9840   2001.4 2001-10        6 0.0000000000
## 9841   2001.4 2001-10       15 0.0000000000
## 9842   2001.4 2001-10        4 0.0000000000
## 9843   2001.4 2001-10       52 0.0585858586
## 9844   2001.4 2001-10       50 0.0202020202
## 9845   2001.4 2001-10       48 0.0212121212
## 9846   2001.4 2001-10       12 0.0010101010
## 9847   2001.4 2001-10       21 0.0005050505
## 9848   2001.4 2001-10       34 0.0065656566
## 9849   2001.4 2001-10       11 0.0005050505
## 9850   2001.4 2001-10       25 0.0000000000
## 9851   2001.4 2001-10       40 0.0040404040
## 9852   2001.4 2001-10       38 0.0070707071
## 9853   2001.4 2001-10       43 0.0090909091
## 9854   2001.4 2001-10       30 0.0070707071
## 9855   2001.4 2001-10       51 0.0691919192
## 9856   2001.4 2001-10       55 0.0717171717
## 9857   2001.4 2001-10       10 0.0000000000
## 9858   2001.4 2001-10       23 0.0005050505
## 9859   2001.4 2001-10       18 0.0005050505
## 9860   2001.4 2001-10       32 0.0065656566
## 9861   2001.4 2001-10        7 0.0000000000
## 9862   2001.4 2001-10       57 0.0404040404
## 9863   2001.4 2001-10       19 0.0025252525
## 9864   2001.4 2001-10        3 0.0000000000
## 9865   2001.4 2001-10       37 0.0060606061
## 9866   2001.4 2001-10       29 0.0065656566
## 9867   2001.4 2001-10       36 0.0035353535
## 9868   2001.4 2001-10       49 0.0237373737
## 9869   2001.4 2001-10        8 0.0000000000
## 9870   2001.4 2001-10       28 0.0045454545
## 9871   2001.4 2001-10       13 0.0005050505
## 9872   2001.4 2001-10       56 0.0732323232
## 9873   2001.4 2001-10       42 0.0080808081
## 9874   2001.4 2001-10       58 0.0540404040
## 9875   2001.4 2001-10       33 0.0055555556
## 9876   2001.4 2001-10       45 0.0111111111
## 9877   2001.4 2001-10       17 0.0000000000
## 9878   2001.4 2001-10       20 0.0070707071
## 9879   2001.4 2001-10       46 0.0252525253
## 9880   2001.4 2001-10       16 0.0000000000
## 9881   2001.4 2001-10       47 0.0252525253
## 9882   2001.4 2001-10       39 0.0060606061
## 9883   2001.3 2001-09        1 0.0049019608
## 9884   2001.3 2001-09        2 0.0000000000
## 9885   2001.3 2001-09        3 0.0000000000
## 9886   2001.3 2001-09        4 0.0000000000
## 9887   2001.3 2001-09        5 0.0000000000
## 9888   2001.3 2001-09        6 0.0098039216
## 9889   2001.3 2001-09        7 0.0098039216
## 9890   2001.3 2001-09        8 0.0000000000
## 9891   2001.3 2001-09        9 0.0000000000
## 9892   2001.3 2001-09       10 0.0000000000
## 9893   2001.3 2001-09       11 0.0049019608
## 9894   2001.3 2001-09       12 0.0049019608
## 9895   2001.3 2001-09       13 0.0000000000
## 9896   2001.3 2001-09       14 0.0000000000
## 9897   2001.3 2001-09       15 0.0000000000
## 9898   2001.3 2001-09       16 0.0000000000
## 9899   2001.3 2001-09       17 0.0000000000
## 9900   2001.3 2001-09       18 0.0000000000
## 9901   2001.3 2001-09       19 0.0049019608
## 9902   2001.3 2001-09       20 0.1617647059
## 9903   2001.3 2001-09       21 0.0196078431
## 9904   2001.3 2001-09       22 0.0098039216
## 9905   2001.3 2001-09       23 0.0000000000
## 9906   2001.3 2001-09       24 0.0049019608
## 9907   2001.3 2001-09       25 0.0049019608
## 9908   2001.3 2001-09       26 0.0000000000
## 9909   2001.3 2001-09       27 0.0392156863
## 9910   2001.3 2001-09       28 0.0098039216
## 9911   2001.3 2001-09       29 0.0098039216
## 9912   2001.3 2001-09       30 0.0098039216
## 9913   2001.3 2001-09       31 0.0098039216
## 9914   2001.3 2001-09       32 0.0098039216
## 9915   2001.3 2001-09       33 0.0000000000
## 9916   2001.3 2001-09       34 0.0245098039
## 9917   2001.3 2001-09       35 0.0000000000
## 9918   2001.3 2001-09       36 0.0000000000
## 9919   2001.3 2001-09       37 0.0098039216
## 9920   2001.3 2001-09       38 0.0343137255
## 9921   2001.3 2001-09       39 0.0098039216
## 9922   2001.3 2001-09       40 0.0000000000
## 9923   2001.3 2001-09       41 0.0049019608
## 9924   2001.3 2001-09       42 0.0196078431
## 9925   2001.3 2001-09       43 0.0196078431
## 9926   2001.3 2001-09       44 0.0049019608
## 9927   2001.3 2001-09       45 0.0147058824
## 9928   2001.3 2001-09       46 0.0686274510
## 9929   2001.3 2001-09       47 0.0098039216
## 9930   2001.3 2001-09       48 0.0196078431
## 9931   2001.3 2001-09       49 0.0049019608
## 9932   2001.3 2001-09       50 0.0294117647
## 9933   2001.3 2001-09       51 0.0441176471
## 9934   2001.3 2001-09       52 0.0784313725
## 9935   2001.3 2001-09       53 0.0196078431
## 9936   2001.3 2001-09       54 0.0147058824
## 9937   2001.3 2001-09       55 0.0539215686
## 9938   2001.3 2001-09       56 0.0343137255
## 9939   2001.3 2001-09       61 0.0049019608
## 9940   2001.3 2001-09       59 0.0539215686
## 9941   2001.3 2001-09       58 0.0392156863
## 9942   2001.3 2001-09       57 0.0294117647
## 9943   2001.3 2001-09       60 0.0245098039
## 9944   2001.3 2001-09        1 0.0158730159
## 9945   2001.3 2001-09        2 0.0000000000
## 9946   2001.3 2001-09        3 0.0000000000
## 9947   2001.3 2001-09        4 0.0000000000
## 9948   2001.3 2001-09        5 0.0000000000
## 9949   2001.3 2001-09        6 0.0158730159
## 9950   2001.3 2001-09        7 0.0000000000
## 9951   2001.3 2001-09        8 0.0000000000
## 9952   2001.3 2001-09        9 0.0000000000
## 9953   2001.3 2001-09       10 0.0000000000
## 9954   2001.3 2001-09       11 0.0000000000
## 9955   2001.3 2001-09       12 0.0000000000
## 9956   2001.3 2001-09       13 0.0000000000
## 9957   2001.3 2001-09       14 0.0000000000
## 9958   2001.3 2001-09       15 0.0000000000
## 9959   2001.3 2001-09       16 0.0000000000
## 9960   2001.3 2001-09       17 0.0000000000
## 9961   2001.3 2001-09       18 0.0000000000
## 9962   2001.3 2001-09       19 0.0000000000
## 9963   2001.3 2001-09       20 0.0000000000
## 9964   2001.3 2001-09       21 0.0000000000
## 9965   2001.3 2001-09       22 0.0000000000
## 9966   2001.3 2001-09       23 0.0476190476
## 9967   2001.3 2001-09       24 0.0158730159
## 9968   2001.3 2001-09       25 0.0000000000
## 9969   2001.3 2001-09       26 0.0000000000
## 9970   2001.3 2001-09       27 0.0000000000
## 9971   2001.3 2001-09       28 0.0000000000
## 9972   2001.3 2001-09       29 0.0000000000
## 9973   2001.3 2001-09       30 0.0000000000
## 9974   2001.3 2001-09       31 0.0000000000
## 9975   2001.3 2001-09       32 0.0000000000
## 9976   2001.3 2001-09       33 0.0158730159
## 9977   2001.3 2001-09       34 0.0476190476
## 9978   2001.3 2001-09       35 0.0000000000
## 9979   2001.3 2001-09       36 0.0000000000
## 9980   2001.3 2001-09       37 0.0634920635
## 9981   2001.3 2001-09       38 0.0000000000
## 9982   2001.3 2001-09       39 0.0317460317
## 9983   2001.3 2001-09       40 0.0000000000
## 9984   2001.3 2001-09       41 0.0000000000
## 9985   2001.3 2001-09       42 0.0158730159
## 9986   2001.3 2001-09       43 0.0000000000
## 9987   2001.3 2001-09       44 0.1428571429
## 9988   2001.3 2001-09       45 0.0158730159
## 9989   2001.3 2001-09       46 0.0158730159
## 9990   2001.3 2001-09       47 0.0317460317
## 9991   2001.3 2001-09       48 0.0158730159
## 9992   2001.3 2001-09       49 0.0317460317
## 9993   2001.3 2001-09       50 0.0158730159
## 9994   2001.3 2001-09       51 0.0158730159
## 9995   2001.3 2001-09       52 0.0000000000
## 9996   2001.3 2001-09       59 0.0158730159
## 9997   2001.3 2001-09       56 0.0476190476
## 9998   2001.3 2001-09       53 0.0000000000
## 9999   2001.3 2001-09       60 0.0476190476
## 10000  2001.3 2001-09       57 0.0476190476
## 10001  2001.3 2001-09       55 0.0476190476
## 10002  2001.3 2001-09       54 0.0317460317
## 10003  2001.3 2001-09       61 0.1269841270
## 10004  2001.3 2001-09       58 0.0793650794
## 10005  2002.1 2002-02        1 0.0303030303
## 10006  2002.1 2002-02        2 0.0000000000
## 10007  2002.1 2002-02        3 0.0000000000
## 10008  2002.1 2002-02        4 0.0000000000
## 10009  2002.1 2002-02        5 0.0000000000
## 10010  2002.1 2002-02        6 0.0000000000
## 10011  2002.1 2002-02        7 0.0000000000
## 10012  2002.1 2002-02        8 0.0000000000
## 10013  2002.1 2002-02        9 0.0000000000
## 10014  2002.1 2002-02       10 0.0000000000
## 10015  2002.1 2002-02       11 0.0000000000
## 10016  2002.1 2002-02       12 0.0000000000
## 10017  2002.1 2002-02       13 0.0000000000
## 10018  2002.1 2002-02       14 0.0000000000
## 10019  2002.1 2002-02       15 0.0000000000
## 10020  2002.1 2002-02       16 0.0000000000
## 10021  2002.1 2002-02       17 0.0000000000
## 10022  2002.1 2002-02       18 0.0151515152
## 10023  2002.1 2002-02       19 0.0000000000
## 10024  2002.1 2002-02       20 0.0000000000
## 10025  2002.1 2002-02       21 0.0000000000
## 10026  2002.1 2002-02       22 0.0000000000
## 10027  2002.1 2002-02       23 0.0151515152
## 10028  2002.1 2002-02       24 0.0000000000
## 10029  2002.1 2002-02       25 0.0303030303
## 10030  2002.1 2002-02       26 0.0303030303
## 10031  2002.1 2002-02       27 0.0000000000
## 10032  2002.1 2002-02       28 0.0151515152
## 10033  2002.1 2002-02       29 0.0454545455
## 10034  2002.1 2002-02       30 0.0000000000
## 10035  2002.1 2002-02       31 0.0000000000
## 10036  2002.1 2002-02       32 0.0151515152
## 10037  2002.1 2002-02       33 0.0303030303
## 10038  2002.1 2002-02       34 0.0454545455
## 10039  2002.1 2002-02       35 0.0000000000
## 10040  2002.1 2002-02       36 0.0000000000
## 10041  2002.1 2002-02       37 0.0000000000
## 10042  2002.1 2002-02       38 0.0000000000
## 10043  2002.1 2002-02       39 0.0757575758
## 10044  2002.1 2002-02       40 0.0909090909
## 10045  2002.1 2002-02       41 0.0303030303
## 10046  2002.1 2002-02       42 0.0606060606
## 10047  2002.1 2002-02       43 0.0909090909
## 10048  2002.1 2002-02       44 0.0000000000
## 10049  2002.1 2002-02       45 0.0000000000
## 10050  2002.1 2002-02       46 0.0151515152
## 10051  2002.1 2002-02       47 0.0000000000
## 10052  2002.1 2002-02       48 0.0151515152
## 10053  2002.1 2002-02       49 0.0606060606
## 10054  2002.1 2002-02       50 0.0151515152
## 10055  2002.1 2002-02       51 0.0303030303
## 10056  2002.1 2002-02       52 0.0606060606
## 10057  2002.1 2002-02       56 0.0151515152
## 10058  2002.1 2002-02       53 0.0606060606
## 10059  2002.1 2002-02       57 0.0151515152
## 10060  2002.1 2002-02       54 0.0151515152
## 10061  2002.1 2002-02       58 0.0000000000
## 10062  2002.1 2002-02       55 0.0303030303
## 10063  2002.1 2002-02       60 0.0151515152
## 10064  2002.1 2002-02       59 0.0303030303
## 10065  2002.1 2002-02       61 0.0000000000
## 10066  2001.4 2001-10        1 0.0098522167
## 10067  2001.4 2001-10        2 0.0000000000
## 10068  2001.4 2001-10        3 0.0000000000
## 10069  2001.4 2001-10        4 0.0000000000
## 10070  2001.4 2001-10        5 0.0049261084
## 10071  2001.4 2001-10        6 0.0000000000
## 10072  2001.4 2001-10        7 0.0000000000
## 10073  2001.4 2001-10        8 0.0000000000
## 10074  2001.4 2001-10        9 0.0000000000
## 10075  2001.4 2001-10       10 0.0000000000
## 10076  2001.4 2001-10       11 0.0049261084
## 10077  2001.4 2001-10       12 0.0049261084
## 10078  2001.4 2001-10       13 0.0000000000
## 10079  2001.4 2001-10       14 0.0000000000
## 10080  2001.4 2001-10       15 0.0049261084
## 10081  2001.4 2001-10       16 0.0000000000
## 10082  2001.4 2001-10       17 0.0000000000
## 10083  2001.4 2001-10       18 0.0000000000
## 10084  2001.4 2001-10       19 0.0000000000
## 10085  2001.4 2001-10       20 0.0000000000
## 10086  2001.4 2001-10       21 0.0049261084
## 10087  2001.4 2001-10       22 0.0000000000
## 10088  2001.4 2001-10       23 0.0000000000
## 10089  2001.4 2001-10       24 0.0000000000
## 10090  2001.4 2001-10       25 0.0000000000
## 10091  2001.4 2001-10       26 0.0000000000
## 10092  2001.4 2001-10       27 0.0000000000
## 10093  2001.4 2001-10       28 0.0000000000
## 10094  2001.4 2001-10       29 0.0000000000
## 10095  2001.4 2001-10       30 0.0000000000
## 10096  2001.4 2001-10       31 0.0049261084
## 10097  2001.4 2001-10       32 0.0049261084
## 10098  2001.4 2001-10       33 0.0049261084
## 10099  2001.4 2001-10       34 0.0000000000
## 10100  2001.4 2001-10       35 0.0098522167
## 10101  2001.4 2001-10       36 0.0098522167
## 10102  2001.4 2001-10       37 0.0098522167
## 10103  2001.4 2001-10       38 0.0197044335
## 10104  2001.4 2001-10       39 0.0000000000
## 10105  2001.4 2001-10       40 0.0147783251
## 10106  2001.4 2001-10       41 0.0098522167
## 10107  2001.4 2001-10       42 0.0049261084
## 10108  2001.4 2001-10       43 0.0000000000
## 10109  2001.4 2001-10       44 0.0098522167
## 10110  2001.4 2001-10       45 0.0049261084
## 10111  2001.4 2001-10       46 0.0443349754
## 10112  2001.4 2001-10       47 0.0738916256
## 10113  2001.4 2001-10       48 0.0591133005
## 10114  2001.4 2001-10       49 0.0443349754
## 10115  2001.4 2001-10       50 0.0098522167
## 10116  2001.4 2001-10       60 0.0443349754
## 10117  2001.4 2001-10       51 0.0344827586
## 10118  2001.4 2001-10       61 0.0394088670
## 10119  2001.4 2001-10       52 0.0246305419
## 10120  2001.4 2001-10       54 0.0344827586
## 10121  2001.4 2001-10       53 0.2118226601
## 10122  2001.4 2001-10       55 0.0147783251
## 10123  2001.4 2001-10       59 0.0689655172
## 10124  2001.4 2001-10       56 0.0344827586
## 10125  2001.4 2001-10       57 0.0394088670
## 10126  2001.4 2001-10       58 0.0788177340
## 10127  2001.4 2001-11        1 0.0106382979
## 10128  2001.4 2001-11        2 0.0212765957
## 10129  2001.4 2001-11        3 0.0000000000
## 10130  2001.4 2001-11        4 0.0106382979
## 10131  2001.4 2001-11        5 0.0000000000
## 10132  2001.4 2001-11        6 0.0000000000
## 10133  2001.4 2001-11        7 0.0000000000
## 10134  2001.4 2001-11        8 0.0000000000
## 10135  2001.4 2001-11        9 0.0531914894
## 10136  2001.4 2001-11       10 0.0000000000
## 10137  2001.4 2001-11       11 0.0000000000
## 10138  2001.4 2001-11       12 0.0000000000
## 10139  2001.4 2001-11       13 0.0000000000
## 10140  2001.4 2001-11       14 0.0000000000
## 10141  2001.4 2001-11       15 0.0000000000
## 10142  2001.4 2001-11       16 0.0106382979
## 10143  2001.4 2001-11       17 0.0000000000
## 10144  2001.4 2001-11       18 0.0000000000
## 10145  2001.4 2001-11       19 0.0106382979
## 10146  2001.4 2001-11       20 0.0531914894
## 10147  2001.4 2001-11       21 0.0106382979
## 10148  2001.4 2001-11       22 0.0106382979
## 10149  2001.4 2001-11       23 0.0106382979
## 10150  2001.4 2001-11       24 0.0000000000
## 10151  2001.4 2001-11       25 0.0000000000
## 10152  2001.4 2001-11       26 0.0000000000
## 10153  2001.4 2001-11       27 0.0000000000
## 10154  2001.4 2001-11       28 0.0531914894
## 10155  2001.4 2001-11       29 0.0000000000
## 10156  2001.4 2001-11       30 0.0106382979
## 10157  2001.4 2001-11       31 0.0000000000
## 10158  2001.4 2001-11       32 0.0531914894
## 10159  2001.4 2001-11       33 0.0106382979
## 10160  2001.4 2001-11       34 0.0106382979
## 10161  2001.4 2001-11       35 0.0000000000
## 10162  2001.4 2001-11       36 0.0000000000
## 10163  2001.4 2001-11       37 0.0106382979
## 10164  2001.4 2001-11       38 0.0000000000
## 10165  2001.4 2001-11       39 0.0425531915
## 10166  2001.4 2001-11       40 0.0000000000
## 10167  2001.4 2001-11       41 0.0106382979
## 10168  2001.4 2001-11       42 0.0000000000
## 10169  2001.4 2001-11       43 0.0531914894
## 10170  2001.4 2001-11       44 0.0000000000
## 10171  2001.4 2001-11       45 0.0531914894
## 10172  2001.4 2001-11       46 0.0531914894
## 10173  2001.4 2001-11       47 0.0106382979
## 10174  2001.4 2001-11       48 0.0319148936
## 10175  2001.4 2001-11       49 0.0000000000
## 10176  2001.4 2001-11       50 0.0106382979
## 10177  2001.4 2001-11       51 0.0106382979
## 10178  2001.4 2001-11       52 0.0000000000
## 10179  2001.4 2001-11       53 0.0212765957
## 10180  2001.4 2001-11       54 0.0319148936
## 10181  2001.4 2001-11       55 0.0744680851
## 10182  2001.4 2001-11       56 0.0851063830
## 10183  2001.4 2001-11       57 0.0531914894
## 10184  2001.4 2001-11       59 0.0106382979
## 10185  2001.4 2001-11       58 0.0531914894
## 10186  2001.4 2001-11       60 0.0106382979
## 10187  2001.4 2001-11       61 0.0319148936
## 10188  2002.1 2002-02       38 0.0099616858
## 10189  2002.1 2002-02       27 0.0015325670
## 10190  2002.1 2002-02       31 0.0053639847
## 10191  2002.1 2002-02       15 0.0000000000
## 10192  2002.1 2002-02       21 0.0007662835
## 10193  2002.1 2002-02       13 0.0000000000
## 10194  2002.1 2002-02       34 0.0022988506
## 10195  2002.1 2002-02       39 0.0191570881
## 10196  2002.1 2002-02       32 0.0099616858
## 10197  2002.1 2002-02       53 0.0122605364
## 10198  2002.1 2002-02       40 0.0153256705
## 10199  2002.1 2002-02        5 0.0000000000
## 10200  2002.1 2002-02       30 0.0038314176
## 10201  2002.1 2002-02       25 0.0030651341
## 10202  2002.1 2002-02       50 0.0260536398
## 10203  2002.1 2002-02       47 0.0137931034
## 10204  2002.1 2002-02       48 0.0214559387
## 10205  2002.1 2002-02        8 0.0000000000
## 10206  2002.1 2002-02       55 0.0275862069
## 10207  2002.1 2002-02       37 0.0053639847
## 10208  2002.1 2002-02       54 0.0383141762
## 10209  2002.1 2002-02       52 0.0536398467
## 10210  2002.1 2002-02       35 0.0030651341
## 10211  2002.1 2002-02        1 0.0007662835
## 10212  2002.1 2002-02       26 0.0000000000
## 10213  2002.1 2002-02       28 0.0030651341
## 10214  2002.1 2002-02       42 0.0145593870
## 10215  2002.1 2002-02       59 0.0659003831
## 10216  2002.1 2002-02       51 0.0298850575
## 10217  2002.1 2002-02       44 0.0091954023
## 10218  2002.1 2002-02        2 0.0000000000
## 10219  2002.1 2002-02       57 0.0988505747
## 10220  2002.1 2002-02       24 0.0000000000
## 10221  2002.1 2002-02        4 0.0000000000
## 10222  2002.1 2002-02       11 0.0038314176
## 10223  2002.1 2002-02       41 0.0091954023
## 10224  2002.1 2002-02        7 0.0038314176
## 10225  2002.1 2002-02       18 0.0000000000
## 10226  2002.1 2002-02       23 0.0000000000
## 10227  2002.1 2002-02       14 0.0015325670
## 10228  2002.1 2002-02       22 0.0053639847
## 10229  2002.1 2002-02       19 0.0045977011
## 10230  2002.1 2002-02       49 0.0352490421
## 10231  2002.1 2002-02       17 0.0000000000
## 10232  2002.1 2002-02       61 0.1019157088
## 10233  2002.1 2002-02       16 0.0045977011
## 10234  2002.1 2002-02       12 0.0000000000
## 10235  2002.1 2002-02        9 0.0000000000
## 10236  2002.1 2002-02       33 0.0137931034
## 10237  2002.1 2002-02        6 0.0015325670
## 10238  2002.1 2002-02       58 0.1080459770
## 10239  2002.1 2002-02        3 0.0000000000
## 10240  2002.1 2002-02       56 0.0597701149
## 10241  2002.1 2002-02       10 0.0007662835
## 10242  2002.1 2002-02       45 0.0229885057
## 10243  2002.1 2002-02       29 0.0022988506
## 10244  2002.1 2002-02       36 0.0053639847
## 10245  2002.1 2002-02       20 0.0015325670
## 10246  2002.1 2002-02       60 0.0888888889
## 10247  2002.1 2002-02       43 0.0045977011
## 10248  2002.1 2002-02       46 0.0252873563
## 10249  2002.1 2002-02        1 0.0064102564
## 10250  2002.1 2002-02        2 0.0000000000
## 10251  2002.1 2002-02        3 0.0000000000
## 10252  2002.1 2002-02        4 0.0000000000
## 10253  2002.1 2002-02        5 0.0000000000
## 10254  2002.1 2002-02        6 0.0000000000
## 10255  2002.1 2002-02        7 0.0064102564
## 10256  2002.1 2002-02        8 0.0000000000
## 10257  2002.1 2002-02        9 0.0000000000
## 10258  2002.1 2002-02       10 0.0000000000
## 10259  2002.1 2002-02       11 0.0000000000
## 10260  2002.1 2002-02       12 0.0064102564
## 10261  2002.1 2002-02       13 0.0000000000
## 10262  2002.1 2002-02       14 0.0000000000
## 10263  2002.1 2002-02       15 0.0000000000
## 10264  2002.1 2002-02       16 0.0128205128
## 10265  2002.1 2002-02       17 0.0064102564
## 10266  2002.1 2002-02       18 0.0000000000
## 10267  2002.1 2002-02       19 0.0192307692
## 10268  2002.1 2002-02       20 0.0000000000
## 10269  2002.1 2002-02       21 0.0000000000
## 10270  2002.1 2002-02       22 0.0000000000
## 10271  2002.1 2002-02       23 0.0256410256
## 10272  2002.1 2002-02       24 0.0000000000
## 10273  2002.1 2002-02       25 0.0000000000
## 10274  2002.1 2002-02       26 0.0064102564
## 10275  2002.1 2002-02       27 0.0000000000
## 10276  2002.1 2002-02       28 0.0064102564
## 10277  2002.1 2002-02       29 0.0320512821
## 10278  2002.1 2002-02       30 0.0064102564
## 10279  2002.1 2002-02       31 0.0000000000
## 10280  2002.1 2002-02       32 0.0128205128
## 10281  2002.1 2002-02       33 0.0192307692
## 10282  2002.1 2002-02       34 0.0192307692
## 10283  2002.1 2002-02       35 0.0128205128
## 10284  2002.1 2002-02       36 0.0128205128
## 10285  2002.1 2002-02       37 0.0064102564
## 10286  2002.1 2002-02       38 0.0000000000
## 10287  2002.1 2002-02       39 0.0320512821
## 10288  2002.1 2002-02       40 0.0000000000
## 10289  2002.1 2002-02       41 0.0128205128
## 10290  2002.1 2002-02       42 0.0192307692
## 10291  2002.1 2002-02       43 0.0256410256
## 10292  2002.1 2002-02       44 0.0128205128
## 10293  2002.1 2002-02       45 0.0769230769
## 10294  2002.1 2002-02       46 0.0128205128
## 10295  2002.1 2002-02       47 0.1025641026
## 10296  2002.1 2002-02       48 0.0192307692
## 10297  2002.1 2002-02       49 0.0256410256
## 10298  2002.1 2002-02       50 0.0448717949
## 10299  2002.1 2002-02       51 0.0448717949
## 10300  2002.1 2002-02       52 0.0128205128
## 10301  2002.1 2002-02       53 0.0448717949
## 10302  2002.1 2002-02       54 0.0256410256
## 10303  2002.1 2002-02       55 0.0769230769
## 10304  2002.1 2002-02       58 0.0000000000
## 10305  2002.1 2002-02       57 0.0256410256
## 10306  2002.1 2002-02       56 0.0320512821
## 10307  2002.1 2002-02       60 0.0833333333
## 10308  2002.1 2002-02       59 0.0384615385
## 10309  2002.1 2002-02       61 0.0128205128
## 10310  2001.4 2001-10        1 0.0238095238
## 10311  2001.4 2001-10        2 0.0000000000
## 10312  2001.4 2001-10        3 0.0000000000
## 10313  2001.4 2001-10        4 0.0000000000
## 10314  2001.4 2001-10        5 0.0238095238
## 10315  2001.4 2001-10        6 0.0000000000
## 10316  2001.4 2001-10        7 0.0000000000
## 10317  2001.4 2001-10        8 0.0000000000
## 10318  2001.4 2001-10        9 0.0000000000
## 10319  2001.4 2001-10       10 0.0000000000
## 10320  2001.4 2001-10       11 0.0000000000
## 10321  2001.4 2001-10       12 0.0000000000
## 10322  2001.4 2001-10       13 0.0000000000
## 10323  2001.4 2001-10       14 0.0000000000
## 10324  2001.4 2001-10       15 0.0238095238
## 10325  2001.4 2001-10       16 0.0000000000
## 10326  2001.4 2001-10       17 0.0000000000
## 10327  2001.4 2001-10       18 0.0000000000
## 10328  2001.4 2001-10       19 0.0000000000
## 10329  2001.4 2001-10       20 0.1666666667
## 10330  2001.4 2001-10       21 0.0000000000
## 10331  2001.4 2001-10       22 0.0476190476
## 10332  2001.4 2001-10       23 0.1190476190
## 10333  2001.4 2001-10       24 0.0000000000
## 10334  2001.4 2001-10       25 0.0000000000
## 10335  2001.4 2001-10       26 0.0000000000
## 10336  2001.4 2001-10       27 0.0000000000
## 10337  2001.4 2001-10       28 0.0000000000
## 10338  2001.4 2001-10       29 0.0000000000
## 10339  2001.4 2001-10       30 0.0238095238
## 10340  2001.4 2001-10       31 0.0476190476
## 10341  2001.4 2001-10       32 0.1190476190
## 10342  2001.4 2001-10       33 0.0238095238
## 10343  2001.4 2001-10       34 0.0000000000
## 10344  2001.4 2001-10       35 0.0000000000
## 10345  2001.4 2001-10       36 0.0000000000
## 10346  2001.4 2001-10       37 0.0000000000
## 10347  2001.4 2001-10       38 0.0000000000
## 10348  2001.4 2001-10       39 0.0238095238
## 10349  2001.4 2001-10       40 0.0000000000
## 10350  2001.4 2001-10       41 0.0000000000
## 10351  2001.4 2001-10       42 0.0000000000
## 10352  2001.4 2001-10       43 0.0000000000
## 10353  2001.4 2001-10       44 0.0238095238
## 10354  2001.4 2001-10       45 0.0000000000
## 10355  2001.4 2001-10       46 0.0000000000
## 10356  2001.4 2001-10       47 0.0000000000
## 10357  2001.4 2001-10       48 0.0000000000
## 10358  2001.4 2001-10       49 0.0000000000
## 10359  2001.4 2001-10       50 0.0000000000
## 10360  2001.4 2001-10       51 0.0476190476
## 10361  2001.4 2001-10       52 0.0476190476
## 10362  2001.4 2001-10       53 0.0476190476
## 10363  2001.4 2001-10       54 0.0238095238
## 10364  2001.4 2001-10       55 0.0238095238
## 10365  2001.4 2001-10       57 0.0000000000
## 10366  2001.4 2001-10       56 0.0238095238
## 10367  2001.4 2001-10       58 0.0000000000
## 10368  2001.4 2001-10       59 0.0238095238
## 10369  2001.4 2001-10       60 0.0476190476
## 10370  2001.4 2001-10       61 0.0476190476
## 10371  2001.4 2001-11        1 0.0400000000
## 10372  2001.4 2001-11        2 0.0000000000
## 10373  2001.4 2001-11        3 0.0000000000
## 10374  2001.4 2001-11        4 0.0080000000
## 10375  2001.4 2001-11        5 0.0000000000
## 10376  2001.4 2001-11        6 0.0000000000
## 10377  2001.4 2001-11        7 0.0160000000
## 10378  2001.4 2001-11        8 0.0080000000
## 10379  2001.4 2001-11        9 0.0000000000
## 10380  2001.4 2001-11       10 0.0000000000
## 10381  2001.4 2001-11       11 0.0000000000
## 10382  2001.4 2001-11       12 0.0000000000
## 10383  2001.4 2001-11       13 0.0080000000
## 10384  2001.4 2001-11       14 0.0000000000
## 10385  2001.4 2001-11       15 0.0000000000
## 10386  2001.4 2001-11       16 0.0000000000
## 10387  2001.4 2001-11       17 0.0000000000
## 10388  2001.4 2001-11       18 0.0000000000
## 10389  2001.4 2001-11       19 0.0000000000
## 10390  2001.4 2001-11       20 0.0000000000
## 10391  2001.4 2001-11       21 0.0000000000
## 10392  2001.4 2001-11       22 0.0000000000
## 10393  2001.4 2001-11       23 0.0000000000
## 10394  2001.4 2001-11       24 0.0000000000
## 10395  2001.4 2001-11       25 0.0000000000
## 10396  2001.4 2001-11       26 0.0000000000
## 10397  2001.4 2001-11       27 0.0080000000
## 10398  2001.4 2001-11       28 0.0160000000
## 10399  2001.4 2001-11       29 0.0240000000
## 10400  2001.4 2001-11       30 0.0240000000
## 10401  2001.4 2001-11       31 0.0400000000
## 10402  2001.4 2001-11       32 0.0480000000
## 10403  2001.4 2001-11       33 0.0160000000
## 10404  2001.4 2001-11       34 0.0000000000
## 10405  2001.4 2001-11       35 0.0000000000
## 10406  2001.4 2001-11       36 0.0160000000
## 10407  2001.4 2001-11       37 0.0080000000
## 10408  2001.4 2001-11       38 0.0320000000
## 10409  2001.4 2001-11       39 0.0320000000
## 10410  2001.4 2001-11       40 0.0080000000
## 10411  2001.4 2001-11       41 0.0080000000
## 10412  2001.4 2001-11       42 0.0320000000
## 10413  2001.4 2001-11       43 0.0320000000
## 10414  2001.4 2001-11       44 0.0240000000
## 10415  2001.4 2001-11       45 0.0080000000
## 10416  2001.4 2001-11       46 0.0320000000
## 10417  2001.4 2001-11       47 0.0000000000
## 10418  2001.4 2001-11       48 0.0080000000
## 10419  2001.4 2001-11       49 0.0400000000
## 10420  2001.4 2001-11       50 0.0560000000
## 10421  2001.4 2001-11       51 0.0560000000
## 10422  2001.4 2001-11       52 0.0160000000
## 10423  2001.4 2001-11       53 0.0400000000
## 10424  2001.4 2001-11       54 0.0320000000
## 10425  2001.4 2001-11       55 0.0400000000
## 10426  2001.4 2001-11       56 0.0960000000
## 10427  2001.4 2001-11       57 0.0160000000
## 10428  2001.4 2001-11       61 0.0480000000
## 10429  2001.4 2001-11       60 0.0320000000
## 10430  2001.4 2001-11       59 0.0160000000
## 10431  2001.4 2001-11       58 0.0160000000
## 10432  2001.4 2001-12        1 0.0306122449
## 10433  2001.4 2001-12        2 0.0000000000
## 10434  2001.4 2001-12        3 0.0102040816
## 10435  2001.4 2001-12        4 0.0000000000
## 10436  2001.4 2001-12        5 0.0000000000
## 10437  2001.4 2001-12        6 0.0000000000
## 10438  2001.4 2001-12        7 0.0000000000
## 10439  2001.4 2001-12        8 0.0000000000
## 10440  2001.4 2001-12        9 0.0000000000
## 10441  2001.4 2001-12       10 0.0000000000
## 10442  2001.4 2001-12       11 0.0000000000
## 10443  2001.4 2001-12       12 0.0000000000
## 10444  2001.4 2001-12       13 0.0000000000
## 10445  2001.4 2001-12       14 0.0000000000
## 10446  2001.4 2001-12       15 0.0000000000
## 10447  2001.4 2001-12       16 0.0000000000
## 10448  2001.4 2001-12       17 0.0000000000
## 10449  2001.4 2001-12       18 0.0306122449
## 10450  2001.4 2001-12       19 0.0000000000
## 10451  2001.4 2001-12       20 0.0000000000
## 10452  2001.4 2001-12       21 0.0000000000
## 10453  2001.4 2001-12       22 0.0000000000
## 10454  2001.4 2001-12       23 0.0000000000
## 10455  2001.4 2001-12       24 0.0000000000
## 10456  2001.4 2001-12       25 0.0000000000
## 10457  2001.4 2001-12       26 0.0000000000
## 10458  2001.4 2001-12       27 0.0000000000
## 10459  2001.4 2001-12       28 0.0000000000
## 10460  2001.4 2001-12       29 0.0408163265
## 10461  2001.4 2001-12       30 0.0102040816
## 10462  2001.4 2001-12       31 0.0102040816
## 10463  2001.4 2001-12       32 0.0102040816
## 10464  2001.4 2001-12       33 0.0000000000
## 10465  2001.4 2001-12       34 0.0204081633
## 10466  2001.4 2001-12       35 0.0102040816
## 10467  2001.4 2001-12       36 0.0510204082
## 10468  2001.4 2001-12       37 0.0000000000
## 10469  2001.4 2001-12       38 0.0000000000
## 10470  2001.4 2001-12       39 0.0000000000
## 10471  2001.4 2001-12       40 0.0204081633
## 10472  2001.4 2001-12       41 0.0102040816
## 10473  2001.4 2001-12       42 0.0102040816
## 10474  2001.4 2001-12       43 0.0102040816
## 10475  2001.4 2001-12       44 0.0102040816
## 10476  2001.4 2001-12       45 0.0000000000
## 10477  2001.4 2001-12       46 0.0000000000
## 10478  2001.4 2001-12       47 0.0102040816
## 10479  2001.4 2001-12       48 0.0000000000
## 10480  2001.4 2001-12       49 0.0204081633
## 10481  2001.4 2001-12       50 0.0204081633
## 10482  2001.4 2001-12       51 0.0204081633
## 10483  2001.4 2001-12       52 0.0510204082
## 10484  2001.4 2001-12       53 0.0510204082
## 10485  2001.4 2001-12       54 0.0510204082
## 10486  2001.4 2001-12       55 0.0102040816
## 10487  2001.4 2001-12       56 0.0306122449
## 10488  2001.4 2001-12       57 0.0816326531
## 10489  2001.4 2001-12       59 0.1938775510
## 10490  2001.4 2001-12       61 0.0408163265
## 10491  2001.4 2001-12       60 0.0306122449
## 10492  2001.4 2001-12       58 0.1020408163
## 10493  2001.4 2001-12        1 0.0273972603
## 10494  2001.4 2001-12        2 0.0000000000
## 10495  2001.4 2001-12        3 0.0068493151
## 10496  2001.4 2001-12        4 0.0000000000
## 10497  2001.4 2001-12        5 0.0000000000
## 10498  2001.4 2001-12        6 0.0136986301
## 10499  2001.4 2001-12        7 0.0000000000
## 10500  2001.4 2001-12        8 0.0000000000
## 10501  2001.4 2001-12        9 0.0136986301
## 10502  2001.4 2001-12       10 0.0136986301
## 10503  2001.4 2001-12       11 0.0342465753
## 10504  2001.4 2001-12       12 0.0205479452
## 10505  2001.4 2001-12       13 0.0000000000
## 10506  2001.4 2001-12       14 0.0068493151
## 10507  2001.4 2001-12       15 0.0000000000
## 10508  2001.4 2001-12       16 0.0000000000
## 10509  2001.4 2001-12       17 0.0000000000
## 10510  2001.4 2001-12       18 0.0753424658
## 10511  2001.4 2001-12       19 0.0000000000
## 10512  2001.4 2001-12       20 0.0136986301
## 10513  2001.4 2001-12       21 0.0000000000
## 10514  2001.4 2001-12       22 0.0205479452
## 10515  2001.4 2001-12       23 0.0000000000
## 10516  2001.4 2001-12       24 0.0068493151
## 10517  2001.4 2001-12       25 0.0136986301
## 10518  2001.4 2001-12       26 0.0136986301
## 10519  2001.4 2001-12       27 0.0136986301
## 10520  2001.4 2001-12       28 0.0136986301
## 10521  2001.4 2001-12       29 0.0068493151
## 10522  2001.4 2001-12       30 0.0068493151
## 10523  2001.4 2001-12       31 0.0068493151
## 10524  2001.4 2001-12       32 0.0068493151
## 10525  2001.4 2001-12       33 0.0068493151
## 10526  2001.4 2001-12       34 0.0000000000
## 10527  2001.4 2001-12       35 0.0136986301
## 10528  2001.4 2001-12       36 0.0000000000
## 10529  2001.4 2001-12       37 0.0000000000
## 10530  2001.4 2001-12       38 0.0205479452
## 10531  2001.4 2001-12       39 0.0000000000
## 10532  2001.4 2001-12       40 0.0068493151
## 10533  2001.4 2001-12       41 0.0205479452
## 10534  2001.4 2001-12       42 0.0342465753
## 10535  2001.4 2001-12       43 0.0136986301
## 10536  2001.4 2001-12       44 0.0273972603
## 10537  2001.4 2001-12       45 0.0136986301
## 10538  2001.4 2001-12       46 0.0684931507
## 10539  2001.4 2001-12       47 0.0136986301
## 10540  2001.4 2001-12       48 0.0068493151
## 10541  2001.4 2001-12       52 0.0068493151
## 10542  2001.4 2001-12       49 0.0136986301
## 10543  2001.4 2001-12       53 0.0136986301
## 10544  2001.4 2001-12       50 0.0410958904
## 10545  2001.4 2001-12       54 0.0273972603
## 10546  2001.4 2001-12       51 0.0273972603
## 10547  2001.4 2001-12       55 0.0273972603
## 10548  2001.4 2001-12       56 0.0342465753
## 10549  2001.4 2001-12       57 0.0068493151
## 10550  2001.4 2001-12       58 0.0068493151
## 10551  2001.4 2001-12       60 0.1027397260
## 10552  2001.4 2001-12       59 0.0890410959
## 10553  2001.4 2001-12       61 0.0205479452
## 10554  2001.4 2001-12        1 0.3103448276
## 10555  2001.4 2001-12       11 0.0000000000
## 10556  2001.4 2001-12        2 0.0000000000
## 10557  2001.4 2001-12       12 0.0000000000
## 10558  2001.4 2001-12        3 0.0344827586
## 10559  2001.4 2001-12       13 0.0000000000
## 10560  2001.4 2001-12        4 0.0000000000
## 10561  2001.4 2001-12       14 0.0000000000
## 10562  2001.4 2001-12        5 0.0000000000
## 10563  2001.4 2001-12       15 0.1034482759
## 10564  2001.4 2001-12        6 0.0000000000
## 10565  2001.4 2001-12       16 0.0000000000
## 10566  2001.4 2001-12        7 0.0000000000
## 10567  2001.4 2001-12       17 0.0000000000
## 10568  2001.4 2001-12        8 0.0344827586
## 10569  2001.4 2001-12       18 0.0000000000
## 10570  2001.4 2001-12        9 0.0000000000
## 10571  2001.4 2001-12       19 0.0000000000
## 10572  2001.4 2001-12       10 0.0344827586
## 10573  2001.4 2001-12       20 0.0000000000
## 10574  2001.4 2001-12       21 0.0000000000
## 10575  2001.4 2001-12       22 0.0000000000
## 10576  2001.4 2001-12       23 0.0000000000
## 10577  2001.4 2001-12       24 0.0000000000
## 10578  2001.4 2001-12       25 0.0000000000
## 10579  2001.4 2001-12       26 0.0000000000
## 10580  2001.4 2001-12       27 0.0000000000
## 10581  2001.4 2001-12       28 0.1379310345
## 10582  2001.4 2001-12       29 0.0000000000
## 10583  2001.4 2001-12       30 0.0000000000
## 10584  2001.4 2001-12       31 0.0344827586
## 10585  2001.4 2001-12       32 0.0344827586
## 10586  2001.4 2001-12       33 0.0000000000
## 10587  2001.4 2001-12       34 0.0000000000
## 10588  2001.4 2001-12       35 0.0000000000
## 10589  2001.4 2001-12       36 0.0000000000
## 10590  2001.4 2001-12       37 0.0000000000
## 10591  2001.4 2001-12       38 0.0344827586
## 10592  2001.4 2001-12       39 0.0000000000
## 10593  2001.4 2001-12       40 0.0000000000
## 10594  2001.4 2001-12       41 0.0000000000
## 10595  2001.4 2001-12       51 0.0000000000
## 10596  2001.4 2001-12       42 0.0000000000
## 10597  2001.4 2001-12       52 0.0000000000
## 10598  2001.4 2001-12       43 0.0344827586
## 10599  2001.4 2001-12       53 0.0000000000
## 10600  2001.4 2001-12       44 0.0000000000
## 10601  2001.4 2001-12       54 0.0000000000
## 10602  2001.4 2001-12       45 0.0000000000
## 10603  2001.4 2001-12       55 0.1034482759
## 10604  2001.4 2001-12       46 0.0000000000
## 10605  2001.4 2001-12       56 0.0344827586
## 10606  2001.4 2001-12       47 0.0000000000
## 10607  2001.4 2001-12       57 0.0344827586
## 10608  2001.4 2001-12       48 0.0000000000
## 10609  2001.4 2001-12       58 0.0344827586
## 10610  2001.4 2001-12       49 0.0000000000
## 10611  2001.4 2001-12       59 0.0000000000
## 10612  2001.4 2001-12       50 0.0000000000
## 10613  2001.4 2001-12       60 0.0000000000
## 10614  2001.4 2001-12       61 0.0000000000
## 10615  2002.1 2002-02        1 0.1111111111
## 10616  2002.1 2002-02       11 0.0000000000
## 10617  2002.1 2002-02        2 0.0000000000
## 10618  2002.1 2002-02       12 0.0000000000
## 10619  2002.1 2002-02        3 0.0000000000
## 10620  2002.1 2002-02       13 0.0000000000
## 10621  2002.1 2002-02        4 0.0000000000
## 10622  2002.1 2002-02       14 0.2222222222
## 10623  2002.1 2002-02        5 0.0000000000
## 10624  2002.1 2002-02       15 0.0000000000
## 10625  2002.1 2002-02        6 0.0000000000
## 10626  2002.1 2002-02       16 0.0000000000
## 10627  2002.1 2002-02        7 0.0000000000
## 10628  2002.1 2002-02       17 0.0000000000
## 10629  2002.1 2002-02        8 0.0000000000
## 10630  2002.1 2002-02       18 0.0000000000
## 10631  2002.1 2002-02        9 0.0000000000
## 10632  2002.1 2002-02       19 0.2222222222
## 10633  2002.1 2002-02       10 0.0000000000
## 10634  2002.1 2002-02       20 0.0000000000
## 10635  2002.1 2002-02       21 0.1111111111
## 10636  2002.1 2002-02       22 0.1111111111
## 10637  2002.1 2002-02       23 0.1111111111
## 10638  2002.1 2002-02       24 0.1111111111
## 10639  2002.1 2002-02       25 0.0000000000
## 10640  2002.1 2002-02       26 0.0000000000
## 10641  2002.1 2002-02       27 0.0000000000
## 10642  2002.1 2002-02       28 0.0000000000
## 10643  2002.1 2002-02       29 0.0000000000
## 10644  2002.1 2002-02       30 0.0000000000
## 10645  2002.1 2002-02       31 0.0000000000
## 10646  2002.1 2002-02       32 0.0000000000
## 10647  2002.1 2002-02       33 0.0000000000
## 10648  2002.1 2002-02       34 0.0000000000
## 10649  2002.1 2002-02       35 0.0000000000
## 10650  2002.1 2002-02       36 0.0000000000
## 10651  2002.1 2002-02       37 0.0000000000
## 10652  2002.1 2002-02       38 0.0000000000
## 10653  2002.1 2002-02       39 0.0000000000
## 10654  2002.1 2002-02       40 0.0000000000
## 10655  2002.1 2002-02       41 0.0000000000
## 10656  2002.1 2002-02       42 0.0000000000
## 10657  2002.1 2002-02       43 0.0000000000
## 10658  2002.1 2002-02       44 0.0000000000
## 10659  2002.1 2002-02       45 0.0000000000
## 10660  2002.1 2002-02       46 0.0000000000
## 10661  2002.1 2002-02       47 0.0000000000
## 10662  2002.1 2002-02       48 0.0000000000
## 10663  2002.1 2002-02       49 0.0000000000
## 10664  2002.1 2002-02       50 0.0000000000
## 10665  2002.1 2002-02       51 0.0000000000
## 10666  2002.1 2002-02       52 0.0000000000
## 10667  2002.1 2002-02       53 0.0000000000
## 10668  2002.1 2002-02       54 0.0000000000
## 10669  2002.1 2002-02       55 0.0000000000
## 10670  2002.1 2002-02       56 0.0000000000
## 10671  2002.1 2002-02       57 0.0000000000
## 10672  2002.1 2002-02       58 0.0000000000
## 10673  2002.1 2002-02       59 0.0000000000
## 10674  2002.1 2002-02       60 0.0000000000
## 10675  2002.1 2002-02       61 0.0000000000
## 10676  2002.1 2002-01        1 0.0076190476
## 10677  2002.1 2002-01        2 0.0019047619
## 10678  2002.1 2002-01        3 0.0000000000
## 10679  2002.1 2002-01        4 0.0000000000
## 10680  2002.1 2002-01        5 0.0019047619
## 10681  2002.1 2002-01        6 0.0000000000
## 10682  2002.1 2002-01        7 0.0000000000
## 10683  2002.1 2002-01        8 0.0038095238
## 10684  2002.1 2002-01        9 0.0019047619
## 10685  2002.1 2002-01       10 0.0038095238
## 10686  2002.1 2002-01       11 0.0000000000
## 10687  2002.1 2002-01       12 0.0057142857
## 10688  2002.1 2002-01       13 0.0019047619
## 10689  2002.1 2002-01       14 0.0019047619
## 10690  2002.1 2002-01       15 0.0000000000
## 10691  2002.1 2002-01       16 0.0057142857
## 10692  2002.1 2002-01       17 0.0000000000
## 10693  2002.1 2002-01       18 0.0057142857
## 10694  2002.1 2002-01       19 0.0000000000
## 10695  2002.1 2002-01       20 0.0019047619
## 10696  2002.1 2002-01       21 0.0057142857
## 10697  2002.1 2002-01       22 0.0000000000
## 10698  2002.1 2002-01       23 0.0000000000
## 10699  2002.1 2002-01       24 0.0038095238
## 10700  2002.1 2002-01       25 0.0038095238
## 10701  2002.1 2002-01       26 0.0076190476
## 10702  2002.1 2002-01       27 0.0095238095
## 10703  2002.1 2002-01       28 0.0190476190
## 10704  2002.1 2002-01       29 0.0247619048
## 10705  2002.1 2002-01       30 0.0095238095
## 10706  2002.1 2002-01       31 0.0076190476
## 10707  2002.1 2002-01       32 0.0038095238
## 10708  2002.1 2002-01       33 0.0000000000
## 10709  2002.1 2002-01       34 0.0095238095
## 10710  2002.1 2002-01       35 0.0076190476
## 10711  2002.1 2002-01       36 0.0038095238
## 10712  2002.1 2002-01       37 0.0038095238
## 10713  2002.1 2002-01       38 0.0019047619
## 10714  2002.1 2002-01       39 0.0095238095
## 10715  2002.1 2002-01       40 0.0114285714
## 10716  2002.1 2002-01       41 0.0076190476
## 10717  2002.1 2002-01       51 0.0247619048
## 10718  2002.1 2002-01       42 0.0057142857
## 10719  2002.1 2002-01       52 0.0285714286
## 10720  2002.1 2002-01       43 0.0228571429
## 10721  2002.1 2002-01       53 0.0209523810
## 10722  2002.1 2002-01       44 0.0266666667
## 10723  2002.1 2002-01       54 0.0552380952
## 10724  2002.1 2002-01       45 0.0019047619
## 10725  2002.1 2002-01       55 0.0285714286
## 10726  2002.1 2002-01       46 0.0476190476
## 10727  2002.1 2002-01       56 0.0057142857
## 10728  2002.1 2002-01       47 0.0266666667
## 10729  2002.1 2002-01       57 0.0304761905
## 10730  2002.1 2002-01       48 0.0380952381
## 10731  2002.1 2002-01       58 0.0590476190
## 10732  2002.1 2002-01       49 0.0361904762
## 10733  2002.1 2002-01       59 0.0400000000
## 10734  2002.1 2002-01       50 0.0476190476
## 10735  2002.1 2002-01       60 0.0971428571
## 10736  2002.1 2002-01       61 0.1619047619
## 10737  2002.1 2002-01        1 1.0000000000
## 10738  2002.1 2002-01        2 0.0000000000
## 10739  2002.1 2002-01        3 0.0000000000
## 10740  2002.1 2002-01        4 0.0000000000
## 10741  2002.1 2002-01        5 0.0000000000
## 10742  2002.1 2002-01        6 0.0000000000
## 10743  2002.1 2002-01        7 0.0000000000
## 10744  2002.1 2002-01        8 0.0000000000
## 10745  2002.1 2002-01        9 0.0000000000
## 10746  2002.1 2002-01       10 0.0000000000
## 10747  2002.1 2002-01       11 0.0000000000
## 10748  2002.1 2002-01       12 0.0000000000
## 10749  2002.1 2002-01       13 0.0000000000
## 10750  2002.1 2002-01       14 0.0000000000
## 10751  2002.1 2002-01       15 0.0000000000
## 10752  2002.1 2002-01       16 0.0000000000
## 10753  2002.1 2002-01       17 0.0000000000
## 10754  2002.1 2002-01       18 0.0000000000
## 10755  2002.1 2002-01       19 0.0000000000
## 10756  2002.1 2002-01       20 0.0000000000
## 10757  2002.1 2002-01       21 0.0000000000
## 10758  2002.1 2002-01       22 0.0000000000
## 10759  2002.1 2002-01       23 0.0000000000
## 10760  2002.1 2002-01       24 0.0000000000
## 10761  2002.1 2002-01       25 0.0000000000
## 10762  2002.1 2002-01       26 0.0000000000
## 10763  2002.1 2002-01       27 0.0000000000
## 10764  2002.1 2002-01       28 0.0000000000
## 10765  2002.1 2002-01       29 0.0000000000
## 10766  2002.1 2002-01       30 0.0000000000
## 10767  2002.1 2002-01       31 0.0000000000
## 10768  2002.1 2002-01       32 0.0000000000
## 10769  2002.1 2002-01       33 0.0000000000
## 10770  2002.1 2002-01       34 0.0000000000
## 10771  2002.1 2002-01       35 0.0000000000
## 10772  2002.1 2002-01       36 0.0000000000
## 10773  2002.1 2002-01       37 0.0000000000
## 10774  2002.1 2002-01       38 0.0000000000
## 10775  2002.1 2002-01       39 0.0000000000
## 10776  2002.1 2002-01       40 0.0000000000
## 10777  2002.1 2002-01       41 0.0000000000
## 10778  2002.1 2002-01       42 0.0000000000
## 10779  2002.1 2002-01       43 0.0000000000
## 10780  2002.1 2002-01       44 0.0000000000
## 10781  2002.1 2002-01       45 0.0000000000
## 10782  2002.1 2002-01       46 0.0000000000
## 10783  2002.1 2002-01       47 0.0000000000
## 10784  2002.1 2002-01       48 0.0000000000
## 10785  2002.1 2002-01       52 0.0000000000
## 10786  2002.1 2002-01       49 0.0000000000
## 10787  2002.1 2002-01       53 0.0000000000
## 10788  2002.1 2002-01       50 0.0000000000
## 10789  2002.1 2002-01       54 0.0000000000
## 10790  2002.1 2002-01       51 0.0000000000
## 10791  2002.1 2002-01       55 0.0000000000
## 10792  2002.1 2002-01       56 0.0000000000
## 10793  2002.1 2002-01       57 0.0000000000
## 10794  2002.1 2002-01       58 0.0000000000
## 10795  2002.1 2002-01       59 0.0000000000
## 10796  2002.1 2002-01       61 0.0000000000
## 10797  2002.1 2002-01       60 0.0000000000
## 10798  2001.3 2001-09        1 0.0093457944
## 10799  2001.3 2001-09        2 0.0000000000
## 10800  2001.3 2001-09        3 0.0000000000
## 10801  2001.3 2001-09        4 0.0000000000
## 10802  2001.3 2001-09        5 0.0000000000
## 10803  2001.3 2001-09        6 0.0093457944
## 10804  2001.3 2001-09        7 0.0000000000
## 10805  2001.3 2001-09        8 0.0000000000
## 10806  2001.3 2001-09        9 0.0000000000
## 10807  2001.3 2001-09       10 0.0000000000
## 10808  2001.3 2001-09       11 0.0000000000
## 10809  2001.3 2001-09       21 0.0000000000
## 10810  2001.3 2001-09       12 0.0000000000
## 10811  2001.3 2001-09       22 0.0373831776
## 10812  2001.3 2001-09       13 0.0000000000
## 10813  2001.3 2001-09       23 0.0000000000
## 10814  2001.3 2001-09       14 0.0000000000
## 10815  2001.3 2001-09       24 0.0000000000
## 10816  2001.3 2001-09       15 0.0186915888
## 10817  2001.3 2001-09       25 0.0280373832
## 10818  2001.3 2001-09       16 0.0000000000
## 10819  2001.3 2001-09       26 0.0000000000
## 10820  2001.3 2001-09       17 0.0000000000
## 10821  2001.3 2001-09       27 0.0000000000
## 10822  2001.3 2001-09       18 0.0186915888
## 10823  2001.3 2001-09       28 0.0000000000
## 10824  2001.3 2001-09       19 0.0000000000
## 10825  2001.3 2001-09       29 0.0186915888
## 10826  2001.3 2001-09       20 0.0000000000
## 10827  2001.3 2001-09       30 0.0467289720
## 10828  2001.3 2001-09       31 0.0467289720
## 10829  2001.3 2001-09       32 0.0093457944
## 10830  2001.3 2001-09       33 0.0093457944
## 10831  2001.3 2001-09       34 0.0000000000
## 10832  2001.3 2001-09       35 0.0000000000
## 10833  2001.3 2001-09       36 0.0186915888
## 10834  2001.3 2001-09       37 0.0093457944
## 10835  2001.3 2001-09       38 0.0093457944
## 10836  2001.3 2001-09       39 0.0093457944
## 10837  2001.3 2001-09       40 0.0093457944
## 10838  2001.3 2001-09       41 0.0186915888
## 10839  2001.3 2001-09       51 0.0654205607
## 10840  2001.3 2001-09       42 0.0093457944
## 10841  2001.3 2001-09       52 0.0373831776
## 10842  2001.3 2001-09       43 0.0000000000
## 10843  2001.3 2001-09       53 0.0186915888
## 10844  2001.3 2001-09       44 0.0186915888
## 10845  2001.3 2001-09       54 0.0654205607
## 10846  2001.3 2001-09       45 0.0280373832
## 10847  2001.3 2001-09       55 0.0093457944
## 10848  2001.3 2001-09       46 0.0093457944
## 10849  2001.3 2001-09       56 0.0654205607
## 10850  2001.3 2001-09       47 0.0093457944
## 10851  2001.3 2001-09       57 0.0373831776
## 10852  2001.3 2001-09       48 0.0186915888
## 10853  2001.3 2001-09       58 0.0841121495
## 10854  2001.3 2001-09       49 0.0560747664
## 10855  2001.3 2001-09       59 0.0654205607
## 10856  2001.3 2001-09       50 0.0000000000
## 10857  2001.3 2001-09       60 0.0560747664
## 10858  2001.3 2001-09       61 0.0186915888
## 10859  2001.4 2001-12        1 0.3333333333
## 10860  2001.4 2001-12        2 0.0000000000
## 10861  2001.4 2001-12        3 0.3333333333
## 10862  2001.4 2001-12        4 0.3333333333
## 10863  2001.4 2001-12        5 0.0000000000
## 10864  2001.4 2001-12        6 0.0000000000
## 10865  2001.4 2001-12        7 0.0000000000
## 10866  2001.4 2001-12        8 0.0000000000
## 10867  2001.4 2001-12        9 0.0000000000
## 10868  2001.4 2001-12       10 0.0000000000
## 10869  2001.4 2001-12       11 0.0000000000
## 10870  2001.4 2001-12       12 0.0000000000
## 10871  2001.4 2001-12       13 0.0000000000
## 10872  2001.4 2001-12       14 0.0000000000
## 10873  2001.4 2001-12       15 0.0000000000
## 10874  2001.4 2001-12       16 0.0000000000
## 10875  2001.4 2001-12       17 0.0000000000
## 10876  2001.4 2001-12       18 0.0000000000
## 10877  2001.4 2001-12       19 0.0000000000
## 10878  2001.4 2001-12       20 0.0000000000
## 10879  2001.4 2001-12       21 0.0000000000
## 10880  2001.4 2001-12       31 0.0000000000
## 10881  2001.4 2001-12       22 0.0000000000
## 10882  2001.4 2001-12       32 0.0000000000
## 10883  2001.4 2001-12       23 0.0000000000
## 10884  2001.4 2001-12       33 0.0000000000
## 10885  2001.4 2001-12       24 0.0000000000
## 10886  2001.4 2001-12       34 0.0000000000
## 10887  2001.4 2001-12       25 0.0000000000
## 10888  2001.4 2001-12       35 0.0000000000
## 10889  2001.4 2001-12       26 0.0000000000
## 10890  2001.4 2001-12       36 0.0000000000
## 10891  2001.4 2001-12       27 0.0000000000
## 10892  2001.4 2001-12       37 0.0000000000
## 10893  2001.4 2001-12       28 0.0000000000
## 10894  2001.4 2001-12       38 0.0000000000
## 10895  2001.4 2001-12       29 0.0000000000
## 10896  2001.4 2001-12       39 0.0000000000
## 10897  2001.4 2001-12       30 0.0000000000
## 10898  2001.4 2001-12       40 0.0000000000
## 10899  2001.4 2001-12       41 0.0000000000
## 10900  2001.4 2001-12       42 0.0000000000
## 10901  2001.4 2001-12       43 0.0000000000
## 10902  2001.4 2001-12       44 0.0000000000
## 10903  2001.4 2001-12       45 0.0000000000
## 10904  2001.4 2001-12       46 0.0000000000
## 10905  2001.4 2001-12       47 0.0000000000
## 10906  2001.4 2001-12       48 0.0000000000
## 10907  2001.4 2001-12       49 0.0000000000
## 10908  2001.4 2001-12       50 0.0000000000
## 10909  2001.4 2001-12       51 0.0000000000
## 10910  2001.4 2001-12       52 0.0000000000
## 10911  2001.4 2001-12       53 0.0000000000
## 10912  2001.4 2001-12       54 0.0000000000
## 10913  2001.4 2001-12       55 0.0000000000
## 10914  2001.4 2001-12       56 0.0000000000
## 10915  2001.4 2001-12       57 0.0000000000
## 10916  2001.4 2001-12       58 0.0000000000
## 10917  2001.4 2001-12       59 0.0000000000
## 10918  2001.4 2001-12       60 0.0000000000
## 10919  2001.4 2001-12       61 0.0000000000
## 10920  2001.3 2001-09        1 0.0005235602
## 10921  2001.3 2001-09        2 0.0000000000
## 10922  2001.3 2001-09        3 0.0000000000
## 10923  2001.3 2001-09        4 0.0000000000
## 10924  2001.3 2001-09        5 0.0000000000
## 10925  2001.3 2001-09        6 0.0010471204
## 10926  2001.3 2001-09        7 0.0000000000
## 10927  2001.3 2001-09        8 0.0000000000
## 10928  2001.3 2001-09        9 0.0000000000
## 10929  2001.3 2001-09       10 0.0000000000
## 10930  2001.3 2001-09       11 0.0015706806
## 10931  2001.3 2001-09       12 0.0000000000
## 10932  2001.3 2001-09       13 0.0000000000
## 10933  2001.3 2001-09       14 0.0000000000
## 10934  2001.3 2001-09       15 0.0005235602
## 10935  2001.3 2001-09       16 0.0010471204
## 10936  2001.3 2001-09       17 0.0005235602
## 10937  2001.3 2001-09       18 0.0005235602
## 10938  2001.3 2001-09       19 0.0010471204
## 10939  2001.3 2001-09       20 0.0000000000
## 10940  2001.3 2001-09       21 0.0015706806
## 10941  2001.3 2001-09       22 0.0015706806
## 10942  2001.3 2001-09       23 0.0000000000
## 10943  2001.3 2001-09       24 0.0000000000
## 10944  2001.3 2001-09       25 0.0015706806
## 10945  2001.3 2001-09       26 0.0000000000
## 10946  2001.3 2001-09       27 0.0010471204
## 10947  2001.3 2001-09       28 0.0036649215
## 10948  2001.3 2001-09       29 0.0068062827
## 10949  2001.3 2001-09       30 0.0099476440
## 10950  2001.3 2001-09       31 0.0104712042
## 10951  2001.3 2001-09       32 0.0094240838
## 10952  2001.3 2001-09       33 0.0073298429
## 10953  2001.3 2001-09       34 0.1329842932
## 10954  2001.3 2001-09       35 0.2544502618
## 10955  2001.3 2001-09       36 0.0664921466
## 10956  2001.3 2001-09       37 0.0146596859
## 10957  2001.3 2001-09       38 0.0089005236
## 10958  2001.3 2001-09       39 0.0036649215
## 10959  2001.3 2001-09       40 0.0083769634
## 10960  2001.3 2001-09       41 0.0251308901
## 10961  2001.3 2001-09       42 0.0115183246
## 10962  2001.3 2001-09       43 0.0141361257
## 10963  2001.3 2001-09       44 0.0099476440
## 10964  2001.3 2001-09       45 0.0120418848
## 10965  2001.3 2001-09       46 0.0083769634
## 10966  2001.3 2001-09       47 0.0136125654
## 10967  2001.3 2001-09       48 0.0136125654
## 10968  2001.3 2001-09       52 0.0298429319
## 10969  2001.3 2001-09       49 0.0151832461
## 10970  2001.3 2001-09       53 0.0188481675
## 10971  2001.3 2001-09       50 0.0115183246
## 10972  2001.3 2001-09       54 0.0146596859
## 10973  2001.3 2001-09       51 0.0261780105
## 10974  2001.3 2001-09       55 0.0240837696
## 10975  2001.3 2001-09       56 0.1036649215
## 10976  2001.3 2001-09       57 0.0308900524
## 10977  2001.3 2001-09       58 0.0230366492
## 10978  2001.3 2001-09       59 0.0167539267
## 10979  2001.3 2001-09       60 0.0136125654
## 10980  2001.3 2001-09       61 0.0136125654
## 10981  2001.2 2001-05       35 0.0000000000
## 10982  2001.2 2001-05       52 0.0000000000
## 10983  2001.2 2001-05       58 0.0000000000
## 10984  2001.2 2001-05       47 0.0000000000
## 10985  2001.2 2001-05       23 0.0000000000
## 10986  2001.2 2001-05       18 0.0000000000
## 10987  2001.2 2001-05       46 0.0000000000
## 10988  2001.2 2001-05       16 0.0000000000
## 10989  2001.2 2001-05       33 0.0000000000
## 10990  2001.2 2001-05       48 0.0000000000
## 10991  2001.2 2001-05       43 0.0000000000
## 10992  2001.2 2001-05        7 0.0000000000
## 10993  2001.2 2001-05        9 0.0000000000
## 10994  2001.2 2001-05        3 0.0000000000
## 10995  2001.2 2001-05       22 0.0000000000
## 10996  2001.2 2001-05       14 0.0000000000
## 10997  2001.2 2001-05       19 0.0000000000
## 10998  2001.2 2001-05       32 0.0000000000
## 10999  2001.2 2001-05       59 0.0000000000
## 11000  2001.2 2001-05       57 0.0000000000
## 11001  2001.2 2001-05       61 0.0000000000
## 11002  2001.2 2001-05       34 0.0000000000
## 11003  2001.2 2001-05       40 0.0000000000
## 11004  2001.2 2001-05        8 0.0000000000
## 11005  2001.2 2001-05       30 0.0000000000
## 11006  2001.2 2001-05       20 0.0000000000
## 11007  2001.2 2001-05       11 0.0000000000
## 11008  2001.2 2001-05       31 0.0000000000
## 11009  2001.2 2001-05       45 0.0000000000
## 11010  2001.2 2001-05       21 0.0000000000
## 11011  2001.2 2001-05        5 0.0000000000
## 11012  2001.2 2001-05       53 0.0000000000
## 11013  2001.2 2001-05       49 0.0000000000
## 11014  2001.2 2001-05       56 0.0000000000
## 11015  2001.2 2001-05       55 0.0000000000
## 11016  2001.2 2001-05       36 0.0000000000
## 11017  2001.2 2001-05       38 0.0000000000
## 11018  2001.2 2001-05       28 0.0000000000
## 11019  2001.2 2001-05       41 0.0000000000
## 11020  2001.2 2001-05        2 0.0000000000
## 11021  2001.2 2001-05       13 0.0000000000
## 11022  2001.2 2001-05       60 0.0000000000
## 11023  2001.2 2001-05       25 0.0000000000
## 11024  2001.2 2001-05       10 0.0000000000
## 11025  2001.2 2001-05       42 0.0000000000
## 11026  2001.2 2001-05       24 0.0000000000
## 11027  2001.2 2001-05       26 0.0000000000
## 11028  2001.2 2001-05        1 1.0000000000
## 11029  2001.2 2001-05        6 0.0000000000
## 11030  2001.2 2001-05       39 0.0000000000
## 11031  2001.2 2001-05       27 0.0000000000
## 11032  2001.2 2001-05       29 0.0000000000
## 11033  2001.2 2001-05       17 0.0000000000
## 11034  2001.2 2001-05        4 0.0000000000
## 11035  2001.2 2001-05       12 0.0000000000
## 11036  2001.2 2001-05       15 0.0000000000
## 11037  2001.2 2001-05       44 0.0000000000
## 11038  2001.2 2001-05       51 0.0000000000
## 11039  2001.2 2001-05       50 0.0000000000
## 11040  2001.2 2001-05       54 0.0000000000
## 11041  2001.2 2001-05       37 0.0000000000
## 11042  2001.4 2001-12        1 0.0052631579
## 11043  2001.4 2001-12        2 0.0157894737
## 11044  2001.4 2001-12        3 0.0052631579
## 11045  2001.4 2001-12        4 0.0000000000
## 11046  2001.4 2001-12        5 0.0000000000
## 11047  2001.4 2001-12        6 0.0052631579
## 11048  2001.4 2001-12        7 0.0210526316
## 11049  2001.4 2001-12        8 0.0052631579
## 11050  2001.4 2001-12        9 0.0000000000
## 11051  2001.4 2001-12       10 0.0000000000
## 11052  2001.4 2001-12       11 0.0000000000
## 11053  2001.4 2001-12       12 0.0157894737
## 11054  2001.4 2001-12       13 0.0000000000
## 11055  2001.4 2001-12       14 0.0000000000
## 11056  2001.4 2001-12       15 0.0000000000
## 11057  2001.4 2001-12       16 0.0000000000
## 11058  2001.4 2001-12       17 0.0000000000
## 11059  2001.4 2001-12       18 0.0052631579
## 11060  2001.4 2001-12       19 0.0000000000
## 11061  2001.4 2001-12       20 0.0000000000
## 11062  2001.4 2001-12       21 0.0000000000
## 11063  2001.4 2001-12       22 0.0000000000
## 11064  2001.4 2001-12       23 0.0210526316
## 11065  2001.4 2001-12       24 0.0052631579
## 11066  2001.4 2001-12       25 0.0052631579
## 11067  2001.4 2001-12       26 0.0000000000
## 11068  2001.4 2001-12       27 0.0000000000
## 11069  2001.4 2001-12       28 0.0000000000
## 11070  2001.4 2001-12       29 0.0000000000
## 11071  2001.4 2001-12       30 0.0000000000
## 11072  2001.4 2001-12       31 0.0105263158
## 11073  2001.4 2001-12       32 0.0210526316
## 11074  2001.4 2001-12       33 0.0052631579
## 11075  2001.4 2001-12       34 0.0000000000
## 11076  2001.4 2001-12       35 0.0000000000
## 11077  2001.4 2001-12       36 0.0315789474
## 11078  2001.4 2001-12       37 0.0210526316
## 11079  2001.4 2001-12       38 0.0000000000
## 11080  2001.4 2001-12       39 0.0052631579
## 11081  2001.4 2001-12       40 0.0052631579
## 11082  2001.4 2001-12       41 0.0000000000
## 11083  2001.4 2001-12       42 0.0210526316
## 11084  2001.4 2001-12       43 0.0105263158
## 11085  2001.4 2001-12       44 0.0263157895
## 11086  2001.4 2001-12       45 0.0105263158
## 11087  2001.4 2001-12       46 0.0157894737
## 11088  2001.4 2001-12       47 0.0157894737
## 11089  2001.4 2001-12       48 0.0473684211
## 11090  2001.4 2001-12       49 0.0578947368
## 11091  2001.4 2001-12       50 0.0578947368
## 11092  2001.4 2001-12       51 0.0526315789
## 11093  2001.4 2001-12       52 0.0578947368
## 11094  2001.4 2001-12       53 0.0210526316
## 11095  2001.4 2001-12       54 0.0052631579
## 11096  2001.4 2001-12       55 0.0263157895
## 11097  2001.4 2001-12       61 0.0842105263
## 11098  2001.4 2001-12       56 0.0263157895
## 11099  2001.4 2001-12       60 0.0157894737
## 11100  2001.4 2001-12       59 0.0947368421
## 11101  2001.4 2001-12       57 0.0421052632
## 11102  2001.4 2001-12       58 0.1000000000
## 11103  2001.4 2001-11       59 0.0489251297
## 11104  2001.4 2001-11       24 0.0003706449
## 11105  2001.4 2001-11       40 0.0170496664
## 11106  2001.4 2001-11       19 0.0000000000
## 11107  2001.4 2001-11       35 0.0066716086
## 11108  2001.4 2001-11       22 0.0003706449
## 11109  2001.4 2001-11        9 0.0000000000
## 11110  2001.4 2001-11       32 0.0044477391
## 11111  2001.4 2001-11       61 0.0585618977
## 11112  2001.4 2001-11       29 0.0040770941
## 11113  2001.4 2001-11       48 0.0174203113
## 11114  2001.4 2001-11       50 0.0392883617
## 11115  2001.4 2001-11       58 0.0455893254
## 11116  2001.4 2001-11       49 0.0129725723
## 11117  2001.4 2001-11        1 0.0007412898
## 11118  2001.4 2001-11       27 0.0011119348
## 11119  2001.4 2001-11       23 0.0003706449
## 11120  2001.4 2001-11       11 0.0018532246
## 11121  2001.4 2001-11        5 0.0000000000
## 11122  2001.4 2001-11       20 0.0033358043
## 11123  2001.4 2001-11       18 0.0011119348
## 11124  2001.4 2001-11       41 0.0070422535
## 11125  2001.4 2001-11       21 0.0003706449
## 11126  2001.4 2001-11        7 0.0000000000
## 11127  2001.4 2001-11       52 0.0770941438
## 11128  2001.4 2001-11       30 0.0126019274
## 11129  2001.4 2001-11       13 0.0003706449
## 11130  2001.4 2001-11       10 0.0000000000
## 11131  2001.4 2001-11       37 0.0096367680
## 11132  2001.4 2001-11       34 0.0037064492
## 11133  2001.4 2001-11       14 0.0018532246
## 11134  2001.4 2001-11        4 0.0003706449
## 11135  2001.4 2001-11       42 0.0103780578
## 11136  2001.4 2001-11       43 0.0063009637
## 11137  2001.4 2001-11       55 0.0396590067
## 11138  2001.4 2001-11       44 0.0396590067
## 11139  2001.4 2001-11        6 0.0003706449
## 11140  2001.4 2001-11        8 0.0007412898
## 11141  2001.4 2001-11       36 0.0151964418
## 11142  2001.4 2001-11       33 0.0037064492
## 11143  2001.4 2001-11        3 0.0000000000
## 11144  2001.4 2001-11       39 0.0092661231
## 11145  2001.4 2001-11       17 0.0007412898
## 11146  2001.4 2001-11       16 0.0000000000
## 11147  2001.4 2001-11       28 0.0014825797
## 11148  2001.4 2001-11       56 0.0633802817
## 11149  2001.4 2001-11       31 0.0048183840
## 11150  2001.4 2001-11       57 0.0452186805
## 11151  2001.4 2001-11        2 0.0000000000
## 11152  2001.4 2001-11       60 0.0318754633
## 11153  2001.4 2001-11       46 0.0548554485
## 11154  2001.4 2001-11       47 0.0285396590
## 11155  2001.4 2001-11       15 0.0011119348
## 11156  2001.4 2001-11       12 0.0000000000
## 11157  2001.4 2001-11       45 0.0092661231
## 11158  2001.4 2001-11       26 0.0014825797
## 11159  2001.4 2001-11       54 0.0570793180
## 11160  2001.4 2001-11       53 0.1052631579
## 11161  2001.4 2001-11       25 0.0033358043
## 11162  2001.4 2001-11       51 0.0789473684
## 11163  2001.4 2001-11       38 0.0100074129
## 11164  2002.1 2002-02        1 0.5000000000
## 11165  2002.1 2002-02        2 0.0000000000
## 11166  2002.1 2002-02        3 0.0000000000
## 11167  2002.1 2002-02        4 0.0000000000
## 11168  2002.1 2002-02        5 0.0000000000
## 11169  2002.1 2002-02        6 0.0000000000
## 11170  2002.1 2002-02        7 0.0000000000
## 11171  2002.1 2002-02        8 0.0000000000
## 11172  2002.1 2002-02        9 0.0000000000
## 11173  2002.1 2002-02       10 0.0000000000
## 11174  2002.1 2002-02       11 0.0000000000
## 11175  2002.1 2002-02       12 0.0000000000
## 11176  2002.1 2002-02       13 0.0000000000
## 11177  2002.1 2002-02       14 0.5000000000
## 11178  2002.1 2002-02       15 0.0000000000
## 11179  2002.1 2002-02       16 0.0000000000
## 11180  2002.1 2002-02       17 0.0000000000
## 11181  2002.1 2002-02       18 0.0000000000
## 11182  2002.1 2002-02       19 0.0000000000
## 11183  2002.1 2002-02       20 0.0000000000
## 11184  2002.1 2002-02       21 0.0000000000
## 11185  2002.1 2002-02       22 0.0000000000
## 11186  2002.1 2002-02       23 0.0000000000
## 11187  2002.1 2002-02       24 0.0000000000
## 11188  2002.1 2002-02       25 0.0000000000
## 11189  2002.1 2002-02       26 0.0000000000
## 11190  2002.1 2002-02       27 0.0000000000
## 11191  2002.1 2002-02       28 0.0000000000
## 11192  2002.1 2002-02       29 0.0000000000
## 11193  2002.1 2002-02       30 0.0000000000
## 11194  2002.1 2002-02       31 0.0000000000
## 11195  2002.1 2002-02       32 0.0000000000
## 11196  2002.1 2002-02       33 0.0000000000
## 11197  2002.1 2002-02       34 0.0000000000
## 11198  2002.1 2002-02       35 0.0000000000
## 11199  2002.1 2002-02       36 0.0000000000
## 11200  2002.1 2002-02       37 0.0000000000
## 11201  2002.1 2002-02       38 0.0000000000
## 11202  2002.1 2002-02       39 0.0000000000
## 11203  2002.1 2002-02       40 0.0000000000
## 11204  2002.1 2002-02       41 0.0000000000
## 11205  2002.1 2002-02       42 0.0000000000
## 11206  2002.1 2002-02       43 0.0000000000
## 11207  2002.1 2002-02       44 0.0000000000
## 11208  2002.1 2002-02       45 0.0000000000
## 11209  2002.1 2002-02       46 0.0000000000
## 11210  2002.1 2002-02       47 0.0000000000
## 11211  2002.1 2002-02       48 0.0000000000
## 11212  2002.1 2002-02       49 0.0000000000
## 11213  2002.1 2002-02       50 0.0000000000
## 11214  2002.1 2002-02       51 0.0000000000
## 11215  2002.1 2002-02       52 0.0000000000
## 11216  2002.1 2002-02       53 0.0000000000
## 11217  2002.1 2002-02       55 0.0000000000
## 11218  2002.1 2002-02       54 0.0000000000
## 11219  2002.1 2002-02       56 0.0000000000
## 11220  2002.1 2002-02       57 0.0000000000
## 11221  2002.1 2002-02       60 0.0000000000
## 11222  2002.1 2002-02       58 0.0000000000
## 11223  2002.1 2002-02       59 0.0000000000
## 11224  2002.1 2002-02       61 0.0000000000
## 11225  2001.4 2001-12        1 1.0000000000
## 11226  2001.4 2001-12        2 0.0000000000
## 11227  2001.4 2001-12        3 0.0000000000
## 11228  2001.4 2001-12        4 0.0000000000
## 11229  2001.4 2001-12        5 0.0000000000
## 11230  2001.4 2001-12        6 0.0000000000
## 11231  2001.4 2001-12        7 0.0000000000
## 11232  2001.4 2001-12        8 0.0000000000
## 11233  2001.4 2001-12        9 0.0000000000
## 11234  2001.4 2001-12       10 0.0000000000
## 11235  2001.4 2001-12       11 0.0000000000
## 11236  2001.4 2001-12       12 0.0000000000
## 11237  2001.4 2001-12       13 0.0000000000
## 11238  2001.4 2001-12       14 0.0000000000
## 11239  2001.4 2001-12       15 0.0000000000
## 11240  2001.4 2001-12       16 0.0000000000
## 11241  2001.4 2001-12       17 0.0000000000
## 11242  2001.4 2001-12       18 0.0000000000
## 11243  2001.4 2001-12       19 0.0000000000
## 11244  2001.4 2001-12       20 0.0000000000
## 11245  2001.4 2001-12       21 0.0000000000
## 11246  2001.4 2001-12       22 0.0000000000
## 11247  2001.4 2001-12       23 0.0000000000
## 11248  2001.4 2001-12       24 0.0000000000
## 11249  2001.4 2001-12       25 0.0000000000
## 11250  2001.4 2001-12       26 0.0000000000
## 11251  2001.4 2001-12       27 0.0000000000
## 11252  2001.4 2001-12       28 0.0000000000
## 11253  2001.4 2001-12       29 0.0000000000
## 11254  2001.4 2001-12       30 0.0000000000
## 11255  2001.4 2001-12       31 0.0000000000
## 11256  2001.4 2001-12       32 0.0000000000
## 11257  2001.4 2001-12       33 0.0000000000
## 11258  2001.4 2001-12       34 0.0000000000
## 11259  2001.4 2001-12       35 0.0000000000
## 11260  2001.4 2001-12       36 0.0000000000
## 11261  2001.4 2001-12       37 0.0000000000
## 11262  2001.4 2001-12       38 0.0000000000
## 11263  2001.4 2001-12       39 0.0000000000
## 11264  2001.4 2001-12       40 0.0000000000
## 11265  2001.4 2001-12       41 0.0000000000
## 11266  2001.4 2001-12       42 0.0000000000
## 11267  2001.4 2001-12       43 0.0000000000
## 11268  2001.4 2001-12       44 0.0000000000
## 11269  2001.4 2001-12       45 0.0000000000
## 11270  2001.4 2001-12       46 0.0000000000
## 11271  2001.4 2001-12       47 0.0000000000
## 11272  2001.4 2001-12       48 0.0000000000
## 11273  2001.4 2001-12       49 0.0000000000
## 11274  2001.4 2001-12       50 0.0000000000
## 11275  2001.4 2001-12       60 0.0000000000
## 11276  2001.4 2001-12       51 0.0000000000
## 11277  2001.4 2001-12       61 0.0000000000
## 11278  2001.4 2001-12       52 0.0000000000
## 11279  2001.4 2001-12       53 0.0000000000
## 11280  2001.4 2001-12       54 0.0000000000
## 11281  2001.4 2001-12       59 0.0000000000
## 11282  2001.4 2001-12       55 0.0000000000
## 11283  2001.4 2001-12       56 0.0000000000
## 11284  2001.4 2001-12       57 0.0000000000
## 11285  2001.4 2001-12       58 0.0000000000
## 11286  2001.1 2001-03        1 0.6666666667
## 11287  2001.1 2001-03       11 0.0000000000
## 11288  2001.1 2001-03        2 0.0000000000
## 11289  2001.1 2001-03       12 0.3333333333
## 11290  2001.1 2001-03        3 0.0000000000
## 11291  2001.1 2001-03       13 0.0000000000
## 11292  2001.1 2001-03        4 0.0000000000
## 11293  2001.1 2001-03       14 0.0000000000
## 11294  2001.1 2001-03        5 0.0000000000
## 11295  2001.1 2001-03       15 0.0000000000
## 11296  2001.1 2001-03        6 0.0000000000
## 11297  2001.1 2001-03       16 0.0000000000
## 11298  2001.1 2001-03        7 0.0000000000
## 11299  2001.1 2001-03       17 0.0000000000
## 11300  2001.1 2001-03        8 0.0000000000
## 11301  2001.1 2001-03       18 0.0000000000
## 11302  2001.1 2001-03        9 0.0000000000
## 11303  2001.1 2001-03       19 0.0000000000
## 11304  2001.1 2001-03       10 0.0000000000
## 11305  2001.1 2001-03       20 0.0000000000
## 11306  2001.1 2001-03       21 0.0000000000
## 11307  2001.1 2001-03       22 0.0000000000
## 11308  2001.1 2001-03       23 0.0000000000
## 11309  2001.1 2001-03       24 0.0000000000
## 11310  2001.1 2001-03       25 0.0000000000
## 11311  2001.1 2001-03       26 0.0000000000
## 11312  2001.1 2001-03       27 0.0000000000
## 11313  2001.1 2001-03       28 0.0000000000
## 11314  2001.1 2001-03       29 0.0000000000
## 11315  2001.1 2001-03       30 0.0000000000
## 11316  2001.1 2001-03       31 0.0000000000
## 11317  2001.1 2001-03       32 0.0000000000
## 11318  2001.1 2001-03       33 0.0000000000
## 11319  2001.1 2001-03       34 0.0000000000
## 11320  2001.1 2001-03       35 0.0000000000
## 11321  2001.1 2001-03       36 0.0000000000
## 11322  2001.1 2001-03       37 0.0000000000
## 11323  2001.1 2001-03       38 0.0000000000
## 11324  2001.1 2001-03       39 0.0000000000
## 11325  2001.1 2001-03       40 0.0000000000
## 11326  2001.1 2001-03       41 0.0000000000
## 11327  2001.1 2001-03       42 0.0000000000
## 11328  2001.1 2001-03       43 0.0000000000
## 11329  2001.1 2001-03       44 0.0000000000
## 11330  2001.1 2001-03       45 0.0000000000
## 11331  2001.1 2001-03       46 0.0000000000
## 11332  2001.1 2001-03       47 0.0000000000
## 11333  2001.1 2001-03       48 0.0000000000
## 11334  2001.1 2001-03       49 0.0000000000
## 11335  2001.1 2001-03       50 0.0000000000
## 11336  2001.1 2001-03       51 0.0000000000
## 11337  2001.1 2001-03       52 0.0000000000
## 11338  2001.1 2001-03       53 0.0000000000
## 11339  2001.1 2001-03       54 0.0000000000
## 11340  2001.1 2001-03       55 0.0000000000
## 11341  2001.1 2001-03       56 0.0000000000
## 11342  2001.1 2001-03       57 0.0000000000
## 11343  2001.1 2001-03       58 0.0000000000
## 11344  2001.1 2001-03       59 0.0000000000
## 11345  2001.1 2001-03       60 0.0000000000
## 11346  2001.1 2001-03       61 0.0000000000
## 11347  2001.2 2001-05        1 0.0011792453
## 11348  2001.2 2001-05        2 0.0000000000
## 11349  2001.2 2001-05        3 0.0000000000
## 11350  2001.2 2001-05        4 0.0000000000
## 11351  2001.2 2001-05        5 0.0000000000
## 11352  2001.2 2001-05        6 0.0000000000
## 11353  2001.2 2001-05        7 0.0000000000
## 11354  2001.2 2001-05        8 0.0000000000
## 11355  2001.2 2001-05        9 0.0000000000
## 11356  2001.2 2001-05       10 0.0011792453
## 11357  2001.2 2001-05       11 0.0058962264
## 11358  2001.2 2001-05       12 0.0047169811
## 11359  2001.2 2001-05       13 0.0000000000
## 11360  2001.2 2001-05       14 0.0000000000
## 11361  2001.2 2001-05       15 0.0000000000
## 11362  2001.2 2001-05       16 0.0011792453
## 11363  2001.2 2001-05       17 0.0106132075
## 11364  2001.2 2001-05       18 0.0011792453
## 11365  2001.2 2001-05       19 0.0035377358
## 11366  2001.2 2001-05       20 0.0011792453
## 11367  2001.2 2001-05       21 0.0082547170
## 11368  2001.2 2001-05       22 0.0023584906
## 11369  2001.2 2001-05       23 0.0035377358
## 11370  2001.2 2001-05       24 0.0047169811
## 11371  2001.2 2001-05       25 0.0058962264
## 11372  2001.2 2001-05       26 0.0035377358
## 11373  2001.2 2001-05       27 0.0011792453
## 11374  2001.2 2001-05       28 0.0035377358
## 11375  2001.2 2001-05       29 0.0153301887
## 11376  2001.2 2001-05       30 0.0058962264
## 11377  2001.2 2001-05       31 0.0035377358
## 11378  2001.2 2001-05       32 0.0082547170
## 11379  2001.2 2001-05       33 0.0070754717
## 11380  2001.2 2001-05       34 0.0082547170
## 11381  2001.2 2001-05       35 0.0153301887
## 11382  2001.2 2001-05       36 0.0141509434
## 11383  2001.2 2001-05       37 0.0106132075
## 11384  2001.2 2001-05       38 0.0200471698
## 11385  2001.2 2001-05       39 0.0117924528
## 11386  2001.2 2001-05       40 0.0129716981
## 11387  2001.2 2001-05       41 0.0283018868
## 11388  2001.2 2001-05       42 0.0058962264
## 11389  2001.2 2001-05       43 0.0141509434
## 11390  2001.2 2001-05       44 0.0212264151
## 11391  2001.2 2001-05       45 0.0235849057
## 11392  2001.2 2001-05       46 0.0200471698
## 11393  2001.2 2001-05       47 0.0837264151
## 11394  2001.2 2001-05       48 0.0294811321
## 11395  2001.2 2001-05       49 0.0212264151
## 11396  2001.2 2001-05       50 0.0235849057
## 11397  2001.2 2001-05       51 0.0341981132
## 11398  2001.2 2001-05       52 0.0471698113
## 11399  2001.2 2001-05       53 0.0224056604
## 11400  2001.2 2001-05       54 0.0212264151
## 11401  2001.2 2001-05       55 0.0436320755
## 11402  2001.2 2001-05       57 0.0412735849
## 11403  2001.2 2001-05       56 0.0801886792
## 11404  2001.2 2001-05       61 0.0872641509
## 11405  2001.2 2001-05       59 0.0530660377
## 11406  2001.2 2001-05       58 0.0554245283
## 11407  2001.2 2001-05       60 0.0459905660
## 11408  2002.1 2002-02       21 0.0026212320
## 11409  2002.1 2002-02       52 0.0393184797
## 11410  2002.1 2002-02       33 0.0288335518
## 11411  2002.1 2002-02       17 0.0000000000
## 11412  2002.1 2002-02       36 0.0026212320
## 11413  2002.1 2002-02       50 0.0366972477
## 11414  2002.1 2002-02       45 0.0209698558
## 11415  2002.1 2002-02       59 0.0458715596
## 11416  2002.1 2002-02       27 0.0013106160
## 11417  2002.1 2002-02       60 0.0235910878
## 11418  2002.1 2002-02       47 0.0642201835
## 11419  2002.1 2002-02       25 0.0013106160
## 11420  2002.1 2002-02        6 0.0013106160
## 11421  2002.1 2002-02       40 0.0078636959
## 11422  2002.1 2002-02       49 0.0170380079
## 11423  2002.1 2002-02       30 0.0013106160
## 11424  2002.1 2002-02        4 0.0013106160
## 11425  2002.1 2002-02       32 0.0078636959
## 11426  2002.1 2002-02       57 0.0838794233
## 11427  2002.1 2002-02       53 0.0052424640
## 11428  2002.1 2002-02       18 0.0000000000
## 11429  2002.1 2002-02       15 0.0000000000
## 11430  2002.1 2002-02       16 0.0000000000
## 11431  2002.1 2002-02       19 0.0000000000
## 11432  2002.1 2002-02       24 0.0013106160
## 11433  2002.1 2002-02       58 0.0812581913
## 11434  2002.1 2002-02       55 0.0301441678
## 11435  2002.1 2002-02        5 0.0000000000
## 11436  2002.1 2002-02       54 0.0091743119
## 11437  2002.1 2002-02       39 0.0301441678
## 11438  2002.1 2002-02       14 0.0000000000
## 11439  2002.1 2002-02       20 0.0026212320
## 11440  2002.1 2002-02       26 0.0026212320
## 11441  2002.1 2002-02       31 0.0000000000
## 11442  2002.1 2002-02       10 0.0000000000
## 11443  2002.1 2002-02       28 0.0078636959
## 11444  2002.1 2002-02       37 0.0065530799
## 11445  2002.1 2002-02        1 0.0013106160
## 11446  2002.1 2002-02        2 0.0000000000
## 11447  2002.1 2002-02        8 0.0078636959
## 11448  2002.1 2002-02       23 0.0000000000
## 11449  2002.1 2002-02        7 0.0013106160
## 11450  2002.1 2002-02       38 0.0144167759
## 11451  2002.1 2002-02       48 0.0419397117
## 11452  2002.1 2002-02       41 0.0052424640
## 11453  2002.1 2002-02       34 0.0209698558
## 11454  2002.1 2002-02        3 0.0000000000
## 11455  2002.1 2002-02       42 0.0183486239
## 11456  2002.1 2002-02       51 0.0327653997
## 11457  2002.1 2002-02       12 0.0000000000
## 11458  2002.1 2002-02       22 0.0000000000
## 11459  2002.1 2002-02       35 0.0183486239
## 11460  2002.1 2002-02       44 0.0183486239
## 11461  2002.1 2002-02       29 0.0065530799
## 11462  2002.1 2002-02       13 0.0000000000
## 11463  2002.1 2002-02       46 0.0288335518
## 11464  2002.1 2002-02       43 0.0157273919
## 11465  2002.1 2002-02        9 0.0013106160
## 11466  2002.1 2002-02       11 0.0000000000
## 11467  2002.1 2002-02       61 0.1415465269
## 11468  2002.1 2002-02       56 0.0602883355
## 11469  2001.2 2001-05        1 0.0540540541
## 11470  2001.2 2001-05        2 0.0000000000
## 11471  2001.2 2001-05        3 0.0000000000
## 11472  2001.2 2001-05        4 0.0000000000
## 11473  2001.2 2001-05        5 0.0000000000
## 11474  2001.2 2001-05        6 0.0000000000
## 11475  2001.2 2001-05        7 0.0000000000
## 11476  2001.2 2001-05        8 0.0000000000
## 11477  2001.2 2001-05        9 0.0000000000
## 11478  2001.2 2001-05       10 0.0180180180
## 11479  2001.2 2001-05       11 0.0000000000
## 11480  2001.2 2001-05       12 0.0000000000
## 11481  2001.2 2001-05       13 0.0000000000
## 11482  2001.2 2001-05       14 0.0000000000
## 11483  2001.2 2001-05       15 0.0000000000
## 11484  2001.2 2001-05       16 0.0000000000
## 11485  2001.2 2001-05       17 0.0090090090
## 11486  2001.2 2001-05       18 0.0000000000
## 11487  2001.2 2001-05       19 0.0000000000
## 11488  2001.2 2001-05       20 0.0000000000
## 11489  2001.2 2001-05       21 0.0000000000
## 11490  2001.2 2001-05       22 0.0000000000
## 11491  2001.2 2001-05       23 0.0000000000
## 11492  2001.2 2001-05       24 0.0000000000
## 11493  2001.2 2001-05       25 0.0000000000
## 11494  2001.2 2001-05       26 0.0090090090
## 11495  2001.2 2001-05       27 0.0090090090
## 11496  2001.2 2001-05       28 0.0180180180
## 11497  2001.2 2001-05       29 0.0000000000
## 11498  2001.2 2001-05       30 0.0000000000
## 11499  2001.2 2001-05       31 0.0000000000
## 11500  2001.2 2001-05       32 0.0000000000
## 11501  2001.2 2001-05       33 0.0000000000
## 11502  2001.2 2001-05       34 0.0000000000
## 11503  2001.2 2001-05       35 0.0000000000
## 11504  2001.2 2001-05       36 0.0000000000
## 11505  2001.2 2001-05       37 0.0180180180
## 11506  2001.2 2001-05       38 0.0180180180
## 11507  2001.2 2001-05       39 0.0180180180
## 11508  2001.2 2001-05       40 0.0180180180
## 11509  2001.2 2001-05       41 0.0270270270
## 11510  2001.2 2001-05       42 0.0000000000
## 11511  2001.2 2001-05       43 0.0360360360
## 11512  2001.2 2001-05       44 0.0000000000
## 11513  2001.2 2001-05       45 0.0000000000
## 11514  2001.2 2001-05       46 0.0000000000
## 11515  2001.2 2001-05       47 0.0090090090
## 11516  2001.2 2001-05       48 0.0450450450
## 11517  2001.2 2001-05       49 0.0270270270
## 11518  2001.2 2001-05       50 0.0540540541
## 11519  2001.2 2001-05       51 0.0720720721
## 11520  2001.2 2001-05       52 0.0180180180
## 11521  2001.2 2001-05       53 0.0360360360
## 11522  2001.2 2001-05       54 0.0540540541
## 11523  2001.2 2001-05       55 0.0630630631
## 11524  2001.2 2001-05       56 0.0810810811
## 11525  2001.2 2001-05       60 0.1081081081
## 11526  2001.2 2001-05       59 0.0720720721
## 11527  2001.2 2001-05       57 0.0630630631
## 11528  2001.2 2001-05       61 0.0360360360
## 11529  2001.2 2001-05       58 0.0090090090
## 11530  2001.3 2001-09        1 0.0034843206
## 11531  2001.3 2001-09        2 0.0000000000
## 11532  2001.3 2001-09        3 0.0034843206
## 11533  2001.3 2001-09        4 0.0000000000
## 11534  2001.3 2001-09        5 0.0000000000
## 11535  2001.3 2001-09        6 0.0000000000
## 11536  2001.3 2001-09        7 0.0000000000
## 11537  2001.3 2001-09        8 0.0000000000
## 11538  2001.3 2001-09        9 0.0000000000
## 11539  2001.3 2001-09       10 0.0034843206
## 11540  2001.3 2001-09       11 0.0000000000
## 11541  2001.3 2001-09       12 0.0000000000
## 11542  2001.3 2001-09       13 0.0000000000
## 11543  2001.3 2001-09       14 0.0000000000
## 11544  2001.3 2001-09       15 0.0000000000
## 11545  2001.3 2001-09       16 0.0000000000
## 11546  2001.3 2001-09       17 0.0034843206
## 11547  2001.3 2001-09       18 0.0000000000
## 11548  2001.3 2001-09       19 0.0000000000
## 11549  2001.3 2001-09       20 0.0000000000
## 11550  2001.3 2001-09       21 0.0000000000
## 11551  2001.3 2001-09       22 0.0000000000
## 11552  2001.3 2001-09       23 0.0000000000
## 11553  2001.3 2001-09       24 0.0000000000
## 11554  2001.3 2001-09       25 0.0000000000
## 11555  2001.3 2001-09       26 0.0000000000
## 11556  2001.3 2001-09       27 0.0000000000
## 11557  2001.3 2001-09       28 0.0139372822
## 11558  2001.3 2001-09       29 0.0000000000
## 11559  2001.3 2001-09       30 0.0000000000
## 11560  2001.3 2001-09       31 0.0139372822
## 11561  2001.3 2001-09       32 0.0069686411
## 11562  2001.3 2001-09       33 0.0069686411
## 11563  2001.3 2001-09       34 0.0104529617
## 11564  2001.3 2001-09       35 0.0034843206
## 11565  2001.3 2001-09       36 0.0069686411
## 11566  2001.3 2001-09       37 0.0000000000
## 11567  2001.3 2001-09       38 0.0278745645
## 11568  2001.3 2001-09       39 0.0209059233
## 11569  2001.3 2001-09       40 0.0313588850
## 11570  2001.3 2001-09       41 0.0000000000
## 11571  2001.3 2001-09       42 0.0487804878
## 11572  2001.3 2001-09       43 0.0557491289
## 11573  2001.3 2001-09       44 0.0069686411
## 11574  2001.3 2001-09       45 0.0104529617
## 11575  2001.3 2001-09       49 0.0000000000
## 11576  2001.3 2001-09       46 0.0139372822
## 11577  2001.3 2001-09       50 0.0209059233
## 11578  2001.3 2001-09       47 0.0452961672
## 11579  2001.3 2001-09       51 0.0522648084
## 11580  2001.3 2001-09       48 0.0069686411
## 11581  2001.3 2001-09       52 0.0383275261
## 11582  2001.3 2001-09       56 0.1080139373
## 11583  2001.3 2001-09       53 0.0557491289
## 11584  2001.3 2001-09       57 0.0871080139
## 11585  2001.3 2001-09       54 0.0592334495
## 11586  2001.3 2001-09       58 0.0452961672
## 11587  2001.3 2001-09       55 0.0348432056
## 11588  2001.3 2001-09       59 0.0487804878
## 11589  2001.3 2001-09       60 0.0766550523
## 11590  2001.3 2001-09       61 0.0278745645
## 11591  2002.1 2002-02        1 0.0028328612
## 11592  2002.1 2002-02        2 0.0000000000
## 11593  2002.1 2002-02        3 0.0000000000
## 11594  2002.1 2002-02        4 0.0000000000
## 11595  2002.1 2002-02        5 0.0000000000
## 11596  2002.1 2002-02        6 0.0000000000
## 11597  2002.1 2002-02        7 0.0056657224
## 11598  2002.1 2002-02        8 0.0056657224
## 11599  2002.1 2002-02        9 0.0000000000
## 11600  2002.1 2002-02       10 0.0028328612
## 11601  2002.1 2002-02       11 0.0000000000
## 11602  2002.1 2002-02       12 0.0000000000
## 11603  2002.1 2002-02       13 0.0056657224
## 11604  2002.1 2002-02       14 0.0000000000
## 11605  2002.1 2002-02       15 0.0056657224
## 11606  2002.1 2002-02       16 0.0056657224
## 11607  2002.1 2002-02       17 0.0000000000
## 11608  2002.1 2002-02       18 0.0056657224
## 11609  2002.1 2002-02       19 0.0000000000
## 11610  2002.1 2002-02       20 0.0368271955
## 11611  2002.1 2002-02       21 0.0368271955
## 11612  2002.1 2002-02       22 0.0226628895
## 11613  2002.1 2002-02       23 0.0198300283
## 11614  2002.1 2002-02       24 0.0056657224
## 11615  2002.1 2002-02       25 0.0453257790
## 11616  2002.1 2002-02       26 0.0028328612
## 11617  2002.1 2002-02       27 0.0113314448
## 11618  2002.1 2002-02       28 0.0056657224
## 11619  2002.1 2002-02       29 0.0141643059
## 11620  2002.1 2002-02       30 0.0113314448
## 11621  2002.1 2002-02       31 0.0056657224
## 11622  2002.1 2002-02       32 0.0056657224
## 11623  2002.1 2002-02       33 0.0028328612
## 11624  2002.1 2002-02       34 0.0028328612
## 11625  2002.1 2002-02       35 0.0141643059
## 11626  2002.1 2002-02       36 0.0169971671
## 11627  2002.1 2002-02       37 0.0169971671
## 11628  2002.1 2002-02       38 0.0226628895
## 11629  2002.1 2002-02       39 0.0396600567
## 11630  2002.1 2002-02       40 0.0396600567
## 11631  2002.1 2002-02       41 0.0169971671
## 11632  2002.1 2002-02       42 0.0084985836
## 11633  2002.1 2002-02       43 0.0141643059
## 11634  2002.1 2002-02       44 0.0339943343
## 11635  2002.1 2002-02       45 0.0113314448
## 11636  2002.1 2002-02       46 0.0084985836
## 11637  2002.1 2002-02       47 0.0169971671
## 11638  2002.1 2002-02       48 0.0113314448
## 11639  2002.1 2002-02       49 0.0339943343
## 11640  2002.1 2002-02       50 0.0679886686
## 11641  2002.1 2002-02       51 0.0283286119
## 11642  2002.1 2002-02       52 0.0424929178
## 11643  2002.1 2002-02       53 0.0311614731
## 11644  2002.1 2002-02       54 0.0368271955
## 11645  2002.1 2002-02       55 0.0311614731
## 11646  2002.1 2002-02       56 0.0141643059
## 11647  2002.1 2002-02       61 0.0453257790
## 11648  2002.1 2002-02       60 0.0396600567
## 11649  2002.1 2002-02       59 0.0169971671
## 11650  2002.1 2002-02       58 0.0113314448
## 11651  2002.1 2002-02       57 0.0594900850
## 11652  2002.1 2002-02        1 0.0083333333
## 11653  2002.1 2002-02        2 0.0000000000
## 11654  2002.1 2002-02        3 0.0000000000
## 11655  2002.1 2002-02        4 0.0000000000
## 11656  2002.1 2002-02        5 0.0000000000
## 11657  2002.1 2002-02        6 0.0000000000
## 11658  2002.1 2002-02        7 0.0000000000
## 11659  2002.1 2002-02        8 0.0000000000
## 11660  2002.1 2002-02        9 0.0000000000
## 11661  2002.1 2002-02       10 0.0000000000
## 11662  2002.1 2002-02       11 0.0000000000
## 11663  2002.1 2002-02       12 0.0000000000
## 11664  2002.1 2002-02       13 0.0000000000
## 11665  2002.1 2002-02       14 0.0000000000
## 11666  2002.1 2002-02       15 0.0000000000
## 11667  2002.1 2002-02       16 0.0000000000
## 11668  2002.1 2002-02       17 0.0000000000
## 11669  2002.1 2002-02       18 0.0000000000
## 11670  2002.1 2002-02       19 0.0000000000
## 11671  2002.1 2002-02       20 0.0083333333
## 11672  2002.1 2002-02       21 0.0000000000
## 11673  2002.1 2002-02       22 0.0000000000
## 11674  2002.1 2002-02       23 0.0000000000
## 11675  2002.1 2002-02       24 0.0000000000
## 11676  2002.1 2002-02       25 0.0000000000
## 11677  2002.1 2002-02       26 0.0000000000
## 11678  2002.1 2002-02       27 0.0000000000
## 11679  2002.1 2002-02       28 0.0000000000
## 11680  2002.1 2002-02       29 0.0000000000
## 11681  2002.1 2002-02       30 0.0083333333
## 11682  2002.1 2002-02       31 0.0000000000
## 11683  2002.1 2002-02       32 0.0166666667
## 11684  2002.1 2002-02       33 0.0000000000
## 11685  2002.1 2002-02       34 0.0000000000
## 11686  2002.1 2002-02       35 0.0000000000
## 11687  2002.1 2002-02       36 0.0000000000
## 11688  2002.1 2002-02       37 0.0000000000
## 11689  2002.1 2002-02       38 0.0000000000
## 11690  2002.1 2002-02       39 0.0083333333
## 11691  2002.1 2002-02       40 0.0000000000
## 11692  2002.1 2002-02       41 0.0750000000
## 11693  2002.1 2002-02       42 0.0083333333
## 11694  2002.1 2002-02       43 0.0000000000
## 11695  2002.1 2002-02       44 0.0000000000
## 11696  2002.1 2002-02       45 0.0250000000
## 11697  2002.1 2002-02       46 0.0083333333
## 11698  2002.1 2002-02       47 0.0500000000
## 11699  2002.1 2002-02       48 0.0500000000
## 11700  2002.1 2002-02       49 0.1666666667
## 11701  2002.1 2002-02       50 0.0833333333
## 11702  2002.1 2002-02       51 0.0500000000
## 11703  2002.1 2002-02       52 0.0416666667
## 11704  2002.1 2002-02       56 0.0666666667
## 11705  2002.1 2002-02       53 0.0166666667
## 11706  2002.1 2002-02       59 0.0166666667
## 11707  2002.1 2002-02       58 0.0416666667
## 11708  2002.1 2002-02       57 0.0500000000
## 11709  2002.1 2002-02       54 0.0166666667
## 11710  2002.1 2002-02       60 0.0083333333
## 11711  2002.1 2002-02       55 0.1416666667
## 11712  2002.1 2002-02       61 0.0333333333
## 11713  2001.2 2001-05        1 0.0238095238
## 11714  2001.2 2001-05        2 0.0000000000
## 11715  2001.2 2001-05        3 0.0000000000
## 11716  2001.2 2001-05        4 0.0000000000
## 11717  2001.2 2001-05        5 0.0000000000
## 11718  2001.2 2001-05        6 0.0000000000
## 11719  2001.2 2001-05        7 0.0000000000
## 11720  2001.2 2001-05        8 0.0000000000
## 11721  2001.2 2001-05        9 0.0000000000
## 11722  2001.2 2001-05       10 0.0238095238
## 11723  2001.2 2001-05       11 0.0000000000
## 11724  2001.2 2001-05       12 0.0000000000
## 11725  2001.2 2001-05       13 0.0000000000
## 11726  2001.2 2001-05       14 0.0714285714
## 11727  2001.2 2001-05       15 0.0000000000
## 11728  2001.2 2001-05       16 0.0000000000
## 11729  2001.2 2001-05       17 0.0000000000
## 11730  2001.2 2001-05       18 0.0000000000
## 11731  2001.2 2001-05       19 0.0000000000
## 11732  2001.2 2001-05       20 0.0000000000
## 11733  2001.2 2001-05       21 0.0000000000
## 11734  2001.2 2001-05       22 0.0000000000
## 11735  2001.2 2001-05       23 0.0000000000
## 11736  2001.2 2001-05       24 0.0000000000
## 11737  2001.2 2001-05       25 0.0238095238
## 11738  2001.2 2001-05       26 0.0000000000
## 11739  2001.2 2001-05       27 0.0000000000
## 11740  2001.2 2001-05       28 0.0000000000
## 11741  2001.2 2001-05       29 0.0000000000
## 11742  2001.2 2001-05       30 0.0000000000
## 11743  2001.2 2001-05       31 0.0238095238
## 11744  2001.2 2001-05       32 0.0238095238
## 11745  2001.2 2001-05       33 0.0000000000
## 11746  2001.2 2001-05       34 0.0000000000
## 11747  2001.2 2001-05       35 0.0000000000
## 11748  2001.2 2001-05       36 0.0238095238
## 11749  2001.2 2001-05       37 0.0000000000
## 11750  2001.2 2001-05       38 0.1190476190
## 11751  2001.2 2001-05       39 0.0000000000
## 11752  2001.2 2001-05       40 0.0000000000
## 11753  2001.2 2001-05       41 0.0238095238
## 11754  2001.2 2001-05       42 0.0238095238
## 11755  2001.2 2001-05       43 0.0000000000
## 11756  2001.2 2001-05       44 0.0000000000
## 11757  2001.2 2001-05       45 0.0000000000
## 11758  2001.2 2001-05       46 0.0000000000
## 11759  2001.2 2001-05       47 0.0000000000
## 11760  2001.2 2001-05       48 0.0000000000
## 11761  2001.2 2001-05       52 0.0000000000
## 11762  2001.2 2001-05       49 0.1190476190
## 11763  2001.2 2001-05       53 0.0714285714
## 11764  2001.2 2001-05       50 0.0476190476
## 11765  2001.2 2001-05       54 0.0238095238
## 11766  2001.2 2001-05       51 0.1428571429
## 11767  2001.2 2001-05       55 0.0000000000
## 11768  2001.2 2001-05       59 0.0000000000
## 11769  2001.2 2001-05       56 0.0000000000
## 11770  2001.2 2001-05       60 0.0000000000
## 11771  2001.2 2001-05       57 0.0238095238
## 11772  2001.2 2001-05       61 0.0952380952
## 11773  2001.2 2001-05       58 0.0952380952
## 11774  2001.4 2001-12       52 0.0139240506
## 11775  2001.4 2001-12       60 0.0518987342
## 11776  2001.4 2001-12       39 0.0088607595
## 11777  2001.4 2001-12       23 0.0012658228
## 11778  2001.4 2001-12       13 0.0000000000
## 11779  2001.4 2001-12       18 0.0000000000
## 11780  2001.4 2001-12       38 0.0025316456
## 11781  2001.4 2001-12       34 0.0291139241
## 11782  2001.4 2001-12       51 0.0177215190
## 11783  2001.4 2001-12       25 0.0012658228
## 11784  2001.4 2001-12       22 0.0139240506
## 11785  2001.4 2001-12        8 0.0000000000
## 11786  2001.4 2001-12       31 0.0063291139
## 11787  2001.4 2001-12       12 0.0012658228
## 11788  2001.4 2001-12       24 0.0050632911
## 11789  2001.4 2001-12       21 0.0025316456
## 11790  2001.4 2001-12       49 0.0164556962
## 11791  2001.4 2001-12       10 0.0063291139
## 11792  2001.4 2001-12       47 0.0240506329
## 11793  2001.4 2001-12       26 0.0000000000
## 11794  2001.4 2001-12       28 0.0000000000
## 11795  2001.4 2001-12       36 0.0037974684
## 11796  2001.4 2001-12       45 0.0620253165
## 11797  2001.4 2001-12       57 0.0405063291
## 11798  2001.4 2001-12       61 0.0215189873
## 11799  2001.4 2001-12       58 0.1670886076
## 11800  2001.4 2001-12        9 0.0000000000
## 11801  2001.4 2001-12       27 0.0113924051
## 11802  2001.4 2001-12       11 0.0037974684
## 11803  2001.4 2001-12       35 0.0037974684
## 11804  2001.4 2001-12       44 0.0316455696
## 11805  2001.4 2001-12        5 0.0012658228
## 11806  2001.4 2001-12       56 0.0443037975
## 11807  2001.4 2001-12        3 0.0037974684
## 11808  2001.4 2001-12       48 0.0215189873
## 11809  2001.4 2001-12        6 0.0012658228
## 11810  2001.4 2001-12       33 0.0063291139
## 11811  2001.4 2001-12       46 0.0708860759
## 11812  2001.4 2001-12       41 0.0101265823
## 11813  2001.4 2001-12       43 0.0000000000
## 11814  2001.4 2001-12       53 0.0607594937
## 11815  2001.4 2001-12       54 0.0443037975
## 11816  2001.4 2001-12       19 0.0075949367
## 11817  2001.4 2001-12       29 0.0075949367
## 11818  2001.4 2001-12        4 0.0025316456
## 11819  2001.4 2001-12       42 0.0227848101
## 11820  2001.4 2001-12       30 0.0037974684
## 11821  2001.4 2001-12       14 0.0012658228
## 11822  2001.4 2001-12       55 0.0379746835
## 11823  2001.4 2001-12       32 0.0075949367
## 11824  2001.4 2001-12       20 0.0012658228
## 11825  2001.4 2001-12       59 0.0518987342
## 11826  2001.4 2001-12        7 0.0000000000
## 11827  2001.4 2001-12       15 0.0012658228
## 11828  2001.4 2001-12        2 0.0000000000
## 11829  2001.4 2001-12       40 0.0050632911
## 11830  2001.4 2001-12        1 0.0012658228
## 11831  2001.4 2001-12       37 0.0101265823
## 11832  2001.4 2001-12       16 0.0025316456
## 11833  2001.4 2001-12       17 0.0050632911
## 11834  2001.4 2001-12       50 0.0177215190
## 11835  2001.3 2001-07        1 0.0068965517
## 11836  2001.3 2001-07        2 0.0000000000
## 11837  2001.3 2001-07        3 0.0000000000
## 11838  2001.3 2001-07        4 0.0000000000
## 11839  2001.3 2001-07        5 0.0000000000
## 11840  2001.3 2001-07        6 0.0000000000
## 11841  2001.3 2001-07        7 0.0000000000
## 11842  2001.3 2001-07        8 0.0000000000
## 11843  2001.3 2001-07        9 0.0000000000
## 11844  2001.3 2001-07       10 0.0000000000
## 11845  2001.3 2001-07       11 0.0275862069
## 11846  2001.3 2001-07       12 0.0000000000
## 11847  2001.3 2001-07       13 0.0000000000
## 11848  2001.3 2001-07       14 0.0000000000
## 11849  2001.3 2001-07       15 0.0000000000
## 11850  2001.3 2001-07       16 0.0000000000
## 11851  2001.3 2001-07       17 0.0068965517
## 11852  2001.3 2001-07       18 0.0068965517
## 11853  2001.3 2001-07       19 0.0068965517
## 11854  2001.3 2001-07       20 0.0000000000
## 11855  2001.3 2001-07       21 0.0000000000
## 11856  2001.3 2001-07       22 0.0068965517
## 11857  2001.3 2001-07       23 0.0000000000
## 11858  2001.3 2001-07       24 0.0068965517
## 11859  2001.3 2001-07       25 0.0068965517
## 11860  2001.3 2001-07       26 0.0000000000
## 11861  2001.3 2001-07       27 0.0000000000
## 11862  2001.3 2001-07       28 0.0000000000
## 11863  2001.3 2001-07       29 0.0206896552
## 11864  2001.3 2001-07       30 0.0344827586
## 11865  2001.3 2001-07       31 0.0068965517
## 11866  2001.3 2001-07       32 0.0206896552
## 11867  2001.3 2001-07       33 0.0344827586
## 11868  2001.3 2001-07       34 0.0344827586
## 11869  2001.3 2001-07       35 0.0482758621
## 11870  2001.3 2001-07       36 0.0068965517
## 11871  2001.3 2001-07       37 0.0000000000
## 11872  2001.3 2001-07       38 0.0000000000
## 11873  2001.3 2001-07       39 0.0206896552
## 11874  2001.3 2001-07       40 0.1310344828
## 11875  2001.3 2001-07       41 0.0137931034
## 11876  2001.3 2001-07       42 0.0137931034
## 11877  2001.3 2001-07       43 0.0137931034
## 11878  2001.3 2001-07       44 0.0000000000
## 11879  2001.3 2001-07       45 0.0137931034
## 11880  2001.3 2001-07       46 0.0275862069
## 11881  2001.3 2001-07       47 0.0689655172
## 11882  2001.3 2001-07       48 0.0275862069
## 11883  2001.3 2001-07       49 0.0137931034
## 11884  2001.3 2001-07       50 0.0206896552
## 11885  2001.3 2001-07       51 0.0000000000
## 11886  2001.3 2001-07       52 0.0482758621
## 11887  2001.3 2001-07       53 0.0689655172
## 11888  2001.3 2001-07       54 0.0689655172
## 11889  2001.3 2001-07       55 0.0137931034
## 11890  2001.3 2001-07       56 0.0137931034
## 11891  2001.3 2001-07       58 0.0551724138
## 11892  2001.3 2001-07       57 0.0206896552
## 11893  2001.3 2001-07       60 0.0344827586
## 11894  2001.3 2001-07       59 0.0206896552
## 11895  2001.3 2001-07       61 0.0068965517
## 11896  2001.3 2001-08        1 0.0194174757
## 11897  2001.3 2001-08        2 0.0000000000
## 11898  2001.3 2001-08        3 0.0000000000
## 11899  2001.3 2001-08        4 0.0000000000
## 11900  2001.3 2001-08        5 0.0000000000
## 11901  2001.3 2001-08        6 0.0000000000
## 11902  2001.3 2001-08        7 0.0097087379
## 11903  2001.3 2001-08        8 0.0000000000
## 11904  2001.3 2001-08        9 0.0000000000
## 11905  2001.3 2001-08       10 0.0097087379
## 11906  2001.3 2001-08       11 0.0000000000
## 11907  2001.3 2001-08       12 0.0000000000
## 11908  2001.3 2001-08       13 0.0000000000
## 11909  2001.3 2001-08       14 0.0000000000
## 11910  2001.3 2001-08       15 0.0000000000
## 11911  2001.3 2001-08       16 0.0000000000
## 11912  2001.3 2001-08       17 0.0000000000
## 11913  2001.3 2001-08       18 0.0000000000
## 11914  2001.3 2001-08       19 0.0000000000
## 11915  2001.3 2001-08       20 0.0000000000
## 11916  2001.3 2001-08       21 0.0000000000
## 11917  2001.3 2001-08       22 0.0000000000
## 11918  2001.3 2001-08       23 0.0000000000
## 11919  2001.3 2001-08       24 0.0194174757
## 11920  2001.3 2001-08       25 0.0000000000
## 11921  2001.3 2001-08       26 0.0000000000
## 11922  2001.3 2001-08       27 0.0000000000
## 11923  2001.3 2001-08       28 0.0000000000
## 11924  2001.3 2001-08       29 0.0388349515
## 11925  2001.3 2001-08       30 0.0097087379
## 11926  2001.3 2001-08       31 0.0000000000
## 11927  2001.3 2001-08       32 0.0097087379
## 11928  2001.3 2001-08       33 0.0000000000
## 11929  2001.3 2001-08       34 0.0000000000
## 11930  2001.3 2001-08       35 0.0097087379
## 11931  2001.3 2001-08       36 0.0194174757
## 11932  2001.3 2001-08       37 0.0097087379
## 11933  2001.3 2001-08       38 0.0097087379
## 11934  2001.3 2001-08       39 0.0194174757
## 11935  2001.3 2001-08       40 0.0097087379
## 11936  2001.3 2001-08       41 0.0194174757
## 11937  2001.3 2001-08       42 0.0000000000
## 11938  2001.3 2001-08       43 0.0097087379
## 11939  2001.3 2001-08       44 0.0194174757
## 11940  2001.3 2001-08       45 0.0582524272
## 11941  2001.3 2001-08       46 0.0000000000
## 11942  2001.3 2001-08       47 0.0194174757
## 11943  2001.3 2001-08       48 0.0388349515
## 11944  2001.3 2001-08       49 0.0970873786
## 11945  2001.3 2001-08       50 0.0873786408
## 11946  2001.3 2001-08       51 0.0097087379
## 11947  2001.3 2001-08       52 0.1067961165
## 11948  2001.3 2001-08       56 0.0097087379
## 11949  2001.3 2001-08       53 0.0194174757
## 11950  2001.3 2001-08       57 0.0291262136
## 11951  2001.3 2001-08       54 0.0194174757
## 11952  2001.3 2001-08       58 0.1747572816
## 11953  2001.3 2001-08       55 0.0291262136
## 11954  2001.3 2001-08       59 0.0097087379
## 11955  2001.3 2001-08       61 0.0485436893
## 11956  2001.3 2001-08       60 0.0000000000
## 11957  2001.3 2001-09        1 0.0142857143
## 11958  2001.3 2001-09        2 0.0000000000
## 11959  2001.3 2001-09        3 0.0285714286
## 11960  2001.3 2001-09        4 0.0000000000
## 11961  2001.3 2001-09        5 0.0000000000
## 11962  2001.3 2001-09        6 0.0142857143
## 11963  2001.3 2001-09        7 0.0000000000
## 11964  2001.3 2001-09        8 0.0142857143
## 11965  2001.3 2001-09        9 0.0000000000
## 11966  2001.3 2001-09       10 0.0000000000
## 11967  2001.3 2001-09       11 0.0142857143
## 11968  2001.3 2001-09       12 0.0000000000
## 11969  2001.3 2001-09       13 0.0142857143
## 11970  2001.3 2001-09       14 0.0000000000
## 11971  2001.3 2001-09       15 0.0000000000
## 11972  2001.3 2001-09       16 0.0142857143
## 11973  2001.3 2001-09       17 0.0000000000
## 11974  2001.3 2001-09       18 0.0000000000
## 11975  2001.3 2001-09       19 0.0000000000
## 11976  2001.3 2001-09       20 0.0000000000
## 11977  2001.3 2001-09       21 0.0000000000
## 11978  2001.3 2001-09       22 0.0000000000
## 11979  2001.3 2001-09       23 0.0000000000
## 11980  2001.3 2001-09       24 0.0000000000
## 11981  2001.3 2001-09       25 0.0000000000
## 11982  2001.3 2001-09       26 0.0428571429
## 11983  2001.3 2001-09       27 0.0000000000
## 11984  2001.3 2001-09       28 0.0000000000
## 11985  2001.3 2001-09       29 0.0285714286
## 11986  2001.3 2001-09       30 0.0428571429
## 11987  2001.3 2001-09       31 0.0142857143
## 11988  2001.3 2001-09       32 0.0000000000
## 11989  2001.3 2001-09       33 0.0000000000
## 11990  2001.3 2001-09       34 0.0714285714
## 11991  2001.3 2001-09       35 0.0285714286
## 11992  2001.3 2001-09       36 0.0000000000
## 11993  2001.3 2001-09       37 0.0000000000
## 11994  2001.3 2001-09       38 0.4571428571
## 11995  2001.3 2001-09       39 0.0000000000
## 11996  2001.3 2001-09       40 0.0000000000
## 11997  2001.3 2001-09       41 0.0142857143
## 11998  2001.3 2001-09       42 0.0000000000
## 11999  2001.3 2001-09       43 0.0000000000
## 12000  2001.3 2001-09       44 0.0000000000
## 12001  2001.3 2001-09       45 0.0000000000
## 12002  2001.3 2001-09       46 0.0285714286
## 12003  2001.3 2001-09       47 0.0285714286
## 12004  2001.3 2001-09       48 0.0142857143
## 12005  2001.3 2001-09       52 0.0000000000
## 12006  2001.3 2001-09       49 0.0000000000
## 12007  2001.3 2001-09       53 0.0000000000
## 12008  2001.3 2001-09       50 0.0000000000
## 12009  2001.3 2001-09       54 0.0285714286
## 12010  2001.3 2001-09       51 0.0000000000
## 12011  2001.3 2001-09       55 0.0142857143
## 12012  2001.3 2001-09       56 0.0142857143
## 12013  2001.3 2001-09       57 0.0000000000
## 12014  2001.3 2001-09       60 0.0142857143
## 12015  2001.3 2001-09       59 0.0142857143
## 12016  2001.3 2001-09       58 0.0285714286
## 12017  2001.3 2001-09       61 0.0000000000
## 12018  2001.3 2001-09        1 0.1250000000
## 12019  2001.3 2001-09       11 0.0000000000
## 12020  2001.3 2001-09        2 0.0000000000
## 12021  2001.3 2001-09       12 0.0000000000
## 12022  2001.3 2001-09        3 0.5000000000
## 12023  2001.3 2001-09       13 0.0000000000
## 12024  2001.3 2001-09        4 0.2500000000
## 12025  2001.3 2001-09       14 0.0000000000
## 12026  2001.3 2001-09        5 0.0000000000
## 12027  2001.3 2001-09       15 0.0000000000
## 12028  2001.3 2001-09        6 0.1250000000
## 12029  2001.3 2001-09       16 0.0000000000
## 12030  2001.3 2001-09        7 0.0000000000
## 12031  2001.3 2001-09       17 0.0000000000
## 12032  2001.3 2001-09        8 0.0000000000
## 12033  2001.3 2001-09       18 0.0000000000
## 12034  2001.3 2001-09        9 0.0000000000
## 12035  2001.3 2001-09       19 0.0000000000
## 12036  2001.3 2001-09       10 0.0000000000
## 12037  2001.3 2001-09       20 0.0000000000
## 12038  2001.3 2001-09       21 0.0000000000
## 12039  2001.3 2001-09       22 0.0000000000
## 12040  2001.3 2001-09       23 0.0000000000
## 12041  2001.3 2001-09       24 0.0000000000
## 12042  2001.3 2001-09       25 0.0000000000
## 12043  2001.3 2001-09       26 0.0000000000
## 12044  2001.3 2001-09       27 0.0000000000
## 12045  2001.3 2001-09       28 0.0000000000
## 12046  2001.3 2001-09       29 0.0000000000
## 12047  2001.3 2001-09       30 0.0000000000
## 12048  2001.3 2001-09       31 0.0000000000
## 12049  2001.3 2001-09       32 0.0000000000
## 12050  2001.3 2001-09       33 0.0000000000
## 12051  2001.3 2001-09       34 0.0000000000
## 12052  2001.3 2001-09       35 0.0000000000
## 12053  2001.3 2001-09       36 0.0000000000
## 12054  2001.3 2001-09       37 0.0000000000
## 12055  2001.3 2001-09       38 0.0000000000
## 12056  2001.3 2001-09       39 0.0000000000
## 12057  2001.3 2001-09       40 0.0000000000
## 12058  2001.3 2001-09       41 0.0000000000
## 12059  2001.3 2001-09       51 0.0000000000
## 12060  2001.3 2001-09       42 0.0000000000
## 12061  2001.3 2001-09       52 0.0000000000
## 12062  2001.3 2001-09       43 0.0000000000
## 12063  2001.3 2001-09       53 0.0000000000
## 12064  2001.3 2001-09       44 0.0000000000
## 12065  2001.3 2001-09       54 0.0000000000
## 12066  2001.3 2001-09       45 0.0000000000
## 12067  2001.3 2001-09       55 0.0000000000
## 12068  2001.3 2001-09       46 0.0000000000
## 12069  2001.3 2001-09       56 0.0000000000
## 12070  2001.3 2001-09       47 0.0000000000
## 12071  2001.3 2001-09       57 0.0000000000
## 12072  2001.3 2001-09       48 0.0000000000
## 12073  2001.3 2001-09       58 0.0000000000
## 12074  2001.3 2001-09       49 0.0000000000
## 12075  2001.3 2001-09       59 0.0000000000
## 12076  2001.3 2001-09       50 0.0000000000
## 12077  2001.3 2001-09       60 0.0000000000
## 12078  2001.3 2001-09       61 0.0000000000
## 12079  2001.4 2001-10        1 0.0099173554
## 12080  2001.4 2001-10        2 0.0066115702
## 12081  2001.4 2001-10        3 0.0000000000
## 12082  2001.4 2001-10        4 0.0000000000
## 12083  2001.4 2001-10        5 0.0033057851
## 12084  2001.4 2001-10        6 0.0000000000
## 12085  2001.4 2001-10        7 0.0000000000
## 12086  2001.4 2001-10        8 0.0016528926
## 12087  2001.4 2001-10        9 0.0000000000
## 12088  2001.4 2001-10       10 0.0033057851
## 12089  2001.4 2001-10       11 0.0000000000
## 12090  2001.4 2001-10       12 0.0000000000
## 12091  2001.4 2001-10       13 0.0000000000
## 12092  2001.4 2001-10       14 0.0016528926
## 12093  2001.4 2001-10       15 0.0000000000
## 12094  2001.4 2001-10       16 0.0000000000
## 12095  2001.4 2001-10       17 0.0000000000
## 12096  2001.4 2001-10       18 0.0000000000
## 12097  2001.4 2001-10       19 0.0000000000
## 12098  2001.4 2001-10       20 0.0000000000
## 12099  2001.4 2001-10       21 0.0000000000
## 12100  2001.4 2001-10       22 0.0000000000
## 12101  2001.4 2001-10       23 0.0000000000
## 12102  2001.4 2001-10       24 0.0033057851
## 12103  2001.4 2001-10       25 0.0033057851
## 12104  2001.4 2001-10       26 0.0000000000
## 12105  2001.4 2001-10       27 0.0033057851
## 12106  2001.4 2001-10       28 0.0000000000
## 12107  2001.4 2001-10       29 0.0066115702
## 12108  2001.4 2001-10       30 0.0000000000
## 12109  2001.4 2001-10       31 0.0049586777
## 12110  2001.4 2001-10       32 0.0082644628
## 12111  2001.4 2001-10       33 0.0198347107
## 12112  2001.4 2001-10       34 0.0000000000
## 12113  2001.4 2001-10       35 0.0132231405
## 12114  2001.4 2001-10       36 0.0000000000
## 12115  2001.4 2001-10       37 0.0099173554
## 12116  2001.4 2001-10       38 0.0049586777
## 12117  2001.4 2001-10       39 0.0033057851
## 12118  2001.4 2001-10       40 0.0198347107
## 12119  2001.4 2001-10       41 0.0033057851
## 12120  2001.4 2001-10       42 0.0066115702
## 12121  2001.4 2001-10       43 0.0214876033
## 12122  2001.4 2001-10       44 0.0132231405
## 12123  2001.4 2001-10       45 0.0181818182
## 12124  2001.4 2001-10       46 0.0330578512
## 12125  2001.4 2001-10       47 0.0280991736
## 12126  2001.4 2001-10       48 0.0380165289
## 12127  2001.4 2001-10       49 0.0710743802
## 12128  2001.4 2001-10       50 0.0661157025
## 12129  2001.4 2001-10       51 0.0446280992
## 12130  2001.4 2001-10       52 0.0264462810
## 12131  2001.4 2001-10       56 0.1041322314
## 12132  2001.4 2001-10       53 0.0347107438
## 12133  2001.4 2001-10       57 0.0760330579
## 12134  2001.4 2001-10       54 0.0710743802
## 12135  2001.4 2001-10       58 0.0297520661
## 12136  2001.4 2001-10       55 0.0462809917
## 12137  2001.4 2001-10       59 0.0380165289
## 12138  2001.4 2001-10       60 0.0446280992
## 12139  2001.4 2001-10       61 0.0578512397
## 12140  2002.1 2002-02        1 0.0303030303
## 12141  2002.1 2002-02        2 0.0000000000
## 12142  2002.1 2002-02        3 0.0000000000
## 12143  2002.1 2002-02        4 0.0000000000
## 12144  2002.1 2002-02        5 0.0000000000
## 12145  2002.1 2002-02        6 0.0000000000
## 12146  2002.1 2002-02        7 0.0303030303
## 12147  2002.1 2002-02        8 0.0000000000
## 12148  2002.1 2002-02        9 0.0000000000
## 12149  2002.1 2002-02       10 0.0303030303
## 12150  2002.1 2002-02       11 0.0303030303
## 12151  2002.1 2002-02       12 0.0606060606
## 12152  2002.1 2002-02       13 0.0000000000
## 12153  2002.1 2002-02       14 0.0000000000
## 12154  2002.1 2002-02       15 0.0000000000
## 12155  2002.1 2002-02       16 0.0000000000
## 12156  2002.1 2002-02       17 0.0303030303
## 12157  2002.1 2002-02       18 0.0000000000
## 12158  2002.1 2002-02       19 0.0000000000
## 12159  2002.1 2002-02       20 0.0000000000
## 12160  2002.1 2002-02       21 0.0000000000
## 12161  2002.1 2002-02       22 0.0000000000
## 12162  2002.1 2002-02       23 0.0000000000
## 12163  2002.1 2002-02       24 0.0000000000
## 12164  2002.1 2002-02       25 0.0000000000
## 12165  2002.1 2002-02       26 0.0303030303
## 12166  2002.1 2002-02       27 0.0606060606
## 12167  2002.1 2002-02       28 0.0000000000
## 12168  2002.1 2002-02       29 0.0606060606
## 12169  2002.1 2002-02       30 0.0909090909
## 12170  2002.1 2002-02       31 0.0000000000
## 12171  2002.1 2002-02       32 0.0000000000
## 12172  2002.1 2002-02       33 0.0000000000
## 12173  2002.1 2002-02       34 0.0000000000
## 12174  2002.1 2002-02       35 0.0000000000
## 12175  2002.1 2002-02       36 0.0000000000
## 12176  2002.1 2002-02       37 0.0000000000
## 12177  2002.1 2002-02       38 0.0303030303
## 12178  2002.1 2002-02       39 0.0303030303
## 12179  2002.1 2002-02       40 0.0606060606
## 12180  2002.1 2002-02       41 0.0000000000
## 12181  2002.1 2002-02       42 0.0000000000
## 12182  2002.1 2002-02       43 0.0000000000
## 12183  2002.1 2002-02       44 0.0000000000
## 12184  2002.1 2002-02       45 0.0303030303
## 12185  2002.1 2002-02       46 0.0000000000
## 12186  2002.1 2002-02       47 0.0000000000
## 12187  2002.1 2002-02       48 0.0909090909
## 12188  2002.1 2002-02       49 0.0000000000
## 12189  2002.1 2002-02       50 0.0000000000
## 12190  2002.1 2002-02       51 0.0909090909
## 12191  2002.1 2002-02       52 0.0000000000
## 12192  2002.1 2002-02       56 0.0000000000
## 12193  2002.1 2002-02       53 0.0000000000
## 12194  2002.1 2002-02       57 0.0303030303
## 12195  2002.1 2002-02       54 0.0000000000
## 12196  2002.1 2002-02       58 0.0303030303
## 12197  2002.1 2002-02       55 0.0303030303
## 12198  2002.1 2002-02       60 0.0606060606
## 12199  2002.1 2002-02       59 0.0606060606
## 12200  2002.1 2002-02       61 0.0000000000
## 12201  2001.4 2001-10        1 0.2500000000
## 12202  2001.4 2001-10        2 0.0000000000
## 12203  2001.4 2001-10        3 0.2500000000
## 12204  2001.4 2001-10        4 0.0000000000
## 12205  2001.4 2001-10        5 0.2500000000
## 12206  2001.4 2001-10        6 0.0000000000
## 12207  2001.4 2001-10        7 0.2500000000
## 12208  2001.4 2001-10        8 0.0000000000
## 12209  2001.4 2001-10        9 0.0000000000
## 12210  2001.4 2001-10       10 0.0000000000
## 12211  2001.4 2001-10       11 0.0000000000
## 12212  2001.4 2001-10       12 0.0000000000
## 12213  2001.4 2001-10       13 0.0000000000
## 12214  2001.4 2001-10       14 0.0000000000
## 12215  2001.4 2001-10       15 0.0000000000
## 12216  2001.4 2001-10       16 0.0000000000
## 12217  2001.4 2001-10       17 0.0000000000
## 12218  2001.4 2001-10       18 0.0000000000
## 12219  2001.4 2001-10       19 0.0000000000
## 12220  2001.4 2001-10       20 0.0000000000
## 12221  2001.4 2001-10       21 0.0000000000
## 12222  2001.4 2001-10       22 0.0000000000
## 12223  2001.4 2001-10       23 0.0000000000
## 12224  2001.4 2001-10       24 0.0000000000
## 12225  2001.4 2001-10       25 0.0000000000
## 12226  2001.4 2001-10       26 0.0000000000
## 12227  2001.4 2001-10       27 0.0000000000
## 12228  2001.4 2001-10       28 0.0000000000
## 12229  2001.4 2001-10       29 0.0000000000
## 12230  2001.4 2001-10       30 0.0000000000
## 12231  2001.4 2001-10       31 0.0000000000
## 12232  2001.4 2001-10       32 0.0000000000
## 12233  2001.4 2001-10       33 0.0000000000
## 12234  2001.4 2001-10       34 0.0000000000
## 12235  2001.4 2001-10       35 0.0000000000
## 12236  2001.4 2001-10       36 0.0000000000
## 12237  2001.4 2001-10       37 0.0000000000
## 12238  2001.4 2001-10       38 0.0000000000
## 12239  2001.4 2001-10       39 0.0000000000
## 12240  2001.4 2001-10       40 0.0000000000
## 12241  2001.4 2001-10       41 0.0000000000
## 12242  2001.4 2001-10       42 0.0000000000
## 12243  2001.4 2001-10       43 0.0000000000
## 12244  2001.4 2001-10       44 0.0000000000
## 12245  2001.4 2001-10       45 0.0000000000
## 12246  2001.4 2001-10       46 0.0000000000
## 12247  2001.4 2001-10       47 0.0000000000
## 12248  2001.4 2001-10       48 0.0000000000
## 12249  2001.4 2001-10       49 0.0000000000
## 12250  2001.4 2001-10       50 0.0000000000
## 12251  2001.4 2001-10       51 0.0000000000
## 12252  2001.4 2001-10       52 0.0000000000
## 12253  2001.4 2001-10       53 0.0000000000
## 12254  2001.4 2001-10       54 0.0000000000
## 12255  2001.4 2001-10       55 0.0000000000
## 12256  2001.4 2001-10       60 0.0000000000
## 12257  2001.4 2001-10       58 0.0000000000
## 12258  2001.4 2001-10       56 0.0000000000
## 12259  2001.4 2001-10       61 0.0000000000
## 12260  2001.4 2001-10       59 0.0000000000
## 12261  2001.4 2001-10       57 0.0000000000
## 12262  2001.4 2001-10        1 1.0000000000
## 12263  2001.4 2001-10        2 0.0000000000
## 12264  2001.4 2001-10        3 0.0000000000
## 12265  2001.4 2001-10        4 0.0000000000
## 12266  2001.4 2001-10        5 0.0000000000
## 12267  2001.4 2001-10        6 0.0000000000
## 12268  2001.4 2001-10        7 0.0000000000
## 12269  2001.4 2001-10        8 0.0000000000
## 12270  2001.4 2001-10        9 0.0000000000
## 12271  2001.4 2001-10       10 0.0000000000
## 12272  2001.4 2001-10       11 0.0000000000
## 12273  2001.4 2001-10       12 0.0000000000
## 12274  2001.4 2001-10       13 0.0000000000
## 12275  2001.4 2001-10       14 0.0000000000
## 12276  2001.4 2001-10       15 0.0000000000
## 12277  2001.4 2001-10       16 0.0000000000
## 12278  2001.4 2001-10       17 0.0000000000
## 12279  2001.4 2001-10       18 0.0000000000
## 12280  2001.4 2001-10       19 0.0000000000
## 12281  2001.4 2001-10       20 0.0000000000
## 12282  2001.4 2001-10       21 0.0000000000
## 12283  2001.4 2001-10       22 0.0000000000
## 12284  2001.4 2001-10       23 0.0000000000
## 12285  2001.4 2001-10       24 0.0000000000
## 12286  2001.4 2001-10       25 0.0000000000
## 12287  2001.4 2001-10       26 0.0000000000
## 12288  2001.4 2001-10       27 0.0000000000
## 12289  2001.4 2001-10       28 0.0000000000
## 12290  2001.4 2001-10       29 0.0000000000
## 12291  2001.4 2001-10       30 0.0000000000
## 12292  2001.4 2001-10       31 0.0000000000
## 12293  2001.4 2001-10       32 0.0000000000
## 12294  2001.4 2001-10       33 0.0000000000
## 12295  2001.4 2001-10       34 0.0000000000
## 12296  2001.4 2001-10       35 0.0000000000
## 12297  2001.4 2001-10       36 0.0000000000
## 12298  2001.4 2001-10       37 0.0000000000
## 12299  2001.4 2001-10       38 0.0000000000
## 12300  2001.4 2001-10       39 0.0000000000
## 12301  2001.4 2001-10       40 0.0000000000
## 12302  2001.4 2001-10       41 0.0000000000
## 12303  2001.4 2001-10       42 0.0000000000
## 12304  2001.4 2001-10       43 0.0000000000
## 12305  2001.4 2001-10       44 0.0000000000
## 12306  2001.4 2001-10       45 0.0000000000
## 12307  2001.4 2001-10       46 0.0000000000
## 12308  2001.4 2001-10       47 0.0000000000
## 12309  2001.4 2001-10       48 0.0000000000
## 12310  2001.4 2001-10       49 0.0000000000
## 12311  2001.4 2001-10       50 0.0000000000
## 12312  2001.4 2001-10       51 0.0000000000
## 12313  2001.4 2001-10       52 0.0000000000
## 12314  2001.4 2001-10       56 0.0000000000
## 12315  2001.4 2001-10       53 0.0000000000
## 12316  2001.4 2001-10       60 0.0000000000
## 12317  2001.4 2001-10       58 0.0000000000
## 12318  2001.4 2001-10       57 0.0000000000
## 12319  2001.4 2001-10       54 0.0000000000
## 12320  2001.4 2001-10       61 0.0000000000
## 12321  2001.4 2001-10       59 0.0000000000
## 12322  2001.4 2001-10       55 0.0000000000
## 12323  2001.4 2001-10        1 0.0041493776
## 12324  2001.4 2001-10        2 0.0000000000
## 12325  2001.4 2001-10        3 0.0041493776
## 12326  2001.4 2001-10        4 0.0000000000
## 12327  2001.4 2001-10        5 0.0041493776
## 12328  2001.4 2001-10        6 0.0000000000
## 12329  2001.4 2001-10        7 0.0000000000
## 12330  2001.4 2001-10        8 0.0000000000
## 12331  2001.4 2001-10        9 0.0000000000
## 12332  2001.4 2001-10       10 0.0000000000
## 12333  2001.4 2001-10       11 0.0000000000
## 12334  2001.4 2001-10       12 0.0041493776
## 12335  2001.4 2001-10       13 0.0000000000
## 12336  2001.4 2001-10       14 0.0041493776
## 12337  2001.4 2001-10       15 0.0041493776
## 12338  2001.4 2001-10       16 0.0000000000
## 12339  2001.4 2001-10       17 0.0000000000
## 12340  2001.4 2001-10       18 0.0000000000
## 12341  2001.4 2001-10       19 0.0000000000
## 12342  2001.4 2001-10       20 0.0000000000
## 12343  2001.4 2001-10       21 0.0041493776
## 12344  2001.4 2001-10       22 0.0000000000
## 12345  2001.4 2001-10       23 0.0000000000
## 12346  2001.4 2001-10       24 0.0000000000
## 12347  2001.4 2001-10       25 0.0000000000
## 12348  2001.4 2001-10       26 0.0041493776
## 12349  2001.4 2001-10       27 0.0041493776
## 12350  2001.4 2001-10       28 0.0082987552
## 12351  2001.4 2001-10       29 0.0041493776
## 12352  2001.4 2001-10       30 0.0124481328
## 12353  2001.4 2001-10       31 0.0082987552
## 12354  2001.4 2001-10       32 0.0124481328
## 12355  2001.4 2001-10       33 0.0124481328
## 12356  2001.4 2001-10       34 0.0165975104
## 12357  2001.4 2001-10       35 0.0248962656
## 12358  2001.4 2001-10       36 0.0082987552
## 12359  2001.4 2001-10       37 0.0165975104
## 12360  2001.4 2001-10       38 0.0124481328
## 12361  2001.4 2001-10       39 0.0082987552
## 12362  2001.4 2001-10       40 0.0207468880
## 12363  2001.4 2001-10       60 0.0539419087
## 12364  2001.4 2001-10       41 0.0124481328
## 12365  2001.4 2001-10       51 0.0248962656
## 12366  2001.4 2001-10       61 0.0331950207
## 12367  2001.4 2001-10       42 0.0456431535
## 12368  2001.4 2001-10       52 0.0331950207
## 12369  2001.4 2001-10       43 0.0290456432
## 12370  2001.4 2001-10       53 0.0663900415
## 12371  2001.4 2001-10       44 0.0207468880
## 12372  2001.4 2001-10       54 0.0165975104
## 12373  2001.4 2001-10       45 0.0207468880
## 12374  2001.4 2001-10       55 0.0414937759
## 12375  2001.4 2001-10       46 0.1867219917
## 12376  2001.4 2001-10       56 0.0373443983
## 12377  2001.4 2001-10       47 0.0207468880
## 12378  2001.4 2001-10       57 0.0207468880
## 12379  2001.4 2001-10       48 0.0207468880
## 12380  2001.4 2001-10       58 0.0373443983
## 12381  2001.4 2001-10       49 0.0041493776
## 12382  2001.4 2001-10       59 0.0497925311
## 12383  2001.4 2001-10       50 0.0207468880
## 12384  2002.1 2002-02        1 0.0526315789
## 12385  2002.1 2002-02        2 0.0000000000
## 12386  2002.1 2002-02        3 0.0000000000
## 12387  2002.1 2002-02        4 0.0000000000
## 12388  2002.1 2002-02        5 0.0000000000
## 12389  2002.1 2002-02        6 0.0000000000
## 12390  2002.1 2002-02        7 0.0000000000
## 12391  2002.1 2002-02        8 0.0000000000
## 12392  2002.1 2002-02        9 0.0000000000
## 12393  2002.1 2002-02       10 0.0000000000
## 12394  2002.1 2002-02       11 0.0000000000
## 12395  2002.1 2002-02       12 0.0000000000
## 12396  2002.1 2002-02       13 0.0000000000
## 12397  2002.1 2002-02       14 0.0000000000
## 12398  2002.1 2002-02       15 0.0000000000
## 12399  2002.1 2002-02       16 0.0000000000
## 12400  2002.1 2002-02       17 0.0000000000
## 12401  2002.1 2002-02       18 0.0526315789
## 12402  2002.1 2002-02       19 0.0000000000
## 12403  2002.1 2002-02       20 0.0000000000
## 12404  2002.1 2002-02       21 0.0000000000
## 12405  2002.1 2002-02       22 0.0000000000
## 12406  2002.1 2002-02       23 0.0000000000
## 12407  2002.1 2002-02       24 0.0000000000
## 12408  2002.1 2002-02       25 0.0000000000
## 12409  2002.1 2002-02       26 0.0000000000
## 12410  2002.1 2002-02       27 0.0526315789
## 12411  2002.1 2002-02       28 0.0000000000
## 12412  2002.1 2002-02       29 0.0000000000
## 12413  2002.1 2002-02       30 0.0000000000
## 12414  2002.1 2002-02       31 0.2105263158
## 12415  2002.1 2002-02       32 0.0000000000
## 12416  2002.1 2002-02       33 0.0000000000
## 12417  2002.1 2002-02       34 0.0000000000
## 12418  2002.1 2002-02       35 0.0000000000
## 12419  2002.1 2002-02       36 0.0000000000
## 12420  2002.1 2002-02       37 0.0000000000
## 12421  2002.1 2002-02       38 0.0526315789
## 12422  2002.1 2002-02       39 0.0526315789
## 12423  2002.1 2002-02       40 0.0526315789
## 12424  2002.1 2002-02       60 0.0000000000
## 12425  2002.1 2002-02       41 0.0000000000
## 12426  2002.1 2002-02       51 0.0000000000
## 12427  2002.1 2002-02       61 0.0000000000
## 12428  2002.1 2002-02       42 0.0000000000
## 12429  2002.1 2002-02       52 0.0000000000
## 12430  2002.1 2002-02       43 0.0526315789
## 12431  2002.1 2002-02       53 0.0000000000
## 12432  2002.1 2002-02       44 0.0000000000
## 12433  2002.1 2002-02       54 0.1052631579
## 12434  2002.1 2002-02       45 0.0526315789
## 12435  2002.1 2002-02       55 0.0000000000
## 12436  2002.1 2002-02       46 0.0000000000
## 12437  2002.1 2002-02       56 0.0000000000
## 12438  2002.1 2002-02       47 0.1052631579
## 12439  2002.1 2002-02       57 0.0000000000
## 12440  2002.1 2002-02       48 0.0000000000
## 12441  2002.1 2002-02       58 0.1052631579
## 12442  2002.1 2002-02       49 0.0000000000
## 12443  2002.1 2002-02       59 0.0000000000
## 12444  2002.1 2002-02       50 0.0526315789
## 12445  2001.4 2001-11        1 0.0754716981
## 12446  2001.4 2001-11        2 0.0000000000
## 12447  2001.4 2001-11        3 0.0000000000
## 12448  2001.4 2001-11        4 0.0188679245
## 12449  2001.4 2001-11        5 0.0000000000
## 12450  2001.4 2001-11        6 0.0000000000
## 12451  2001.4 2001-11        7 0.0000000000
## 12452  2001.4 2001-11        8 0.0000000000
## 12453  2001.4 2001-11        9 0.0000000000
## 12454  2001.4 2001-11       10 0.0000000000
## 12455  2001.4 2001-11       11 0.0000000000
## 12456  2001.4 2001-11       12 0.0000000000
## 12457  2001.4 2001-11       13 0.0188679245
## 12458  2001.4 2001-11       14 0.0000000000
## 12459  2001.4 2001-11       15 0.0000000000
## 12460  2001.4 2001-11       16 0.0000000000
## 12461  2001.4 2001-11       17 0.0000000000
## 12462  2001.4 2001-11       18 0.0000000000
## 12463  2001.4 2001-11       19 0.0000000000
## 12464  2001.4 2001-11       20 0.0000000000
## 12465  2001.4 2001-11       21 0.0000000000
## 12466  2001.4 2001-11       22 0.0000000000
## 12467  2001.4 2001-11       23 0.0000000000
## 12468  2001.4 2001-11       24 0.0000000000
## 12469  2001.4 2001-11       25 0.0000000000
## 12470  2001.4 2001-11       26 0.0000000000
## 12471  2001.4 2001-11       27 0.0000000000
## 12472  2001.4 2001-11       28 0.0377358491
## 12473  2001.4 2001-11       29 0.0566037736
## 12474  2001.4 2001-11       30 0.0188679245
## 12475  2001.4 2001-11       31 0.0000000000
## 12476  2001.4 2001-11       32 0.0000000000
## 12477  2001.4 2001-11       33 0.0566037736
## 12478  2001.4 2001-11       34 0.0188679245
## 12479  2001.4 2001-11       35 0.0000000000
## 12480  2001.4 2001-11       36 0.0188679245
## 12481  2001.4 2001-11       37 0.0188679245
## 12482  2001.4 2001-11       38 0.0000000000
## 12483  2001.4 2001-11       39 0.0188679245
## 12484  2001.4 2001-11       40 0.0188679245
## 12485  2001.4 2001-11       41 0.0000000000
## 12486  2001.4 2001-11       42 0.0188679245
## 12487  2001.4 2001-11       43 0.0000000000
## 12488  2001.4 2001-11       44 0.0000000000
## 12489  2001.4 2001-11       45 0.0188679245
## 12490  2001.4 2001-11       46 0.0000000000
## 12491  2001.4 2001-11       47 0.0000000000
## 12492  2001.4 2001-11       48 0.0000000000
## 12493  2001.4 2001-11       49 0.1320754717
## 12494  2001.4 2001-11       50 0.0000000000
## 12495  2001.4 2001-11       51 0.0377358491
## 12496  2001.4 2001-11       52 0.0377358491
## 12497  2001.4 2001-11       53 0.2264150943
## 12498  2001.4 2001-11       54 0.0000000000
## 12499  2001.4 2001-11       55 0.0000000000
##  [ reached getOption("max.print") -- omitted 48806 rows ]
# Plot percents by tags
ggplot(data = data.with.indicators, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=Indicator), size = 0.4, alpha = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision")

# let's hide the articles that were first created in Oct 2002
data.with.indicators.drop.oct.2002 <- data.with.indicators[which(data.with.indicators$first != "2002-10"),]

# Plot percents by tags
ggplot(data = data.with.indicators.drop.oct.2002, aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=Indicator), size = 0.4, alpha = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision")

ggplot(data = data.with.indicators.drop.oct.2002[which(!is.na(data.with.indicators.drop.oct.2002$Indicator)),], aes(x=variable, y = value)) + geom_line(aes(group = article_id, color=Indicator), size = .5, alpha = 0.2) + scale_y_continuous(labels = scales::percent) + ylab("Percent of Article Revisions") + xlab("Months since First Revision")

Nothing really pops out with percentages. Show this with counts instead.

data.count.indicators <- merge(tags, collapsed, by="article_id", all = TRUE, sort = FALSE)
data.count.indicators <- data.count.indicators[!is.na(data.count.indicators$date),]
arrange(data.count.indicators,article_id)
article.revisions.by.year.date.by.indicator.with.na <- ggplot(data = data.count.indicators, 
      aes(x=as.yearmon(date), 
      y = count, colour = Indicator)) + 
  geom_line(aes(group = article_id), size = .7, alpha = 0.5) +
  geom_point(size = .6) +
  labs(title = 'Number of Revisions for Each Article by Month (2001-2008)') +
  xlab("Year-Month") +
  ylab("Number of Revisions")

article.revisions.by.year.date.by.indicator.with.na
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggplot(data = data.count.indicators[which(!is.na(data.count.indicators$Indicator)),], aes(x=as.yearmon(date), y = count, colour = Indicator), size = 0.7, alpha = 0.3) + geom_line(aes(group = article_id), size = .7, alpha = 0.5) + geom_point(size = .6)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

It’s pretty clear that article’s with tags are more popular for revisions.

Let’s look at which articles have been deleted.

deleted.articles <- read.csv("badtitles1000sample.txt")
deleted.articles <- deleted.articles[,1]
data.count.indicators$Indicator <- as.character(data.count.indicators$Indicator)
data.count.indicators[which(data.count.indicators$article_id %in% deleted.articles), "Indicator"] <- "Deleted Article IDs"
# need to clean article_id 1073 as a bad article. It was not identified as a bad article during the scraping
data.count.indicators[which(data.count.indicators$article_id == 1073), "Indicator"] <- "Deleted Article IDs"
data.count.indicators$Indicator <- as.factor(data.count.indicators$Indicator)


# USE THIS
ggplot(data = data.count.indicators, 
       aes(x=as.yearmon(date), 
           y = count, 
           colour = Indicator)) + 
  geom_line(aes(group = article_id), 
            size = .7, alpha = 0.5) + 
  geom_point(size = .6) + 
  labs(title = 'Number of Revisions for Each Article by Month (2001-2008)') +
  xlab("Year-Month") +
  ylab("Number of Revisions")
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggsave("img/article-revisions-by-year-date-by-indicator-with-na.png", 
       plot = last_plot(),
       width = 10,
       height = 6) 
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.
# USE THIS 
article.revisions.by.year.date.by.indicator <- ggplot(data = data.count.indicators[which(!is.na(data.count.indicators$Indicator)),],
  aes(x=as.yearmon(date), 
      y = count, colour = Indicator)) + 
  geom_line(aes(group = article_id), 
      size = .8, 
      alpha = 0.6) + 
  geom_point(size = .75) +
  labs(title = 'Number of Revisions for Each Article by Month (2001-2008)') +
  xlab("Year-Month") +
  ylab("Number of Revisions")

ggsave("img/article-revisions-by-year-date-by-indicator.png", 
       plot = last_plot(),
       width = 10,
       height = 6)  
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.
ggplot(data = data.count.indicators[which(!is.na(data.count.indicators$Indicator) & data.count.indicators$Indicator == "Deleted Article IDs"),], aes(x=as.yearmon(date), y = count, colour = Indicator)) + geom_line(aes(group = article_id), size = .8, alpha = 0.6) + geom_point(size = .75)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

Living people

# we are interested in doing this again on the complete old enough articles!!
living.people.article.ids <- unique(as.character(categories[which(categories$category == "Living people"), "article_id"]))

living.people.indicator <- collapsed
living.people.indicator$LivingPerson <- NA
living.people.indicator[which(living.people.indicator$article_id %in% living.people.article.ids), "LivingPerson"] <- "Living People"
library(zoo)
ggplot(data = living.people.indicator, aes(x=as.yearmon(date), y = count, colour = as.factor(LivingPerson), alpha = 0.5)) + geom_line(aes(group = article_id), alpha=0.5, size = 0.4) + geom_point(size = 1.0)
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

ggplot(data = living.people.indicator[which(!is.na(living.people.indicator$LivingPerson)),], aes(x=as.yearmon(date), y = count, alpha = 0.5)) + geom_line(aes(group = article_id), alpha=0.5, size = 0.4) + geom_point(size = 0.8)+ geom_dl(aes(label=article_id), method = "top.points")
## Don't know how to automatically pick scale for object of type yearmon. Defaulting to continuous.

Who is that super popular living person?

popularperson <- as.integer(unique(living.people.indicator[which(!is.na(living.people.indicator$LivingPerson) & living.people.indicator$count > 100),"article_id"]))
# 162864 is Lauryn Hill https://en.wikipedia.org/?curid=162864
popularpeople <- living.people.indicator %>%
  filter(!is.na(LivingPerson))%>%
  group_by(article_id) %>%
  dplyr::summarize(totalrevisions = sum(count)) %>%
  arrange(desc(totalrevisions))
popularpeople
## # A tibble: 21 x 2
##    article_id totalrevisions
##         <int>          <int>
##  1     162864           1681
##  2     156123            415
##  3     308577            306
##  4      63328            283
##  5     150582            240
##  6     151606            212
##  7     155410            169
##  8     151408            141
##  9      77854            137
## 10      70350            131
## # ... with 11 more rows

Are articles deleted? Is there a trend in articles that don’t have categories?

# show articles that don't have categories
no.categories.articles <- collapsed %>%
  filter(!article_id %in% articles.with.categories) %>%
  group_by(article_id) %>%
  dplyr::summarise(totalrevisions = sum(count))

# how many of these articles were "bad titles"
(mysteriousarticles <- no.categories.articles %>%
  filter(!article_id %in% deleted.articles))
## # A tibble: 1 x 2
##   article_id totalrevisions
##        <int>          <int>
## 1       1073              2
# this produces only the article 1073, but looking through browser shows that this article is a "bad title"
# this was fixed in the above code
allcategories <- as.data.frame(do.call(rbind,strsplit(readLines("Categories_all_oldenough.txt"), "\x1e",fixed=T)), stringsAsFactors = FALSE)
allcategories <- as.data.frame(allcategories)
names(allcategories) <- c("article_id", "category")
all.cat.unique.counts <- allcategories %>%
  group_by(category) %>%
  dplyr::summarize(count = n())
arrange(all.cat.unique.counts, desc(count))
manually.all.cat.unique.counts <- all.cat.unique.counts
manually.all.cat.unique.counts$manual.category <- manually.all.cat.unique.counts$category
geo.list <- c("Cities", "Townships", "Towns in", "Villages in", "places in", "cities", "towns", "Counties", "metropolitan area", "counties", "Municipalities of", "Member states", "Areas of", "metroplex", "Populated places")
for (g in geo.list){
  manually.all.cat.unique.counts[which(all.cat.unique.counts$category %like% g), "manual.category"] <- "Geography"
}
manually.all.cat.unique.counts[which(all.cat.unique.counts$category %like% "isambiguation pages"), "manual.category"] <- "Disambiguation pages"
manually.all.cat.unique.counts[which(all.cat.unique.counts$category %like% "films"), "manual.category"] <- "Films"
grouped.manually.all.cat.unique.counts <- manually.all.cat.unique.counts %>%
  group_by(manual.category) %>%
  dplyr::summarize(count = sum(count))
arrange(grouped.manually.all.cat.unique.counts, desc(count))
## # A tibble: 160,197 x 2
##    manual.category                   count
##    <chr>                             <int>
##  1 Geography                         94663
##  2 Films                             11188
##  3 Disambiguation pages               7029
##  4 Living people                      2641
##  5 IUCN Category II                    501
##  6 Grammy Award winners                448
##  7 American male film actors           408
##  8 20th-century male writers           401
##  9 Days of the year                    376
## 10 20th-century American male actors   372
## # ... with 160,187 more rows
# maybe some article_id have multiple tags with film in them. have to control for that